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

:root {
    /* Color Palette - Prismatic Rainbow with Chrome Accents */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --blue-primary: #0070f3;
    --cyan-primary: #00d4ff;
    --green-primary: #00e0a1;
    --yellow-primary: #f5d600;
    --orange-primary: #ff6b35;
    --red-primary: #ff0080;

    /* Chrome/Silver Accents */
    --chrome-light: #e8e8e8;
    --chrome-mid: #c0c0c0;
    --chrome-dark: #888888;
    --chrome-darker: #606060;

    --text-primary: #ffffff;
    --text-secondary: #a8a8b8;
    --text-muted: #6b6b7b;

    /* Glass effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    /* Background fills entire viewport including safe areas */
    background: var(--bg-dark);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Ensure content doesn't go into safe areas but background extends */
    min-height: 100vh;
    min-height: 100dvh;
}

/* SF Pro Rounded for headings */
h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.feature-title,
.step-title,
.download-title,
.logo-text,
.nav-link,
.hero-badge,
.hero-description,
.section-description,
.step-number,
.nav-logo,
.btn,
.pricing-title,
.pricing-badge,
.privacy-title {
    font-family: 'SF Pro Rounded', 'SF Pro Display', -apple-system, BlinkMacSystemFont, system-ui, 'Segoe UI', 'Roboto', 'Helvetica Neue', 'Arial', sans-serif;
    letter-spacing: -0.011em;
}

h1,
h2,
h3,
h4,
h5,
h6,
.hero-title,
.section-title,
.feature-title,
.step-title,
.download-title {
    font-weight: 700;
    letter-spacing: -0.022em;
}

/* ============================================
   BACKGROUND ANIMATIONS
   ============================================ */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    background:
        radial-gradient(ellipse at left top, rgba(0, 112, 243, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at center, rgba(0, 224, 161, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at right center, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at right top, rgba(255, 0, 128, 0.12) 0%, transparent 50%);
    z-index: -2;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Mesh Grid Pattern */
.bg-shapes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    z-index: 2;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--blue-primary), var(--cyan-primary));
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: linear-gradient(225deg, var(--orange-primary), var(--red-primary));
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--green-primary), var(--yellow-primary));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   GLASS EFFECT
   ============================================ */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
}

.logo-text {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Mobile hamburger menu button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.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);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5f5f5, #ffffff, #f5f5f5);
    box-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-cta {
    padding: 0.4rem 1.25rem;
    background: linear-gradient(135deg, #f5f5f5, #d0d0d0, #e8e8e8);
    border-radius: var(--radius-lg);
    color: #000000;
    box-shadow:
        0 1px 3px rgba(255, 255, 255, 0.5) inset,
        0 10px 30px rgba(255, 255, 255, 0.15),
        0 1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.nav-link-cta:hover::before {
    left: 100%;
}

.nav-link-cta:hover {
    color: #000000;
    transform: translateY(-3px);
    box-shadow:
        0 2px 5px rgba(255, 255, 255, 0.6) inset,
        0 15px 40px rgba(255, 255, 255, 0.25),
        0 1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #e0e0e0, #f0f0f0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #ffffff, #d0d0d0);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
    box-shadow:
        0 1px 2px rgba(255, 255, 255, 0.6) inset,
        0 2px 6px rgba(255, 255, 255, 0.3);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.025em;
}

.gradient-text {
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.025em;
    position: relative;
}

@keyframes chromeShine {

    0%,
    100% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 0% 100%;
    }
}

@keyframes gradientFlow {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.6s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #f5f5f5, #d0d0d0, #e8e8e8);
    color: #000000;
    box-shadow:
        0 1px 3px rgba(255, 255, 255, 0.5) inset,
        0 10px 30px rgba(255, 255, 255, 0.15),
        0 1px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 2px 5px rgba(255, 255, 255, 0.6) inset,
        0 15px 40px rgba(255, 255, 255, 0.25),
        0 1px 0 rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, #e0e0e0, #f0f0f0);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-large svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.floating-bubble {
    animation: floatBubble 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(255, 255, 255, 0.2));
}

.bubble-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--radius-xl);
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-xl) 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.025em;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius-xl);
    cursor: default;
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.018em;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.step-reverse {
    direction: rtl;
}

.step-reverse>* {
    direction: ltr;
}

.step-visual {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    overflow: hidden;
}

.step-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
}

.step-content {
    position: relative;
}

.step-number {
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1rem;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
}

.step-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.022em;
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
}

.pricing-trial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.pricing-trial-badge svg {
    stroke: var(--chrome-light);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
}

