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

:root {
    /* Flowocity Brand Colors */
    --primary-navy: #2F3A4A;
    --sky-blue: #4DB8FF;
    --sky-blue-light: #35C4FF;
    --growth-green: #62A896;
    --steel-gray: #7A8089;
    --light-slate: #E8ECF1;
    --off-white: #F7FAFD;
    --soft-sand: #F1E6B8;
    --black: #000000;
}

body {
    font-family: 'Karla', system-ui, 'Segoe UI', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: var(--primary-navy);
    background-color: var(--off-white);
    font-weight: 400;
}

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

/* Typography Scale */
h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
}

h2 {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
}

h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

p, body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}

.small {
    font-size: 14px;
    line-height: 20px;
}

.label {
    font-size: 12px;
    line-height: 16px;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: rgba(247, 250, 253, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--light-slate);
    height: 72px;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-enso {
    width: 40px;
    height: 40px;
    position: relative;
}

.logo-enso::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--sky-blue);
    border-radius: 50%;
    border-top-color: transparent;
    border-right-color: transparent;
    top: 0;
    left: 0;
}

.logo-enso::after {
    content: '';
    position: absolute;
    background: var(--sky-blue);
    width: 2px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center;
}

.nav-logo h2 {
    color: var(--black);
    font-weight: 700;
    font-size: 24px;
    font-family: 'Montserrat', 'Proxima Nova', 'Gotham', sans-serif;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

/* Brand logo image */
.brand-logo {
    height: 28px;
    width: auto;
    aspect-ratio: 240 / 50;
    display: block;
    object-fit: cover; /* crop to match ALT visual area */
}

.hero .brand-logo {
    height: 42px;
    width: auto;
    aspect-ratio: 240 / 50;
    margin: 0 auto 10px;
    display: block;
    object-fit: cover; /* crop to match ALT visual area */
}

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

.nav-link {
    text-decoration: none;
    color: var(--primary-navy);
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--sky-blue);
}

.nav-link.cta-link {
    background: var(--primary-navy);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link.cta-link:hover {
    background: #1e2a3a;
    color: white;
}

.nav-link.cta-link:focus {
    outline: 2px solid var(--sky-blue);
    outline-offset: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    /* Image first so it's visible; gradient underneath */
    background: url('assets/hero-mountains.jpg'), linear-gradient(180deg, #f9fbfe 0%, #f3f7fb 100%);
    background-repeat: no-repeat, no-repeat;
    background-size: cover, auto;
    background-position: center 75%, center;
    color: var(--primary-navy);
    padding: 140px 0 160px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 72px);
}

/* Ensure anchor jumps account for fixed navbar */
section { scroll-margin-top: 90px; }

/* Remove previous decorative overlays */
.hero::before, .hero::after { display: none; }

.hero-logo {
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
}

.hero-logo .logo-enso {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
}

.hero-logo .logo-enso::before {
    width: 60px;
    height: 60px;
    border-width: 4px;
}

.hero-logo .logo-enso::after {
    width: 3px;
    height: 18px;
}

.hero-logo h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    font-family: 'Montserrat', 'Proxima Nova', 'Gotham', sans-serif;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.hero-tagline {
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 40px;
    color: var(--steel-gray);
    font-style: italic;
    font-weight: 400;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--primary-navy);
    position: relative;
    z-index: 3;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--steel-gray);
    font-weight: 400;
    position: relative;
    z-index: 3;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

/* remove decorative mountains container (no longer used) */

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    line-height: 24px;
}

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

.btn-primary:hover {
    background: #1e2a3a;
    transform: translateY(-1px);
}

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

.btn-secondary {
    background: transparent;
    color: var(--primary-navy);
    border: 2px solid var(--primary-navy);
}

.btn-secondary:hover {
    background: var(--light-slate);
    color: var(--primary-navy);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--off-white);
}

.section-title {
    font-size: 36px;
    line-height: 44px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--primary-navy);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Stack + Stage Arrow layout */
.stack-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    align-items: stretch;
    gap: 24px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.stage-arrow {
    position: relative;
    display: none;
}

