:root {
    /* Minimalist Color Palette */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f8f8;
    --bg-tertiary: #f0f0f0;

    --text-primary: #000000;
    --text-secondary: #666666;
    --text-muted: #999999;

    --accent-green: #4ade80;

    /* Default Accent */
    --current-accent: var(--accent-green);

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing - More generous */
    --spacing-xs: 0.75rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 4rem;
    /* Reduced from 6rem */
    --spacing-xl: 6rem;
    /* Reduced from 10rem */

    /* Border Radius - Subtle */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
}

.container {
    width: 100%;
    max-width: 1400px;
    /* Increased max-width for left align feel */
    margin: 0 auto;
    /* Center the container */
    padding: 0 var(--spacing-md);
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.01em;
}

.text-center {
    text-align: left;
}

/* Button Utilities */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-accent {
    background: var(--current-accent);
    color: var(--bg-primary);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(74, 222, 128, 0.3);
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
}

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

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

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

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

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

.btn-nav {
    padding: 0.5rem 1.2rem;
    background-color: var(--text-primary);
    color: #ffffff !important;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: var(--current-accent);
    transform: translateY(-2px);
}

/* Section Spacing */
section {
    padding: var(--spacing-xl) 0;
}

/* Hero Section - Minimalist */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align left like other sections */
    text-align: left;
    overflow: hidden;
    padding-top: 80px;
    background-color: var(--bg-primary);
}

.hero-bg {
    display: none;
    /* Remove background image for minimalist look */
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    animation: fadeUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
    max-width: 800px;
}

.text-gradient {
    color: var(--current-accent);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: 0;
    /* Left align */
    margin-right: 0;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    /* Left align */
    gap: 1rem;
}

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

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

/* Section 1: The Problem (Dark Theme) */
.section-problem {
    background-color: #1a1a1a;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    position: relative;
    padding: var(--spacing-xl) 0;
}

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

.section-problem .section-title,
.section-problem .section-subtitle {
    color: var(--bg-primary);
}

.section-problem .text-gradient {
    color: var(--current-accent);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
    margin-left: 0;
    margin-right: auto;
}

.section-subtitle {
    font-size: 1.2rem;
}

.problem-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: var(--spacing-md) 0;
    margin-left: 0;
    /* Start from left edge */
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    display: flex;
    justify-content: flex-start;
    position: relative;
}

.problem-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.problem-scroll-track {
    display: flex;
    gap: var(--spacing-md);
    padding: 0;
    /* Remove padding to start from left */
    /* Center the first card */
    width: max-content;
}

.problem-scroll-card {
    width: 40vw;
    /* Reduced from 60vw to show more cards */
    height: auto;
    min-height: 400px;
    max-width: 500px;
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s ease;
    background-color: #0a0a0a;
    /* Darker than section bg */
    border: 1px solid #333;
    box-shadow: none;
    scroll-snap-align: center;
    flex-shrink: 0;
}

.problem-scroll-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #333 0%, transparent 100%);
    /* Darker gradient */
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: all 0.3s ease;
}

.problem-scroll-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.problem-scroll-card:hover::before {
    height: 4px;
    background: linear-gradient(90deg, #444 0%, #333 100%);
}

/* All cards same style */
.card-pink,
.card-green,
.card-blue,
.card-purple {
    background-color: #0a0a0a;
}

/* Clean text styling */
.problem-scroll-card h3,
.problem-scroll-card p {
    color: #ffffff;
    text-transform: none;
}

.card-content h3 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.01em;
}

.card-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
}

.card-footer {
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    text-transform: none;
}

.card-footer::after {
    content: '→';
    font-size: 1.2rem;
    color: var(--current-accent);
}

.card-footer-reverse {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.card-footer-reverse::after {
    content: '←';
    margin-right: 0;
    margin-left: 0;
    order: -1;
}

/* Responsive */
@media (max-width: 768px) {
    .problem-scroll-track {
        padding: 0 var(--spacing-sm);
    }

    .problem-scroll-card {
        width: 85vw;
        height: 500px;
        padding: 2rem;
    }

    .card-content h3 {
        font-size: 2.5rem;
    }

    .card-content p {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }
}

/* Section 2: How it Works - Minimalist Two-Column */
.section-how {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: stretch;
    min-height: 700px;
}

.how-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

.image-placeholder svg {
    width: 100%;
    height: 100%;
}

.how-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: var(--radius-lg);
}

.how-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: 0 0 var(--spacing-md) 0;
    /* Remove top padding to align with image */
}

.how-content .section-header {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-md);
    border-left: 3px solid transparent;
    /* Match step-item border width */
}

