/* Font Face Declarations - Objektiv (Headings) */
@font-face {
    font-family: 'Objektiv';
    src: url('assets/Objektiv/ObjektivMk2_Rg.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Objektiv';
    src: url('assets/Objektiv/ObjektivMk2_Md.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Objektiv';
    src: url('assets/Objektiv/ObjektivMk2_Bd.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Objektiv';
    src: url('assets/Objektiv/ObjektivMk2_XBd.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Font Face Declarations - Tenon (Body) */
@font-face {
    font-family: 'Tenon';
    src: url('assets/Tenon/tenon-light.woff2') format('woff2'),
        url('assets/Tenon/tenon-light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tenon';
    src: url('assets/Tenon/tenon-regular.woff2') format('woff2'),
        url('assets/Tenon/tenon-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tenon';
    src: url('assets/Tenon/tenon-medium.woff2') format('woff2'),
        url('assets/Tenon/tenon-medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tenon';
    src: url('assets/Tenon/tenon-bold.woff2') format('woff2'),
        url('assets/Tenon/tenon-bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-evergreen: #033528;
    --color-white: #FFFFFF;
    --color-amber: #F5A623;
    /* Warm amber/gold */
    --color-evergreen-dark: #02241b;

    --font-heading: 'Tenon', sans-serif;
    --font-body: 'Objektiv', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 9rem;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-evergreen);
    overflow-x: hidden;
}

/* Utils */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

p.subline {
    font-size: 1.25rem;
    color: var(--color-amber);
    opacity: 1;
    /* Increased opacity for better visibility of the color */
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-weight: 500;
    border-radius: 4px;
    /* Sophisticated slightly rounded */
    font-size: 1rem;
    transition: all var(--transition-fast);
}

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

.btn-primary:hover {
    background-color: var(--color-amber);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
    color: var(--color-evergreen);
}

.btn-text {
    color: var(--color-amber);
    padding: 1rem;
    background: transparent;
}

.btn-text:hover {
    color: #ffd04b;
    /* Lighter amber on hover */
}

.btn-white {
    background-color: var(--color-evergreen);
    color: var(--color-white);
    margin-top: var(--spacing-md);
}

.btn-white:hover {
    background-color: var(--color-evergreen-dark);
    box-shadow: 0 0 20px rgba(3, 53, 40, 0.3);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
    z-index: 10;
}

.nav-logo img {
    height: 60px;
    /* Increased size as requested */
    width: auto;
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--color-amber);
}

.nav-links .nav-btn {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    opacity: 1;
    transition: var(--transition-fast);
}

.nav-links .nav-btn:hover {
    border-color: var(--color-amber);
    color: var(--color-amber);
    background: rgba(255, 255, 255, 0.05);
}

.nav-links .nav-btn-primary {
    background: var(--color-amber);
    color: var(--color-evergreen);
    border-color: var(--color-amber);
    font-weight: 600;
}

.nav-links .nav-btn-primary:hover {
    background: #ffd04b;
    border-color: #ffd04b;
    color: var(--color-evergreen);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

/* Section 1: HERO */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-evergreen);
    color: var(--color-white);
    overflow: hidden;
}

/* Amber Spotlight Effect - Ultra soft glow from bottom */
.hero::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 800px;
    background: radial-gradient(ellipse 50% 70% at 50% 100%,
            rgba(245, 166, 35, 0.18) 0%,
            rgba(245, 166, 35, 0.14) 20%,
            rgba(245, 166, 35, 0.08) 40%,
            rgba(245, 166, 35, 0.04) 60%,
            rgba(245, 166, 35, 0.01) 80%,
            transparent 100%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.7;
}

/* Inner ambient glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse 45% 80% at 50% 100%,
            rgba(245, 166, 35, 0.15) 0%,
            rgba(245, 166, 35, 0.10) 25%,
            rgba(245, 166, 35, 0.06) 50%,
            rgba(245, 166, 35, 0.02) 75%,
            transparent 100%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 2;
    opacity: 0.6;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Impressive Plain Background (Revealed on Video End) */
    background:
        /* Tech Grid */
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        /* Amber Glow (Bottom Center) */
        radial-gradient(circle at 50% 100%, rgba(245, 166, 35, 0.12) 0%, transparent 60%),
        /* Deep Evergreen Gradient */
        linear-gradient(180deg, #033528 0%, #011a14 100%);
    background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%;
}

.hero-bg-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
    /* Smooth Fade Out */
}

/* Class to trigger fade out */
.hero-bg-media.video-ended {
    opacity: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(3, 53, 40, 0.3), rgba(3, 53, 40, 0.8));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: var(--spacing-md);
    opacity: 0;
    /* Initially hidden */
    transform: translateY(20px);
    /* Start slightly lower */
    transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}



.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.cta-group {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    align-items: center;
}

/* Section 2: HOW IT WORKS (Light Mode Tech) */
.how-it-works {
    padding: var(--spacing-lg) 0;
    background-color: #fafbfc;
    /* Subtle Tech Dot Pattern */
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}

/* Cleanup dark mode glow */
.how-it-works::before {
    display: none;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.how-it-works-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-evergreen);
    margin-bottom: var(--spacing-md);
    text-align: left;
}

.how-it-works-title strong {
    font-weight: 700;
    color: var(--color-evergreen);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    position: relative;
}

/* Connecting Line (Desktop) - Adjusted for Light Mode */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #e5e7eb 0, #e5e7eb 6px, transparent 6px, transparent 12px);
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #033528;
    /* Solid Evergreen */
    /* backdrop-filter removed for clarity */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    /* Light source top edge */
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    z-index: 1;
}

/* Tech Hover Effect */
.step-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 12px 24px rgba(3, 53, 40, 0.25),
        0 4px 8px rgba(3, 53, 40, 0.15);
    border-color: rgba(245, 166, 35, 0.5);
    /* Amber border on hover */
}

.step-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-amber), #e69510);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    color: white;
    box-shadow: 0 8px 16px rgba(245, 166, 35, 0.25);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

