﻿
/* ==========================================================================
       CSS Variables & Global Reset
       ========================================================================== */
:root {
    --primary: #001142;
    --primary-container: #00236f;
    --on-primary: #ffffff;
    --secondary: #4b41e1;
    --secondary-hover: #3b31d4;
    --secondary-container: #655dfb;
    --on-secondary: #ffffff;
    --surface: #faf8ff;
    --surface-container: #e9edff;
    --surface-container-low: #f2f3ff;
    --on-surface: #151b2a;
    --on-surface-variant: #444651;
    --outline: #757682;
    --white: #ffffff;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-main);
    background-color: var(--surface);
    color: var(--on-surface);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    display: none;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Layout Containers */
.dt-container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .dt-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.section-py {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.bg-surface-low {
    background-color: var(--surface-container-low);
}

.text-center-wrapper {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem auto;
}

.section-eyebrow {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.section-heading {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

@media (min-width: 1024px) {
    .section-heading {
        font-size: 2.25rem;
    }
}

.section-subtext {
    font-size: 1rem;
    color: var(--on-surface-variant);
    line-height: 1.6;
}

/* ==========================================================================
       Header Styles
       ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background-color: rgba(250, 248, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
    height: 5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .header-inner {
        padding: 0 3rem;
    }
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-primary);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.brand-sub {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--on-surface-variant);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.main-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 1280px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--on-surface-variant);
    transition: color 0.2s ease;
}

    .nav-link:hover, .nav-link.active {
        color: var(--secondary);
    }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-phone-btn {
    display: none;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--surface-container-low);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

@media (min-width: 640px) {
    .header-phone-btn {
        display: flex;
    }
}

.header-phone-btn:hover {
    background-color: var(--surface-container);
}

.header-cta-btn {
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    background-color: var(--secondary);
    color: var(--on-secondary);
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.2s ease;
}

    .header-cta-btn:hover {
        background-color: var(--secondary-container);
    }

.header-user-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--on-primary);
    flex-shrink: 0;
}

/* ==========================================================================
       Buttons & Badges
       ========================================================================== */
.dt-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--secondary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(75, 65, 225, 0.25);
}

    .dt-btn-primary:hover {
        background-color: var(--secondary-hover);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(75, 65, 225, 0.35);
    }

.dt-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--white);
    color: var(--primary-container);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0, 35, 111, 0.08);
}

    .dt-btn-secondary:hover {
        background-color: #f2f5fc;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 35, 111, 0.12);
    }

.dt-btn-saffron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff8a3d 0%, #f4b400 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9375rem;
    padding: 0.75rem 1.625rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(255, 138, 61, 0.35);
    transition: all 0.2s ease;
}

    .dt-btn-saffron:hover {
        transform: translateY(-2px);
        filter: brightness(1.06);
        box-shadow: 0 6px 20px rgba(255, 138, 61, 0.45);
    }

.dt-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    letter-spacing: 0.02em;
}

.dt-chip-saffron {
    background: rgba(255, 138, 61, 0.12);
    color: #d65a08;
}

.dt-chip-cyan {
    background: rgba(0, 168, 232, 0.12);
    color: #0077a6;
}

.dt-chip-mint {
    background: rgba(0, 184, 148, 0.12);
    color: #008769;
}

.dt-chip-iris {
    background: rgba(108, 92, 231, 0.12);
    color: #5846cd;
}

.dt-chip-amber {
    background: rgba(244, 180, 0, 0.14);
    color: #9c7300;
}

.tag-badge {
    padding: 0.125rem 0.5rem;
    border-radius: 0.25rem;
    background-color: var(--surface-container);
    font-size: 11px;
    font-weight: 500;
    color: var(--on-surface-variant);
}

/* Cards */
.dt-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(0, 35, 111, 0.04);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

    .dt-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 14px 28px rgba(0, 35, 111, 0.08), 0 2px 6px rgba(75, 65, 225, 0.06);
    }

.dt-card-flex {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================================================
       Hero Section
       ========================================================================== */
.hero-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    background: #111827;
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 7fr 5fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background-color: rgba(75, 65, 225, 0.1);
    color: wheat;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-desc {
    font-size: 1rem;
    color: lightgray;
    margin-bottom: 2rem;
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 640px) {
    .hero-desc {
        font-size: 1.125rem;
    }
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #008769;
    padding: 0.25rem 0.5rem;
}

    .hero-whatsapp-btn:hover {
        text-decoration: underline;
    }

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    width: 100%;
}

@media (min-width: 640px) {
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--on-surface-variant);
}

/* Terminal visual mockup */
.terminal-card {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 32rem;
    background-color: #001438;
    border-radius: 1rem;
    padding: 1.25rem;
    color: #ffffff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.terminal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red {
    background-color: #f87171;
}

.dot-yellow {
    background-color: #facc15;
}

.dot-green {
    background-color: #4ade80;
}