.pricing-trial-badge strong {
    color: var(--text-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-featured {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f5f5f5, #d0d0d0, #e8e8e8);
    color: #000000;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-lg);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow:
        0 1px 2px rgba(255, 255, 255, 0.5) inset,
        0 4px 12px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pricing-feature svg {
    flex-shrink: 0;
    margin-top: 0.15rem;
    stroke: var(--chrome-light);
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
}

.pricing-feature strong {
    color: var(--text-primary);
}

/* ============================================
   PRIVACY SECTION
   ============================================ */
.privacy {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
}

.privacy-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.privacy-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.privacy-icon svg {
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

.privacy-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.025em;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.privacy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    text-align: left;
    margin-bottom: 2.5rem;
}

.privacy-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-feature svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke: var(--chrome-light);
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.3));
}

.privacy-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.privacy-feature p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.privacy-note {
    font-size: 1rem;
    color: var(--text-primary);
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin: 0;
}

/* ============================================
   DOWNLOAD DROPDOWN
   ============================================ */
.download-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    cursor: pointer;
}

.dropdown-trigger .dropdown-arrow {
    transition: transform var(--transition-fast);
}

.download-dropdown.active .dropdown-trigger .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 320px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-normal), transform var(--transition-normal);
    z-index: 100;
    padding: 0.5rem;
    overflow: hidden;
}

.dropdown-menu-up {
    top: auto;
    bottom: 100%;
    transform: translateX(-50%) translateY(-8px);
}

.download-dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(12px);
}

.download-dropdown.active .dropdown-menu-up {
    transform: translateX(-50%) translateY(-12px);
}

.dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    background: transparent;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    color: var(--text-primary) !important;
}

.dropdown-item:visited {
    color: var(--text-primary) !important;
}

.dropdown-item svg {
    flex-shrink: 0;
    stroke: var(--chrome-light);
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.2));
}

.dropdown-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary) !important;
}

.dropdown-item-desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Mobile adjustments for dropdown */
@media (max-width: 480px) {
    .dropdown-menu {
        min-width: 280px;
        left: 0;
        right: 0;
        transform: translateX(0) translateY(8px);
    }

    .download-dropdown.active .dropdown-menu {
        transform: translateX(0) translateY(12px);
    }

    .download-dropdown.active .dropdown-menu-up {
        transform: translateX(0) translateY(-12px);
    }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    border-radius: var(--radius-xl);
    padding: 1rem;
    overflow: hidden;
}

.gallery-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    display: block;
    margin-bottom: 1rem;
}

.gallery-caption {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
    padding: 0.5rem;
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */
.download {
    padding: var(--spacing-xl) 2rem;
}

.download-card {
    padding: 4rem 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif !important;
    letter-spacing: -0.025em;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
}

.download-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.download-note {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 2rem 2rem;
    margin-top: var(--spacing-xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-text {
    font-weight: 600;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #e8e8e8 25%,
            #a0a0a0 50%,
            #e8e8e8 75%,
            #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 100% 200%;
    animation: chromeShine 8s ease-in-out infinite;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--text-primary);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
    }

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

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

    .step {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-reverse {
        direction: ltr;
    }

    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 5rem 1.5rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid var(--glass-border);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        text-align: left;
    }

    .nav-link::after {
        display: none;
    }

    .nav-link-cta {
        margin-top: 1rem;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    /* Mobile menu overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }

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

    .hero {
        padding: 5rem 1rem 2rem;
    }

    section {
        padding: var(--spacing-lg) 1rem;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-trial-badge {
        font-size: 0.875rem;
        padding: 0.625rem 1.25rem;
    }

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

    .download-card {
        padding: 3rem 2rem;
    }

    .privacy-card {
        padding: 3rem 2rem;
    }

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

    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .step-number {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

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

    .privacy-card {
        padding: 2rem 1.5rem;
    }

    .privacy-features {
        gap: 1.5rem;
    }

    .pricing-trial-badge {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
    }
}

/* ============================================
   SMOOTH SCROLL ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--chrome-light);
    outline-offset: 4px;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* ============================================
   IMAGE LIGHTBOX MODAL
   ============================================ */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 30px 100px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.lightbox.active .lightbox-image {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close::before,
.lightbox-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

.lightbox-close::before {
    transform: rotate(45deg);
}

.lightbox-close::after {
    transform: rotate(-45deg);
}

/* Make gallery and step images clickable */
.gallery-img,
.step-img,
.bubble-img {
    cursor: zoom-in;
}