/* ============================================================
   PROFESSIONAL DARK MODE - ADOPTION DESIGN
   Inspired by Reference Design
   Aesthetic: Trust, Professionalism, Clean Luxury
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@500;600;700;800&family=Nunito+Sans:opsz,wght@6..12,400;6..12,500;6..12,600;6..12,700&display=swap');

:root {
    /* Palette */
    --background: #011f4b;
    --background-alt: #03396c;
    --foreground: #ffffff;
    --primary: #005b96;
    --primary-glow: rgba(0, 91, 150, 0.4);
    --card: #03396c;
    --card-hover: #005b96;
    --border: rgba(100, 151, 177, 0.2);
    --muted: #6497b1;
    --text-gray: #b3cde0;

    /* Typography */
    --font-heading: 'Barlow Semi Condensed', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;

    /* Metrics & Transitions */
    --nav-height: 80px;
    --radius: 1.25rem;
    --radius-sm: 0.6rem;
    --radius-lg: 2rem;
    --container-max: 1200px;
    --grid-gap: 5rem;
    --section-padding: 100px;
    --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Mobile-First Base Overrides */
@media (max-width: 900px) {
    :root {
        --grid-gap: 3rem;
        --section-padding: 80px;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 72px;
        --radius: 1rem;
        --radius-lg: 1.5rem;
        --grid-gap: 2rem;
        --section-padding: 60px;
    }
}


/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: var(--background);
    color: var(--foreground);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.01em;
}


a {
    transition: color 0.2s;
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.25rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, white 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Header */
header {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: rgba(1, 31, 75, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.glass {
    background: rgba(1, 31, 75, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    padding: 3rem;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .glass-card {
        padding: 1.5rem;
    }
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    z-index: 1001;
}

header .logo-wrap {
    padding: 0.35rem 0.75rem 0.35rem 0.35rem;
    border-radius: 10px;
    border: 1px solid rgba(100, 151, 177, 0.18);
    background: rgba(255, 255, 255, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease;
}

header .logo-wrap:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(100, 151, 177, 0.35);
}

.logo-wrap img {
    height: 52px;
    filter: invert(1) brightness(2.2) contrast(1.15) drop-shadow(0 0 8px rgba(100, 151, 177, 0.55));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-wrap:hover img {
    transform: scale(1.06);
    filter: invert(1) brightness(2.5) contrast(1.2) drop-shadow(0 0 14px rgba(100, 151, 177, 0.8));
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    color: #ffffff;
    white-space: nowrap;
    text-shadow: 0 0 18px rgba(180, 210, 235, 0.5);
    font-family: var(--font-heading);
    line-height: 1.1;
}

@media (max-width: 400px) {
    .logo-text {
        font-size: 1.05rem;
    }

    .logo-wrap {
        gap: 0.5rem;
        padding: 0.25rem 0.5rem 0.25rem 0.25rem;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    transition: transform 0.4s var(--transition-fluid), opacity 0.3s ease;
}

.mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.mobile-toggle:active {
    transform: scale(0.9);
}

.nav-links a {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.nav-links a:hover {
    color: white;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    box-shadow: 0 0 20px var(--primary-glow);
    transition: var(--transition-bounce);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px var(--primary-glow);
}

/* Sections */
section {
    padding: 5rem 0;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out, transform 2s ease-out;
    background-size: cover;
    background-position: right top;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(65deg, rgba(1, 31, 75, 0.85) 0%, rgba(1, 31, 75, 0.25) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 52rem;
    padding: 160px 0 100px;
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 0 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Ensure images are visible on mobile by making the overlay much lighter */
    .hero-overlay {
        background: linear-gradient(to bottom, rgba(1, 31, 75, 0.5) 0%, rgba(1, 31, 75, 0.1) 50%, rgba(1, 31, 75, 0.7) 100%);
    }
}




.hero-label {
    color: var(--primary);
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-blue {
    color: var(--primary);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }
}


.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius);
    font-weight: 500;
}

.btn-outline {
    border: 1px solid var(--border);
    color: white;
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-item {
        padding: 1.25rem;
        /* Reduced for smaller screens */
    }

    /* Fix for CIT and other small cards */
    .bento-item span[style*="font-size: 2rem"] {
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
}


.bento-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-bounce);
}

.bento-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
}

/* Feature Card Styles */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 91, 150, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Responsive Layout Utilities */
.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    align-items: center;
}

.grid-cols-3,
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

@media (max-width: 1024px) {

    .grid-cols-3,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .grid-split-content {
        order: 2;
    }

    .grid-split-visual {
        order: 1;
        margin-bottom: 3rem;
    }

    .grid-cols-3,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Section Specifics */
.section-standard {
    padding: var(--section-padding) 0;
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}


/* Sector Grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .sector-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sector-grid {
        grid-template-columns: 1fr;
    }
}


.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-top: 3px solid var(--primary);
    padding: 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    border-top-color: var(--primary);
    background: rgba(0, 91, 150, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Subpage Header */
.sub-header {
    background: #011f4b;
    background-size: cover;
    background-position: center;
    padding: clamp(8rem, 15vw, 12rem) 0 clamp(4rem, 10vw, 6rem);
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.sub-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1,31,75,0.88) 0%, rgba(0,91,150,0.55) 100%);
    z-index: 0;
}

.sub-header .container,
.sub-header > .container {
    position: relative;
    z-index: 1;
}

.sub-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-family: var(--font-heading);
    line-height: 1.1;
}

/* Form */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 1rem;
    color: white;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
}

