/* ============================================
   WOLLIT - UNIFIED STYLESHEET
   For: Landing Page & Subscribe Form
   ============================================ */

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

:root {
    /* Brand Colours */
    --brand-blue: #3030cf;
    --brand-blue-hover: #5a5adb;
    --brand-blue-tint: #e8e8fa;
    --brand-pink: #ff424b;
    --brand-pink-hover: #ff6b72;

    /* Greys */
    --grey-50: #fafafa;
    --grey-100: #f5f5f6;
    --grey-200: #e9e9ea;
    --grey-400: #a8a8ae;
    --grey-600: #5c5c64;
    --grey-900: #191923;
    --white: #ffffff;
    --black: #000000;

    /* Accent Colours */
    --star-gold: #f5c542;
    --error-bg: #fee;
    --error-border: #c33;

    /* Gradients */
    --gradient-dark: linear-gradient(180deg, #191923 0%, #0f0f17 100%);
    --gradient-cta: linear-gradient(135deg, #ff424b 0%, #ff6b72 100%);
    --gradient-hero-overlay: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.65) 40%,
        rgba(0, 0, 0, 0.3) 70%,
        transparent 100%
    );
    --gradient-radial-glow: radial-gradient(
        circle,
        rgba(48, 48, 207, 0.2) 0%,
        transparent 70%
    );

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-30: 120px;
    --space-40: 160px;

    /* Typography */
    --text-xs: 12px;
    --text-sm: 14px;
    --text-base: 16px;
    --text-lg: 18px;
    --text-xl: 20px;
    --text-2xl: 24px;
    --text-3xl: 28px;
    --text-4xl: 36px;
    --text-5xl: 48px;
    --text-6xl: 64px;
    --text-7xl: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Transitions & Animations */
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-expand: 0.4s ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Z-Index Scale */
    --z-header: 100;
    --z-overlay: 50;
    --z-content: 2;
}

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

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: "Inter", -apple-system, sans-serif;
    color: var(--grey-900);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    font-size: var(--text-base);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Card Base - Shared across all card components */
.card-base {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all var(--transition-smooth);
}

/* Info Box - Shared styling for content boxes */
.info-box {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    border: 1px solid var(--grey-200);
}

/* Icon Circle - Shared icon wrapper */
.icon-circle {
    width: 64px;
    height: 64px;
    background: var(--brand-blue-tint);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    margin: 0 auto var(--space-6);
}

/* Gradient Text - For headings with gradient effects */
.gradient-text {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Wrapper - Shared across all mobile carousels */
.carousel-wrapper {
    position: relative;
}

/* Mobile Carousel Scroll Container */
.carousel-scroll {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: var(--space-4) 0 var(--space-8);
}

.carousel-scroll::-webkit-scrollbar {
    display: none;
}

/* ============================================
   HEADER - LANDING PAGE (STICKY)
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    z-index: var(--z-header);
    transform: translateY(-100%);
    transition: transform var(--transition-smooth);
}

.header.visible {
    transform: translateY(0);
}

.header-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px;
    width: auto;
}

.header-cta {
    display: inline-block;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 12px 28px;
    font-size: var(--text-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.header-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(255, 66, 75, 0.4);
}

.header-cta:focus-visible {
    outline: 3px solid var(--brand-blue);
    outline-offset: 2px;
}

.header-cta-short {
    display: inline;
}

.header-cta-full {
    display: none;
}

/* ============================================
   HEADER - SUBSCRIBE PAGE (STATIC)
   ============================================ */
body.subscribe-page .header {
    position: static;
    transform: none;
    border-bottom: 1px solid var(--grey-200);
    padding: var(--space-6);
}

body.subscribe-page .header-container {
    max-width: 600px;
    justify-content: center;
    height: auto;
}

body.subscribe-page .header-cta {
    display: none;
}

/* ============================================
   SUBSCRIBE PAGE - CONTAINER
   ============================================ */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: var(--space-12) var(--space-6);
}

