/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
    /* Primary palette */
    --color-primary: #a8d8ea;
    --color-primary-light: #c9e8f2;
    --color-primary-dark: #7bbdd4;
    --color-secondary: #aa96da;
    --color-secondary-light: #c4b8e8;
    --color-secondary-dark: #8a72c8;
    --color-accent: #fcbad3;
    --color-accent-light: #fdd6e4;
    --color-accent-dark: #f08ab5;

    /* Extended pastels */
    --color-cream: #f6e6c5;
    --color-mint: #b5ead7;
    --color-lavender: #e8dff5;
    --color-peach: #fce4d8;
    --color-baby-blue: #dceefb;

    /* Neutrals */
    --color-white: #ffffff;
    --color-bg: #faf7ff;
    --color-bg-alt: #f3eefb;
    --color-bg-warm: #fef9f4;
    --color-text: #4a3f6b;
    --color-text-light: #7b6fa0;
    --color-text-muted: #a99dc4;
    --color-border: #e8e0f3;
    --color-border-light: #f0ebf7;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(170, 150, 218, 0.08);
    --shadow-md: 0 4px 20px rgba(170, 150, 218, 0.12);
    --shadow-lg: 0 8px 40px rgba(170, 150, 218, 0.16);
    --shadow-xl: 0 16px 60px rgba(170, 150, 218, 0.2);
    --shadow-colored: 0 8px 32px rgba(252, 186, 211, 0.25);
    --shadow-primary: 0 4px 20px rgba(168, 216, 234, 0.3);
    --shadow-secondary: 0 4px 20px rgba(170, 150, 218, 0.3);

    /* Typography */
    --font-display: 'Baloo 2', cursive;
    --font-body: 'Quicksand', sans-serif;
    --font-alt: 'Nunito', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Borders */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 200ms var(--ease-out);
    --transition-normal: 350ms var(--ease-out);
    --transition-slow: 600ms var(--ease-out);

    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary-dark);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-dark);
}

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
}

input, textarea {
    font-family: var(--font-body);
}

ul {
    list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-3xl);
}

.section-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary);
    background: var(--color-lavender);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    letter-spacing: 0.5px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: var(--space-md);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-accent-dark));
}

.btn-primary:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(252, 186, 211, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.7);
    color: var(--color-text);
    border: 2px solid var(--color-border);
    backdrop-filter: blur(8px);
}

.btn-ghost::before {
    background: rgba(255, 255, 255, 0.9);
}

.btn-ghost:hover {
    color: var(--color-secondary-dark);
    border-color: var(--color-secondary-light);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: all var(--transition-normal);
    background: rgba(250, 247, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
}

.main-header.scrolled {
    background: rgba(250, 247, 255, 0.92);
    border-bottom: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
    z-index: 1001;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-text-light);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary-dark);
    background: var(--color-lavender);
}

.nav-link.nav-cta {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 10px 24px;
    margin-left: 8px;
}

.nav-link.nav-cta:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-colored);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--color-text);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-height);
    background: linear-gradient(170deg, var(--color-bg) 0%, var(--color-lavender) 30%, var(--color-baby-blue) 60%, var(--color-bg) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
    animation-delay: -5s;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--color-secondary-light) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--color-cream) 0%, transparent 70%);
    top: 20%;
    right: 30%;
    animation-delay: -15s;
}

.shape-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--color-mint) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: -3s;
}

.shape-6 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--color-peach) 0%, transparent 70%);
    top: 60%;
    left: 5%;
    animation-delay: -8s;
}

.shape-7 {
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
    top: 10%;
    left: 40%;
    animation-delay: -12s;
}

.shape-8 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-accent-light) 0%, transparent 70%);
    bottom: 30%;
    left: 50%;
    animation-delay: -7s;
}

@keyframes float-shape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -20px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(15px, 15px) scale(1.02); }
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-3xl) var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    margin-bottom: var(--space-xl);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-secondary-dark);
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero-title {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-xl);
}

.title-line-1 {
    display: block;
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-text-light);
    animation: fadeInUp 0.8s var(--ease-out) 0.1s both;
}

.title-line-2 {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.2rem);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s both;
}

.title-line-3 {
    display: block;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--color-text);
    animation: fadeInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 480px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s both;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.5s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    animation: fadeInUp 0.8s var(--ease-out) 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-secondary-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 2px;
    height: 36px;
    background: var(--color-border);
    border-radius: 1px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInScale 1s var(--ease-out) 0.3s both;
}

