:root {
    /* Polished Tech-Minimalism Palette */
    --bg-main: #F4F5F7;        /* Soft Gray for breathing room */
    --bg-secondary: #FFFFFF;   /* Pure White for intense contrast */
    --bg-dark: #111111;        /* Pure Black/Charcoal for impact */
    
    --text-primary: #111111;   /* Perfect readability */
    --text-secondary: #555555; 
    --text-light: #FFFFFF;     
    
    --accent-orange: #e68c32;  /* Vibrant Action */
    --accent-orange-hover: #dc8c28; 
    --accent-teal: #333333;    /* Sharp, dark contrast instead of teal */
    
    /* Neuminimalist Shadows */
    --glass-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.05);
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    
    /* Extreme Spacing & Layout */
    --container-width: 1280px;
    --section-padding: 160px 0;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding);
}

.bg-darker {
    background-color: var(--bg-secondary);
}

.d-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.glass-panel {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 32px; /* Massive border radius */
    box-shadow: var(--glass-shadow);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
}

.gradient-text {
    /* Updated gradient to use brand colors */
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Typography Classes */
.section-title {
    font-size: 3.5rem; /* Massive typography */
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--accent-orange);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 4rem auto;
    line-height: 1.8;
}

/* Buttons - Pill Shaped */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    border-radius: 50px; /* Extreme pill shape */
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    font-family: var(--font-main);
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background: var(--accent-orange-hover);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.5);
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-light); /* Assuming used on dark background */
    border: 2px solid var(--accent-teal);
}

.btn-outline:hover {
    background: var(--accent-teal);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: #FFFFFF; /* Pure white corporate nav */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.glass-nav.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.logo img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

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

.nav-links a:not(.btn) {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--accent-orange);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(0, 57, 52, 0.98); /* Dark Green Background */
    backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(rgba(40, 40, 40, 0.85), rgba(40, 40, 40, 0.95)), url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?auto=format&fit=crop&q=80') center/cover no-repeat;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: rgba(255, 102, 0, 0.2); /* Orange glow */
    top: -200px;
    left: -200px;
    animation: float 10s infinite alternate;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(111, 150, 150, 0.2); /* Teal glow */
    bottom: -100px;
    right: -100px;
    animation: float 8s infinite alternate-reverse;
}

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

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 6.5rem; /* Immense size */
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -3px;
    color: var(--text-light);
}

.hero-title .gradient-text {
    /* Slightly brighter gradient for visibility on dark green */
    background: linear-gradient(135deg, #FF8C40 0%, #A2C2C2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.stats-container {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-card {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white; /* Solid white for contrast on cream */
    border: 1px solid rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    height: 550px; /* Taller for impact */
    position: relative;
    border-radius: 32px; /* Massive rounding */
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Sticky Scroll Section */
.sticky-scroll-section {
    height: 600vh; /* Drastically extended height for incredibly smooth scrolling duration */
    background: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-content {
    text-align: center;
    max-width: 1200px;
    padding: 0 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    width: 100%;
}

.sticky-title {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-light);
    line-height: 1.1;
    max-width: 900px;
}

.scroll-issues {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Let clicks pass through to title if needed */
    perspective: 1200px;
    z-index: 5;
}

.issue-card {
    position: absolute;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem 2.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    opacity: 0;
    transform: scale(0.6) translateY(50px);
    transition: all 1.2s cubic-bezier(0.2, 0.8, 0.2, 1); /* Slower, smoother transition */
    text-align: center;
    max-width: 350px;
    will-change: transform, opacity;
}

/* Scattered Random Positions */
.issue-card:nth-child(1) { top: 12%; left: 8%; }
.issue-card:nth-child(2) { bottom: 15%; right: 8%; }
.issue-card:nth-child(3) { top: 25%; right: 10%; }
.issue-card:nth-child(4) { bottom: 12%; left: 12%; }
.issue-card:nth-child(5) { top: 45%; right: 5%; }
.issue-card:nth-child(6) { top: 60%; left: 5%; }
.issue-card:nth-child(7) { top: 15%; right: 28%; }
.issue-card:nth-child(8) { bottom: 25%; left: 28%; }
.issue-card:nth-child(9) { top: 35%; left: 6%; }

.issue-card.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}

.issue-card.passed {
    opacity: 0;
    transform: scale(1.1) translateY(-50px);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2.5rem; /* Enormous internal breathing room */
    text-align: left;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 32px; /* High radius */
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: var(--glass-shadow);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
    border-bottom: 4px solid var(--accent-orange);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    letter-spacing: -0.5px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-details {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, margin-top 0.5s ease;
}

.service-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-card:hover .service-details {
    max-height: 250px;
    opacity: 1;
    margin-top: 1rem;
}

/* Consulting Metrics & CSS Graphs */
.metrics-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.metric strong {
    display: block;
    color: var(--accent-orange);
    font-size: 1.5rem;
    line-height: 1.2;
}

.metric span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--bg-dark);
    letter-spacing: 0.5px;
}