/* ============================================
   SUBSCRIBE PAGE - PROGRESS STEPS
   ============================================ */
.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-12);
    gap: var(--space-2);
}

.progress-step {
    flex: 1;
    text-align: center;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--grey-400);
    position: relative;
}

.progress-step.active {
    color: var(--brand-blue);
}

.progress-step.completed {
    color: var(--grey-600);
}

.progress-step::after {
    content: "";
    display: block;
    height: 3px;
    background: var(--grey-200);
    margin-top: var(--space-2);
    border-radius: 2px;
}

.progress-step.active::after,
.progress-step.completed::after {
    background: var(--brand-blue);
}

/* ============================================
   SUBSCRIBE PAGE - STEP VISIBILITY
   ============================================ */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1 {
    font-size: var(--text-4xl);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-6);
    color: var(--grey-900);
}

p {
    margin-bottom: var(--space-6);
    line-height: 1.7;
    color: var(--grey-600);
}

/* ============================================
   SUBSCRIBE PAGE - TRUST SIGNALS
   ============================================ */
.trust-signal {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--grey-600);
    margin-bottom: var(--space-8);
}

.trust-signal .stars {
    color: var(--star-gold);
    font-size: var(--text-base);
}

/* ============================================
   SUBSCRIBE PAGE - CREDIT AGENCIES
   ============================================ */
.credit-agencies {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    border: 1px solid var(--grey-200);
    text-align: center;
}

.credit-agencies-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--grey-600);
    margin-bottom: var(--space-3);
    font-weight: 500;
}

.credit-agencies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-6);
}

.credit-agencies-logos img {
    height: 24px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
}

/* ============================================
   SUBSCRIBE PAGE - WARNING BOX
   ============================================ */
.warning-box {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    border: 1px solid var(--grey-200);
}

.warning-box ul {
    margin: var(--space-4) 0;
    padding-left: var(--space-6);
}

.warning-box li {
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

.help-links {
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--grey-200);
    font-size: var(--text-sm);
}

.help-links a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
}

.help-links a:hover {
    text-decoration: underline;
}

.help-links a:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* ============================================
   SUBSCRIBE PAGE - CHECKBOX GROUP
   ============================================ */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 2px solid var(--grey-200);
    cursor: pointer;
    transition: all var(--transition-base);
}

.checkbox-group:hover {
    border-color: var(--brand-blue);
}

.checkbox-group:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 3px rgba(48, 48, 207, 0.1);
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--brand-blue);
}

.checkbox-group input[type="checkbox"]:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

.checkbox-group label {
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    flex: 1;
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: var(--space-8);
}

label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--grey-900);
}

label .helper-text {
    font-weight: 400;
    color: var(--grey-600);
    font-size: var(--text-xs);
}

input[type="text"],
input[type="email"],
input[type="date"] {
    width: 100%;
    padding: var(--space-4);
    border: 2px solid var(--grey-200);
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    font-family: inherit;
    transition: border-color var(--transition-base);
    background: var(--white);
}

input:focus {
    outline: none;
    border-color: var(--brand-blue);
}

input:focus-visible {
    box-shadow: 0 0 0 3px rgba(48, 48, 207, 0.1);
}

#payment-element {
    margin-bottom: var(--space-4);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    width: 100%;
    padding: var(--space-4) var(--space-8);
    background: var(--gradient-cta);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 4px 16px rgba(255, 66, 75, 0.3);
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 66, 75, 0.4);
}

.btn-primary:focus-visible {
    outline: 3px solid var(--brand-blue);
    outline-offset: 2px;
}

.btn-primary:disabled {
    background: var(--grey-400);
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.6;
}

/* Hero CTA Button */
.btn-primary-v2 {
    display: inline-block;
    background: var(--gradient-cta);
    color: var(--white);
    padding: 18px 52px;
    font-size: var(--text-xl);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: 0 8px 24px rgba(255, 66, 75, 0.4);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    animation:
        hero-fade-in-up 0.8s ease-out 1.1s both,
        cta-pulse-glow 2s ease-in-out 2s infinite;
}

