/* CSS Variables for Theming */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-surface: #1a1a1a;
    --bg-surface-hover: #202020;
    --border-primary: #2a2a2a;
    --border-secondary: #333333;
    --border-accent: #404040;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-primary: #FF5733;
    --accent-secondary: #E64A2E;
    --accent-glow: rgba(255, 87, 51, 0.3);
    --success: #10b981;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 4.5rem; /* Account for fixed nav */
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    will-change: opacity, transform;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-band-title {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer-title {
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
}

/* Layout */
.container, .nav-container, .section-container, .footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-container {
    padding: 0 1.5rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.85);
    border-bottom-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    min-height: 4rem;
    max-width: 1600px;
}

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

.brand-logo {
    height: 1.75rem;
    width: auto;
    display: block;
}

.brand-text {
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    line-height: 1;
    display: flex;
    align-items: center;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 101;
    position: relative;
}

.nav-toggle:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

.hamburger-line {
    width: 2rem;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.5rem, -0.5rem);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
        min-height: 4rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 100;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }
    
    .brand-text {
        font-size: 1.125rem;
    }
    
    .brand-logo {
        height: 1.5rem;
    }
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    line-height: 1;
    display: flex;
    align-items: center;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--transition-normal);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: inherit;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: var(--text-primary);
    border-color: var(--accent-primary);
}