.stage-arrow .arrow-line {
    position: absolute;
    top: 4px;
    bottom: 4px;
    right: 64px;
    width: 2px;
    background: var(--primary-navy);
    opacity: 0.85;
}

.stage-arrow .arrow-head {
    position: absolute;
    right: 58px;
    top: -2px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid var(--primary-navy);
}

/* Tick marks removed per design update */

.stage-arrow .arrow-labels {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
}

.stage-arrow .arrow-labels .label-mid,
.stage-arrow .arrow-labels .label-bottom {
    position: absolute;
    right: 0;
    transform: translateY(-50%);
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 16px;
}
.stage-arrow .arrow-labels .label-mid { top: 50%; }
.stage-arrow .arrow-labels .label-bottom { bottom: 0; transform: translateY(0); }

.service-card {
    background: var(--off-white);
    border-radius: 6px;
    padding: 16px 20px;
    border: 1px solid var(--light-slate);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.service-card:hover {
    border-color: rgba(77, 184, 255, 0.6);
    box-shadow: 0 4px 12px rgba(77, 184, 255, 0.08);
}

.service-card:hover { transform: translateY(-1px); }

.service-header {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 12px;
}

.service-header h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    margin: 0;
    color: var(--primary-navy);
}



.service-header p {
    margin: 4px 0 0 0;
    font-size: 16px;
    line-height: 24px;
    color: var(--steel-gray);
}



.expand-btn {
    background: none;
    border: none;
    color: var(--steel-gray);
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: background-color 0.2s ease, color 0.2s ease;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.expand-btn:hover { background: var(--off-white); }

.expand-btn i {
    transition: transform 0.2s ease;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease;
    border-top: 1px solid var(--light-slate);
    margin-top: 12px;
}

.service-details.active {
    max-height: 200px;
}

.service-details ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.service-details li {
    padding: 8px 0;
    position: relative;
    padding-left: 16px;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-navy);
}



.service-details li::before {
    content: "•";
    color: var(--sky-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 16px;
}

.pricing-note {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    color: var(--sky-blue);
    margin-top: 24px;
}


/* Journey Section */
.journey {
    padding: 80px 0;
    background: white;
    position: relative;
}

.journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(77, 184, 255, 0.05) 50%, transparent 100%);
    z-index: 1;
}

.journey-stages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Growth wedge visual motif */
.journey-stages::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-blue) 0%, var(--growth-green) 50%, var(--sky-blue) 100%);
    transform: translateY(-50%);
    z-index: 1;
}

.journey-stages::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 30px solid var(--sky-blue);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.stage {
    text-align: center;
    padding: 32px;
    border-radius: 8px;
    background: var(--off-white);
    border: 1px solid var(--light-slate);
    transition: all 0.2s ease;
    position: relative;
    z-index: 3;
}

.stage:hover {
    border-color: var(--sky-blue);
    box-shadow: 0 4px 12px rgba(77, 184, 255, 0.1);
}

.stage h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.stage p {
    color: var(--steel-gray);
    font-size: 16px;
    line-height: 24px;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--off-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 36px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: white;
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    border: 1px solid var(--light-slate);
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    border-color: var(--sky-blue);
    box-shadow: 0 4px 12px rgba(77, 184, 255, 0.1);
}

.member-photo {
    margin-bottom: 24px;
}

.member-photo img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;  /* Slightly upward focus to keep heads in frame */
    display: block;
    margin: 0 auto;
    border: 2px solid var(--light-slate);
    transition: border-color 0.2s ease;
}

/* Add subtle hover effect on photos */
.team-member:hover .member-photo img {
    border-color: var(--sky-blue);
}

.photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--light-slate);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 48px;
    color: var(--steel-gray);
}

.team-member h3 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.member-title {
    color: var(--sky-blue);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 24px;
}

.member-bio {
    color: var(--steel-gray);
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    margin-bottom: 12px;
    max-width: 64ch;
}

/* Consistent spacing between bio paragraphs */
.member-bio + .member-bio {
    margin-top: 8px;
}

