/* ==========================================================================
   CIRIVON — Design System
   PT. CIRIVON DWITUNGGAL JAYA — Procurement for Construction & Infrastructure
   ========================================================================== */

:root {
    /* Brand palette */
    --cirivon-primary: #17b797;
    --cirivon-primary-dark: #578365;
    --cirivon-primary-light: #dee8e1;

    --cirivon-dark: #101820;
    --cirivon-navy: #172B3A;

    --cirivon-white: #FFFFFF;
    --cirivon-light: #F5F7F6;

    --cirivon-text: #263238;
    --cirivon-muted: #6B7280;
    --cirivon-border: #E2E8E4;
    --cirivon-teal: #17b797;

    /* Type */
    --font-heading: 'Archivo', 'Inter', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    /* Layout */
    --container: 1200px;
    --nav-h: 84px;
    --radius: 6px;
    --shadow: 0 18px 40px -18px rgba(16, 24, 32, 0.28);
    --shadow-sm: 0 8px 24px -12px rgba(16, 24, 32, 0.18);

    /* Checkmark used in key-focus lists */
    --icon-check: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317b797' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}

/* --------------------------------------------------------------------------
   Reset / base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--cirivon-text);
    background: var(--cirivon-white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--cirivon-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--cirivon-primary-dark); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--cirivon-primary); color: var(--cirivon-white); }

::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: var(--cirivon-dark); }
::-webkit-scrollbar-thumb { background: rgba(23, 183, 151, 0.18); border: 3px solid var(--cirivon-dark); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--cirivon-teal); }

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.015em;
    color: var(--cirivon-navy);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: clamp(72px, 9vw, 116px) 0; position: relative; }
.section--light { background: var(--cirivon-light); }
.section--navy { background: var(--cirivon-navy); }
.section--dark { background: var(--cirivon-dark); }

/* --------------------------------------------------------------------------
   Eyebrow / headlines
   -------------------------------------------------------------------------- */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cirivon-primary);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--cirivon-primary);
    flex: 0 0 auto;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
    content: "";
    width: 28px;
    height: 3px;
    background: var(--cirivon-primary);
    flex: 0 0 auto;
}

.accent-line {
    display: block;
    width: 56px;
    height: 4px;
    background: var(--cirivon-primary);
    margin: 22px 0 0;
    border: 0;
}

.section-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

.section-title {
    font-size: clamp(1.9rem, 3.6vw, 2.75rem);
    margin-bottom: 16px;
}
.section-title em {
    font-style: normal;
    color: #17b797;
}
.section-lead { color: var(--cirivon-muted); font-size: 1.05rem; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius);
    border: 1.5px solid transparent;
    transition: background .22s ease, color .22s ease, border-color .22s ease,
        box-shadow .22s ease, transform .22s ease;
    line-height: 1;
    white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; flex: 0 0 auto; }

.btn--primary {
    background: var(--cirivon-primary);
    border-color: var(--cirivon-primary);
    color: var(--cirivon-white);
}
.btn--primary:hover {
    background: var(--cirivon-primary-dark);
    border-color: var(--cirivon-primary-dark);
    color: var(--cirivon-white);
    box-shadow: 0 14px 28px -12px rgba(23, 183, 151, 0.55);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--cirivon-white);
}
.btn--outline:hover {
    border-color: var(--cirivon-teal);
    color: var(--cirivon-primary-light);
}

.btn--outline-dark {
    background: transparent;
    border-color: rgba(23, 43, 58, 0.3);
    color: var(--cirivon-navy);
}
.btn--outline-dark:hover {
    border-color: var(--cirivon-primary);
    color: var(--cirivon-primary-dark);
}

.btn--light {
    background: var(--cirivon-white);
    border-color: var(--cirivon-white);
    color: var(--cirivon-navy);
}
.btn--light:hover {
    background: var(--cirivon-primary-light);
    border-color: var(--cirivon-primary);
    color: var(--cirivon-primary-dark);
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
    border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
    background: var(--cirivon-dark);
    border-bottom-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.7);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.nav__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cirivon-white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.14em;
}
.nav__brand:hover { color: var(--cirivon-white); }
.nav__mark { width: 30px; height: 30px; flex: 0 0 auto; }