/* Icon lift on hover */
.step-card:hover .step-icon {
    transform: scale(1.05) rotate(3deg);
    box-shadow: 0 12px 20px rgba(245, 166, 35, 0.35);
}

.icon-svg {
    width: 28px;
    height: 28px;
    stroke: white;
    /* White icon on Amber bg */
    stroke-width: 2;
}

.step-icon svg path,
.step-icon svg rect,
.step-icon svg line {
    stroke: white;
}

.step-card h3 {
    color: var(--color-white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.step-card p {
    color: #d1d5db;
    /* Light silver for readability on green */
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}


/* Responsive: 2 columns on tablet */
@media (max-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: 1 column on mobile */
@media (max-width: 600px) {
    .how-it-works {
        padding: var(--spacing-md) 0;
    }

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

    /* Hide the connecting line on mobile */
    .steps-grid::before {
        display: none;
    }

    .step-card {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .step-icon {
        margin: 0 0 1rem 0;
        width: 56px;
        height: 56px;
    }

    .step-card h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Section: TOP EXPERTS */
.top-experts {
    padding: var(--spacing-lg) 0;
    background-color: var(--color-evergreen);
}

.experts-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
}

.experts-title strong {
    font-weight: 700;
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.expert-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.expert-card {
    background: var(--color-white);
    border: 1px solid rgba(3, 53, 40, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(3, 53, 40, 0.15);
}

.expert-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-smooth);
}

.expert-card:hover .expert-image img {
    transform: scale(1.05);
}

/* Kory's image - show more body */
.expert-card-link:first-child .expert-image img {
    object-position: center 35%;
}

.expert-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--color-white);
    color: var(--color-evergreen);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.expert-info {
    padding: var(--spacing-sm);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.expert-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.expert-header h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-evergreen);
    display: flex;
    align-items: center;
    gap: 4px;
}

.verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    font-size: 0.625rem;
}

.expert-rating {
    color: var(--color-amber);
    font-size: 0.875rem;
    font-weight: 600;
}

.expert-price {
    font-size: 0.875rem;
    color: rgba(3, 53, 40, 0.6);
    margin-bottom: 8px;
}

.expert-bio {
    font-size: 0.8rem;
    color: rgba(3, 53, 40, 0.7);
    line-height: 1.5;
}

/* Responsive: Horizontal slider on tablet */
@media (max-width: 992px) {
    .experts-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        margin: 0 calc(-1 * var(--spacing-md));
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

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

    .experts-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .expert-card-link {
        flex: 0 0 45%;
        scroll-snap-align: start;
    }

    .expert-card {
        height: 100%;
    }
}

/* Responsive: Horizontal slider on mobile */
@media (max-width: 576px) {
    .experts-grid {
        display: flex;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-sm);
        padding-top: 12px;
        padding-bottom: var(--spacing-sm);
        margin: 0 calc(-1 * var(--spacing-md));
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

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

    .experts-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .expert-card-link {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .expert-card {
        height: 100%;
    }

    .experts-title {
        font-size: 1.5rem;
    }
}

/* Section 3: SOCIAL PROOF */
.social-proof {
    padding: var(--spacing-lg) 0;
    background: #fff;
    color: var(--color-evergreen);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated floating orbs */
.social-proof::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 15s ease-in-out infinite;
}

.social-proof::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(3, 53, 40, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatOrb 20s ease-in-out infinite reverse;
}

@keyframes floatOrb {

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

    25% {
        transform: translate(30px, -20px) scale(1.05);
    }

    50% {
        transform: translate(50px, 20px) scale(1.1);
    }

    75% {
        transform: translate(20px, 40px) scale(1.05);
    }
}

/* Header Styles */
.testimonial-header {
    margin-bottom: var(--spacing-sm);
}

.testimonial-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-amber);
    background: rgba(245, 166, 35, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

.testimonial-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-evergreen);
    margin-bottom: var(--spacing-xs);
}

