/* REGA - Focus Made Physical
   Version 1.1 | Dec 2025 */

:root {
    /* Brand Colors */
    --peach: #FFC4A8;
    --rose: #FF9EC7;
    --lavender: #CCB0FF;
    --accent-mint: #99D9BF;
    --dark: #000000;
    --light: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-600: #4B5563;
    --gray-800: #1F2937;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--peach) 0%, var(--rose) 50%, var(--lavender) 100%);
    --gradient-text: linear-gradient(to right, var(--rose), var(--lavender));
    
    /* Spacing */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3.5rem; /* Reduced from 4rem */
    --space-xl: 5rem;  /* Reduced from 6rem */
    
    /* Mobile spacing overrides */
    --space-mobile-sm: 0.75rem;
    --space-mobile-md: 1.5rem;
    --space-mobile-lg: 2rem;

    /* Typography */
    --font-main: 'Inter', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px; /* Base font size for mobile */
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    html {
        font-size: 16px; /* Prevent iOS zoom on input focus */
    }
    
    body {
        font-size: 16px; /* Ensure readable base size */
    }
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.text-center { text-align: center; }
.text-white { color: white; }
.bg-light { background-color: var(--gray-50); }
.bg-dark { background-color: var(--dark); }
.bg-gradient { background: var(--gradient-primary); }
.mb-large { margin-bottom: var(--space-md); }

@media (max-width: 768px) {
    .bg-dark .pricing-box {
        padding: 1.5rem !important;
        margin: 0 1rem !important;
    }
    
    .bg-dark .pricing-box div[style*="font-size: 3rem"] {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .bg-dark .pricing-box h3 {
        font-size: 1.25rem;
    }
    
    .bg-dark .pricing-box p {
        font-size: 0.95rem;
    }
    
    .bg-dark hr {
        margin: 1rem 0 !important;
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-height: 44px;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--dark);
    color: white;
}

.btn-secondary {
    background: white;
    color: var(--dark);
    border: 1px solid var(--gray-200);
    margin-left: 1rem;
}

.btn-white {
    background: white;
    color: var(--rose);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    min-height: 40px;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    min-height: 52px;
}

.btn-block {
    width: 100%;
}

@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .btn-sm {
        min-height: 44px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        min-height: 56px;
        font-size: 1.1rem;
    }
    
    .btn-secondary {
        margin-left: 0;
    }
}

/* Conversion: CTA Glow */
.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 196, 168, 0.4); 
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 30px rgba(255, 196, 168, 0.6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
}

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

/* Logo Styles */
.brand-logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.35rem;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        padding: 6px;
    }
    
    .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 1rem 0;
        border-bottom: 1px solid var(--gray-100);
        min-height: 48px;
        display: flex;
        align-items: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-links.active + .nav-cta,
    .nav-links.active ~ .nav-cta {
        display: block;
        width: calc(100% - 3rem);
        margin: 1rem 1.5rem 0;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    padding-bottom: var(--space-lg);
    position: relative;
    overflow: hidden;
}

/* Subtle parallax effect for hero on mobile */
@media (max-width: 768px) {
    .hero-visual {
        transform: translateZ(0);
        will-change: transform;
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--space-md);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    /* Mobile-first Hero: Ultra-compact */
    .hero {
        padding-top: 5rem;
        padding-bottom: 1.5rem;
        min-height: auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 8vw, 2.25rem);
        margin-bottom: 0.75rem;
        line-height: 1.2;
        padding: 0 1rem;
    }
    
    .hero-sub {
        font-size: 0.95rem;
        margin: 0 auto 1.25rem;
        padding: 0 1rem;
        line-height: 1.5;
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        min-height: 52px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .phone-mockup {
        margin: 1rem auto 0;
        width: 200px;
        height: 400px;
    }
}

