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

/* Mobile-First Optimizations */
html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
    overflow-x: clip;
    width: 100%;
}

body {
    overflow-x: clip;
    width: 100%;
    position: relative;
}

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

/* Better touch targets for mobile */
button,
a,
input,
select,
textarea {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

:root {
    /* Colors - Dark App Theme */
    --primary: #00e5ff;
    --primary-dark: #00b3cc;
    --primary-light: #66efff;

    --accent: #00e5ff;
    --accent-hover: #00b3cc;

    --bg: #1a1a2e;
    --bg-secondary: #20203a;

    --text: #f0f0f0;
    --text-secondary: #b0b0d0;

    --border: #3a3a5a;
    --white: #ffffff;

    --panel-bg: #20203a;
    --panel-border: #3a3a5a;
    --dark-hover: rgba(0, 229, 255, 0.1);
    --dark-active: rgba(0, 229, 255, 0.2);

    /* Spacing */
    --container-width: 1400px;
    --section-padding: 4rem 1.5rem;

    /* Typography */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.headline-hero {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
}

.headline-section {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.body-text {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    line-height: 1.8;
    color: var(--text-secondary);
}

.mb-medium {
    margin-bottom: 1.5rem;
}

.mb-large {
    margin-bottom: 2.5rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-dark);
    background: rgba(0, 229, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.accent {
    color: var(--accent);
}

.block {
    display: block;
}

.center {
    text-align: center;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===================================
   PREMIUM GLASS CARDS
   =================================== */
.glass-card {
    background: rgba(32, 32, 58, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 1.5rem;
    border: 1px solid rgba(32, 32, 58, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(32, 32, 58, 0.9);
    padding: 2rem;
    transition: all 0.4s ease;
}

.glass-card-lg {
    background: rgba(32, 32, 58, 0.7);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-radius: 2rem;
    border: 1px solid rgba(32, 32, 58, 0.9);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 #20203a;
    padding: 2rem;
    transition: all 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(32, 32, 58, 0.9);
    border-color: var(--primary-light);
}

/* ===================================
   BUTTONS
   =================================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 229, 255, 0.4), inset 0 1px 0 rgba(32, 32, 58, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 229, 255, 0.5), inset 0 1px 0 rgba(32, 32, 58, 0.2);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

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

.btn-primary.full-width {
    width: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(32, 32, 58, 0.5);
    backdrop-filter: blur(10px);
    color: var(--text);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    background: rgba(32, 32, 58, 0.8);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container-width);
    z-index: 1000;
    background: rgba(32, 32, 58, 0.7);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(32, 32, 58, 0.8);
    border-radius: 1.5rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.nav-container {
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.4);
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.75rem;
    height: 2px;
    background: var(--text);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 6rem;
    left: 1rem;
    right: 1rem;
    background: rgba(32, 32, 58, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(32, 32, 58, 0.8);
    border-radius: 1.5rem;
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-menu a:hover {
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-dark);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    padding: 6rem 0 4rem;
    position: relative;
    overflow: visible;
}

/* Dynamic background blobs for extra premium feel */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero::before {
    top: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
}

.hero::after {
    bottom: -10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-headline-card {
    padding: 2.5rem;
}

.hero-subheadline-card {
    padding: 2rem 2.5rem;
}

.hero-subheadline {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.mockup-container {
    padding: 0;
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
    border: 8px solid rgba(32, 32, 58, 0.6);
}

.mockup-container:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===================================
   STATS SECTION
   =================================== */
.stats {
    padding: 3rem 1.5rem;
    position: relative;
    z-index: 10;
    margin-top: -5rem;
    /* Pull up to overlap hero slightly */
}

.stats-glass-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(32, 32, 58, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(32, 32, 58, 0.9);
    border-radius: 2rem;
    padding: 2.5rem 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: rgba(0, 229, 255, 0.2);
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg), var(--bg-secondary));
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2.5rem 2rem;
}

.benefit-icon-wrapper {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 229, 255, 0.2) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--primary-dark);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* ===================================
   FRICTION REMOVAL SECTION
   =================================== */
.friction-removal {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, var(--bg), var(--bg-secondary));
}

/* ===================================
   HOW IT WORKS (STEPS)
   =================================== */
.how-it-works {
    padding: var(--section-padding);
}

.pattern-bg {
    background-image: radial-gradient(rgba(0, 229, 255, 0.1) 2px, transparent 2px);
    background-size: 40px 40px;
}

.steps-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.steps-path {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom,
            rgba(0, 229, 255, 0.1) 0%,
            var(--primary) 50%,
            rgba(0, 229, 255, 0.1) 100%);
    transform: translateX(-50%);
    border-radius: 4px;
}

.step-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 3rem;
    width: 100%;
}

.step-row.right-align {
    justify-content: flex-end;
}

.step-card {
    width: 45%;
    position: relative;
    padding: 2.5rem;
}

.step-number-badge {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 0 0 8px var(--bg);
    z-index: 2;
}

.step-row:not(.right-align) .step-number-badge {
    right: -1.5rem;
    transform: translate(50%, -50%);
}

.step-row.right-align .step-number-badge {
    left: -1.5rem;
    transform: translate(-50%, -50%);
}

.step-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

/* ===================================
   SPLIT SECTIONS (WHY CHOOSE US)
   =================================== */
.why-choose-us,
.security-legal,
.everyone-deserves {
    padding: var(--section-padding);
}

.split-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.split-content.reverse-on-desktop {
    flex-direction: row-reverse;
}

.split-image-container {
    flex: 1;
    position: relative;
}

.mt-large {
    margin-top: 2rem;
}

.split-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: var(--primary-light);
    border-radius: 2rem;
    z-index: -1;
    opacity: 0.2;
}

.rounded-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
    border: 4px solid rgba(32, 32, 58, 0.8);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.split-text-container {
    flex: 1;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    font-family: var(--font-display);
    background: rgba(32, 32, 58, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(32, 32, 58, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(5px);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.feature-list strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.feature-list span {
    font-size: 0.95rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--text-secondary);
}



/* ===================================
   LIQUID BACKGROUND
   =================================== */
.liquid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.liquid-shape {
    position: absolute;
    filter: blur(60px);
    opacity: 0.5;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out alternate;
}

.shape-1 {
    top: 20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, transparent 70%);
    animation-delay: 0s;
}

.shape-2 {
    top: 60%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 179, 204, 0.15) 0%, transparent 70%);
    animation-delay: -5s;
}

.shape-3 {
    top: 80%;
    left: 20%;
    width: 30vw;
    height: 30vw;
    background: radial-gradient(circle, rgba(102, 239, 255, 0.2) 0%, transparent 70%);
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
    }
}