.step-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 0;
    border-left: 3px solid var(--current-accent);
    padding-left: var(--spacing-md);
    transition: all 0.3s ease;
}

.step-item:hover {
    border-left-color: var(--current-accent);
    transform: translateX(4px);
}

.step-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.step-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .how-it-works-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        min-height: auto;
    }

    .how-image {
        position: relative;
        top: 0;
        order: -1;
    }

    .image-placeholder {
        height: 400px;
    }
}

/* Section 3: Benefits (Hero Banner + Content) */
.section-benefits {
    padding: 0;
}

.benefits-hero {
    position: relative;
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-image: url('/Users/rodrigodi/.gemini/antigravity/brain/4660309e-86a5-431f-863d-3c0df3bfdbea/benefits_hero_background_1764858967548.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.benefits-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.benefits-hero .container {
    position: relative;
    z-index: 2;
}

.benefits-hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-primary);
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.benefits-content {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.benefits-intro {
    margin-bottom: var(--spacing-md);
}

.benefits-intro h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #999999;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.2;
}

.benefits-text {
    max-width: 900px;
}

.benefits-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.benefits-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-hero {
        height: 25vh;
        min-height: 200px;
    }

    .benefits-hero-title {
        font-size: 2rem;
    }

    .benefits-intro h3 {
        font-size: 2rem;
    }

    .benefits-text p {
        font-size: 1rem;
    }
}

/* Section 4: Report Types (Horizontal Carousel) */
.section-types {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0;
    /* Removed margin for closer spacing */
    padding-right: var(--spacing-md);
    padding-bottom: 0;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    /* Light gray */
    border: none;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {

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

    50% {
        transform: translateX(5px);
    }
}

.types-carousel-container {
    width: 100vw;
    /* Full viewport width */
    margin-left: 50%;
    /* Center positioning trick */
    transform: translateX(-50%);
    /* Center positioning trick */
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-top: 0;
    /* Removed top padding to bring closer */
    padding-bottom: var(--spacing-lg);
    padding-left: 0;
    /* Will be set by JS */
    padding-right: var(--spacing-md);
}

.types-carousel-container::-webkit-scrollbar {
    display: none;
}

.types-carousel {
    display: flex;
    gap: var(--spacing-md);
    width: max-content;
    /* Add padding to show part of the next card */
    padding-right: 10vw;
}

.type-carousel-card {
    width: 280px;
    /* Reduced width to show more cards */
    min-height: 320px;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    /* Removed border as requested */
    border: none;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.type-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(74, 222, 128, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.type-carousel-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.4s ease;
    border: 2px solid var(--bg-tertiary);
}

.type-carousel-card:hover .card-icon {
    background: var(--current-accent);
    color: var(--bg-primary);
    border-color: var(--current-accent);
    transform: scale(1.1) rotate(5deg);
}

.type-carousel-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: var(--spacing-sm) 0 0 0;
    transition: color 0.4s ease;
}

.type-carousel-card:hover h3 {
    color: var(--current-accent);
}

.type-carousel-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}

.type-carousel-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: none;
    /* Removed border color change on hover */
}

/* Responsive Types Carousel */
@media (max-width: 768px) {
    .type-carousel-card {
        width: 260px;
        min-height: 280px;
    }

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

    .card-icon svg {
        width: 36px;
        height: 36px;
    }

    .type-carousel-card h3 {
        font-size: 1.5rem;
    }

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .carousel-arrow {
        align-self: flex-end;
    }
}



/* Section 5: Differentials - Interactive Menu (Dark Theme) */
.section-differentials {
    background-color: #1a1a1a;
    background-image: radial-gradient(#333 1px, transparent 1px);
    background-size: 20px 20px;
    padding: var(--spacing-xl) 0;
}

.section-differentials .section-title {
    color: var(--bg-primary);
}

.section-differentials .text-gradient {
    color: var(--current-accent);
}

.differentials-menu {
    max-width: 900px;
    margin: 0 auto;
}

.diff-menu-item {
    border-bottom: 1px solid #333333;
    transition: all 0.3s ease;
}

.diff-menu-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.diff-menu-button span {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bg-primary);
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.diff-menu-button svg {
    width: 24px;
    height: 24px;
    color: var(--bg-primary);
    transition: all 0.3s ease;
    transform: rotate(0deg);
}

.diff-menu-item:hover .diff-menu-button {
    background-color: var(--current-accent);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    margin: 0 calc(-1 * var(--spacing-md));
}

.diff-menu-item:hover .diff-menu-button span {
    color: #000000;
}

.diff-menu-item:hover .diff-menu-button svg {
    color: #000000;
}

.diff-menu-item.active .diff-menu-button {
    background-color: var(--current-accent);
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
    margin: 0 calc(-1 * var(--spacing-md));
}

.diff-menu-item.active .diff-menu-button span {
    color: #000000;
}

.diff-menu-item.active .diff-menu-button svg {
    color: #000000;
    transform: rotate(45deg);
}

.diff-menu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 var(--spacing-md);
}

