/* ============================================
   PT PERISAI — OPERASI KEAMANAN OFENSIF
   Type: JetBrains Mono (tunggal, kontras via weight + scale)
   ============================================ */

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

:root {
    --primary:        #25A6A6;
    --primary-dark:   #1A7F7F;
    --primary-darker: #0F5757;
    --secondary:      #0D3B3B;
    --accent:         #3FD4D4;

    --bg:             #f8fbfb;
    --bg-2:           #e8f5f5;
    --surface:        #ffffff;
    --ink:            #0D3B3B;
    --ink-2:          #2a4a4a;
    --ink-3:          #6b8585;
    --hair:           #d9e8e8;
    --hair-2:         #c5dada;

    --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

    --wrap: 1280px;
    --gutter: 40px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--mono);
    font-weight: 300;
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "ss02", "ss03", "zero", "cv11";
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: none; cursor: pointer; }

.wrap {
    max-width: var(--wrap);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* ---------- Grid atmosferik ---------- */
.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(var(--hair) 1px, transparent 1px),
        linear-gradient(90deg, var(--hair) 1px, transparent 1px);
    background-size: 96px 96px;
    mask-image:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(0,0,0,0.45) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0,0,0,0.3) 0%, transparent 70%);
    -webkit-mask-image:
        radial-gradient(ellipse 70% 60% at 15% 20%, rgba(0,0,0,0.45) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 85% 80%, rgba(0,0,0,0.3) 0%, transparent 70%);
    opacity: 0.7;
}
.bg-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 300px at 20% 10%, rgba(37,166,166,0.12), transparent 70%),
        radial-gradient(ellipse 500px 400px at 90% 90%, rgba(63,212,212,0.08), transparent 70%);
}

/* ---------- Type: kicker ---------- */
.kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary-dark);
}
.kicker__dot {
    width: 6px; height: 6px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow:
        0 0 0 3px rgba(37,166,166,0.15),
        0 0 0 8px rgba(37,166,166,0.05);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(37,166,166,0.18), 0 0 0 8px rgba(37,166,166,0.06); }
    50%      { box-shadow: 0 0 0 5px rgba(37,166,166,0.28), 0 0 0 14px rgba(37,166,166,0.08); }
}
.kicker--light { color: var(--accent); }
.kicker--light .kicker__dot {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(63,212,212,0.2);
}

/* ---------- Display: 800 bold vs 200 italic ---------- */
/* Ukuran merespons lebar DAN tinggi viewport (min() di antara vw & vh) */
.display {
    font-family: var(--mono);
    font-weight: 800;
    font-size: clamp(34px, min(5.6vw, 9.2vh), 84px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: var(--secondary);
    text-transform: lowercase;
}
.display__accent {
    font-weight: 200;
    font-style: italic;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.h2 {
    font-family: var(--mono);
    font-weight: 800;
    font-size: clamp(32px, 4.6vw, 64px);
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: var(--secondary);
    text-transform: lowercase;
}
.h2--light { color: #f1fafa; }
.h2__muted {
    font-weight: 200;
    font-style: italic;
    color: var(--ink-3);
    letter-spacing: -0.03em;
    display: inline-block;
    margin-top: 0.08em;
}
.h2__muted--light { color: rgba(241,250,250,0.5); }

.lede {
    font-family: var(--mono);
    font-weight: 300;
    font-size: clamp(14.5px, 1.1vw, 16.5px);
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 54ch;
}
.lede--sm { font-size: 14.5px; max-width: 58ch; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: transform .4s cubic-bezier(.2,.7,.2,1), background .25s, color .25s, border-color .25s;
}
.btn--solid {
    background: var(--secondary);
    color: #ecfcfc;
    padding: 20px 28px;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.btn--solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary);
    transform: translateX(-101%);
    transition: transform .4s cubic-bezier(.2,.7,.2,1);
    z-index: 0;
}
.btn--solid > * { position: relative; z-index: 1; }
.btn--solid:hover::before { transform: translateX(0); }
.btn--solid:hover { transform: translateY(-3px); }

.btn--ghost {
    padding: 13px 20px;
    color: var(--secondary);
    border: 1px solid var(--hair-2);
    border-radius: 0;
}
.btn--ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn--text {
    color: var(--ink);
    padding: 20px 4px;
    position: relative;
}
.btn--text .btn__underline {
    position: absolute; left: 4px; right: 4px; bottom: 14px;
    height: 1px; background: var(--ink);
    transition: background .25s;
}
.btn--text:hover { color: var(--primary); }
.btn--text:hover .btn__underline { background: var(--primary); }
.btn--wide { width: 100%; justify-content: space-between; padding: 24px 30px; }
.btn__arrow { transition: transform .4s cubic-bezier(.2,.7,.2,1); font-weight: 400; }
.btn:hover .btn__arrow { transform: translateX(8px); }
.btn__dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,166,166,0.18);
}