.testimonial-subtitle {
    font-size: 1.1rem;
    color: var(--color-amber);
    font-weight: 300;
    white-space: nowrap;
    margin: 0 auto;
}

@keyframes float {

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

    50% {
        transform: translate(50px, 50px);
    }
}

/* Slider Styles */
.testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    z-index: 2;
    /* Sit above the blobs */
    perspective: 1000px;
    /* Enable 3D space */
}

.slider-main-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    /* Reduced margin */
}

.slider-viewport {
    overflow: hidden;
    flex: 1;
    border-radius: 2px;
    /* Allow 3D elements to slightly spill during tilt if needed, but overflow:hidden is main clipper.
       For 3D tilt to look best, we might want to remove overflow on the viewport if possible, 
       but that breaks the slider masking. We'll keep it and tilt somewhat subtly. */
}

.slider-wrapper {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
    transform-style: preserve-3d;
}

.testimonial-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    /* Increased padding for tilt movement */
}

/* Glassmorphism & 3D Card Style */
.testimonial-card {
    background: linear-gradient(135deg, var(--color-evergreen) 0%, var(--color-evergreen-dark) 100%);
    border: none;
    color: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    width: 100%;
    min-height: 280px;
    padding: var(--spacing-md) var(--spacing-lg);
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

/* Quote decoration */
.testimonial-card::before {
    content: none;
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* Subtle gradient overlay */
.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, transparent 50%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

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

/* 3D Hover Effect */
.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 6px 12px rgba(0, 0, 0, 0.05),
        0 15px 30px rgba(3, 53, 40, 0.1),
        0 30px 60px rgba(3, 53, 40, 0.08);
}

.slider-btn {
    background: var(--color-evergreen);
    border: 1px solid var(--color-evergreen);
    color: var(--color-white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    z-index: 3;
}

.slider-btn:hover {
    background: var(--color-amber);
    border-color: var(--color-amber);
    color: var(--color-evergreen);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.4);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 3;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(3, 53, 40, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.dot.active {
    background-color: var(--color-amber);
    transform: scale(1.3);
    box-shadow: 0 0 8px rgba(245, 166, 35, 0.5);
}

.dot:hover {
    background-color: var(--color-evergreen);
    border-color: var(--color-evergreen);
}

/* Mobile: Stack or adjust arrows */
@media (max-width: 600px) {
    .testimonial-slider {
        max-width: 100%;
        padding: 0;
    }

    .slider-main-row {
        gap: 0;
        padding: 0;
    }

    .slider-btn {
        display: none;
    }

    .slider-viewport {
        flex: 1;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .slider-wrapper {
        display: flex;
    }

    .testimonial-slide {
        padding: 8px;
        scroll-snap-align: center;
        min-width: 100%;
    }

    .testimonial-card {
        padding: var(--spacing-sm);
        margin: 0 var(--spacing-xs);
    }
}

/* Star ratings */
.stars {
    color: var(--color-amber);
    font-size: 1.25rem;
    letter-spacing: 4px;
    margin-bottom: var(--spacing-xs);
    text-shadow: 0 2px 10px rgba(245, 166, 35, 0.3);
}

blockquote {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    font-style: italic;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 95%;
    text-align: center;
}

/* Author section */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: auto;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-amber);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    transition: all 0.4s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.author-info {
    text-align: left;
}

cite {
    font-style: normal;
    font-weight: 600;
    font-size: 1rem;
    display: block;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.author-role {
    font-size: 0.8rem;
    color: var(--color-amber);
    opacity: 0.9;
}

/* Section 4: CONNECT */
.connect {
    padding: var(--spacing-md) 0;
    background-color: var(--color-evergreen);
    position: relative;
    overflow: hidden;
}

.connect::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    margin-bottom: var(--spacing-xs);
}

.section-subtitle {
    color: var(--color-amber);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: var(--spacing-sm);
}

.connect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
}

.connect-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-md) var(--spacing-md);
    background: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--color-evergreen);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.connect-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(3, 53, 40, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.connect-tile:hover::before {
    opacity: 1;
}

.connect-tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.tile-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 53, 40, 0.1);
    border-radius: 50%;
    margin-bottom: var(--spacing-sm);
    color: var(--color-evergreen);
    transition: all 0.4s ease;
}