/* Phone Mockup CSS - iPhone 16 Pro Style */
.phone-mockup {
    width: 280px;
    height: 605px; /* Adjusted aspect ratio ~19.5:9 */
    background: #1a1a1a;
    border-radius: 56px;
    padding: 0;
    box-shadow: 
        0 0 0 1px #333,
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 0.5px rgba(255, 255, 255, 0.1) inset;
    margin-left: auto;
    position: relative;
    border: 8px solid #1a1a1a;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    /* Do not hide overflow on parent, handle in child */
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 220px;
        height: 475px; /* Adjusted aspect ratio ~19.5:9 */
        border-radius: 44px;
        border: 6px solid #1a1a1a;
    }
    
    /* Optimize video section phone mockup */
    #how-it-works .phone-mockup {
        margin: 0 auto 2rem !important;
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #000;
    /* Ensure radius is perfectly concentric: Outer radius - Border width */
    border-radius: 46px; /* 56px - 8px = 48px, slightly tighter for perfect fit */
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Prevent sub-pixel bleeding */
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: -webkit-radial-gradient(white, black);
}

@media (max-width: 768px) {
    .phone-screen {
        border-radius: 36px; /* 44px - 6px = 38px */
    }
}

.phone-screen img,
.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: translateZ(0);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: visible;
}

/* Sections */
.section {
    padding: var(--space-lg) 0;
}

@media (max-width: 768px) {
    .section:last-of-type {
        padding-bottom: 6rem; /* Space for floating CTA */
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    /* Mobile-first: Aggressive spacing reduction */
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: clamp(1.5rem, 7vw, 1.875rem);
        margin-bottom: 0.5rem;
        padding: 0 1rem;
        line-height: 1.2;
    }
    
    .section-desc {
        font-size: 0.95rem;
        margin: 0 auto 1.5rem;
        padding: 0 1rem;
        line-height: 1.5;
    }
}

/* Trigger Flow System (Y-Layout) */
.trigger-flow-container {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
}

@media (max-width: 768px) {
    .trigger-flow-container {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }
    
    #how-it-works .section-title {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
    }
    
    #how-it-works .section-desc {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

.trigger-options {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 4rem;
    position: relative;
}

.trigger-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

@media (max-width: 768px) {
    .trigger-flow-container {
        margin: 2rem auto 0;
        padding: 0 1rem;
    }
    
    .trigger-card {
        padding: 1.5rem;
    }
    
    .trigger-card h3 {
        font-size: 1.1rem;
    }
    
    .trigger-card p {
        font-size: 0.9rem;
    }
}

.trigger-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--peach);
}

.trigger-card .icon-circle {
    margin: 0 auto 1.5rem;
    background: var(--gray-50);
    width: 70px;
    height: 70px;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.trigger-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.trigger-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--gray-600);
}

/* OR Divider */
.trigger-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    background: white;
    padding: 0.5rem;
}

.or-badge {
    background: var(--gray-100);
    color: var(--gray-600);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 0.5rem 0.8rem;
    border-radius: 50%;
    border: 4px solid white; /* Creates gap effect */
}

/* Connector Lines */
.flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 60px;
    position: relative;
    z-index: 1;
}

.vertical-line {
    width: 2px;
    height: 100%;
    background: var(--gray-200);
}

.arrow-down {
    background: white;
    color: var(--gray-400);
    padding: 0.25rem;
    margin-top: -10px; /* Overlap line end */
    font-size: 1.2rem;
}