.hero-phone-frame {
    position: relative;
    width: 280px;
    height: 380px;
    background: linear-gradient(160deg, var(--color-white) 0%, var(--color-lavender) 100%);
    border-radius: 40px;
    padding: 16px;
    box-shadow: var(--shadow-xl), 0 0 0 1px var(--color-border-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: var(--color-border);
    border-radius: var(--radius-full);
}

.hero-app-icon {
    width: 160px;
    height: 160px;
    border-radius: 36px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.phone-glow {
    position: absolute;
    inset: -2px;
    border-radius: 42px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    z-index: -1;
    opacity: 0.5;
    filter: blur(20px);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.03); }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 4px 12px rgba(170, 150, 218, 0.2));
}

.float-brush {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.float-palette {
    bottom: 10%;
    left: -5%;
    animation-delay: -2s;
}

.float-star {
    top: 5%;
    left: 5%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(3deg); }
    66% { transform: translateY(10px) rotate(-2deg); }
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    font-weight: 500;
    animation: bounce-indicator 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes bounce-indicator {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SOCIAL PROOF TICKER
   ============================================ */
.social-proof-ticker {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    overflow: hidden;
    white-space: nowrap;
}

.ticker-content {
    display: inline-flex;
    gap: 60px;
    animation: ticker 30s linear infinite;
    padding-left: 100%;
}

.ticker-content .ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ticker-dot {
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card-large {
    grid-column: span 1;
    grid-row: span 2;
    background: linear-gradient(160deg, var(--color-white) 0%, var(--color-lavender) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon-wrap {
    margin-bottom: var(--space-lg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.feature-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
}

.feature-tag {
    background: var(--color-lavender);
    color: var(--color-secondary-dark);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-warm) 50%, var(--color-bg) 100%);
}

.gallery-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 900px;
    margin: 0 auto;
}

.gallery-main {
    position: relative;
}

.gallery-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
    position: relative;
    aspect-ratio: 16/9;
}

.gallery-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-main-img:hover img {
    transform: scale(1.02);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(transparent, rgba(74, 63, 107, 0.5));
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.gallery-label {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    display: inline-block;
}

.gallery-thumbs {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.gallery-thumb {
    width: 100px;
    height: 75px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 3px solid transparent;
    transition: all var(--transition-fast);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb:hover {
    border-color: var(--color-secondary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.gallery-thumb.active {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-secondary);
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
}

.step-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: all var(--transition-normal);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-lavender));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-visual {
    margin-bottom: var(--space-lg);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.step-desc {
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

.step-connector {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-lavender) 50%, var(--color-bg) 100%);
}

.testimonials-carousel {
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s var(--ease-out);
}

.testimonial-card {
    min-width: 100%;
    padding: var(--space-2xl) var(--space-xl);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    margin: 0 var(--space-md);
    box-sizing: border-box;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--color-text);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.95rem;
}

.author-role {
    color: var(--color-text-muted);
    font-size: 0.82rem;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-white);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: white;
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 0;
}

.carousel-dot.active {
    background: var(--color-secondary);
    transform: scale(1.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-item:hover {
    border-color: var(--color-secondary-light);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) var(--space-xl);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-text);
    text-align: left;
    gap: var(--space-md);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-secondary-dark);
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--color-secondary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-answer a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-alt) 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
}