/* Subtle member link styling and placement */
.member-link {
    align-self: flex-start;
    margin-top: auto;
    color: var(--primary-navy);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
    border: none;
}

.member-link:hover {
    text-decoration: underline;
    color: var(--sky-blue);
}

/* Minimal LinkedIn icon spacing */
.member-link i.fa-linkedin {
    margin-right: 6px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact .section-title {
    margin-bottom: 24px;
}

.cta-text {
    text-align: center;
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.cta-alternative {
    text-align: center;
    font-size: 16px;
    line-height: 24px;
    color: var(--steel-gray);
    margin-bottom: 48px;
}

.cta-alternative a {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 500;
}

.cta-alternative a:hover {
    text-decoration: underline;
}

.calendly-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer {
    background: var(--primary-navy);
    color: white;
    padding: 32px 0;
    text-align: center;
}

.footer p {
    color: white;
    font-size: 14px;
    line-height: 20px;
}

.footer a {
    color: white;
    text-decoration: underline;
}

.footer a:hover {
    color: var(--sky-blue);
}

/* Desktop enhancements */
@media (min-width: 1024px) {
    .hero {
        padding: 160px 0 200px;
        background-position: center 72%, center;
    }

    .hero .brand-logo {
        height: 56px;
    }

    .hero-title {
        font-size: clamp(56px, 5vw, 80px);
        line-height: clamp(64px, 5.8vw, 92px);
        margin-bottom: 28px;
    }

    .hero-subtitle {
        font-size: clamp(22px, 1.6vw, 28px);
        line-height: clamp(30px, 2.2vw, 40px);
        max-width: 900px;
    }

    /* Show the stage arrow on desktop */
    .stage-arrow { display: block; }
}

/* Ensure full-width stack on mobile/tablet when arrow is hidden */
@media (max-width: 1023px) {
    .stack-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 72px;
        flex-direction: column;
        background-color: var(--off-white);
        width: 100%;
        text-align: center;
        transition: 0.2s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 32px 0;
        border-top: 1px solid var(--light-slate);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 44px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-stages {
        grid-template-columns: 1fr;
    }
    
    .team-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 140px;
        background-position: center 80%, center;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .service-card,
    .team-member {
        padding: 24px;
    }
}

/* Resource Hub & Thinking Styles */
.resource-page {
    background: var(--off-white);
}

.hub-hero {
    background: linear-gradient(180deg, #f9fbfe 0%, #f3f7fb 100%);
    padding: 80px 0 64px;
    text-align: center;
    margin-top: 72px;
}

.hub-title {
    font-size: 48px;
    line-height: 56px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
}

.hub-subtitle {
    font-size: 20px;
    line-height: 28px;
    color: var(--steel-gray);
    margin-bottom: 0;
    font-weight: 500;
}

.hub-intro {
    font-size: 16px;
    line-height: 24px;
    color: var(--steel-gray);
    max-width: 900px;
    margin: 24px auto 0;
    text-align: center;
}

.hub-section {
    padding: 64px 0;
    background: var(--off-white);
}

.hub-section:nth-child(even) {
    background: white;
}

.hub-section-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 16px;
}

.hub-section-subtitle {
    margin-bottom: 40px;
    margin-top: 0;
}

/* Hub table styles */
.hub-table {
    display: grid;
    gap: 1px;
    background: var(--light-slate);
    border: 1px solid var(--light-slate);
    border-radius: 8px;
    overflow: hidden;
}

.hub-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    background: var(--primary-navy);
    color: white;
}

.hub-header {
    padding: 16px 20px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
}

.hub-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    background: white;
    transition: background-color 0.2s ease;
}

.hub-row:hover {
    background: rgba(77, 184, 255, 0.04);
}

.hub-cell {
    padding: 20px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    align-items: flex-start;
}