/* Result Card */
.result-card {
    max-width: 500px;
    margin: 0 auto;
    background: var(--dark);
    color: white;
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.result-card .icon-circle {
    background: rgba(255,255,255,0.1);
    color: white;
    margin: 0 auto 1rem;
    width: 60px;
    height: 60px;
    font-size: 1.75rem;
    box-shadow: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    color: white;
}

.result-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Connecting Lines Logic */
.trigger-options::after {
    content: '';
    position: absolute;
    bottom: -30px; /* Where the Y joins */
    left: 25%;
    right: 25%;
    height: 30px;
    border-bottom: 2px solid var(--gray-200);
    border-left: 2px solid var(--gray-200);
    border-right: 2px solid var(--gray-200);
    border-radius: 0 0 20px 20px; /* Rounded bottom corners */
    z-index: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .trigger-options {
        flex-direction: column;
        gap: 2rem;
    }

    .trigger-divider {
        top: 48%; /* Adjust for spacing */
    }
    
    .trigger-options::after {
        display: none; /* Hide complex lines on mobile */
    }

    /* Simple vertical flow for mobile */
    .flow-connector {
        height: 30px;
    }
    
    .or-badge {
        box-shadow: 0 0 0 10px white; /* Clear space around OR */
    }
    
    .result-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .result-card h3 {
        font-size: 1.1rem;
    }
    
    .result-card p {
        font-size: 0.9rem;
    }
}

/* Remove Floating Black Dot (Dynamic Island Pseudo-element) */
.phone-mockup::after {
    display: none !important;
}

/* Feature Rows (Zig Zag) */
.features-container {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 4rem;
}

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

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse .feature-content {
    direction: ltr;
}

.feature-content {
    padding: 2rem;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-visual {
    display: flex;
    justify-content: center;
}

.feature-visual .phone-mockup {
    margin: 0;
    transform: rotate(-5deg);
    transition: transform 0.5s ease;
}

.feature-row:hover .feature-visual .phone-mockup {
    transform: rotate(0deg) scale(1.02);
}

.feature-row.reverse .feature-visual .phone-mockup {
    transform: rotate(5deg);
}

/* Desktop/Mobile Visibility Utilities */
.desktop-only {
    display: block !important;
}

.mobile-only {
    display: none !important;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block !important;
    }
}

/* Horizontal Carousel System */
.carousel-wrapper {
    position: relative;
    width: 100%;
    margin: 2rem 0;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
    /* Show partial next slide */
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y pan-x pinch-zoom;
}

/* Single-item carousel - disable carousel behavior */
.carousel-container.single-item {
    touch-action: auto;
    padding-right: 0;
}

.carousel-container.single-item .carousel-track {
    cursor: default;
    user-select: auto;
    -webkit-user-select: auto;
    transform: none !important;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    gap: 1.5rem;
    user-select: none;
    -webkit-user-select: none;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {
    flex: 0 0 calc(85% - 0.75rem); /* 85% width with gap, showing partial next */
    min-width: 0;
    scroll-snap-align: start;
    opacity: 0.7;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.95);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Feature Carousel Cards */
.carousel-feature-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.carousel-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active .carousel-feature-card::before {
    transform: scaleX(1);
}

.carousel-slide.active .carousel-feature-card {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

.carousel-feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.carousel-feature-visual .phone-mockup {
    width: 200px;
    height: 432px;
    transform: rotate(0deg) !important;
    margin: 0;
    border-radius: 40px;
    border: 6px solid #1a1a1a;
    box-sizing: border-box;
}

.carousel-feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.carousel-feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
    line-height: 1.3;
}

.carousel-feature-content p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    /* Ensure text is fully visible */
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
}

.carousel-indicator.active {
    width: 24px;
    height: 8px;
    border-radius: 4px;
    background: var(--dark);
}

.carousel-indicator:hover {
    background: var(--gray-400);
}

/* FAQ Carousel */
#faq-carousel .carousel-slide {
    flex: 0 0 calc(90% - 0.75rem);
}

#faq-carousel .faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    height: 100%;
    min-height: 150px;
    display: flex;
    flex-direction: column;
}

#faq-carousel .faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

#faq-carousel .faq-item p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

/* Audience Carousel */
#audience-carousel .carousel-slide {
    flex: 0 0 calc(90% - 0.75rem);
}

#audience-carousel .audience-card {
    height: 100%;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active #audience-carousel .audience-card {
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.02);
}

#audience-carousel .audience-card ul {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

#audience-carousel .audience-card ul li {
    overflow: visible;
    text-overflow: unset;
    white-space: normal;
}

@media (max-width: 768px) {
    .features-container {
        gap: 2.5rem;
        margin-top: 1.5rem;
    }
    
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 1.5rem;
    }
    
    .feature-content {
        padding: 0.75rem;
    }
    
    .feature-content h3 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .feature-content p {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .feature-visual .phone-mockup {
        transform: rotate(0deg) !important;
        width: 220px;
        height: 475px;
        border-radius: 44px;
        border: 6px solid #1a1a1a;
        box-sizing: border-box;
    }
    
    /* Carousel adjustments for smaller screens */
    .carousel-slide {
        flex: 0 0 calc(90% - 0.75rem);
    }
    
    /* Ensure text is never clipped */
    .carousel-feature-content,
    .carousel-feature-content p,
    #faq-carousel .faq-item p,
    #audience-carousel .audience-card ul li {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    .carousel-feature-card {
        padding: 1.5rem 1.25rem;
    }
    
    .carousel-feature-visual .phone-mockup {
        width: 180px;
        height: 388px;
        border-radius: 36px;
        border: 5px solid #1a1a1a;
        box-sizing: border-box;
    }
    
    .carousel-feature-content h3 {
        font-size: 1.35rem;
    }
    
    .carousel-feature-content p {
        font-size: 0.95rem;
    }
}