.trust-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.trust-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-icon {
    margin-bottom: var(--space-lg);
    display: flex;
    justify-content: center;
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.trust-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============================================
   CONTACT / LEAD FORM SECTION
   ============================================ */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info {
    padding-top: var(--space-xl);
}

.contact-info .section-title {
    text-align: left;
}

.contact-desc {
    color: var(--color-text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.benefit-item svg {
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.contact-detail-item a {
    color: var(--color-text-light);
}

.contact-detail-item a:hover {
    color: var(--color-secondary-dark);
}

/* Form */
.contact-form-wrap {
    position: relative;
}

.contact-form {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    text-align: center;
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group .optional {
    color: var(--color-text-muted);
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus {
    border-color: var(--color-secondary);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(170, 150, 218, 0.15);
}

.form-group input.error {
    border-color: #e74c3c;
}

.form-error {
    display: block;
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 4px;
    min-height: 0;
}

.form-checkbox {
    margin-bottom: var(--space-md);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.85rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    margin-top: 1px;
    background: var(--color-bg);
}

.checkbox-label input:checked + .checkmark {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.form-message {
    margin-top: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-disclaimer {
    margin-top: var(--space-md);
    font-size: 0.78rem;
    color: var(--color-text-muted);
    text-align: center;
    line-height: 1.5;
}

/* Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   ACTIVITY FEED
   ============================================ */
.activity-section {
    padding: var(--space-2xl) 0;
    background: var(--color-bg);
}

.activity-feed {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-full);
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    animation: fadeInScale 0.5s var(--ease-out) both;
}

.activity-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

.activity-dot.green { background: #4ade80; }
.activity-dot.blue { background: var(--color-primary); }
.activity-dot.pink { background: var(--color-accent); }
.activity-dot.purple { background: var(--color-secondary); }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}

.footer-wave {
    color: var(--color-bg);
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: var(--space-3xl);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    margin-bottom: var(--space-md);
}

.footer-logo span {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--color-secondary);
    color: white;
    transform: translateY(-2px);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
}

.footer-links-col h4 {
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-links-col a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    padding: var(--space-xl) 0;
}

.footer-bottom-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-address {
    font-size: 0.8rem;
}

.footer-age {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--color-white);
    border-top: 1px solid var(--color-border-light);
    box-shadow: 0 -4px 40px rgba(170, 150, 218, 0.15);
    padding: var(--space-lg) var(--space-xl);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-icon-wrap {
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.88rem;
    transition: all var(--transition-fast);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-colored);
}

.btn-cookie-reject {
    background: var(--color-bg);
    color: var(--color-text);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.btn-cookie-reject:hover {
    background: var(--color-border-light);
}

.btn-cookie-settings {
    color: var(--color-text-muted);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.btn-cookie-settings:hover {
    color: var(--color-secondary-dark);
}

.cookie-settings-panel {
    max-width: var(--max-width);
    margin: var(--space-md) auto 0;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.cookie-setting-row {
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
}

.cookie-setting-row label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-setting-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-secondary);
}

.cookie-settings-panel .btn-cookie-accept {
    margin-top: var(--space-md);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
    position: fixed;
    bottom: 100px;
    left: var(--space-xl);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    pointer-events: none;
}

.toast {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-light);
    animation: toastIn 0.5s var(--ease-spring) both;
    max-width: 340px;
}

.toast.toast-exit {
    animation: toastOut 0.4s var(--ease-out) both;
}

.toast-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(-40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastOut {
    to {
        opacity: 0;
        transform: translateX(-40px) scale(0.9);
    }
}

/* ============================================
   LEGAL PAGES SHARED STYLES
   ============================================ */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: calc(var(--header-height) + var(--space-3xl)) var(--space-xl) var(--space-4xl);
}

.legal-content .legal-inner {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.legal-content h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.legal-content .legal-date {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-lavender);
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.legal-content ul,
.legal-content ol {
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

.legal-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.legal-content ol li {
    list-style: decimal;
}

.legal-content a {
    color: var(--color-secondary-dark);
    text-decoration: underline;
}

.legal-content strong {
    color: var(--color-text);
    font-weight: 700;
}

.legal-content .contact-box {
    background: var(--color-lavender);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin: var(--space-xl) 0;
}

.legal-content .contact-box p {
    margin-bottom: var(--space-xs);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-large {
        grid-row: span 1;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        max-width: 100%;
        flex: 1 1 250px;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 247, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        z-index: 1000;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 12px 24px;
    }

    .nav-link.nav-cta {
        margin-left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-2xl);
        padding: var(--space-2xl) var(--space-lg);
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .hero-phone-frame {
        width: 220px;
        height: 300px;
    }

    .hero-app-icon {
        width: 120px;
        height: 120px;
        border-radius: 28px;
    }

    .floating-element {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery-thumbs {
        flex-wrap: wrap;
    }

    .gallery-thumb {
        width: 80px;
        height: 60px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
    }

    .section-container {
        padding: 0 var(--space-lg);
    }

    .toast-container {
        left: var(--space-md);
        right: var(--space-md);
    }

    .toast {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 36px;
        height: 2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .testimonial-card {
        padding: var(--space-lg);
        margin: 0 var(--space-sm);
    }

    .legal-content .legal-inner {
        padding: var(--space-xl);
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .ticker-content {
        animation: none;
    }
}

:focus-visible {
    outline: 3px solid var(--color-secondary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
