/* =========================================================
   SwyftRevenue — Design Tokens
   ========================================================= */
:root {
    --navy: #0b3b5c;
    --navy-deep: #082a42;
    --blue: #1668e3;
    --blue-dim: #e8f0fe;
    --cyan: #00b4d8;
    --mint: #1fae7a;
    --mint-dim: #e7f7f1;
    --bg: #f6f9fc;
    --white: #ffffff;
    --ink: #0f2438;
    --slate: #5b6b7a;
    --slate-light: #90a0ae;
    --border: #e1e8f0;

    --font-display: "Space Grotesk", "Segoe UI", sans-serif;
    --font-body: "Inter", "Segoe UI", sans-serif;
    --font-mono: "IBM Plex Mono", monospace;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 8px rgba(11, 59, 92, 0.06);
    --shadow-md: 0 8px 30px rgba(11, 59, 92, 0.1);
    --shadow-lg: 0 20px 60px rgba(11, 59, 92, 0.16);
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    margin: 0 0 0.5em;
    line-height: 1.15;
    color: var(--navy);
    letter-spacing: -0.01em;
}
p {
    margin: 0 0 1em;
    color: var(--slate);
}
button {
    font-family: inherit;
    cursor: pointer;
}
:focus-visible {
    outline: 3px solid var(--cyan);
    outline-offset: 2px;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    background: var(--blue-dim);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section {
    padding: 88px 0;
}
.section-head {
    max-width: 640px;
}
.section-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.section-head p {
    font-size: 17px;
}
.section--tint {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.section--navy {
    background: var(--navy);
}
.section--navy h2,
.section--navy .eyebrow {
    color: var(--white);
}
.section--navy .eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: var(--cyan);
}
.section--navy p {
    color: #c7d6e4;
}

/* =========== Buttons =========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: 1.5px solid transparent;
    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease,
        background 0.15s ease,
        color 0.15s ease;
    white-space: nowrap;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
    box-shadow: var(--shadow-md);
    background: #0f57c4;
}
.btn-secondary {
    background: transparent;
    border-color: #0B3B5C;
    color: #0B3B5C;
}
.section--navy .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
}
.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border-color: var(--border);
}
.btn-block {
    width: 100%;
}
.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
}

/* =========== Header =========== */
.topbar {
    background: var(--navy-deep);
    color: #c7d6e4;
    font-size: 13px;
}
.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.topbar a {
    color: #c7d6e4;
}
.topbar .topbar-links {
    display: flex;
    gap: 20px;
}
.topbar .topbar-links a:hover {
    color: var(--white);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(246, 249, 252, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    padding-bottom: 14px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--navy);
}
.logo .logo-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.logo .logo-mark svg {
    width: 100%;
    height: 100%;
    display: block;
}
.logo span.accent {
    color: var(--blue);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}
.main-nav ul {
    display: flex;
    gap: 28px;
    font-weight: 600;
    font-size: 14.5px;
}
.main-nav a {
    color: var(--navy);
    position: relative;
    padding: 6px 10px;
}
.main-nav a.active,
.main-nav a:hover {
    color: var(--blue);
}
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 2px;
    background: var(--blue);
    border-radius: 2px;
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--navy);
    font-size: 14.5px;
}
.header-phone svg {
    width: 18px;
    height: 18px;
    color: var(--blue);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
}

@media (max-width: 920px) {
    .main-nav {
        position: fixed;
        inset: 64px 0 0 0;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 28px 24px;
        overflow-y: auto;
        min-height: 90vh;
    }

    .main-nav.hidden {
        display: none;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 18px;
        font-size: 17px;
        width: 100%;
    }
    .header-cta {
        margin-top: 24px;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .nav-toggle {
        display: flex;
    }
    .topbar .topbar-links {
        display: none;
    }
}

@media (max-width: 700px) {
    .main-nav {
        gap: 18px;
    }

    .main-nav .header-cta{
        margin-top: 0px;
    }
}

/* =========== Hero =========== */
.hero {
    padding: 64px 0 60px;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}
.hero h1 {
    font-size: clamp(34px, 4.4vw, 40px);
}
.hero .lede {
    font-size: 18px;
    max-width: 520px;
}
.hero-cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 28px 0 32px;
}
.trust-row {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--slate);
}
.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--mint);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
}
.page-hero {
    padding: 56px 0 48px;
    background: linear-gradient(180deg, var(--blue-dim), var(--bg));
}
.page-hero h1 {
    font-size: clamp(30px, 4vw, 40px);
}
.page-hero .lede {
    font-size: 17px;
}
.breadcrumb {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--slate-light);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.breadcrumb a {
    color: var(--blue);
}