.btn-primary:hover {
    background: var(--accent-secondary);
    border-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px -4px rgba(255, 87, 51, 0.4),
        var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.btn-secondary:hover {
    background: var(--bg-surface);
    border-color: var(--accent-primary);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('assets/Hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}


@keyframes streakScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(33.333%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 24px 40px;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
}

    .hero-background {
        background-size: cover;
        background-position: center;
        background-attachment: scroll; /* Better performance on mobile */
    }
    
    .hero-content {
        padding: 20px 24px;
        margin: 0 1rem;
        border-radius: 20px;
        backdrop-filter: blur(10px); /* Slightly less blur on mobile for performance */
        -webkit-backdrop-filter: blur(10px); /* Safari support */
    }
    
    .hero-headline {
        margin-bottom: 0.75rem;
        font-size: clamp(2rem, 10vw, 3.5rem); /* Better mobile scaling */
}

    .hero-subheading {
        font-size: 0.9375rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        margin-top: 0.75rem;
        color: rgba(255, 255, 255, 0.78);
        text-align: center;
    }
    
    .hero-scroll-indicator {
        bottom: 2rem;
        font-size: 0.6875rem;
}

    .scroll-arrow {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 18px 20px;
        border-radius: 18px;
        margin: 0 0.75rem;
    }

    .hero-headline {
        margin-bottom: 0.75rem;
        font-size: clamp(1.75rem, 12vw, 2.5rem);
    }
    
    .hero-subheading {
        font-size: 0.875rem;
        padding: 0 0.25rem;
    }
    
    .features-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .feature-card {
        padding: 1.25rem;
    }
    
    .section-container {
        padding: 0 0.75rem;
    }
}


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

.hero-accent {
    color: var(--accent-primary);
    font-weight: 400;
    display: block;
    margin-top: 0.1em;
}

.hero-subheading {
    font-size: clamp(1rem, 2vw, 1.125rem);
    margin: 0;
    margin-top: 0.75rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
    text-align: center;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.7), 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    will-change: opacity, transform;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-arrow {
    color: var(--text-secondary);
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-indicator,
    .scroll-arrow {
        animation: none;
    }
}



/* Hero Background Animation */


@media (prefers-reduced-motion: reduce) {
    .hero-bg {
        animation: none;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
    z-index: 1;
}

.features::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(
        105deg,
        transparent 0px,
        transparent 80px,
        rgba(255, 87, 51, 0.18) 80px,
        rgba(255, 87, 51, 0.18) 81px,
        transparent 81px,
        transparent 200px,
        rgba(255, 87, 51, 0.16) 200px,
        rgba(255, 87, 51, 0.16) 201px,
        transparent 201px,
        transparent 350px,
        rgba(255, 87, 51, 0.14) 350px,
        rgba(255, 87, 51, 0.14) 351px,
        transparent 351px,
        transparent 500px
    );
    animation: streakScroll 35s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.features .section-container {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .features::after {
        animation: none;
        transform: none;
        left: 0;
        width: 100%;
    }
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .feature-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .card-description {
        font-size: 0.8125rem;
        margin-top: 16px;
        line-height: 1.5;
    }
    
    .card-link {
        right: 1rem;
        bottom: 1rem;
        font-size: 1.125rem;
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .btn {
        min-height: 44px; /* Touch target size */
        padding: 0.75rem 1.25rem;
    }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    will-change: transform, box-shadow;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 87, 51, 0.3);
    box-shadow:
        0 15px 35px -8px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(255, 87, 51, 0.15);
    background: rgba(255, 255, 255, 0.02);
}

.feature-card:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

.card-icon {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 1.25rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(47%) sepia(100%) saturate(1000%) hue-rotate(0deg) brightness(100%);
    transition: all var(--transition-normal);
}

.feature-card:hover .card-icon {
    color: var(--accent-primary);
    transform: scale(1.1);
    opacity: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .card-icon-img {
    filter: brightness(0) saturate(100%) invert(47%) sepia(100%) saturate(1000%) hue-rotate(6deg) brightness(100%);
}

.card-title {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.875);
}

.card-description {
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 0.9375rem;
    line-height: 1.55;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
}

.card-link {
    color: var(--accent-primary);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    position: absolute;
    right: 1.5rem;
    bottom: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Style for the arrow icon (→) following the link text */
.card-link .card-link-arrow {
    font-size: 1.05em;
    margin-left: 0.1em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-link:hover .card-link-arrow {
    transform: translateX(4px);
}

.card-link:hover {
    color: var(--accent-secondary);
    transform: translateX(4px);
}

.card-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-primary);
    transition: width var(--transition-normal);
}

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

/* Feature Band */
.feature-band {
    padding: 6rem 0;
    background: var(--bg-primary);
    position: relative;
}

.feature-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}

.feature-band-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .feature-band-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .feature-band-item {
        margin-bottom: 2rem;
    }
    
    .feature-band-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.75rem;
    }
    
    .feature-band-text {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .metrics-row {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .metric-value {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
        line-height: 1.2;
    }
    
    .metric-label {
        font-size: 0.875rem;
        margin-top: 0.5rem;
    }
}

.feature-band-item {
    text-align: center;
}

.feature-band-divider {
    display: none;
}

@media (min-width: 768px) {
    .feature-band-divider {
        display: block;
        width: 1px;
        height: 100%;
        background: var(--border-primary);
        margin: 0 auto;
    }
}

.feature-band-title {
    margin-bottom: 1rem;
    font-weight: 400;
    font-size: 1.125rem;
    letter-spacing: -0.01em;
}

.feature-band-text {
    font-size: 0.9375rem;
    line-height: 1.6;
    font-weight: 300;
    color: var(--text-secondary);
}

/* Metrics Row */
.metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .metrics-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.metric-value {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.metric-value:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px rgba(255, 87, 51, 0.5);
}

.metric-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* FAQ Section */
.faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-primary), transparent);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 0;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: var(--accent-glow);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--accent-primary);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 1.5rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
    font-family: inherit;
    letter-spacing: -0.01em;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-primary);
}

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

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9375rem;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    margin: 0;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .faq-question {
        font-size: 1rem;
        padding: 1.25rem 1.5rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }
    
    .faq-icon {
        min-width: 20px;
        min-height: 20px;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: repeating-linear-gradient(
        105deg,
        transparent 0px,
        transparent 80px,
        rgba(255, 87, 51, 0.18) 80px,
        rgba(255, 87, 51, 0.18) 81px,
        transparent 81px,
        transparent 200px,
        rgba(255, 87, 51, 0.16) 200px,
        rgba(255, 87, 51, 0.16) 201px,
        transparent 201px,
        transparent 350px,
        rgba(255, 87, 51, 0.14) 350px,
        rgba(255, 87, 51, 0.14) 351px,
        transparent 351px,
        transparent 500px
    );
    animation: streakScroll 35s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

.testimonials .section-container {
    position: relative;
    z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
    .testimonials::after {
        animation: none;
        transform: none;
        left: 0;
        width: 100%;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 30px -8px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 87, 51, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 3px solid var(--accent-primary);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testimonial-text {
    font-style: normal;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    font-weight: 300;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 400;
    color: var(--text-primary);
    font-size: 1rem;
}

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

/* Call-to-Action Boxes */
.cta-boxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .cta-boxes {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

.cta-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 87, 51, 0.2);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 10px 30px -8px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(255, 87, 51, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-box:hover {
    border-color: rgba(255, 87, 51, 0.4);
    box-shadow: 
        0 15px 40px -8px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 87, 51, 0.15);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.025);
}

.cta-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.cta-features {
    list-style: none;
    padding: 0;
    margin: 0 auto 2rem auto;
    text-align: left;
    max-width: 400px;
}

.cta-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-icon {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-amount {
    margin-bottom: 2rem;
}

.price {
    font-size: 2.25rem;
    font-weight: 300;
    color: var(--text-primary);
    display: block;
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    display: block;
    margin-top: 0.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    font-size: 1rem;
    padding: 1rem 2.5rem;
    min-width: 180px;
}

@media (max-width: 768px) {
    .cta-boxes {
        margin-top: 3rem;
        gap: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.25rem;
    }
    
    .cta-features {
        margin-bottom: 1.5rem;
    }
    
    .cta-features li {
        font-size: 0.9375rem;
        padding: 0.625rem 0;
        line-height: 1.6;
    }
    
    .cta-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .cta-button {
        width: 100%;
        min-width: auto;
        min-height: 44px;
    }
    
    .features {
        padding: 3rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        margin-bottom: 2rem;
        line-height: 1.2;
    }
    
    .feature-band {
        padding: 4rem 0;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .section-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2.5rem;
    }
    
    .features {
        padding: 4rem 0;
    }
    
    .feature-band {
        padding: 4rem 0;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq {
        padding: 4rem 0;
    }
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding: 2.5rem 0;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color var(--transition-fast);
}

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

.footer-copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

@media (min-width: 640px) {
    .footer-links {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-secondary);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    margin: 2rem;
    box-shadow: var(--shadow-xl);
    animation: modalSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 1rem;
        max-height: 90vh;
        border-radius: 1rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-section h3 {
        font-size: 1.25rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .modal-section p,
    .modal-section li {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .modal-close {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 4rem;
        height: 4rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
    }
    
    .testimonial-author {
        font-size: 0.875rem;
    }
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
    background: var(--bg-surface-hover);
}

.modal-body {
    padding: 2rem;
}

.modal-section {
    display: none;
}

.modal-section h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.modal-section ul {
    list-style: none;
    padding: 0;
}

.modal-section li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.modal-section li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

/* Focus styles */
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .nav, .modal {
        display: none !important;
    }
}