/* ---------- NAV ---------- */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248,251,251,0.78);
    backdrop-filter: saturate(170%) blur(16px);
    -webkit-backdrop-filter: saturate(170%) blur(16px);
    border-bottom: 1px solid var(--hair);
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px var(--gutter);
    gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark { width: 38px; height: 38px; object-fit: contain; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
    font-family: var(--mono);
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.08em;
    color: var(--secondary);
}
.brand__meta {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.26em;
    color: var(--primary);
    margin-top: 5px;
}
.menu {
    display: flex;
    gap: 34px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 400;
}
.menu a {
    color: var(--ink-2);
    position: relative;
    padding: 6px 0;
    transition: color .2s;
}
.menu a:hover { color: var(--primary); }
.menu a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 1px;
    background: var(--primary);
    transition: width .3s cubic-bezier(.2,.7,.2,1);
}
.menu a:hover::after { width: 100%; }

/* ---------- HERO ---------- */
/* Hero selalu pas dengan tinggi layar (viewport) */
.hero {
    position: relative;
    padding: 56px 0 0;
    overflow: hidden;
    min-height: calc(100svh - 78px);
    display: flex;
    flex-direction: column;
}
.hero__inner {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding-bottom: 32px;
}

/* Staggered reveal */
.hero__left > * {
    opacity: 0;
    transform: translateY(24px);
    animation: rise .9s cubic-bezier(.2,.7,.2,1) forwards;
}
.hero__left > *:nth-child(1) { animation-delay: .1s; }
.hero__left > *:nth-child(2) { animation-delay: .25s; }
.hero__left > *:nth-child(3) { animation-delay: .45s; }
.hero__left > *:nth-child(4) { animation-delay: .6s; }
.hero__right { opacity: 0; animation: rise 1.1s cubic-bezier(.2,.7,.2,1) .35s forwards; }

@keyframes rise {
    to { opacity: 1; transform: translateY(0); }
}

.hero__left > * + * { margin-top: clamp(16px, 2.4vh, 28px); }
.hero__cta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vh, 40px);
}

.shield {
    position: relative;
    width: min(380px, 100%, 46vh);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
.shield__ring {
    position: absolute; inset: 0;
    border: 1px solid var(--hair-2);
    border-radius: 50%;
    animation: rotate 80s linear infinite;
}
.shield__ring--2 {
    inset: 10%;
    border-style: dashed;
    border-color: rgba(37,166,166,0.28);
    animation-duration: 50s;
    animation-direction: reverse;
}
.shield__ring--3 {
    inset: 22%;
    border-color: rgba(37,166,166,0.45);
    animation-duration: 110s;
}
.shield__mark {
    position: relative;
    width: 46%;
    filter: drop-shadow(0 24px 60px rgba(37,166,166,0.4));
    animation: float 6s ease-in-out infinite;
}
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.coords {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    padding: 20px 24px;
    border: 1px solid var(--hair);
    background: rgba(255,255,255,0.55);
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-2);
    position: relative;
}
.coords::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 10px; height: 10px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
}
.coords::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 10px; height: 10px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}
.coords span {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--primary);
    margin-bottom: 5px;
}
.coords em {
    font-style: normal;
    color: var(--primary-dark);
    font-weight: 700;
}

/* marquee — nempel di bawah hero viewport */
.hero__marquee {
    margin-top: auto;
    padding: 20px 0;
    border-top: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    background: rgba(255,255,255,0.45);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.marquee__track {
    display: inline-flex;
    gap: 30px;
    white-space: nowrap;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--ink-2);
    animation: marquee 40s linear infinite;
    padding-left: 30px;
}
.marquee__track span:nth-child(even) { color: var(--primary); }
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- SECTION HEAD ---------- */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 820px;
    margin-bottom: 90px;
}
.section-head--dark { color: #f1fafa; }

/* ---------- LAYANAN ---------- */
.services {
    position: relative;
    padding: 160px 0 140px;
    z-index: 1;
}
.svc {
    border-top: 1px solid var(--hair);
}

/* Tiap baris layanan: 2 kolom — nomor kecil | konten penuh */
.svc__item {
    display: grid;
    grid-template-columns: 72px 1fr;
    column-gap: 48px;
    padding: 52px 0;
    border-bottom: 1px solid var(--hair);
    position: relative;
    transition: background .4s ease;
}
.svc__item::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 3px; height: 0;
    background: var(--primary);
    transition: height .55s cubic-bezier(.2,.7,.2,1);
}
.svc__item:hover { background: rgba(37,166,166,0.025); }
.svc__item:hover::before { height: 100%; }
.svc__item:hover .svc__icon { color: var(--primary); transform: rotate(-6deg) scale(1.08); }
.svc__item:hover .svc__num { color: var(--primary); }