/* =========== Cycle diagram (signature element) =========== */
.cycle-wrap {
    display: flex;
    justify-content: center;
}
.cycle-diagram {
    width: 100%;
    max-width: 460px;
}
.cycle-diagram .ring-track {
    fill: none;
    stroke: var(--border);
    stroke-width: 2;
}
.cycle-diagram .ring-progress {
    fill: none;
    stroke: var(--cyan);
    stroke-width: 3;
    stroke-linecap: round;
}
.cycle-node circle {
    fill: var(--white);
    stroke: var(--blue);
    stroke-width: 2;
}
.cycle-node.is-active circle {
    fill: var(--blue);
}
.cycle-node text {
    font-family: var(--font-mono);
    font-size: 9px;
    fill: var(--navy);
    font-weight: 600;
}
.cycle-center-num {
    font-family: var(--font-display);
    font-weight: 700;
    fill: var(--navy);
}
.cycle-center-label {
    font-family: var(--font-mono);
    font-size: 11px;
    fill: var(--slate);
    letter-spacing: 0.05em;
}

.cycle-stages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 12px;
}
.cycle-stage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.cycle-stage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.cycle-stage-card .stage-index {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--cyan);
    font-weight: 700;
}
.cycle-stage-card h4 {
    font-size: 16px;
    margin: 8px 0 6px;
}
.cycle-stage-card p {
    font-size: 13.5px;
    margin: 0;
}

/* =========== Stat strip =========== */
.stat-strip {
    background: var(--navy);
}
.stat-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 44px 24px;
}
.stat {
    text-align: center;
    color: var(--white);
}
.stat .num {
    font-family: var(--font-mono);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 700;
    color: var(--cyan);
}
.stat .label {
    font-size: 13px;
    color: #c7d6e4;
    margin-top: 6px;
}

/* =========== Cards / grids =========== */
.grid {
    display: grid;
    gap: 28px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.card {
    display:flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.card .icon {
    width: 48px;
    height: 48px;
    padding: 5px;
    border-radius: 12px;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card .icon svg {
    width: 24px;
    height: 24px;
}
.card h3 {
    font-size: 19px;
}
.card p {
    font-size: 14.5px;
}
.card-link {
    font-weight: 700;
    color: var(--blue);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.card-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.15s ease;
}
.card-link:hover svg {
    transform: translateX(3px);
}

/* =========== Before / After =========== */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.compare-col {
    border-radius: var(--radius-lg);
    padding: 34px;
}
.compare-col.before {
    background: #fbefef;
    border: 1px solid #f3d8d8;
}
.compare-col.after {
    background: var(--mint-dim);
    border: 1px solid #c9eedf;
}
.compare-col h3 {
    font-size: 18px;
    margin-bottom: 18px;
}
.compare-col.before h3 {
    color: #b23b3b;
}
.compare-col.after h3 {
    color: var(--mint);
}
.compare-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14.5px;
    color: var(--ink);
    padding: 8px 0;
}
.compare-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.compare-col.before svg {
    color: #c24949;
}
.compare-col.after svg {
    color: var(--mint);
}

/* =========== Testimonials =========== */
.testi-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testi-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
}
.testi-quote {
    font-size: 15px;
    color: var(--ink);
    margin: 0px;
}
.testi-quote::before {
    content: "\201C";
    color: var(--cyan);
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 0;
    display: block;
    margin-bottom: 8px;
}
.testi-person {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
}
.testi-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}
.testi-role {
    font-size: 12.5px;
    color: var(--slate-light);
}

/* =========== Logo strip =========== */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}
.logo-pill {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 999px;
    padding: 10px 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--slate);
    font-weight: 600;
}

/* =========== CTA banner =========== */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, #0f4d78 100%);
    border-radius: var(--radius-lg);
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-banner h2 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 8px;
}
.cta-banner p {
    color: #c7d6e4;
    margin: 0;
    max-width: 440px;
}
.cta-banner .btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========== FAQ Accordion =========== */
.accordion {
    border-top: 1px solid var(--border);
}
.accordion-item {
    border-bottom: 1px solid var(--border);
}
.accordion-trigger {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 22px 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 600;
    color: var(--navy);
}
.accordion-trigger .plus {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
}
.accordion-trigger .plus::before,
.accordion-trigger .plus::after {
    content: "";
    position: absolute;
    background: var(--blue);
    border-radius: 2px;
    transition: transform 0.2s ease;
}
.accordion-trigger .plus::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.accordion-trigger .plus::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}
.accordion-item.open .plus::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}
.accordion-panel p {
    padding: 0 4px 22px;
    font-size: 14.5px;
}
.accordion-item.open .accordion-panel {
    max-height: 400px;
}

