@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@400;500;700&display=swap');

:root {
    --primary: #3B82F6;
    --primary-dark: #1D4ED8;
    --secondary: #8B5CF6;
    --accent: #F43F5E;
    --bg-light: #F8FAFC;
    --text-main: #0F172A;
    --text-muted: #64748B;
    --glass: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    
    /* Variables from sectors.html */
    --b1: #0050E6;
    --b2: #1A6BFF;
    --b3: #4D8FFF;
    --b4: #E6EEFF;
    --b5: #F0F5FF;
    --ink: #060E2A;
    --ink2: #2A3560;
    --ink3: #6B7898;
    --white: #FFFFFF;
    --offwhite: #F7F9FF;
    --teal: #00C9A7;
    --gold: #FFB800;
    --coral: #FF4D6D;
}

/* ===== HERO DASHBOARD (RIGHT SIDE) ===== */

.hero-visual {
    position: relative;
}

.dash-card {
    background: #ffffff;
    border: 1.5px solid #D6E4FF;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0, 80, 230, 0.08);
    position: relative;
    overflow: hidden;
}

/* top gradient line */
.dash-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0050E6, #00C9A7);
}

/* HEADER */
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dash-title {
    font-size: 12px;
    font-weight: 600;
    color: #2A3560;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dash-live {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #00C9A7;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #00C9A7;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* METRICS */
.dash-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.m-card {
    background: #F7F9FF;
    border-radius: 12px;
    padding: 12px;
}

.m-val {
    font-size: 18px;
    font-weight: 800;
    color: #060E2A;
}

.m-lbl {
    font-size: 11px;
    color: #6B7898;
}

.m-up {
    font-size: 10px;
    font-weight: 700;
    color: #00C9A7;
    margin-top: 4px;
}

/* PROGRESS BARS */
.bar-row {
    margin-bottom: 12px;
}

.bar-lbl {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.bar-lbl span {
    font-size: 11px;
    color: #2A3560;
    font-weight: 500;
}

.bar-lbl em {
    font-size: 11px;
    color: #6B7898;
    font-style: normal;
}

.bar-track {
    height: 6px;
    background: #F0F5FF;
    border-radius: 100px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 100px;
}

/* TRANSACTION LIST */
.txn-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

.txn-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    background: #F7F9FF;
    border-radius: 10px;
}

.txn-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.txn-name {
    font-size: 13px;
    font-weight: 600;
    color: #060E2A;
}

.txn-type {
    font-size: 11px;
    color: #6B7898;
}

.txn-amt {
    font-size: 13px;
    font-weight: 700;
    color: #060E2A;
}

.txn-status {
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 100px;
    font-weight: 600;
    display: inline-block;
    margin-top: 3px;
}

/* Custom Gradients */
.bg-mesh {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, hsla(217, 100%, 92%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(242, 100%, 93%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(186, 100%, 94%, 1) 0, transparent 50%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(15, 23, 42, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Typography & Base */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
}

h1,
h2,
h3,
h4,
.brand-font {
    font-family: 'Outfit', sans-serif;
}

.sec-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--b1);
    margin-bottom: 1rem;
    display: inline-block;
}

.sec-sub {
    font-size: 1rem;
    color: var(--ink3);
    line-height: 1.75;
    font-weight: 400;
    max-width: 540px;
    margin-bottom: 2rem;
}

h1 {
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--ink);
}

h2 {
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--ink);
}

/* GSAP Hidden elements - will be animated in */
.reveal {
    opacity: 0;
    transform: translateY(30px);
}

/* Interactive Cards */
.tilt-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tilt-card:hover {
    transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Hero UI Elements animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Premium Elevation & Shadows */
.shadow-premium {
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.05), 0 4px 6px -2px rgba(15, 23, 42, 0.02), 0 20px 40px -10px rgba(15, 23, 42, 0.05);
}

.shadow-glow-primary {
    box-shadow: 0 0 30px -5px rgba(59, 130, 246, 0.2);
}

.shadow-glow-secondary {
    box-shadow: 0 0 30px -5px rgba(139, 92, 246, 0.2);
}

/* Interactive States */
.card-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.12);
}

.card-hover:hover .glow-on-hover {
    opacity: 1;
}

/* Base Adjustments */
.tracking-premium {
    letter-spacing: -0.02em;
}

.font-outfit {
    font-family: 'Outfit', sans-serif;
}

/* ── SHARED NAV (From sectors.html) ── */
nav.global-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid #E6EEFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(8px);
    width: 100%;
}

.global-nav .logo {
    display: flex;
    align-items: center;
}

.global-nav .logo img {
    height: 60px;
    width: auto;
}

.global-nav .nav-pills {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    justify-self: center;
}

.global-nav .nav-pills a {
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ink2);
    text-decoration: none;
    transition: background .2s, color .2s;
    font-family: 'Outfit', sans-serif;
}