/* ===================================
   PRICING
   =================================== */
.pricing {
    padding: var(--section-padding);
}

.pricing-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    text-align: center;
    position: relative;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.pricing-card.prominent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 2rem;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent);
    color: var(--text);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.amount {
    font-size: 4.5rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1;
}

.period {
    color: var(--text-secondary);
    font-weight: 500;
    margin-left: 0.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2.5rem;
    background: rgba(32, 32, 58, 0.5);
    padding: 2rem;
    border-radius: 1.5rem;
}

.pricing-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.pricing-features i {
    color: var(--primary);
    font-size: 1.25rem;
}

.pricing-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===================================
   TRUST BADGES BANNER
   =================================== */
.trust-badges-banner {
    padding: 3.5rem 0;
    background: var(--primary-dark);
    color: var(--white);
}

.banner-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    background: rgba(32, 32, 58, 0.1);
    border: 1px solid rgba(32, 32, 58, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem 4rem;
    border-radius: 1.5rem;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
}

.banner-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.banner-separator {
    width: 2px;
    height: 40px;
    background: rgba(32, 32, 58, 0.2);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    cursor: pointer;
    padding: 1.25rem 1.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-toggle,
.faq-toggle-active {
    font-size: 1.25rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-toggle-active {
    display: none;
}

.faq-item.active .faq-toggle {
    display: none;
}

.faq-item.active .faq-toggle-active {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding-top: 1rem;
    color: var(--text-secondary);
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    margin-top: 1rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 4rem 1.5rem 2rem;
    background: linear-gradient(to bottom, var(--bg-secondary), var(--bg));
}

.glass-footer {
    background: rgba(32, 32, 58, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(32, 32, 58, 0.8);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-brand .logo-text {
    font-size: 1.75rem;
}

.footer-tagline {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.social-links a {
    width: 2.75rem;
    height: 2.75rem;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem !important;
    opacity: 0.7;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet Landscape - 1024px */
@media (max-width: 1024px) {
    :root {
        --section-padding: 3.5rem 1.5rem;
    }

    .nav-links,
    .nav-container .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .split-content {
        flex-direction: column;
        gap: 3rem;
    }

    .split-content.reverse-on-desktop {
        flex-direction: column;
    }

    .split-image-container,
    .split-text-container {
        max-width: 100%;
    }



    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    /* Better touch targets */
    .btn-primary,
    .btn-ghost {
        min-height: 48px;
        padding: 0.875rem 1.75rem;
    }
}

/* Tablet Portrait - 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* Navigation */
    .nav {
        top: 0.5rem;
        width: calc(100% - 1rem);
    }

    .nav-container {
        padding: 0.5rem 1rem;
    }

    .logo-text {
        font-size: 1.15rem;
    }

    .logo-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }

    /* Hero Section */
    .headline-hero {
        font-size: clamp(1.75rem, 8vw, 3.5rem);
        line-height: 1.15;
    }

    .hero {
        padding: 5rem 0 2.5rem;
        overflow: hidden;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

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

    .hero-visual {
        order: -1;
        max-width: 100%;
        transform: none;
    }

    .mockup-container {
        transform: none;
        border-width: 4px;
    }

    .mockup-img {
        width: 100%;
        height: auto;
    }

    .hero-headline-card,
    .hero-subheadline-card {
        padding: 1.25rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .hero-cta {
        gap: 0.875rem;
        flex-direction: column;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    /* Stats Section */
    .stats {
        margin-top: -1.5rem;
        padding: var(--section-padding);
    }

    .stats-glass-banner {
        padding: 4rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    /* Benefits Grid */
    .benefit-card {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Steps Section */
    .steps-container {
        padding-left: 1.5rem;
        margin-top: 2.5rem;
    }

    .steps-path {
        left: 0;
    }

    .step-row,
    .step-row.right-align {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 2rem;
    }

    .step-card {
        width: 100%;
        padding: 1.25rem;
    }

    .step-number-badge {
        left: 0;
        top: 0;
        transform: translate(0, -50%);
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.9rem;
    }

    .step-row:not(.right-align) .step-number-badge,
    .step-row.right-align .step-number-badge {
        left: 0;
        transform: translate(0, -50%);
    }

    .step-icon {
        font-size: 2.5rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    /* Pricing Section */
    .pricing-card {
        padding: 1.5rem 1rem;
    }

    .pricing-price .amount {
        font-size: 3.5rem;
    }

    /* Trust Badges Banner */
    .banner-glass {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .banner-separator {
        width: 100%;
        height: 1px;
    }

    .banner-item {
        font-size: 0.95rem;
    }

    .banner-item i {
        font-size: 1.75rem;
    }

    /* FAQ Section */
    .faq-item {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo,
    .social-links,
    .footer-contact p {
        justify-content: center;
        flex-wrap: wrap;
    }

    .glass-footer {
        padding: 1.5rem 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Section Padding Reductions */
    .pricing,
    .faq,
    .why-choose-us,
    .security-legal,
    .everyone-deserves {
        padding: var(--section-padding);
    }

    .footer {
        padding: 4rem 1rem 2rem;
    }

    /* Images */
    .mockup-img,
    .rounded-image {
        width: 100%;
        height: auto;
    }

    /* Section Headers */
    .headline-section {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .section-label {
        font-size: 0.875rem;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    :root {
        --section-padding: 2.5rem 1rem;
    }

    /* Typography */
    .headline-hero {
        font-size: 1.75rem;
        line-height: 1.15;
    }

    .headline-section {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .body-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Navigation */
    .nav-container {
        padding: 0.5rem 0.75rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 1.1rem;
    }

    /* Hero Section */
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-headline-card,
    .hero-subheadline-card {
        padding: 1rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        width: 100%;
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Stats */
    .stats-glass-banner {
        padding: 1.5rem 1rem;
        gap: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Benefits */
    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon-wrapper {
        width: 3.5rem;
        height: 3.5rem;
    }

    .benefit-icon {
        font-size: 1.75rem;
    }

    .benefit-card h3 {
        font-size: 1.1rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* Steps */
    .steps-container {
        padding-left: 1rem;
    }

    .step-card {
        padding: 1rem;
    }

    .step-icon {
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    /* Pricing */
    .pricing,
    .faq {
        padding: 2rem 1rem;
    }

    .pricing-card {
        padding: 1.25rem 1rem;
    }



    .footer {
        padding: 3rem 1rem 1rem;
    }

    .pricing-price .amount {
        font-size: 3rem;
    }

    .pricing-price .currency {
        font-size: 1.5rem;
    }

    .pricing-price .period {
        font-size: 1rem;
    }

    .pricing-features ul li {
        font-size: 0.9rem;
    }

    /* Buttons */
    .btn-primary.large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .btn-primary,
    .btn-ghost {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Trust Banner */
    .banner-glass {
        padding: 1.5rem 0.75rem;
        gap: 1.25rem;
    }

    .banner-item {
        font-size: 0.875rem;
    }

    .banner-item i {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-item {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    /* Feature List */
    .feature-list li {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }



    /* Footer */
    .glass-footer {
        padding: 1.25rem 0.875rem;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: center;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 0.9rem;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 0.875rem;
    }

    .social-links a {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.25rem;
    }

    .footer-bottom {
        padding: 1.25rem 1rem;
        font-size: 0.8rem;
    }

    /* Glass Cards */
    .glass-card {
        padding: 1rem;
    }

    .glass-card-lg {
        padding: 1.25rem;
    }

    /* Section Spacing */


    .section-header {
        margin-bottom: 2rem;
    }

    /* Mobile Menu */
    .mobile-menu {
        padding: 1.5rem 1rem;
    }

    .mobile-menu a {
        padding: 0.875rem;
        font-size: 1rem;
    }
}

/* Extra Small Mobile - 360px */
@media (max-width: 360px) {
    .headline-hero {
        font-size: 1.5rem;
    }

    .headline-section {
        font-size: 1.35rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-ghost {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

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

/* Landscape Mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        padding: 4rem 0 2rem;
    }

    .hero-visual {
        max-width: 400px;
    }

    .stats-glass-banner {
        flex-direction: row;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 1px;
        height: 3rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .mockup-img,
    .rounded-image {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

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

    .liquid-shape {
        animation: none;
    }
}

/* Dark Mode Support (Optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed in future */
}