.hub-link {
    color: var(--sky-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.hub-link:hover {
    color: var(--sky-blue-light);
    text-decoration: underline;
}

.hub-benefits {
    background: white;
}

.hub-bullets {
    list-style: none;
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.hub-bullets li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: var(--primary-navy);
}

.hub-bullets li::before {
    content: "→";
    color: var(--sky-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 20px;
}

/* Responsive Hub Styles */
@media (max-width: 768px) {
    .hub-hero {
        padding: 100px 0 60px;
    }

    .hub-title {
        font-size: 36px;
        line-height: 44px;
    }

    .hub-subtitle {
        font-size: 18px;
        line-height: 26px;
    }

    .hub-table {
        display: block !important;
    }

    .hub-header-row {
        display: none;
    }

    .hub-row {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0;
        margin-bottom: 24px;
        border-radius: 8px;
        overflow: hidden;
    }

    .hub-cell {
        display: block !important;
        width: 100% !important;
        padding: 20px;
        grid-column: unset !important;
    }

    .hub-cell[data-label]::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--primary-navy);
        display: block;
        margin-bottom: 8px;
    }

    .hub-cell:first-child {
        background: var(--off-white);
        border-bottom: 1px solid var(--light-slate);
        padding-bottom: 16px;
    }

    .hub-cell:not(:first-child) {
        padding-top: 16px;
    }

    /* Bold article titles on mobile - blue to show they're clickable */
    .hub-cell .hub-link {
        font-weight: 700;
        font-size: 18px;
        line-height: 26px;
        display: block;
        color: var(--sky-blue);
    }

    /* Improve spacing for Flowocity's Take section */
    .hub-cell:last-child {
        padding-top: 20px;
        border-top: 1px solid var(--light-slate);
        margin-top: 8px;
    }

    /* Special handling for 2-column insights table on mobile */
    .insights-table .hub-row {
        grid-template-columns: 1fr;
    }

    .insights-table .hub-cell:first-child {
        background: var(--off-white);
        border-bottom: 1px solid var(--light-slate);
    }

    .insights-table .hub-cell:last-child {
        border-top: none;
        margin-top: 0;
        padding-top: 16px;
    }

    /* Ensure consistent section spacing on mobile */
    .hub-section {
        padding: 48px 0;
    }

    .hub-section-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 12px;
    }

    .hub-section-subtitle {
        margin-bottom: 32px;
        font-size: 16px;
        line-height: 24px;
    }
}

/* Additional mobile refinements for smaller screens */
@media (max-width: 480px) {
    .hub-hero {
        padding: 80px 0 48px;
    }

    .hub-title {
        font-size: 28px;
        line-height: 36px;
    }

    .hub-subtitle {
        font-size: 16px;
        line-height: 24px;
    }

    .hub-section {
        padding: 40px 0;
    }

    .hub-section-title {
        font-size: 24px;
        line-height: 32px;
    }

    .hub-cell {
        padding: 16px !important;
    }
}

/* Metrics Section */
.metrics-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(77, 184, 255, 0.03) 0%, rgba(98, 168, 150, 0.03) 100%);
    position: relative;
}

.metrics-intro {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: var(--steel-gray);
    max-width: 700px;
    margin: -24px auto 48px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.metric-card {
    background: white;
    border-radius: 8px;
    padding: 24px;
    border: 1px solid var(--light-slate);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.metric-card:hover {
    border-color: var(--sky-blue);
    box-shadow: 0 8px 16px rgba(77, 184, 255, 0.12);
    transform: translateY(-4px);
}

.metric-card h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.metric-card p {
    font-size: 16px;
    line-height: 24px;
    color: var(--steel-gray);
    margin: 0;
}

/* Responsive adjustments for metrics */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-card {
        padding: 22px 20px;
    }
}

@media (max-width: 480px) {
    .metrics-section {
        padding: 60px 0;
    }

    .metrics-intro {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 32px;
    }

    .metric-card {
        padding: 20px 18px;
    }

    .metric-card h3 {
        font-size: 18px;
        line-height: 26px;
    }
}

/* Desktop enhancements for metrics */
@media (min-width: 1024px) {
    .metrics-intro {
        font-size: 20px;
        line-height: 28px;
    }

    .metrics-grid {
        gap: 36px;
    }
}