.global-nav .nav-pills a:hover,
.global-nav .nav-pills a.active {
    background: var(--b5);
    color: var(--b1);
}

.global-nav .nav-btn {
    background: var(--b1);
    color: white;
    border: none;
    padding: 0.70rem 1.8rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s;
}

.global-nav .nav-btn:hover {
    background: var(--b2);
}

/* ── Hamburger button (hidden on desktop) ── */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: 1.5px solid #E6EEFF;
    border-radius: 10px;
    cursor: pointer;
    padding: 8px;
    transition: border-color .2s;
}
.nav-hamburger:hover { border-color: var(--b1); }
.nav-hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile nav (≤768px) ── */
@media (max-width: 768px) {
    nav.global-nav {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 0.85rem 1.25rem;
        gap: 0;
    }
    .global-nav .logo {
        flex: 1;
    }
    .global-nav .logo img {
        height: 44px;
    }
    .global-nav .nav-end {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }
    .nav-hamburger {
        display: flex;
    }
    .global-nav .nav-pills {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        border-top: 1px solid #E6EEFF;
        margin-top: 0.75rem;
    }
    .nav-open .nav-pills {
        display: flex;
    }
    .global-nav .nav-pills a {
        padding: 0.75rem 1rem;
        border-radius: 10px;
        font-size: 0.9rem;
        text-align: left;
        display: block;
        width: 100%;
    }
}

/* ── HOME PAGE SPECIFIC (from newhome.html) ── */

.hero {
    background: var(--white);
    padding: 4rem 2.5rem 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 3rem;
    }
    .hero-sub {
        margin: 0 auto 2rem !important;
    }
    .hero-btns {
        justify-content: center;
    }
    .trust-row {
        justify-content: center;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--b5);
    border: 1px solid #C0D0FF;
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 1.5rem;
}

.tag-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    display: inline-block;
    animation: tagblink 2s ease-in-out infinite;
}

@keyframes tagblink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-tag span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--b1);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 1.2rem;
}

.line-blue { color: var(--b1); }
.line-teal { color: var(--teal); }