.nav__menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav__link {
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    padding: 6px 0;
    letter-spacing: 0.02em;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--cirivon-teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav__link:hover { color: var(--cirivon-white); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--cirivon-primary-light); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta {
    padding: 11px 22px;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    padding: 0 10px;
}
.nav__toggle span {
    display: block;
    height: 2px;
    background: var(--cirivon-white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: calc(var(--nav-h) + 40px) 0 90px;
    color: var(--cirivon-white);
    overflow: hidden;
}
.hero--compact {
    min-height: 0;
    padding: calc(var(--nav-h) + 90px) 0 80px;
}

.hero__bg,
.hero__bg::after {
    position: absolute;
    inset: 0;
}
.hero__bg {
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero__bg::after {
    content: "";
    background:
        linear-gradient(180deg, rgba(16, 24, 32, 0.86) 0%, rgba(16, 24, 32, 0.55) 45%, rgba(23, 43, 58, 0.94) 100%);
    z-index: -1;
}
.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 64px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 64px);
    z-index: -1;
}

.hero__inner { max-width: 820px; }

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cirivon-primary-light);
    margin-bottom: 26px;
}
.hero__eyebrow::before {
    content: "";
    width: 34px;
    height: 3px;
    background: var(--cirivon-teal);
}

.hero__title {
    color: var(--cirivon-white);
    font-size: clamp(2.35rem, 5.6vw, 4.15rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
}
.hero__title em {
    font-style: normal;
    color: var(--cirivon-teal);
}

.hero__lead {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.82);
    max-width: 640px;
    margin-bottom: 38px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__scroll {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.hero__scroll .mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 14px;
    position: relative;
}
.hero__scroll .mouse::after {
    content: "";
    position: absolute;
    top: 6px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    border-radius: 2px;
    background: var(--cirivon-teal);
    animation: scrollDot 1.8s ease-out infinite;
}

/* --------------------------------------------------------------------------
   Trust strip (navy band)
   -------------------------------------------------------------------------- */
.trust {
    background: var(--cirivon-navy);
    border-top: 3px solid var(--cirivon-teal);
    padding: 46px 0;
    color: var(--cirivon-white);
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.trust__item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}
.trust__icon {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: rgba(23, 183, 151, 0.1);
    border: 1px solid rgba(23, 183, 151, 0.4);
    border-radius: var(--radius);
    color: var(--cirivon-teal);
}
.trust__icon svg { width: 22px; height: 22px; }
.trust__item h3 {
    color: var(--cirivon-white);
    font-size: 1.02rem;
    margin-bottom: 4px;
}
.trust__item p { color: rgba(255, 255, 255, 0.62); font-size: 0.92rem; }

/* --------------------------------------------------------------------------
   Split feature (intro)
   -------------------------------------------------------------------------- */
.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
}
.split__media { position: relative; }
.split__media img {
    width: 100%;
    border-radius: var(--radius);
    aspect-ratio: 4 / 3.4;
    object-fit: cover;
    box-shadow: var(--shadow);
}
.split__media::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(18px, 18px);
    border: 2px solid var(--cirivon-primary);
    border-radius: var(--radius);
    z-index: -1;
}
.split__tile {
    position: absolute;
    right: -22px; bottom: -26px;
    background: var(--cirivon-dark);
    border-left: 3px solid var(--cirivon-primary);
    color: var(--cirivon-white);
    padding: 18px 22px;
    box-shadow: var(--shadow);
}
.split__tile strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.03em;
}
.split__tile span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.62); }

.split__body p + p { margin-top: 18px; color: var(--cirivon-muted); }
.split__body .btn { margin-top: 30px; }
.split__body .accent-line { margin: 24px 0 26px; }

/* --------------------------------------------------------------------------
   Cards — services
   -------------------------------------------------------------------------- */
.cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    background: var(--cirivon-white);
    border: 1px solid var(--cirivon-border);
    border-radius: var(--radius);
    padding: 40px 34px 34px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--cirivon-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--cirivon-primary);
    box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
    position: absolute;
    top: 26px; right: 30px;
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    color: var(--cirivon-primary-light);
    -webkit-text-stroke: 0;
}
.service-card__icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: var(--cirivon-primary-light);
    border-radius: var(--radius);
    color: var(--cirivon-primary);
    margin-bottom: 26px;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card h3 {
    font-size: 1.28rem;
    margin-bottom: 12px;
    padding-right: 48px;
}
.service-card p { color: var(--cirivon-muted); font-size: 0.95rem; }
.service-card .accent-line { width: 38px; height: 3px; margin: 18px 0 14px; }
.service-card__link {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--cirivon-primary);
}
.service-card__link svg { width: 15px; height: 15px; transition: transform .22s ease; }
.service-card__link:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   Value cards
   -------------------------------------------------------------------------- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.value-card {
    background: var(--cirivon-white);
    border: 1px solid var(--cirivon-border);
    border-radius: var(--radius);
    padding: 34px 30px;
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--cirivon-primary);
    box-shadow: var(--shadow-sm);
}
.value-card__icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: var(--cirivon-primary-light);
    border-radius: 50%;
    color: var(--cirivon-primary);
    margin-bottom: 22px;
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.08rem; margin-bottom: 10px; }
.value-card p { color: var(--cirivon-muted); font-size: 0.93rem; }

/* --------------------------------------------------------------------------
   Key focus checklist
   -------------------------------------------------------------------------- */
.key-focus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 26px;
    margin-top: 22px;
}
.key-focus li {
    position: relative;
    padding-left: 30px;
    font-size: 0.93rem;
    color: var(--cirivon-text);
}
.key-focus li::before {
    content: "";
    position: absolute;
    left: 0; top: 4px;
    width: 17px; height: 17px;
    background: var(--icon-check) center / contain no-repeat;
}
.key-focus--compact {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
}

/* --------------------------------------------------------------------------
   Service detail rows (services page)
   -------------------------------------------------------------------------- */
.service-row {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(40px, 6vw, 78px);
    align-items: center;
}
.service-row__media { position: relative; }
.service-row__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.service-row__media::after {
    content: "";
    position: absolute;
    left: -14px; bottom: -14px;
    width: 56%;
    height: 56%;
    border-left: 3px solid var(--cirivon-primary);
    border-bottom: 3px solid var(--cirivon-primary);
    border-radius: var(--radius);
    z-index: -1;
}
.service-row__content .service-row__index {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--cirivon-primary);
}
.service-row__content h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 12px 0 16px; }
.service-row__content > p { color: var(--cirivon-muted); }