/* Kolom kiri: nomor */
.svc__idx {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
}
.svc__num {
    font-family: var(--mono);
    font-weight: 800;
    font-size: 32px;
    letter-spacing: -0.05em;
    color: var(--secondary);
    line-height: 1;
    transition: color .35s;
}
.svc__of {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--ink-3);
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* Kolom kanan: semua konten */
.svc__main {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
}

/* Baris judul + ikon */
.svc__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}
.svc__title {
    font-family: var(--mono);
    font-weight: 800;
    font-size: clamp(22px, 2.4vw, 34px);
    letter-spacing: -0.04em;
    line-height: 1.1;
    color: var(--secondary);
    text-transform: lowercase;
}
.svc__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--ink-3);
    transition: transform .55s cubic-bezier(.2,.7,.2,1), color .35s;
}
.svc__icon svg { width: 100%; height: 100%; display: block; }

/* Deskripsi */
.svc__desc {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.8;
    color: var(--ink-2);
}

/* Tag */
.svc__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}
.svc__tags li {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 12px;
    border: 1px solid var(--hair-2);
    color: var(--primary-dark);
    transition: all .25s;
}
.svc__tags li:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ---------- METODOLOGI (DARK) ---------- */
.method {
    position: relative;
    z-index: 1;
    background: var(--secondary);
    color: #e8f5f5;
    padding: 160px 0;
    margin-top: 40px;
    overflow: hidden;
}
.method::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,166,166,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,166,166,0.07) 1px, transparent 1px);
    background-size: 64px 64px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.9), transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 30% 20%, rgba(0,0,0,0.9), transparent 70%);
}
.method::after {
    content: '';
    position: absolute;
    top: 10%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(63,212,212,0.1), transparent 65%);
    pointer-events: none;
}
.method > .wrap { position: relative; z-index: 1; }

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    list-style: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.12);
}
.step {
    padding: 48px 40px;
    border-right: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transition: background .35s;
    position: relative;
    overflow: hidden;
}
.step::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 2px; height: 0;
    background: var(--accent);
    transition: height .5s cubic-bezier(.2,.7,.2,1);
}
.step:hover { background: rgba(37,166,166,0.08); }
.step:hover::before { height: 100%; }
.step:hover .step__num { color: var(--accent); }

.step__num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--primary);
    margin-bottom: 48px;
    transition: color .3s;
}
.step__title {
    font-family: var(--mono);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -0.035em;
    color: #f1fafa;
    margin-bottom: 14px;
    text-transform: lowercase;
}
.step__desc {
    font-weight: 300;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(241,250,250,0.6);
}

/* ---------- KREDENSIAL ---------- */
.creds {
    position: relative;
    z-index: 1;
    padding: 180px 0;
}
.creds__inner {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    align-items: center;
}
.creds__head { margin-bottom: 0; }

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-top: 1px solid var(--hair);
    border-left: 1px solid var(--hair);
}
.stat {
    padding: 44px 36px;
    border-right: 1px solid var(--hair);
    border-bottom: 1px solid var(--hair);
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: background .3s;
}
.stat:hover { background: rgba(255,255,255,0.65); }
.stat__label {
    font-family: var(--mono);
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ink-3);
}
.stat__value {
    font-family: var(--mono);
    font-weight: 800;
    font-size: clamp(52px, 6.4vw, 88px);
    letter-spacing: -0.07em;
    line-height: 1;
    color: var(--secondary);
}
.stat__value span {
    color: var(--primary);
    font-weight: 200;
    font-style: italic;
}

/* ---------- KONTAK ---------- */
.cta {
    position: relative;
    z-index: 1;
    padding: 160px 0 200px;
}
.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}
.cta__left > * + * { margin-top: 30px; }