.terminal-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #94a3b8;
    margin-left: 0.5rem;
}

.dt-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #00b894;
    border-radius: 50%;
    display: inline-block;
    animation: dtPulse 2s infinite;
}

@keyframes dtPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
    }

    70% {
        box-shadow: 0 0 0 6px rgba(0, 184, 148, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
    }
}

.terminal-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.terminal-metric-box {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.625rem;
    border-radius: 0.5rem;
}

.metric-label {
    font-size: 10px;
    color: #94a3b8;
    display: block;
    margin-bottom: 2px;
}

.metric-val {
    font-size: 0.875rem;
    font-weight: 700;
}

.terminal-monitor-box {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.875rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.pipeline-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

    .pipeline-row:last-child {
        margin-bottom: 0;
    }

.pipeline-label {
    width: 5rem;
    font-size: 11px;
    color: #94a3b8;
}

.pipeline-bar-wrapper {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    height: 0.375rem;
    border-radius: 9999px;
    overflow: hidden;
}

.pipeline-bar-fill {
    height: 100%;
}

.pipeline-value {
    font-size: 10px;
    color: #cbd5e1;
    font-family: var(--font-mono);
}

.terminal-tags-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 0.25rem;
}

.terminal-tag {
    padding: 0.25rem 0.625rem;
    border-radius: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 500;
}

/* ==========================================================================
       Trust Highlights Bar
       ========================================================================== */
.trust-bar {
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    padding-bottom: 2rem;
    margin-top: -1rem;
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--surface-container-low);
    transition: background-color 0.2s ease;
}

    .trust-item:hover {
        background-color: var(--surface-container);
    }

.trust-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

/* ==========================================================================
       Section 3: Architecture & Blueprint
       ========================================================================== */
.arch-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .arch-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.blueprint-container {
    background-color: var(--surface-container-low);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
}

@media (min-width: 1024px) {
    .blueprint-container {
        padding: 2rem;
    }
}

.flow-step-box {
    background-color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.engine-box {
    background-color: #00174a;
    color: #ffffff;
    padding: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.engine-subgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
}

.engine-subbox {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
    border-radius: 0.25rem;
}

/* ==========================================================================
       Grids: Services, Problems, Industries, Tech, Process, Projects
       ========================================================================== */
.grid-services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-services {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-icon-box {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3col {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-4col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-4col {
        grid-template-columns: repeat(4, 1fr);
    }
}

.industry-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

/* Process Card Numbers */
.process-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.process-watermark {
    font-family: var(--font-mono);
    font-size: 2.25rem;
    font-weight: 800;
    color: #f1f5f9;
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    user-select: none;
}

.process-num-badge {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ==========================================================================
       Comparison Table
       ========================================================================== */
.table-container {
    overflow-x: auto;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.compare-table {
    width: 100%;
    text-align: left;
    border-collapse: collapse;
}

    .compare-table thead tr {
        background-color: var(--surface-container);
        color: var(--primary);
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .compare-table th, .compare-table td {
        padding: 1rem 1.5rem;
    }

    .compare-table tbody tr {
        border-bottom: 1px solid var(--surface-container);
        font-size: 0.875rem;
    }

        .compare-table tbody tr:last-child {
            border-bottom: none;
        }

/* ==========================================================================
       Dark Section & Glass Cards
       ========================================================================== */
.dt-navy-dark {
    background: linear-gradient(145deg, #000c28 0%, #00174a 60%, #080d26 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.dt-glass-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-icon-box {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ==========================================================================
       Accordion FAQ
       ========================================================================== */
.dt-faq-item {
    background: var(--white);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 35, 111, 0.03);
    overflow: hidden;
    transition: all 0.2s ease;
}

.dt-faq-question {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary);
}

.dt-faq-icon {
    transition: transform 0.2s ease;
}

.dt-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--on-surface-variant);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.dt-faq-item.active .dt-faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
    transition: max-height 0.35s ease-in-out, padding 0.3s ease;
}

.dt-faq-item.active .dt-faq-icon {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* ==========================================================================
       Regional Delivery Section
       ========================================================================== */
.regional-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .regional-grid {
        grid-template-columns: 8fr 4fr;
    }
}

.regional-subgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .regional-subgrid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
       Footer
       ========================================================================== */
.site-footer {
    width: 100%;
    background-color: var(--surface-container-low);
    color: var(--on-surface-variant);
    padding-top: 4rem;
    padding-bottom: 3rem;
    box-shadow: 0 -1px 8px rgba(0, 0, 0, 0.02);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.75rem;
}

    .footer-list li a:hover,
    .footer-list li:hover {
        color: var(--on-surface);
        cursor: pointer;
    }

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.75rem;
    color: var(--outline);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

/* ==========================================================================
       Utility Helpers
       ========================================================================== */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.w-full {
    width: 100%;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.line-through {
    text-decoration: line-through;
}