.btn-primary-v2:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 66, 75, 0.5);
}

.btn-primary-v2:focus-visible {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--brand-blue);
    padding: var(--space-4) var(--space-12);
    font-size: var(--text-lg);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    background: var(--brand-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white:focus-visible {
    outline: 3px solid var(--brand-blue);
    outline-offset: 2px;
}

/* ============================================
   ERROR MESSAGE
   ============================================ */
.error {
    background: var(--error-bg);
    border: 2px solid var(--brand-pink);
    border-radius: var(--radius-md);
    color: var(--error-border);
    padding: var(--space-4);
    margin-bottom: var(--space-6);
    font-weight: 600;
    font-size: var(--text-sm);
}

/* ============================================
   VALUE PROPS
   ============================================ */
.value-props {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    margin-bottom: var(--space-8);
    border: 1px solid var(--grey-200);
}

.value-props h2 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.value-props ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.value-props li {
    padding-left: var(--space-6);
    position: relative;
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    line-height: 1.7;
}

.value-props li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-blue);
    font-weight: 900;
}

/* ============================================
   CTA SECTION (SUBSCRIBE)
   ============================================ */
.cta-section {
    text-align: center;
    margin-top: var(--space-8);
}

.cta-note {
    font-size: var(--text-sm);
    color: var(--grey-600);
    margin-top: var(--space-3);
    font-weight: 600;
}

.cta-benefits {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-3);
    font-size: var(--text-xs);
    color: var(--grey-600);
    font-weight: 600;
}

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer {
    font-size: var(--text-xs);
    color: var(--grey-600);
    line-height: 1.7;
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--grey-200);
}

.disclaimer a {
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
}

.disclaimer a:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* ============================================
   SUCCESS PAGE
   ============================================ */
.success-container {
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-blue-tint);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-8);
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--brand-blue);
}

.qr-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    border: 1px solid var(--grey-200);
}

.qr-code {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    background: var(--grey-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.next-steps {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    text-align: left;
}

.next-steps h2 {
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.next-steps ol {
    margin: 0 0 0 var(--space-6);
    padding: 0;
}

.next-steps li {
    margin-bottom: var(--space-3);
    line-height: 1.7;
}

/* Mobile Download Button */
#download-app-button {
    display: none;
}

.mobile-only {
    display: none;
}

/* ============================================
   HERO SECTION - LANDING PAGE
   ============================================ */
.hero-v2 {
    background: var(--grey-50);
    padding: var(--space-6) var(--space-6) var(--space-8);
    position: relative;
}

.hero-container-v2 {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #2424a8 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-12) var(--space-8);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-container-v2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-radial-glow);
    pointer-events: none;
}

.hero-content-v2 {
    max-width: 800px;
    position: relative;
    z-index: var(--z-content);
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-blue);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-6);
    animation: hero-fade-in-up 0.8s ease-out 0.3s both;
}

.hero-v2 h1 {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    animation: hero-fade-in-up 0.8s ease-out 0.5s both;
}

.hero-subtext-v2 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: hero-fade-in-up 0.8s ease-out 0.7s both;
}

.trustpilot-v2 {
    font-size: var(--text-lg);
    color: var(--white);
    margin-bottom: var(--space-8);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: hero-fade-in-up 0.8s ease-out 0.9s both;
}