/* Science Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.split-content p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

/* Synapse Visual (Science Section) */
.science-visual {
    height: 400px;
    background: var(--gray-50);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.synapse-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.synapse-part {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s ease;
}

.physical-trigger {
    left: 20px;
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: 12px;
    animation: moveRight 3s infinite ease-in-out;
}

.mental-state {
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--peach);
    border-radius: 50%;
    animation: moveLeft 3s infinite ease-in-out;
}

.synapse-connection-flash {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 20px 10px rgba(255, 196, 168, 0.8);
    animation: flash 3s infinite ease-in-out;
}

@keyframes moveRight {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(30px, -50%); }
}

@keyframes moveLeft {
    0%, 100% { transform: translate(0, -50%); }
    50% { transform: translate(-30px, -50%); }
}

@keyframes flash {
    0%, 40%, 60%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.5); }
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .split-content h2 {
        font-size: clamp(1.5rem, 6vw, 1.75rem);
        margin-bottom: 0.75rem;
    }
    
    .split-content p {
        font-size: 0.95rem;
        margin-bottom: 0.875rem;
        line-height: 1.6;
    }
    
    .science-visual {
        height: 220px;
    }
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 1px 2px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card .quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-800);
    margin-bottom: 1.5rem;
    flex: 1;
}

.testimonial-card .author {
    display: flex;
    flex-direction: column;
}

.testimonial-card .author-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-card .author-role {
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .testimonial-card .quote {
        font-size: 1rem;
    }
    
    #testimonials-carousel .carousel-slide {
        flex: 0 0 calc(85% - 0.75rem);
    }
}
.audience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.audience-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 1px 2px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .audience-card:active {
        transform: scale(0.98);
    }
}

.audience-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    color: var(--peach);
}

.audience-card ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.audience-card ul li::before {
    content: '•';
    color: var(--rose);
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 768px) {
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 1.25rem;
        padding: 0 1rem;
    }
    
    .audience-card {
        padding: 1.25rem 1rem;
    }
    
    .audience-card h3 {
        font-size: 1.05rem;
        margin-bottom: 0.875rem;
    }
    
    .audience-card ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        line-height: 1.5;
    }
    
    /* Audience carousel mobile */
    #audience-carousel .carousel-slide {
        flex: 0 0 calc(92% - 0.5rem);
    }
    
    #audience-carousel .audience-card {
        padding: 1.25rem 1rem;
        min-height: 220px;
    }
}

/* Download & Pricing */
.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem;
    background: white;
    border-radius: 24px;
    box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    /* Static on touch to avoid carousel confusion */
}

/* Hover effects only for desktop/mouse - disable "loading bar" on touch */
@media (hover: hover) {
    .pricing-box {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-box:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 20px 25px -5px rgba(0, 0, 0, 0.1),
            0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }
    
    .pricing-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .pricing-box:hover::before {
        transform: scaleX(1);
    }
}