.connect-tile:hover .tile-icon {
    background: var(--color-amber);
    color: var(--color-evergreen);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.tile-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--spacing-xs);
    opacity: 0.6;
    font-weight: 500;
}

.tile-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.tile-arrow {
    font-size: 1.25rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: var(--color-amber);
}

.connect-tile:hover .tile-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Unique hover colors for each tile */
.connect-tile.podcast:hover {
    border-color: #9b59b6;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(155, 89, 182, 0.3);
}

.connect-tile.podcast:hover .tile-icon {
    background: #9b59b6;
}

.connect-tile.podcast .tile-arrow {
    color: #9b59b6;
}

.connect-tile.substack:hover {
    border-color: #ff6719;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 103, 25, 0.3);
}

.connect-tile.substack:hover .tile-icon {
    background: #ff6719;
}

.connect-tile.substack .tile-arrow {
    color: #ff6719;
}

.connect-tile.twitter:hover {
    border-color: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.2);
}

.connect-tile.twitter:hover .tile-icon {
    background: #ffffff;
    color: #000000;
}

.connect-tile.twitter .tile-arrow {
    color: #1a1a1a;
}

.connect-tile.linkedin:hover {
    border-color: #0077b5;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 119, 181, 0.3);
}

.connect-tile.linkedin:hover .tile-icon {
    background: #0077b5;
    color: #ffffff;
}

.connect-tile.linkedin .tile-arrow {
    color: #0077b5;
}