/* Dark variant for the last service (project procurement) */
.service-row--dark {
    color: rgba(255, 255, 255, 0.8);
}
.service-row--dark h2 { color: var(--cirivon-white); }
.service-row--dark > p { color: rgba(255, 255, 255, 0.65); }
.service-row--dark .key-focus li { color: rgba(255, 255, 255, 0.78); }
.service-row--dark .key-focus li::before {
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317b797' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}
.service-row--dark .service-row__index { color: var(--cirivon-teal); }
.service-row--dark .service-row__media::after {
    border-left-color: var(--cirivon-teal);
    border-bottom-color: var(--cirivon-teal);
}

/* Navy variant for the government / institutional service */
.service-row--navy h2 { color: var(--cirivon-white); }
.service-row--navy .service-row__index { color: var(--cirivon-teal); }
.service-row--navy .service-row__content > p { color: rgba(255, 255, 255, 0.72); }
.service-row--navy .key-focus li { color: rgba(255, 255, 255, 0.8); }
.service-row--navy .key-focus li::before {
    background-image:
        url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2317b797' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>");
}
.service-row--navy .service-row__media::after {
    border-left-color: var(--cirivon-teal);
    border-bottom-color: var(--cirivon-teal);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
    background: var(--cirivon-dark);
    position: relative;
    overflow: hidden;
    color: var(--cirivon-white);
}
.cta-band::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cirivon-teal) 0%, transparent 70%);
}
.cta-band::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px);
    pointer-events: none;
}
.cta-band__inner {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta-band h2 {
    color: var(--cirivon-white);
    font-size: clamp(1.9rem, 4vw, 3rem);
    margin-bottom: 18px;
}
.cta-band p { color: rgba(255, 255, 255, 0.66); margin-bottom: 36px; font-size: 1.05rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cta-band .eyebrow { justify-content: center; }
.cta-band .eyebrow { color: var(--cirivon-primary-light); }

/* --------------------------------------------------------------------------
   Government / institutional — chips & callout
   -------------------------------------------------------------------------- */
.chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}
.chip {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border: 1.5px solid rgba(23, 183, 151, 0.5);
    background: rgba(23, 183, 151, 0.08);
    color: var(--cirivon-teal);
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.gov-callout {
    background: var(--cirivon-navy);
    border-top: 3px solid var(--cirivon-primary);
    border-bottom: 3px solid var(--cirivon-primary);
    color: var(--cirivon-white);
    overflow: hidden;
}
.gov-callout::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 56px);
    pointer-events: none;
}
.gov-callout__inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 44px);
}
.gov-callout__icon {
    flex: 0 0 auto;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    background: rgba(23, 183, 151, 0.08);
    border: 1.5px solid rgba(23, 183, 151, 0.45);
    border-radius: var(--radius);
    color: var(--cirivon-teal);
}
.gov-callout__icon svg { width: 34px; height: 34px; }
.gov-callout h2 {
    color: var(--cirivon-white);
    font-size: clamp(1.35rem, 2.4vw, 1.8rem);
    margin-bottom: 8px;
}
.gov-callout p { color: rgba(255, 255, 255, 0.72); max-width: 640px; }
.gov-callout .eyebrow { color: var(--cirivon-teal); }
.gov-callout .eyebrow::before { background: var(--cirivon-teal); }
.gov-callout__action { margin-left: auto; flex: 0 0 auto; }

/* --------------------------------------------------------------------------
   About page blocks
   -------------------------------------------------------------------------- */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.pillar {
    background: var(--cirivon-navy);
    border-top: 3px solid var(--cirivon-primary);
    padding: 34px 30px;
    border-radius: var(--radius);
    color: rgba(255, 255, 255, 0.72);
}
.pillar h3 { color: var(--cirivon-white); font-size: 1.12rem; margin-bottom: 10px; }
.pillar p { font-size: 0.93rem; }
.pillar__num {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    color: var(--cirivon-primary);
    margin-bottom: 18px;
}

.section--navy .eyebrow { color: var(--cirivon-teal); }
.section--navy .eyebrow::before { background: var(--cirivon-teal); }
.section--navy .pillar { border-top-color: var(--cirivon-teal); }
.section--navy .pillar__num { color: var(--cirivon-teal); }

.quoted {
    border-left: 3px solid var(--cirivon-primary);
    padding: 4px 0 4px 24px;
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2.2vw, 1.4rem);
    font-weight: 600;
    line-height: 1.5;
    color: var(--cirivon-navy);
}

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(36px, 5vw, 64px);
    align-items: start;
}

.form-card {
    background: var(--cirivon-white);
    border: 1px solid var(--cirivon-border);
    border-radius: var(--radius);
    padding: clamp(26px, 4vw, 44px);
    box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cirivon-muted);
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 15px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--cirivon-text);
    background: var(--cirivon-white);
    border: 1.5px solid var(--cirivon-border);
    border-radius: var(--radius);
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cirivon-primary);
    box-shadow: 0 0 0 4px rgba(23, 183, 151, 0.14);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.82rem; color: var(--cirivon-muted); margin-top: 14px; }