.trustpilot-stars-v2 {
    color: var(--star-gold);
    margin-right: var(--space-2);
    font-size: var(--text-2xl);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-benefits {
    list-style: none;
    padding: 0;
    margin: var(--space-4) 0 0;
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: hero-fade-in-up 0.8s ease-out 1.2s both;
}

.hero-benefits li {
    font-size: var(--text-sm);
    color: var(--white);
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-note-v2 {
    font-size: var(--text-xs);
    color: var(--white);
    margin-top: var(--space-6);
    opacity: 0.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: hero-fade-in-up-subtle 0.8s ease-out 1.3s both;
}

.hero-credit-agencies {
    margin-top: var(--space-8);
    animation: hero-fade-in-up-subtle 0.8s ease-out 1.5s both;
}

.hero-credit-agencies-text {
    font-size: 10px;
    color: var(--white);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
    opacity: 0.6;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-credit-agencies-logos {
    display: flex;
    gap: var(--space-6);
    align-items: center;
    justify-content: center;
}

.hero-credit-agencies-logos img {
    height: 64px;
    width: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
}

/* ============================================
   LANDING PAGE SECTIONS
   ============================================ */

/* How It Works */
.how-it-works-section {
    padding: var(--space-20) var(--space-6);
    background: var(--grey-50);
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.how-it-works-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    line-height: 1.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    transition: all var(--transition-base);
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--brand-blue);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-card h3 {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--grey-900);
    line-height: 1.3;
}

.step-card p {
    font-size: var(--text-base);
    color: var(--grey-600);
    line-height: 1.6;
    margin: 0;
}

/* Investor Logos Section */
.trust-section {
    padding: var(--space-20) var(--space-6);
    background: var(--white);
}

.trust-container {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
}

.trust-heading {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--grey-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: var(--text-lg);
    color: var(--grey-600);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto var(--space-12);
}

.investor-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.investor-logos img {
    height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.investor-logos img:hover {
    opacity: 1;
}

/* Persona Cards */
.persona-cards-section {
    padding: var(--space-20) var(--space-6);
    background: var(--grey-50);
    overflow: hidden;
}

.persona-cards-container {
    max-width: 1200px;
    margin: 0 auto;
}

.persona-cards-header {
    text-align: center;
    margin-bottom: var(--space-20);
}

.persona-cards-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.persona-cards-header p {
    font-size: var(--text-lg);
    color: var(--grey-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.persona-carousel-wrapper {
    position: relative;
}

.persona-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-8);
    transition: all var(--transition-smooth);
    text-align: center;
}

.persona-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-blue-tint);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    color: var(--brand-blue);
}

.persona-icon svg {
    width: 32px;
    height: 32px;
}

.persona-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--grey-900);
    line-height: 1.3;
}

.persona-card p {
    font-size: var(--text-base);
    color: var(--grey-600);
    line-height: 1.7;
}

.persona-cards-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* Testimonials */
.trustpilot-widget-section {
    padding: var(--space-20) var(--space-6);
    background: var(--white);
}

.trustpilot-widget-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trustpilot-header {
    margin-bottom: var(--space-16);
}

.trustpilot-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.trustpilot-header p {
    font-size: var(--text-lg);
    color: var(--grey-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.testimonials-carousel-wrapper {
    position: relative;
}

.testimonial-card {
    background: var(--grey-50);
    padding: var(--space-12);
    border-radius: var(--radius-md);
    transition: all var(--transition-smooth);
}

.testimonial-quote {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    color: var(--grey-900);
}

.testimonial-name {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: var(--space-2);
    color: var(--grey-900);
}

.testimonial-time {
    font-size: var(--text-sm);
    color: var(--grey-600);
}

.testimonials-cta {
    text-align: center;
    margin-top: var(--space-12);
}

/* Features Section */
.features-section {
    background: var(--white);
    padding: var(--space-20) var(--space-6);
    overflow: hidden;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.features-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-4);
}

.features-header p {
    font-size: var(--text-lg);
    color: var(--grey-600);
}

.features-carousel-wrapper {
    position: relative;
    padding: 0 var(--space-6);
}

/* Mobile: Carousel */
.features-grid {
    display: flex;
    gap: var(--space-6);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    padding: var(--space-4) 0 var(--space-8);
}

.features-grid::-webkit-scrollbar {
    display: none;
}

.feature-card {
    flex: 0 0 280px;
    min-width: 280px;
    background: var(--grey-50);
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    border: 2px solid var(--grey-200);
    transition: all var(--transition-smooth);
    text-align: center;
    scroll-snap-align: center;
    opacity: 0.6;
    transform: scale(0.92);
}

.feature-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--brand-blue);
    box-shadow: 0 8px 24px rgba(48, 48, 207, 0.15);
    background: var(--white);
}