.faq-category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.faq-tab {
    padding: 10px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--white);
    font-weight: 600;
    font-size: 13.5px;
    color: var(--slate);
}
.faq-tab.active {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}

/* =========== Forms =========== */
/* .form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.field {
    margin-bottom: 18px;
}
.field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--blue);
    outline: none;
}
.field textarea {
    resize: vertical;
    min-height: 110px;
}
.field-note {
    font-size: 12.5px;
    color: var(--slate-light);
    margin-top: 8px;
}
.form-success {
    display: none;
    background: var(--mint-dim);
    border: 1px solid #c9eedf;
    border-radius: var(--radius-md);
    padding: 20px;
    color: #146c4c;
    font-weight: 600;
}
.form-success.show {
    display: block;
} */

/* =========== Info blocks (contact page) =========== */
/* .contact-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    align-items: start;
}
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.contact-info-card h3 {
    color: var(--white);
    font-size: 20px;
}
.contact-info-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.contact-info-item:first-of-type {
    border-top: none;
}
.contact-info-item svg {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-info-item .lbl {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #9fb6c9;
    font-family: var(--font-mono);
}
.contact-info-item .val {
    font-weight: 600;
    margin-top: 2px;
}
.map-block {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 200px;
    background:
        repeating-linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.06) 0 10px,
            transparent 10px 20px
        ),
        var(--navy-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9fb6c9;
    font-family: var(--font-mono);
    font-size: 13px;
    text-align: center;
    padding: 20px;
} */

/* =========== Values / process (about) =========== */
.value-card {
    text-align: left;
}
.timeline {
    position: relative;
    padding-left: 32px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    padding-bottom: 36px;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -32px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
}
.timeline-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}
.timeline-item .yr {
    font-family: var(--font-mono);
    color: var(--cyan);
    font-size: 12.5px;
    font-weight: 700;
}

.avatar-team {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    background: var(--blue-dim);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 34px;
    margin-bottom: 16px;
}

/* =========== Service detail sections =========== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--border);
}
.service-detail:last-child {
    border-bottom: none;
}
.service-detail.reverse {
    direction: rtl;
}
.service-detail.reverse > * {
    direction: ltr;
}
.service-visual {
    background: var(--blue-dim);
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.service-visual svg {
    width: 60%;
    height: 60%;
    color: var(--blue);
}
.service-detail .tag {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--cyan);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 7px 0;
    font-size: 14.5px;
}
.check-list svg {
    width: 18px;
    height: 18px;
    color: var(--mint);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========== Footer =========== */
/* .site-footer {
    background: var(--navy-deep);
    color: #aec2d2;
    padding-top: 64px;
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 14px;
}
.footer-brand p {
    color: #8fa6b8;
    font-size: 14px;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--white);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 18px;
}
.footer-col ul li {
    margin-bottom: 12px;
}
.footer-col a {
    color: #aec2d2;
    font-size: 14.5px;
}
.footer-col a:hover {
    color: var(--cyan);
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-social svg {
    width: 16px;
    height: 16px;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #7e93a5;
}
.footer-bottom .legal-links {
    display: flex;
    gap: 20px;
}
.footer-bottom a {
    color: #7e93a5;
}
.footer-bottom a:hover {
    color: var(--white);
} */

/* =========== Utility =========== */
.text-center {
    text-align: center;
}
.mt-0 {
    margin-top: 0;
}
.mb-0 {
    margin-bottom: 0;
}
.badge-note {
    font-size: 12.5px;
    color: var(--slate-light);
    background: var(--white);
    border: 1px dashed var(--border);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    margin-top: 10px;
}

/* =========== Responsive =========== */
@media (max-width: 980px) {
    .hero .container {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        order: -1;
    }
    .compare {
        grid-template-columns: 1fr;
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-strip .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .service-detail {
        grid-template-columns: 1fr;
        padding: 44px 0;
    }
    .service-detail.reverse {
        direction: ltr;
    }
    .service-visual {
        order: -1;
        max-width: 340px;
        margin: 0 auto;
    }
    .cycle-stages {
        grid-template-columns: repeat(2, 1fr);
    }
    .testi-track {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 620px) {
    .section {
        padding: 56px 0;
    }
    .grid-3,
    .grid-4,
    .grid-2 {
        grid-template-columns: 1fr;
    }
    .stat-strip .container {
        grid-template-columns: 1fr 1fr;
        gap: 28px 16px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cta-banner {
        padding: 36px 24px;
        flex-direction: column;
        align-items: flex-start;
    }
    .form-card {
        padding: 26px;
    }
    .cycle-stages {
        grid-template-columns: 1fr;
    }
}