/* Mobile: 2 columns */
@media (max-width: 768px) {
    .connect-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small mobile: 1 column */
@media (max-width: 480px) {
    .connect-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 5: FINAL CTA */
.final-cta {
    position: relative;
    padding: var(--spacing-md) 0;
    /* Slightly more padding so it's not crushed */
    text-align: center;
    background-color: var(--color-white);
    overflow: hidden;
    min-height: 35vh;
    display: flex;
    align-items: center;
    /* Tech Grid Background */
    background-image:
        linear-gradient(rgba(3, 53, 40, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(3, 53, 40, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    color: var(--color-evergreen);
    justify-content: center;
}

/* Ambient Glow */
.final-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.relative-z {
    position: relative;
    z-index: 10;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-card {
    position: absolute;
    /* Glassmorphism */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.8rem 1.25rem;
    border-radius: 12px;
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.05),
        0 4px 8px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
}

/* Hover effect for interactivity */
.final-cta:hover .float-card {
    transition: transform 0.5s ease;
}

.trusted-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #888;
    font-weight: 500;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

/* Positioning & Animation Delays */
.float-tl {
    top: 10%;
    left: 10%;
    animation: float-random 7s ease-in-out infinite alternate;
}

.float-tr {
    top: 15%;
    right: 12%;
    animation: float-random 8s ease-in-out infinite alternate-reverse;
    animation-delay: 1s;
}

.float-bl {
    bottom: 15%;
    left: 15%;
    animation: float-random 9s ease-in-out infinite alternate;
    animation-delay: 2s;
}

.float-br {
    bottom: 35%;
    right: 15%;
    animation: float-random 7.5s ease-in-out infinite alternate-reverse;
    animation-delay: 0.5s;
}

@keyframes float-random {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(5px, -10px) rotate(1deg);
    }

    66% {
        transform: translate(-5px, 5px) rotate(-1deg);
    }

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

@keyframes float-gentle {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Hide on mobile to prevent clutter */
@media (max-width: 900px) {
    .floating-elements {
        display: none;
    }

    .final-cta {
        min-height: auto;
        padding: var(--spacing-md) 0;
    }
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Footer */
.site-footer {
    background-color: var(--color-evergreen);
    color: var(--color-white);
    padding: var(--spacing-md) 0 var(--spacing-sm);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: var(--spacing-md);
    font-weight: 300;
}

.btn-outline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
    border-radius: 4px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-outline:hover {
    background: var(--color-white);
    color: #0a0a0a;
}

.footer-links {
    display: flex;
    gap: var(--spacing-xl);
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

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

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    font-size: 0.875rem;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--color-amber);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.social-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background: var(--color-amber);
    color: #0a0a0a;
    transform: translateY(-3px);
}

/* Newsletter Form */
.newsletter-text {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-bottom: var(--spacing-sm);
    font-weight: 300;
}

.newsletter-form {
    margin-bottom: var(--spacing-xs);
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    opacity: 0.5;
    line-height: 1.4;
    margin-bottom: var(--spacing-md);
}

.newsletter-disclaimer a {
    color: var(--color-white);
    text-decoration: underline;
    transition: opacity var(--transition-fast);
}

.newsletter-disclaimer a:hover {
    opacity: 1;
}

.newsletter-msg {
    font-size: 0.8rem;
    margin-top: 8px;
    min-height: 1.2em;
}

.newsletter-input-group {
    display: flex;
    align-items: center;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px;
    transition: all var(--transition-fast);
}

.newsletter-input-group:focus-within {
    border-color: var(--color-amber);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 0.875rem;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
}

/* Override browser autofill background */
.newsletter-input:-webkit-autofill,
.newsletter-input:-webkit-autofill:hover,
.newsletter-input:-webkit-autofill:focus,
.newsletter-input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important;
    -webkit-text-fill-color: var(--color-white) !important;
    background-color: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

.newsletter-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-amber);
    border: none;
    border-radius: 50%;
    color: var(--color-evergreen);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.newsletter-btn:hover {
    background: #ffb93d;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.4);
}

.newsletter-btn svg {
    width: 18px;
    height: 18px;
}

/* Newsletter validation error styles */
.newsletter-error {
    margin-top: 8px;
    color: #fca5a5;
    font-size: 0.8rem;
    animation: shake 0.4s ease;
}

.newsletter-success {
    margin-top: 8px;
    color: #86efac;
    font-size: 0.8rem;
}

.newsletter-input.input-error {
    border-color: #ef4444 !important;
}

.newsletter-input-group:has(.input-error) {
    border-color: rgba(239, 68, 68, 0.5);
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    20% {
        transform: translateX(-4px);
    }

    40% {
        transform: translateX(4px);
    }

    60% {
        transform: translateX(-4px);
    }

    80% {
        transform: translateX(4px);
    }
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    font-size: 0.8rem;
}

.footer-bottom p {
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-legal {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.footer-legal a {
    opacity: 0.5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity var(--transition-fast);
}

.footer-legal a:hover {
    opacity: 1;
}

.footer-legal span {
    opacity: 0.3;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2.25rem;
    }

    .feature-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }

    .cta-group {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    .footer-main {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }

    .footer-column {
        min-width: 140px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

/* ============================================
   MOBILE HAMBURGER MENU STYLES
   ============================================ */

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Nav overlay - hidden by default on desktop */
.nav-overlay {
    display: none;
}

.hamburger span {
    display: block;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Varying line widths for modern look */
.hamburger span:nth-child(1) {
    width: 20px;
}

.hamburger span:nth-child(2) {
    width: 24px;
}

.hamburger span:nth-child(3) {
    width: 16px;
}

/* Hamburger animation when active - smooth X */
.hamburger.active span:nth-child(1) {
    width: 24px;
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.hamburger.active span:nth-child(3) {
    width: 24px;
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   COMPREHENSIVE MOBILE STYLES (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* Navbar - Mobile */
    .navbar {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
        max-width: 400px;
        height: auto;
        max-height: calc(100vh - 100px);
        background: rgba(3, 53, 40, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding: var(--spacing-lg) var(--spacing-md);
        transition: top 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border-radius: 0 0 24px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        top: 70px;
    }

    .nav-links a {
        font-size: 1.1rem;
        opacity: 1;
        padding: var(--spacing-sm) var(--spacing-md);
        border-radius: 12px;
        transition: all 0.3s ease;
        margin-bottom: 4px;
        text-align: center;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: var(--color-amber);
    }

    .nav-logo img {
        height: 45px;
    }

    /* Mobile overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-overlay.active {
        display: block;
    }

    /* Hero Section - Mobile */
    .hero {
        height: 70vh;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero .subline {
        font-size: 1rem;
    }

    .hero-content {
        padding: var(--spacing-sm);
        /* Show text immediately on mobile (no animation) */
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* Hide video on mobile - show background instead */
    .hero-bg-media {
        display: none;
    }

    /* Reduce button width on mobile */
    .hero .btn-primary,
    .top-experts .btn-primary {
        padding: 0.875rem 1.5rem;
        width: 200px;
        text-align: center;
    }

    /* How It Works - Mobile */
    .how-it-works-title {
        font-size: 1.5rem;
        text-align: center;
    }

    /* Experts Section - Mobile */
    .experts-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .experts-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    /* Testimonials - Mobile */
    .testimonial-title {
        font-size: 1.75rem;
    }

    .testimonial-subtitle {
        white-space: normal;
        font-size: 0.95rem;
        padding: 0 var(--spacing-sm);
    }

    .testimonial-card {
        min-height: auto;
        padding: var(--spacing-md);
    }

    blockquote {
        font-size: 1rem;
    }

    /* Connect Section - Mobile */
    .connect .section-title {
        font-size: 1.5rem;
    }

    .connect-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: var(--spacing-sm);
        padding-bottom: var(--spacing-sm);
        margin: 0 calc(-1 * var(--spacing-md));
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }

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

    .connect-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .connect-tile {
        flex: 0 0 60%;
        scroll-snap-align: start;
        padding: 1rem;
        min-height: auto;
    }

    .connect-tile .tile-icon {
        width: 24px;
        height: 24px;
    }

    .connect-tile .tile-icon svg {
        width: 20px;
        height: 20px;
    }

    .connect-tile .tile-label {
        font-size: 0.65rem;
    }

    .connect-tile .tile-title {
        font-size: 0.9rem;
    }

    /* Arrow animation on scroll */
    .connect-tile .tile-arrow {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .connect-tile.in-view .tile-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    /* Final CTA - Mobile */
    .final-cta h2 {
        font-size: 1.75rem;
    }

    /* Hide floating cards on mobile */
    .floating-elements {
        display: none;
    }

    .final-cta {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }

    /* Footer columns stack with dividing lines */
    .footer-links {
        flex-direction: column;
        gap: 0;
    }

    .footer-column {
        padding: var(--spacing-md) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .footer-column:last-child {
        border-bottom: none;
    }
}

/* ============================================
   SMALL MOBILE STYLES (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .how-it-works-title,
    .experts-title {
        font-size: 1.3rem;
    }

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

    .step-icon {
        width: 50px;
        height: 50px;
    }

    .testimonial-title {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: var(--spacing-sm);
    }

    blockquote {
        font-size: 0.95rem;
    }

    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .footer-logo {
        height: 40px;
    }
}