.feature-card:hover {
    border-color: var(--brand-blue);
    opacity: 1;
    box-shadow: 0 12px 32px rgba(48, 48, 207, 0.2);
    transform: translateY(-6px) scale(1.02);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--brand-blue-tint);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
    position: relative;
    transition: all var(--transition-base);
}

.feature-card.active .feature-icon {
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

.feature-icon::after {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--brand-blue);
    border-radius: var(--radius-full);
}

.feature-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    color: var(--grey-900);
}

.feature-card p {
    font-size: var(--text-base);
    color: var(--grey-600);
    line-height: 1.7;
}

/* Primary Feature Card - Credit Builder */
.feature-card-primary {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-hover) 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-12);
    margin-bottom: var(--space-12);
    position: relative;
    box-shadow: 0 8px 32px rgba(48, 48, 207, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.feature-badge {
    display: inline-block;
    background: var(--white);
    color: var(--brand-blue);
    font-size: var(--text-sm);
    font-weight: 700;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-6);
}

.feature-primary-content {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
}

.feature-card-primary .feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.feature-card-primary .feature-icon::after {
    width: 40px;
    height: 40px;
    background: var(--white);
}

.feature-primary-text {
    flex: 1;
}

.feature-card-primary h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-4);
}

.feature-card-primary p {
    font-size: var(--text-lg);
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 0;
}

.feature-primary-note {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--white);
    margin-top: var(--space-4);
    opacity: 0.9;
}

/* Bonus Tools Header */
.bonus-tools-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.bonus-tools-header h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-2);
}

.bonus-tools-header p {
    font-size: var(--text-base);
    color: var(--grey-600);
}

.carousel-nav {
    display: none;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-6);
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: var(--grey-200);
    transition: all var(--transition-base);
    cursor: pointer;
}

.carousel-dot.active {
    background: var(--brand-blue);
    width: 24px;
    border-radius: 4px;
}

.carousel-dot:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: 2px;
}

/* FAQ */
.faq-section {
    padding: var(--space-20) var(--space-6);
    background: var(--white);
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.faq-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
}

.faq-list {
    display: grid;
    gap: var(--space-4);
}

.faq-item {
    background: var(--grey-50);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: var(--space-6);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--grey-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:focus-visible {
    outline: 2px solid var(--brand-blue);
    outline-offset: -2px;
}

.faq-icon {
    font-size: var(--text-2xl);
    font-weight: 300;
    transition: transform var(--transition-base);
    color: var(--brand-blue);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-expand);
}

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

.faq-answer-content {
    padding: 0 var(--space-6) var(--space-6);
    color: var(--grey-600);
    line-height: 1.7;
}

/* Section CTAs - Between sections */
.section-cta {
    background: var(--white);
    padding: var(--space-16) var(--space-6);
    text-align: center;
}

.section-cta-container {
    max-width: 600px;
    margin: 0 auto;
}

.section-cta h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.section-cta p {
    font-size: var(--text-base);
    color: var(--grey-600);
    margin-bottom: var(--space-8);
    font-weight: 600;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--brand-blue) 0%, #2424a8 100%);
    color: var(--white);
    padding: var(--space-20) var(--space-6);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: var(--gradient-radial-glow);
}

.final-cta-container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-content);
}

.final-cta h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.final-cta p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-12);
}

.final-cta-note {
    font-size: var(--text-base);
    color: rgba(255, 255, 255, 0.6);
    margin-top: var(--space-6);
}