.diff-menu-item.active .diff-menu-content {
    max-height: 500px;
    padding: var(--spacing-md);
    padding-top: 0;
}

.diff-menu-content p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Section 6: Plans (CTA) */
.section-plans {
    background: linear-gradient(to bottom, var(--bg-primary), var(--bg-secondary));
    padding: var(--spacing-xl) 0;
}

.cta-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0;
    /* Left align */
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.btn-lg {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

/* Section 7: Transformation (Horizontal Timeline) */
.section-transformation {
    background-color: var(--bg-primary);
    padding: var(--spacing-xl) 0;
}

.timeline {
    position: relative;
    width: 100%;
    overflow-x: auto;
    padding: var(--spacing-lg) 0;
    padding-top: 60px;
    /* Space for dots and line above */
    scrollbar-width: none;
}

.timeline-track {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
    width: max-content;
    /* Ensure track expands to fit content */
    padding-right: var(--spacing-md);
    /* Add padding at the end */
}

.timeline::-webkit-scrollbar {
    display: none;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: -31px;
    /* Align with center of dots (-38px top + 8px center - 1px line half-height) */
    left: 0;
    width: 100%;
    /* Force full width */
    height: 2px;
    background: var(--bg-tertiary);
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    min-width: 28%;
    /* Reduced to show more of 4th card */
    max-width: 350px;
    flex-shrink: 0;
    position: relative;
}

.timeline-item:last-child {
    margin-right: var(--spacing-md);
    /* Add margin to last item for spacing */
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--current-accent);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
    position: absolute;
    top: -38px;
    /* Position above cards */
    left: 20px;
    box-shadow: 0 0 0 3px var(--bg-tertiary);
}

.timeline-content {
    background: var(--bg-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: none;
    box-shadow: none;
    /* Remove shadow */
    text-align: left;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-12px);
}

.timeline-icon {
    color: var(--current-accent);
    margin-bottom: var(--spacing-sm);
    stroke-width: 1.5;
}

.timeline-content h3 {
    color: #2d2d2d;
    /* Elegant dark grey */
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Footer - Large Animated Brand */
.footer {
    scroll-margin-top: 100px;
    /* Offset for fixed navbar */
    background-color: var(--bg-primary);
    padding: 0;
    border-top: 1px solid var(--bg-tertiary);
    overflow: hidden;
    position: relative;
}

.footer-contact {
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--bg-tertiary);
}

.contact-info {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: flex-start;
    align-items: center;
}

.contact-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.contact-info a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--current-accent);
}

.footer-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 75vh;
    /* Reduced by 25% from 100vh */
    padding: var(--spacing-lg) var(--spacing-md);
    position: relative;
}

.footer-brand {
    --logo-width: min(90vw, 1200px);
    width: var(--logo-width);
    height: auto;
    min-height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Center vertically */
    gap: 50px;
    /* Gap adjusted to 50px */
    position: relative;
    padding-bottom: 50px;
    /* Space for movement */
}

.footer-brand .letter {
    display: block;
    height: 12.5vw;
    /* Reduced by ~10% */
    max-height: 200px;
    width: auto;
    /* Maintain aspect ratio */
    will-change: transform;
    object-fit: contain;
    margin-left: 0;
}

/* First letter should not have negative margin */
.footer-brand .letter:first-child {
    margin-left: 0;
}

.footer-brand .letter-group-ai {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin-left: 0;
}

/* Specific adjustment for dash only if needed, but user asked for "same size" */
/* Keeping dash aligned properly */
.letter-dash {
    height: 3vw;
    max-height: 40px;
    margin-bottom: 0;
}

.letter-ai {
    height: 12.5vw;
    max-height: 200px;
}

/* Dot styling */
.letter-dot {
    width: 2vw !important;
    height: 2vw !important;
    max-width: 25px;
    max-height: 25px;
    background-color: var(--text-primary) !important;
    border-radius: 50%;
    margin-bottom: 1vw;
    display: block;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-start;
    }

    .footer-hero {
        min-height: 70vh;
    }

    .footer-brand {
        font-size: 20vw;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-dot {
        left: 11px;
    }
}

@media (max-width: 480px) {
    .footer-brand {
        font-size: 22vw;
    }
}