.css-chart {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    height: 40px;
}

.css-chart .bar {
    width: 12px;
    background: var(--accent-teal);
    border-radius: 2px 2px 0 0;
    height: 0;
    transition: height 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0.8;
}

.service-card:hover .css-chart .bar {
    height: var(--h);
}

/* Process Section (Methodology) */
.methodology-section {
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    color: var(--text-light);
}

.methodology-section .section-title {
    color: var(--text-light);
}

.methodology-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.methodology-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.methodology-bg-shapes .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(230, 140, 50, 0.15); /* orange */
    top: 10%;
    left: 15%;
    animation: float 10s infinite alternate;
}

.methodology-bg-shapes .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(50, 200, 200, 0.1); /* teal */
    bottom: 10%;
    right: 15%;
    animation: float 8s infinite alternate-reverse;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.methodology-tile.liquid-glass {
    flex: 1;
    position: relative;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.05), inset 0 0 20px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: default;
}

.methodology-tile.liquid-glass:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.1), inset 0 0 30px rgba(255, 255, 255, 0.8);
}

.methodology-marker {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(230, 140, 50, 0.08); /* Transparent orange */
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 0;
    transition: all 0.6s ease;
}

.methodology-tile.liquid-glass:hover .methodology-marker {
    color: rgba(230, 140, 50, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.methodology-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.methodology-content h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(20px); /* Initially centered visually within the space */
}

.methodology-tile.liquid-glass:hover .methodology-content h3 {
    transform: translateY(-10px);
    color: var(--accent-orange);
}

.methodology-brief {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-out;
    color: var(--text-secondary);
    margin-top: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.methodology-tile.liquid-glass:hover .methodology-brief {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
    transition-delay: 0.1s; /* Slightly delayed text fade in */
}

@media (max-width: 900px) {
    .methodology-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .methodology-tile.liquid-glass {
        padding: 2.5rem 2rem;
    }
    .methodology-content h3 {
        transform: translateY(0);
    }
    .methodology-brief {
        opacity: 1;
        max-height: 200px;
        margin-top: 15px;
    }
}

/* CTA Section */
.cta-section {
    position: relative;
    background: linear-gradient(rgba(40, 40, 40, 0.9), rgba(40, 40, 40, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&q=80') center/cover fixed;
}

.cta-box {
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-dark); /* Contrast CTA box */
    color: var(--text-light);
    border-radius: 40px; /* Uniquely massive radius */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

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

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-orange);
    background: rgba(255, 255, 255, 0.15);
}

.btn-block {
    display: block;
    width: 100%;
}

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

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
    max-width: 300px;
}

.footer h4 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-orange);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* Animations (Scroll Revealed) */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.17, 0.85, 0.43, 1.14);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

.slide-up {
    transform: translateY(50px);
}

.slide-right {
    transform: translateX(-50px);
}

.slide-left {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.9);
}

.fade-in {
    transform: translateY(0);
}

/* Delay modifiers for service cards */
.service-card[style*="--delay"] {
    transition-delay: calc(var(--delay) * 0.1s);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        left: 5px;
        font-size: 0.875rem;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}