/* Footer */
.footer {
    padding: var(--space-16) var(--space-6);
    background: var(--grey-900);
    color: var(--white);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-column h3 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: var(--space-3);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column a:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

.footer-legal {
    padding-top: var(--space-12);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.footer-copyright {
    text-align: center;
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-12);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes icon-glow-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(48, 48, 207, 0);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 20px 8px rgba(48, 48, 207, 0.4);
        transform: scale(1.05);
    }
}

@keyframes hero-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Optimised: Use opacity instead of box-shadow for better performance */
@keyframes cta-pulse-glow {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

@keyframes hero-fade-in-up-subtle {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.5;
        transform: translateY(0);
    }
}

/* Section Scroll Animations */
.section-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.section-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - TABLET (min-width: 640px)
   ============================================ */
@media (min-width: 640px) {
    .header-cta-short {
        display: none;
    }

    .header-cta-full {
        display: inline;
    }

    .header-cta {
        padding: 12px 32px;
        font-size: var(--text-lg);
    }

    body.subscribe-page .header-container img {
        width: auto;
        max-width: 160px;
    }

    .container {
        padding: var(--space-12) var(--space-6);
    }

    #download-app-button {
        display: block;
    }

    .mobile-only {
        display: inline;
    }

    .desktop-only {
        display: none;
    }

    .credit-agencies-logos img {
        height: 24px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
    h1 {
        font-size: var(--text-3xl);
    }

    body.subscribe-page .header-container img {
        width: 200px;
        height: auto;
    }

    .container {
        padding: var(--space-8) var(--space-6);
    }

    .credit-agencies-logos img {
        height: 20px;
    }

    .btn-primary-v2 {
        font-size: var(--text-base);
        padding: 16px 36px;
    }

    /* Hero Mobile Optimisations */
    .hero-v2 {
        padding: 0;
    }

    .hero-container-v2 {
        padding: var(--space-8) var(--space-6);
        border-radius: 0;
        box-shadow: none;
        min-height: auto;
    }

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

    .hero-v2 h1 {
        font-size: 40px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-subtext-v2 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .trustpilot-v2 {
        font-size: var(--text-sm);
    }

    .trustpilot-stars-v2 {
        font-size: var(--text-lg);
    }

    .hero-credit-agencies {
        margin-left: 0;
        padding-left: 0;
        text-align: left;
    }

    .hero-credit-agencies-logos {
        justify-content: flex-start;
        gap: var(--space-2);
        margin-left: -4px;
        padding-left: 0;
    }

    .hero-credit-agencies-logos img {
        height: 48px;
        width: auto;
        margin: 0;
        padding: 0;
        opacity: 0.9;
    }

    /* Section Padding Reductions */
    .trustpilot-widget-section,
    .how-it-works-section,
    .trust-section,
    .persona-cards-section,
    .features-section,
    .faq-section,
    .final-cta {
        padding: var(--space-16) var(--space-6);
    }

    /* Section Header Reductions */
    .persona-cards-header h2,
    .how-it-works-header h2,
    .trustpilot-header h2,
    .trust-section h2,
    .features-header h2,
    .faq-header h2 {
        font-size: var(--text-3xl);
    }

    /* Trust Section - Investor Logos */
    .trust-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .trust-logo {
        max-width: 100px;
    }

    .final-cta h2 {
        font-size: var(--text-3xl);
    }

    .final-cta p {
        font-size: var(--text-base);
    }

    /* Step Cards - Keep Horizontal Layout */
    .step-card {
        padding: var(--space-4);
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: var(--text-xl);
    }

    .step-card h3 {
        font-size: var(--text-lg);
    }

    .step-card p {
        font-size: var(--text-sm);
    }

    /* Reduce header spacing */
    .persona-cards-header,
    .how-it-works-header,
    .trustpilot-header,
    .features-header,
    .faq-header {
        margin-bottom: var(--space-12);
    }

    /* Primary Feature Card - Mobile */
    .feature-card-primary {
        padding: var(--space-8);
        margin-bottom: var(--space-8);
    }

    .feature-primary-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-card-primary .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-card-primary h3 {
        font-size: var(--text-2xl);
    }

    .feature-card-primary p {
        font-size: var(--text-base);
    }

    .bonus-tools-header {
        margin-bottom: var(--space-6);
    }

    .bonus-tools-header h3 {
        font-size: var(--text-xl);
    }

    .bonus-tools-header p {
        font-size: var(--text-sm);
    }

    /* Persona Cards */
    .persona-card h3 {
        font-size: var(--text-xl);
    }

    /* Mobile Carousels for Persona Cards */
    .persona-cards-grid {
        display: flex;
        gap: var(--space-6);
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding: var(--space-4) 0 var(--space-8);
        margin-bottom: 0;
    }

    .persona-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .persona-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
        opacity: 0.6;
        transform: scale(0.92);
        border: 2px solid var(--grey-200);
    }

    .persona-card.active {
        opacity: 1;
        transform: scale(1);
        border-color: var(--brand-blue);
        box-shadow: 0 8px 24px rgba(48, 48, 207, 0.15);
    }

    .persona-card:hover {
        opacity: 1;
    }

    /* Mobile Carousels for Testimonials */
    .testimonials-grid {
        display: flex;
        gap: var(--space-6);
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding: var(--space-4) 0 var(--space-8);
        margin-bottom: 0;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
        opacity: 0.6;
        transform: scale(0.92);
        border: 2px solid var(--grey-200);
    }

    .testimonial-card.active {
        opacity: 1;
        transform: scale(1);
        background: var(--white);
        border-color: var(--brand-blue);
        box-shadow: 0 8px 24px rgba(48, 48, 207, 0.15);
    }

    .testimonial-card:hover {
        opacity: 1;
    }

    .awards-bar img {
        height: 70px;
    }
}