.form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.9rem;
    display: none;
}
.form-status.is-visible { display: block; }
.form-status--ok { background: var(--cirivon-primary-light); color: var(--cirivon-primary-dark); border: 1px solid var(--cirivon-primary); }
.form-status--err { background: #FBE9E7; color: #B3261E; border: 1px solid #E6A9A2; }

.contact-info { display: grid; gap: 0; }
.contact-info__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 26px 0;
    border-bottom: 1px solid var(--cirivon-border);
}
.contact-info__item:first-child { padding-top: 0; }
.contact-info__item:last-child { border-bottom: 0; }
.contact-info__icon {
    width: 46px; height: 46px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: var(--cirivon-primary-light);
    border-radius: var(--radius);
    color: var(--cirivon-primary);
}
.contact-info__icon svg { width: 21px; height: 21px; }
.contact-info__item h4 {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cirivon-muted);
    margin-bottom: 6px;
}
.contact-info__item p, .contact-info__item a { font-size: 0.97rem; color: var(--cirivon-text); }
.contact-info__item a:hover { color: var(--cirivon-primary); }

.map-wrap {
    margin-top: clamp(48px, 6vw, 72px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--cirivon-border);
    line-height: 0;
}
.map-wrap iframe {
    width: 100%;
    height: 380px;
    border: 0;
    filter: grayscale(1) contrast(1.05);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--cirivon-dark);
    color: rgba(255, 255, 255, 0.66);
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cirivon-teal) 30%, transparent 90%);
}
.footer__main {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding: clamp(56px, 7vw, 84px) 0 48px;
}
.footer__brand .nav__brand { margin-bottom: 18px; font-size: 1.25rem; }
.footer__brand p { font-size: 0.92rem; max-width: 320px; }

.footer h4 {
    color: var(--cirivon-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.footer__col ul { display: grid; gap: 12px; }
.footer__col a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}
.footer__col a:hover { color: var(--cirivon-teal); }
.footer__col li { font-size: 0.92rem; }
.footer__col .legal { color: rgba(255, 255, 255, 0.45); }
.footer__contact li { position: relative; padding-left: 24px; }
.footer__contact li::before {
    content: "";
    position: absolute;
    left: 0; top: 8px;
    width: 7px; height: 7px;
    background: var(--cirivon-teal);
    border-radius: 2px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 28px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.45);
}
.footer__bottom strong { color: rgba(255, 255, 255, 0.7); letter-spacing: 0.04em; }

/* --------------------------------------------------------------------------
   Reveal animation
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

@keyframes scrollDot {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(12px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
    .values-grid.last-row-2 .value-card:nth-child(4),
    .values-grid.last-row-2 .value-card:nth-child(5) {
        grid-column: span 1;
    }
}

@media (max-width: 1020px) {
    .cards-3 { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .trust__grid { grid-template-columns: 1fr; gap: 26px; }
    .footer__main { grid-template-columns: 1fr 1fr; }
    .split, .service-row, .contact-grid { grid-template-columns: 1fr; }
    .split__media { margin-bottom: 34px; }
    .service-row__media { margin-bottom: 30px; }
    .service-row--alt .service-row__media { order: 0; }
    .pillars { grid-template-columns: 1fr; }

    .gov-callout__inner { flex-direction: column; align-items: flex-start; }
    .gov-callout__action { margin-left: 0; }

    .nav__menu {
        position: fixed;
        top: 0; right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(360px, 86vw);
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        background: var(--cirivon-dark);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        padding: calc(var(--nav-h) + 28px) 34px 40px;
        transform: translateX(100%);
        transition: transform .32s ease;
        box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
        z-index: -1;
    }
    .nav__menu.is-open { transform: translateX(0); }
    .nav__menu .nav__link { font-size: 1.15rem; width: 100%; padding: 12px 0; }
    .nav__menu .nav__cta { margin-top: 18px; width: 100%; }
    .nav__toggle { display: flex; }
}

@media (max-width: 640px) {
    .cards-3 { grid-template-columns: 1fr; }
    .cards-2 { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer__main { grid-template-columns: 1fr; gap: 36px; }
    .key-focus { grid-template-columns: 1fr; }
    .hero__scroll { display: none; }
    .split__tile { position: static; margin-top: 20px; }
    .map-wrap iframe { height: 300px; }
}