select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

select.form-input option {
    background: var(--card);
    color: white;
}

textarea.form-input {
    resize: vertical;
    min-height: 120px;
}

/* WhatsApp Floating Link */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 58px;
    height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    transition: var(--transition-bounce);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.65);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
    flex-shrink: 0;
}

.whatsapp-float span {
    display: none;
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 1.25rem;
        right: 1.25rem;
        width: 52px;
        height: 52px;
    }
}

/* ============================================================
   BENCHMARK UPGRADES
   ============================================================ */

/* Top Emergency Bar */
.top-bar {
    background: var(--primary);
    padding: 0.55rem 0;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.top-bar-inner > span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.top-bar-contact {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.top-bar-contact a {
    color: white;
    font-weight: 600;
    transition: opacity 0.2s;
}

.top-bar-contact a:hover { opacity: 0.8; }

.top-bar-cta {
    background: white;
    color: var(--primary) !important;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-weight: 700 !important;
    font-size: 0.78rem;
}

@media (max-width: 640px) {
    .top-bar-inner > span { display: none; }
    .top-bar-inner { justify-content: center; }
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 3.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-family: var(--font-heading);
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.6rem;
    font-weight: 600;
}

@media (max-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-item:nth-child(2)::after,
    .stat-item:nth-child(4)::after { display: none; }
}

/* Why Choose Us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }

.why-card {
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    text-align: center;
    transition: var(--transition-base);
}

.why-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0, 91, 150, 0.2);
}

.why-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    display: block;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}

.why-card p {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 2rem;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: var(--border);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: white;
    margin: 0 auto 1.25rem;
    border: 3px solid var(--background);
}

.process-step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.process-step p {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
}

@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* Client Trust Strip */
.clients-strip-section {
    padding: 2.5rem 0;
    background: var(--background);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.clients-label {
    text-align: center;
    color: var(--muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.75rem;
    font-weight: 600;
}

.clients-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 3rem;
    justify-content: center;
    align-items: center;
}

.clients-strip span {
    color: var(--text-gray);
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.clients-strip span:hover { opacity: 1; }

.client-logo {
    height: 56px;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.client-logo:hover {
    opacity: 1;
}

/* Star Ratings */
.stars {
    color: #f59e0b;
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    display: block;
}

/* Certification Strip */
.cert-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    justify-content: center;
    padding: 2rem 0 0;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--text-gray);
    font-weight: 500;
    white-space: nowrap;
    transition: border-color 0.2s;
}

.cert-badge:hover { border-color: var(--primary); }

/* Footer */
footer {
    border-top: 1px solid var(--border);
    padding: var(--section-padding) 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 2rem;
    font-size: 1.125rem;
    color: var(--primary);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-gray);
    font-size: 0.9375rem;
    transition: var(--transition-base);
}

.footer-col a:hover {
    color: white;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
}

@media (max-width: 768px) {
    .nav-content {
        justify-content: space-between;
    }

    .mobile-toggle {
        display: flex;
        order: -1;
        /* Move to the left */
        margin-right: auto;
    }

    .logo-wrap {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #011f4b;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        z-index: 1500;
        padding: 2rem;
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        pointer-events: none;
    }


    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links a {
        font-size: 1.75rem;
        font-weight: 700;
        color: white;
        display: block;
        padding: 0.5rem;
    }

    .nav-links .btn-primary {
        display: block;
        width: 100%;
        max-width: 280px;
        margin: 1.5rem auto 0;
        /* Centered */
        font-size: 1.125rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col .logo-wrap {
        justify-content: center;
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: clamp(2.25rem, 10vw, 3rem);
    }

    .hero-description {
        font-size: 1.1rem;
    }

    section {
        padding: 4rem 0;
    }

    .sub-header {
        padding: 6rem 0 3rem;
        text-align: center;
    }

    .sub-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-col:first-child {
        grid-column: span 2;
    }
}