/* ============================================
   RESPONSIVE - TABLET & UP (min-width: 768px)
   ============================================ */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
    }

    .trust-logos-grid {
        gap: var(--space-12);
    }

    .awards-bar {
        gap: var(--space-12);
        margin-top: var(--space-16);
    }

    .awards-bar img {
        height: 80px;
    }

    .persona-cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: var(--space-6);
        margin-bottom: var(--space-12);
    }

    .persona-card {
        opacity: 0;
        transform: translateY(30px);
    }

    .persona-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .persona-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .persona-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .persona-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .persona-card:nth-child(4) {
        transition-delay: 0.4s;
    }

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

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-8);
        margin-bottom: var(--space-12);
    }

    .testimonial-card {
        opacity: 0;
        transform: translateY(30px);
    }

    .testimonial-card.animate-in {
        opacity: 1;
        transform: translateY(0);
    }

    .testimonial-card:nth-child(1) {
        transition-delay: 0.1s;
    }

    .testimonial-card:nth-child(2) {
        transition-delay: 0.2s;
    }

    .testimonial-card:nth-child(3) {
        transition-delay: 0.3s;
    }

    .testimonial-card:hover {
        transform: translateY(-4px);
        background: var(--white);
        box-shadow: var(--shadow-sm);
    }

    .hero-v2 h1 {
        font-size: 60px;
    }

    .hero-container-v2 {
        min-height: 700px;
    }

    .trustpilot-v2 {
        font-size: var(--text-xl);
    }

    .trustpilot-stars-v2 {
        font-size: var(--text-3xl);
    }

    .hero-credit-agencies-logos img {
        height: 72px;
    }

    /* Primary Feature Card - Desktop */
    .feature-card-primary {
        padding: var(--space-16);
    }

    .feature-primary-content {
        text-align: left;
    }

    /* Desktop Features Grid */
    .features-carousel-wrapper {
        padding: 0;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-8);
        overflow: visible;
        scroll-behavior: auto;
        scroll-snap-type: none;
        padding: 0;
    }

    .feature-card {
        flex: none;
        min-width: auto;
        opacity: 1;
        transform: scale(1);
        background: var(--white);
        border: 2px solid var(--grey-200);
        scroll-snap-align: none;
    }

    .feature-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 16px 48px rgba(48, 48, 207, 0.25);
    }

    .carousel-dots {
        display: none;
    }

    /* No carousel navigation on desktop - just a plain grid */
    .carousel-nav {
        display: none;
    }

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