.hero-sub {
    font-size: 1rem;
    color: var(--ink3);
    line-height: 1.75;
    font-weight: 400;
    max-width: 440px;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

.btn-main {
    background: var(--b1);
    color: white;
    border: none;
    padding: .75rem 1.8rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .15s;
}

.btn-main:hover {
    background: #003FBB;
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid #C0D0FF;
    padding: .72rem 1.6rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem;
    font-weight: 500;
    cursor: pointer;
    transition: border-color .2s, color .2s;
}

.btn-ghost:hover {
    border-color: var(--b1);
    color: var(--b1);
}

.trust-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.trust-avatars {
    display: flex;
}

.avt {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    background: var(--b4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--b1);
}

.avt:first-child { margin-left: 0; }

.trust-text {
    font-size: 0.8rem;
    color: var(--ink3);
}

.trust-text strong {
    color: var(--ink);
    font-weight: 600;
}

/* WAVE DIVIDER */
.wave {
    width: 100%;
    height: 80px;
    display: block;
    margin-top: 3rem;
}

/* TICKER */
.ticker {
    background: var(--b1);
    padding: .8rem 0;
    overflow: hidden;
}

.ticker-inner {
    display: inline-flex;
    gap: 0;
    animation: tick 28s linear infinite;
    white-space: nowrap;
}

@keyframes tick {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.tick-item {
    padding: 0 2.5rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: .08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.tick-sep {
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
}

/* SHARED UTILITIES */
.sec-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* STATS */
.stats-sec {
    background: var(--offwhite);
    border-top: 1px solid #E6EEFF;
    border-bottom: 1px solid #E6EEFF;
    padding: 3rem 2.5rem;
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

@media (max-width: 768px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }
    .stat-col {
        border-bottom: 1px solid #E6EEFF;
    }
    .stat-col:nth-child(2n) {
        border-right: none !important;
    }
}

.stat-col {
    text-align: center;
    padding: 1.5rem;
    border-right: 1px solid #E6EEFF;
}

.stat-col:last-child { border-right: none; }

.stat-n {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--b1);
}

.stat-u { font-size: 1.2rem; }
.stat-d {
    font-size: .8rem;
    color: var(--ink3);
    margin-top: .3rem;
    font-weight: 400;
}

/* PRODUCTS SECTION (Home) */
.home-products {
    padding: 5rem 2.5rem;
    background: var(--white);
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

@media (max-width: 968px) {
    .prod-grid {
        grid-template-columns: 1fr;
    }
}

.prod-card {
    border: 1.5px solid #E6EEFF;
    border-radius: 16px;
    padding: 1.75rem;
    background: white;
    transition: border-color .25s, transform .2s;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.prod-card:hover {
    border-color: var(--b2);
    transform: translateY(-3px);
}

.prod-card.featured {
    background: var(--b1);
    border-color: var(--b1);
}

.prod-num {
    font-family: 'DM Mono', monospace;
    font-size: .7rem;
    color: var(--ink3);
    margin-bottom: .75rem;
    letter-spacing: .05em;
}

.prod-card.featured .prod-num { color: rgba(255,255,255,.45); }

.prod-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--b5);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.prod-card.featured .prod-icon-wrap { background: rgba(255,255,255,.15); }

.prod-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .5rem;
    line-height: 1.2;
}

.prod-card.featured .prod-name { color: white; }

.prod-desc {
    font-size: .82rem;
    color: var(--ink3);
    line-height: 1.65;
    font-weight: 400;
}

.prod-card.featured .prod-desc { color: rgba(255,255,255,.65); }

.prod-pill {
    display: inline-block;
    margin-top: 1rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
}

/* WHY SECTION */
.why-sec {
    background: var(--b5);
    padding: 5rem 2.5rem;
}

.why-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 968px) {
    .why-inner {
        grid-template-columns: 1fr;
    }
}

.why-points {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.wp {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.wp-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--b1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wp-title {
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .3rem;
}

.wp-text {
    font-size: .83rem;
    color: var(--ink3);
    line-height: 1.65;
    font-weight: 400;
}

/* STACK CARD */
.stack-card {
    background: white;
    border: 1.5px solid #D6E4FF;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.stack-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink3);
    margin-bottom: 1rem;
}

.layer {
    border-radius: 10px;
    padding: .75rem 1rem;
    margin-bottom: .6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.layer-name { font-size: .82rem; font-weight: 700; }
.layer-tag { font-size: .65rem; font-weight: 600; padding: 2px 8px; border-radius: 100px; }
.conn-line { height: 16px; width: 2px; background: #D6E4FF; margin: 0 auto .3rem; border-radius: 2px; }

/* CTA SECTION */
.cta-sec {
    background: var(--b1);
    padding: 5.5rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
}

.cta-sec h2 { color: white; margin-bottom: .75rem; font-size: 2.6rem; }
.cta-sub { color: rgba(255, 255, 255, .65); font-size: 1rem; margin-bottom: 2.2rem; font-weight: 400; }

.cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-white {
    background: white;
    color: var(--b1);
    border: none;
    padding: .8rem 2rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem; font-weight: 700;
    cursor: pointer;
    transition: opacity .2s;
}

.btn-white:hover { opacity: .9; }

.btn-outline-w {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, .35);
    padding: .78rem 1.8rem;
    border-radius: 100px;
    font-family: 'Outfit', sans-serif;
    font-size: .9rem; font-weight: 500;
    cursor: pointer;
    transition: border-color .2s;
}

.btn-outline-w:hover { border-color: white; }

/* GLOBAL FOOTER (Dark) */
.footer-dark {
    background: #020A1F;
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-dark .f-logo { font-weight: 900; font-size: 1.2rem; color: white; letter-spacing: -0.03em; }
.footer-dark .f-logo em { color: var(--b3); font-style: normal; }
.footer-dark .f-links { display: flex; gap: 1.5rem; }
.footer-dark .f-links a { font-size: .78rem; color: rgba(255, 255, 255, .35); text-decoration: none; }
.footer-dark .f-links a:hover { color: white; }
.footer-dark .f-copy { font-size: .75rem; color: rgba(255, 255, 255, .25); }

/* Global Responsive Adjustments */
@media (max-width: 768px) {
    .hero {
        padding: 2rem 1.5rem 0;
        min-height: auto;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero-sub {
        font-size: 0.95rem;
    }
    .stats-inner {
        grid-template-columns: 1fr;
    }
    .stat-col {
        border-right: none !important;
        border-bottom: 1px solid #E6EEFF;
    }
    .stat-col:last-child {
        border-bottom: none;
    }
    .stats-sec,
    .home-products,
    .why-sec,
    .cta-sec {
        padding: 3rem 1.5rem;
    }
    .prod-card.featured[style*="grid-column"] {
        grid-column: 1 / -1 !important;
        flex-direction: column !important;
        text-align: center;
    }
    .dash-metrics {
        grid-template-columns: 1fr;
    }
    .why-inner {
        gap: 2rem;
    }
    .cta-sec h2 {
        font-size: 2rem;
    }
    .footer-dark {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
    }
    .footer-dark .f-links {
        flex-wrap: wrap;
        margin: 1rem 0;
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .btn-main, .btn-ghost, .btn-white, .btn-outline-w {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .hero-btns {
        flex-direction: column;
        gap: 0;
    }
    .cta-btns {
        flex-direction: column;
    }
    .trust-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .trust-avatars {
        justify-content: center;
    }
}