.cta__meta {
    list-style: none;
    margin-top: 44px;
    padding-top: 30px;
    border-top: 1px solid var(--hair);
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--ink-2);
}
.cta__meta span {
    display: inline-block;
    min-width: 72px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    color: var(--primary);
}

.form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 36px;
    background: rgba(255,255,255,0.6);
    border: 1px solid var(--hair);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
}
.form::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px;
    width: 14px; height: 14px;
    border-top: 2px solid var(--primary);
    border-left: 2px solid var(--primary);
}
.form::after {
    content: '';
    position: absolute;
    bottom: -1px; right: -1px;
    width: 14px; height: 14px;
    border-bottom: 2px solid var(--primary);
    border-right: 2px solid var(--primary);
}
.field { display: flex; flex-direction: column; gap: 10px; }
.field--full { grid-column: 1 / -1; }
.field__label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--primary-dark);
}
.field input,
.field select,
.field textarea {
    font-family: var(--mono);
    font-weight: 400;
    font-size: 14px;
    color: var(--ink);
    padding: 14px 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--hair-2);
    border-radius: 0;
    transition: border-color .25s;
    width: 100%;
}
.field input::placeholder,
.field textarea::placeholder {
    color: var(--ink-3);
    font-weight: 300;
    font-style: italic;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary);
}
.field textarea { resize: vertical; min-height: 90px; }
.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%);
    background-position: calc(100% - 12px) 22px, calc(100% - 7px) 22px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 36px;
    color: var(--ink);
}
.form .btn--wide { grid-column: 1 / -1; margin-top: 12px; }

/* ---------- FOOTER ---------- */
.footer {
    background: var(--secondary);
    color: rgba(241,250,250,0.7);
    padding: 90px 0 44px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(37,166,166,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,166,166,0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent 80%);
    pointer-events: none;
}
.footer > .wrap { position: relative; z-index: 1; }
.footer__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { display: flex; gap: 18px; align-items: flex-start; }
.footer__mark { width: 44px; height: 44px; object-fit: contain; }
.footer__name {
    font-family: var(--mono);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.1em;
    color: #f1fafa;
    margin-bottom: 10px;
}
.footer__tag {
    font-family: var(--mono);
    font-weight: 200;
    font-size: 13px;
    color: var(--accent);
    font-style: italic;
    letter-spacing: -0.01em;
}
.footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.footer__grid > div { display: flex; flex-direction: column; gap: 12px; }
.footer__heading {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.footer__grid a,
.footer__grid span {
    font-family: var(--mono);
    font-size: 13px;
    font-weight: 300;
    color: rgba(241,250,250,0.7);
    transition: color .2s;
}
.footer__grid a:hover { color: var(--accent); }

.footer__meta {
    padding-top: 32px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(241,250,250,0.45);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
}
.footer__dot { color: var(--primary); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    :root { --gutter: 28px; }
    .hero { min-height: auto; padding: 48px 0 0; }
    .hero__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 56px; }
    .hero__right { order: -1; max-width: 300px; margin: 0 auto; }
    .menu { display: none; }

    .svc__item { padding: 44px 0; column-gap: 32px; }
    .svc__icon { width: 36px; height: 36px; }

    .steps { grid-template-columns: repeat(2, 1fr); }

    .creds__inner { grid-template-columns: 1fr; gap: 64px; }

    .cta__inner { grid-template-columns: 1fr; gap: 64px; }
    .form { grid-template-columns: 1fr; }

    .footer__inner { grid-template-columns: 1fr; gap: 50px; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 600px) {
    :root { --gutter: 22px; }
    .nav__inner .btn--ghost { display: none; }
    .hero { padding-top: 36px; }
    .hero__inner { gap: 36px; padding-bottom: 40px; }
    .hero__marquee { margin-top: 0; }
    .services { padding: 110px 0 90px; }
    .method { padding: 110px 0; }
    .creds, .cta { padding: 110px 0; }
    .steps { grid-template-columns: 1fr; }
    .section-head { margin-bottom: 56px; }
    .stats { grid-template-columns: 1fr; }
    .stat { padding: 34px 26px; }
    .step { padding: 36px 28px; }
    .svc__item { padding: 32px 0; grid-template-columns: 48px 1fr; column-gap: 20px; }
    .svc__num { font-size: 22px; }
    .svc__icon { width: 28px; height: 28px; }
    .svc__title { font-size: 20px; }
    .coords { grid-template-columns: 1fr 1fr; gap: 14px; }
    .form { padding: 24px; }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__meta { font-size: 9.5px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