/* ============================================
   RESPONSIVE - DESKTOP (min-width: 1024px)
   ============================================ */
@media (min-width: 1024px) {
    .hero-v2 {
        padding: var(--space-4) var(--space-8) var(--space-12);
    }

    .hero-container-v2 {
        padding: var(--space-8) var(--space-20);
        min-height: 800px;
    }

    .hero-v2 h1 {
        font-size: 76px;
    }

    .hero-credit-agencies-logos img {
        height: 80px;
    }

    .hero-content-v2 {
        max-width: 700px;
    }

    .trust-logos-grid {
        gap: var(--space-16);
    }

    .feature-card {
        flex: 0 0 380px;
        min-width: 380px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   LOVE LETTERS MARQUEE SECTION
   ============================================ */
.love-letters-section {
    background: var(--grey-50);
    padding: var(--space-20) 0;
    overflow: hidden;
    position: relative;
}

.love-letters-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: var(--z-content);
}

.love-letters-header {
    text-align: center;
    padding: 0 var(--space-6);
    margin-bottom: var(--space-12);
}

.love-letters-header h2 {
    font-size: var(--text-5xl);
    font-weight: 900;
    color: var(--grey-900);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.love-letters-header p {
    font-size: var(--text-lg);
    color: var(--grey-600);
    line-height: 1.7;
}

/* Marquee Rows */
.marquee-row {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: var(--space-8);
    padding: 2px 0;
}

.marquee-track {
    display: flex;
    gap: var(--space-4);
    will-change: transform;
}

/* Left to Right Animation */
.marquee-ltr {
    animation: marquee-ltr 40s linear infinite;
}

/* Right to Left Animation */
.marquee-rtl {
    animation: marquee-rtl 40s linear infinite;
}

/* Pause on hover - only effect */
.marquee-row:hover .marquee-track {
    animation-play-state: paused;
}

/* Love Letter Cards - Outline Style */
.love-letter-card {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 320px;
    background: transparent;
    border: 1px solid var(--grey-400);
    border-radius: var(--radius-md);
    padding: var(--space-6) var(--space-8);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--grey-900);
    font-style: normal;
}

/* Marquee Animations */
@keyframes marquee-ltr {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes marquee-rtl {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Responsive Mobile Adjustments */
@media (max-width: 767px) {
    .love-letters-section {
        padding: var(--space-16) 0;
    }

    .love-letters-header {
        margin-bottom: var(--space-8);
    }

    .love-letters-header h2 {
        font-size: var(--text-3xl);
    }

    .love-letters-header p {
        font-size: var(--text-base);
    }

    .marquee-row {
        margin-bottom: var(--space-2);
    }

    .marquee-track {
        gap: var(--space-3);
    }

    .love-letter-card {
        min-width: 220px;
        max-width: 260px;
        padding: var(--space-4) var(--space-6);
        font-size: var(--text-sm);
        border: 1px solid var(--grey-400);
    }

    /* Much faster animations on mobile for engagement */
    .marquee-ltr {
        animation: marquee-ltr 12s linear infinite;
    }

    .marquee-rtl {
        animation: marquee-rtl 12s linear infinite;
    }

    /* Investor Logos - Compact Grid Layout on Mobile */
    .investor-logos {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
        max-width: 400px;
        margin: 0 auto;
    }

    .investor-logos img {
        height: 48px;
        width: 100%;
        max-width: 120px;
        object-fit: contain;
        margin: 0 auto;
    }
}