/* Remove the pseudo-element entirely on touch devices to prevent confusion */
@media (hover: none) {
    .pricing-box::before {
        display: none;
    }
    
    .pricing-box {
        transform: none !important;
        box-shadow: 
            0 10px 15px -3px rgba(0, 0, 0, 0.1),
            0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
    }
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-box:hover::before {
    transform: scaleX(1);
}

.pricing-box:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-premium {
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .pricing-box {
        padding: 1.75rem 1.25rem;
        margin: 0 1rem;
        border-radius: 20px;
    }
    
    .pricing-tier {
        font-size: 1.15rem;
        margin-bottom: 0.375rem;
    }
    
    .pricing-premium {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .pricing-box .btn-lg {
        min-height: 56px;
        font-size: 1.05rem;
    }
}

.ios-req {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Forms */
.form-container {
    max-width: 500px;
    margin: 0 auto;
}

.rega-form {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.rega-form.bordered {
    background: white;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.text-white .form-group label { color: rgba(255,255,255,0.9); }

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
    font-family: inherit;
    font-size: 1rem;
    min-height: 48px;
}

@media (max-width: 768px) {
    .form-container {
        padding: 0 1rem;
    }
    
    .rega-form {
        padding: 1.5rem 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group input, .form-group textarea, .form-group select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.875rem;
        min-height: 48px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--peach);
    box-shadow: 0 0 0 3px rgba(255, 196, 168, 0.2);
}

.form-message {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
    min-height: 1.5em;
}

.form-message.success { color: #10B981; }
.form-message.error { color: #EF4444; }
.text-white .form-message.success { color: #A7F3D0; }
.text-white .form-message.error { color: #FCA5A5; }

/* FAQ - Desktop Accordion - Premium Design */
.faq-accordion.desktop-only {
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

/* Mailing List Section */
#newsletter {
    padding-top: 0;
    margin-top: -2rem; /* Pull up to reduce gap */
}

@media (max-width: 768px) {
    #newsletter {
        padding-top: 0;
        margin-top: -1rem;
    }
    
    #newsletter .container {
        padding-top: 1rem;
    }
}

/* Floating Mobile CTA Bar */
.floating-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-cta-bar.hidden {
    transform: translateY(100%);
}

.floating-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--dark);
    color: white;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 30px rgba(255, 196, 168, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 56px;
    position: relative;
    overflow: hidden;
}

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

.floating-cta-btn:active::before {
    left: 100%;
}

.floating-cta-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15), 0 0 20px rgba(255, 196, 168, 0.2);
}

.floating-cta-btn {
    position: relative;
    overflow: hidden;
}

.floating-cta-btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.floating-cta-btn svg {
    flex-shrink: 0;
}

/* FAQ Accordion - Shared Styles */
.faq-accordion {
    margin-top: 1.5rem;
    padding: 0 1rem;
    padding-bottom: 5rem; /* Space for floating CTA */
}

.faq-accordion-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    box-shadow: 
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        0 1px 2px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Desktop-specific accordion styling - Premium Design */
@media (min-width: 769px) {
    .faq-accordion.desktop-only {
        margin-top: 4rem;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding: 0;
        padding-bottom: 0;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item {
        margin-bottom: 1.5rem;
        border-radius: 20px;
        border: 1px solid var(--gray-200);
        background: white;
        box-shadow: 
            0 1px 3px rgba(0, 0, 0, 0.08),
            0 1px 2px rgba(0, 0, 0, 0.04);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: visible;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 20px;
        background: linear-gradient(135deg, rgba(255, 196, 168, 0.03) 0%, rgba(204, 176, 255, 0.03) 100%);
        opacity: 0;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item:hover {
        transform: translateY(-4px);
        box-shadow: 
            0 20px 25px -5px rgba(0, 0, 0, 0.1),
            0 10px 10px -5px rgba(0, 0, 0, 0.04),
            0 0 0 1px rgba(255, 196, 168, 0.2);
        border-color: rgba(255, 196, 168, 0.4);
    }
    
    .faq-accordion.desktop-only .faq-accordion-item:hover::after {
        opacity: 1;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item.active {
        box-shadow: 
            0 20px 25px -5px rgba(0, 0, 0, 0.1),
            0 10px 10px -5px rgba(0, 0, 0, 0.04),
            0 0 0 1px rgba(255, 196, 168, 0.3);
        border-color: var(--peach);
        transform: translateY(-2px);
    }
    
    .faq-accordion.desktop-only .faq-accordion-item.active::after {
        opacity: 1;
    }
}

.faq-accordion-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-accordion-item.active::before {
    transform: scaleY(1);
}

/* Desktop accordion left border accent */
@media (min-width: 769px) {
    .faq-accordion.desktop-only .faq-accordion-item::before {
        width: 5px;
        border-radius: 20px 0 0 20px;
        background: var(--gradient-primary);
        box-shadow: 0 0 20px rgba(255, 196, 168, 0.4);
    }
}

.faq-accordion-item.active {
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border-color: var(--peach);
}

.faq-accordion-item:active {
    transform: scale(0.98);
}

.faq-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    min-height: 56px; /* Touch-friendly */
    transition: background-color 0.2s ease;
}

/* Desktop accordion header styling - Premium */
@media (min-width: 769px) {
    .faq-accordion.desktop-only .faq-accordion-header {
        padding: 2rem 2.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        min-height: auto;
        background: transparent;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }
    
    .faq-accordion.desktop-only .faq-accordion-header:hover {
        background: transparent;
        color: var(--dark);
    }
    
    .faq-accordion.desktop-only .faq-accordion-header:active {
        background: transparent;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item.active .faq-accordion-header {
        color: var(--dark);
    }
}

.faq-accordion-header:hover {
    background: var(--gray-50);
}

.faq-accordion-header:active {
    background: var(--gray-100);
}

.faq-accordion-header span {
    flex: 1;
    padding-right: 1rem;
    line-height: 1.4;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--gray-600);
}

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

/* Desktop accordion icon styling - Premium */
@media (min-width: 769px) {
    .faq-accordion.desktop-only .faq-icon {
        width: 24px;
        height: 24px;
        color: var(--gray-600);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .faq-accordion.desktop-only .faq-accordion-item:hover .faq-icon {
        color: var(--peach);
        transform: scale(1.1);
    }
    
    .faq-accordion.desktop-only .faq-accordion-item.active .faq-icon {
        color: var(--rose);
        transform: rotate(180deg) scale(1.1);
    }
}

.faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.3s ease;
    padding: 0 1rem;
    opacity: 0;
}

.faq-accordion-item.active .faq-accordion-content {
    max-height: 500px; /* Large enough for content */
    padding: 0 1rem 1.25rem;
    opacity: 1;
}

.faq-accordion-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
    padding-top: 0.5rem;
}

/* Desktop accordion content styling - Premium */
@media (min-width: 769px) {
    .faq-accordion.desktop-only .faq-accordion-content {
        padding: 0 2.5rem 2.5rem;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease 0.1s;
    }
    
    .faq-accordion.desktop-only .faq-accordion-item.active .faq-accordion-content {
        padding: 0 2.5rem 2.5rem;
    }
    
    .faq-accordion.desktop-only .faq-accordion-content p {
        font-size: 1.0625rem;
        line-height: 1.75;
        padding-top: 0.5rem;
        color: var(--gray-600);
        font-weight: 400;
        letter-spacing: -0.01em;
    }
    
    .faq-accordion.desktop-only .faq-accordion-header span {
        padding-right: 2rem;
        line-height: 1.5;
        letter-spacing: -0.02em;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .faq-item h4 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    .faq-accordion-header {
        font-size: 0.95rem;
        padding: 1rem 0.875rem;
    }
    
    .faq-accordion-content p {
        font-size: 0.9rem;
    }
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.footer-brand p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.footer-links a {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.footer-links a:hover { color: white; }

.footer-copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.875rem;
    color: var(--gray-600);
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        padding: 0 1rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        margin-top: 0.375rem;
    }
    
    .footer-links { 
        justify-content: center; 
        gap: 1.25rem;
        flex-wrap: wrap;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }
    
    .footer-copyright {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
        font-size: 0.8rem;
    }

    /* Ensure hero buttons stack on small screens */
    .hero-actions {
        flex-direction: column;
        gap: 0.875rem;
    }

    .hero-actions .btn-secondary {
        margin-left: 0; /* Remove margin when stacked */
    }
}

/* Coming Soon Badge */
.badge-coming-soon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    vertical-align: middle;
}

/* Coming Soon Section State */
.coming-soon-overlay {
    position: relative;
    opacity: 0.7;
    pointer-events: none; /* Disable interaction */
}

@media (max-width: 768px) {
    .bg-gradient {
        padding: 1.75rem 0;
    }
    
    .coming-soon-container {
        padding: 0 1rem;
    }
    
    .coming-soon-container .section-title {
        font-size: clamp(1.4rem, 6vw, 1.65rem);
        margin-bottom: 0.5rem;
    }
    
    .coming-soon-container .mb-large {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}

.coming-soon-message {
    background: rgba(0,0,0,0.8);
    padding: 1rem 2rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 1rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Legal Pages */
.legal-content {
    padding: 8rem 0 4rem;
    min-height: 80vh;
}

.legal-header {
    margin-bottom: 3rem;
    text-align: center;
    border-bottom: 1px solid var(--gray-200);
    padding-bottom: 2rem;
}

.legal-date {
    color: var(--gray-600);
    font-style: italic;
    margin-top: 0.5rem;
}

.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--dark);
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--gray-800);
}

.legal-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.8;
}

.legal-text ul, .legal-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    color: var(--gray-600);
}

.legal-text li {
    margin-bottom: 0.5rem;
}

.legal-text strong {
    color: var(--gray-800);
}
