/* =====================================================================
   APPITE — public site
   Accent colours come from /admin/settings via --accent / --accent-2.
   ===================================================================== */
:root {
    --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --accent: #6d5cff;
    --accent-2: #22d3ee;
    --ink: #0b0d17;
    --ink-2: #3d4159;
    --muted: #6f738b;
    --line: #e5e7f0;
    --paper: #ffffff;
    --paper-2: #f5f6fb;
    --dark: #0b0d17;
    --dark-2: #121528;
    --ok: #16a34a;
    --danger: #dc2626;

    --wrap: 1180px;
    --gutter: clamp(18px, 4vw, 36px);
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 1px 2px rgba(11, 13, 23, .04), 0 16px 40px -20px rgba(11, 13, 23, .25);
    --shadow-lg: 0 30px 80px -30px rgba(109, 92, 255, .45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; }
[hidden] { display: none !important; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.narrow { max-width: 820px; }
.center { text-align: center; }
.mt { margin-top: 24px; }
.pt0 { padding-top: 0 !important; }
.muted { color: var(--muted); }
.small { font-size: 13.5px; }
.empty { color: var(--muted); text-align: center; padding: 48px 0; }
.hp { position: absolute; left: -9999px; }

h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -.02em; line-height: 1.12; margin: 0; }
.kicker { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.lede { font-size: clamp(17px, 2vw, 19px); color: var(--ink-2); }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    font-weight: 600; font-size: 15px; padding: 12px 22px; border-radius: 999px;
    border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
    transition: transform .18s, box-shadow .18s, background .18s, color .18s, border-color .18s;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 60%, var(--accent-2))); color: #fff; box-shadow: 0 10px 26px -10px var(--accent); }
.btn-primary:hover { box-shadow: 0 16px 34px -10px var(--accent); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--paper); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-ghost-light { border-color: rgba(255, 255, 255, .25); color: #fff; }
.btn-ghost-light:hover { background: rgba(255, 255, 255, .08); border-color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: 14px; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--accent); }
.link-arrow svg { width: 18px; height: 18px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(3px); }

/* ---------- announce + header ---------- */
.announce { background: var(--ink); color: #fff; text-align: center; font-size: 13.5px; font-weight: 500; padding: 8px var(--gutter); }
.site-header { position: sticky; top: 0; z-index: 40; background: rgba(255, 255, 255, .82); backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.site-header.scrolled { border-color: var(--line); box-shadow: 0 8px 30px -20px rgba(11, 13, 23, .25); }
.header-bar { height: 72px; display: flex; align-items: center; gap: 28px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 36px; width: auto; }
.logo-mark { position: relative; width: 36px; height: 36px; border-radius: 11px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); box-shadow: 0 8px 20px -8px var(--accent); }
.logo-mark span { position: absolute; inset: 9px; border-radius: 6px; border: 2.5px solid #fff; border-right-color: transparent; transform: rotate(-45deg); }
.logo-text { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: .06em; }

.nav { display: flex; gap: 4px; margin-left: 8px; }
.nav > a, .nav-item > a { display: inline-flex; align-items: center; gap: 4px; padding: 9px 13px; border-radius: 10px; font-weight: 600; font-size: 14.5px; color: var(--ink-2); transition: background .15s, color .15s; }
.nav > a:hover, .nav-item > a:hover, .nav > a.active, .nav-item > a.active { color: var(--ink); background: var(--paper-2); }
.nav-item > a svg { width: 14px; height: 14px; }
.nav-item { position: relative; }
.mega { position: absolute; top: calc(100% + 8px); left: 0; width: 560px; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 4px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s, transform .18s, visibility .18s; }
.nav-item:hover .mega, .nav-item:focus-within .mega { opacity: 1; visibility: visible; transform: none; }
.mega-item { display: flex; gap: 12px; padding: 12px; border-radius: 12px; align-items: flex-start; }
.mega-item:hover { background: var(--paper-2); }
.mega-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); flex-shrink: 0; }
.mega-icon svg { width: 20px; height: 20px; }
.mega-item b { display: block; font-size: 14px; }
.mega-item small { display: block; color: var(--muted); font-size: 12.5px; line-height: 1.4; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.header-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; font-size: 14px; color: var(--ink-2); }
.header-phone svg { width: 16px; height: 16px; color: var(--accent); }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; padding: 8px; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }
@media (max-width: 1024px) { .nav, .header-phone { display: none; } .burger { display: flex; } }
@media (max-width: 480px) { .header-actions .btn { display: none; } }

/* drawer */
.drawer { position: fixed; inset: 0; z-index: 60; visibility: hidden; }
.drawer.open { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(11, 13, 23, .55); opacity: 0; transition: opacity .25s; }
.drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(360px, 90vw); background: var(--paper); padding: 20px 24px 32px; overflow-y: auto; transform: translateX(100%); transition: transform .3s cubic-bezier(.2, .8, .2, 1); display: flex; flex-direction: column; gap: 2px; }
.drawer.open .drawer-panel { transform: none; }
.drawer-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.drawer-head button { background: none; border: 0; font-size: 20px; cursor: pointer; padding: 6px; }
.drawer-label { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 16px 0 4px; }
.drawer-panel > a:not(.btn) { padding: 10px 8px; border-radius: 10px; font-weight: 600; font-family: var(--display); }
.drawer-panel > a:not(.btn):hover { background: var(--paper-2); }
.drawer-panel .btn { margin-top: 18px; }
.drawer-phone { text-align: center; color: var(--muted) !important; font-weight: 500 !important; }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; animation: float 14s ease-in-out infinite alternate; }
.o1 { width: 60vmax; height: 60vmax; background: var(--accent); top: -30vmax; right: -20vmax; }
.o2 { width: 40vmax; height: 40vmax; background: var(--accent-2); bottom: -25vmax; left: -10vmax; animation-delay: -6s; opacity: .35; }
.grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at 50% 30%, #000 20%, transparent 70%); }
@keyframes float { to { transform: translate3d(4vmax, 3vmax, 0) scale(1.1); } }
.hero-inner { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; padding-top: clamp(56px, 9vw, 110px); padding-bottom: clamp(56px, 9vw, 110px); }
@media (max-width: 960px) { .hero-inner { grid-template-columns: 1fr; } .hero-visual { display: none; } }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .14); background: rgba(255, 255, 255, .06); color: #d7d9ea; margin-bottom: 24px; }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-2) 30%, transparent); }
.hero h1 { font-size: clamp(38px, 5.6vw, 66px); font-weight: 800; letter-spacing: -.035em; line-height: 1.04; margin-bottom: 20px; }
.hero .lede { color: #b9bdd6; max-width: 560px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-actions.center { justify-content: center; margin: 28px 0; }
.hero-trust { list-style: none; margin: 32px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: 13.5px; color: #9fa4c2; }
.hero-trust li::before { content: "✓"; color: var(--accent-2); margin-right: 6px; font-weight: 700; }

.hero-visual { position: relative; height: 420px; }
.hv-card { position: absolute; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); border-radius: 18px; backdrop-filter: blur(12px); box-shadow: 0 30px 60px -30px rgba(0, 0, 0, .6); animation: rise 6s ease-in-out infinite alternate; }
.hv-main { left: 0; top: 30px; width: 68%; height: 300px; padding: 18px; }
.hv-phone { right: 0; top: 0; width: 34%; height: 380px; padding: 30px 16px 16px; animation-delay: -3s; }
.hv-badge { padding: 12px 16px; display: grid; gap: 2px; background: #fff; color: var(--ink); }
.hv-badge span { font-family: var(--display); font-weight: 800; font-size: 18px; color: var(--accent); }
.hv-badge small { font-size: 12px; color: var(--muted); }
.hv-badge:not(.b2) { left: 30px; bottom: 10px; animation-delay: -1.5s; }
.hv-badge.b2 { right: 30%; top: 250px; animation-delay: -4.5s; }
.hv-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.hv-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255, 255, 255, .25); }
.hv-lines i { display: block; height: 10px; border-radius: 6px; background: rgba(255, 255, 255, .14); margin-bottom: 10px; }
.hv-chart { display: flex; align-items: flex-end; gap: 10px; height: 120px; margin-top: 20px; }
.hv-chart b { flex: 1; border-radius: 6px 6px 0 0; background: linear-gradient(180deg, var(--accent-2), var(--accent)); opacity: .9; }
.hv-notch { width: 60px; height: 6px; border-radius: 4px; background: rgba(255, 255, 255, .2); margin: -14px auto 24px; }
.hv-btn { margin-top: auto; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); position: absolute; left: 16px; right: 16px; bottom: 16px; }
@keyframes rise { to { transform: translateY(-10px); } }

/* ---------- stats ---------- */
.stats-band { background: var(--dark-2); color: #fff; border-top: 1px solid rgba(255, 255, 255, .06); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-top: 28px; padding-bottom: 28px; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 8px 0; }
.stat b { display: block; font-family: var(--display); font-weight: 800; font-size: clamp(26px, 3.5vw, 38px); background: linear-gradient(90deg, #fff, #c9ccff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat span { font-size: 13.5px; color: #9fa4c2; }

/* ---------- sections ---------- */
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-soft { background: var(--paper-2); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark .section-head p { color: #b9bdd6; }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 44px; }
.section-head.left { text-align: left; margin-left: 0; margin-bottom: 0; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; }
.section-head p { color: var(--ink-2); margin: 14px 0 0; font-size: 17px; }
.section-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 36px; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .orb, .hv-card { animation: none; } }

/* ---------- services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card { position: relative; display: flex; flex-direction: column; gap: 12px; padding: 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s, border-color .22s; overflow: hidden; }
.service-card::after { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--c, var(--accent)); opacity: 0; transition: opacity .2s; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::after { opacity: 1; }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: color-mix(in srgb, var(--c, var(--accent)) 12%, transparent); color: var(--c, var(--accent)); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 20px; }
.service-card p { margin: 0; color: var(--ink-2); font-size: 15px; flex: 1; }
.service-price { font-size: 13px; font-weight: 600; color: var(--muted); }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--c, var(--accent)); font-size: 14px; }
.service-link svg { width: 16px; height: 16px; }

/* ---------- process ---------- */
.process { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: p; }
@media (max-width: 960px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }
.process li { padding: 26px; border-radius: var(--radius); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.process span { display: block; font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--accent-2); margin-bottom: 14px; letter-spacing: .1em; }
.process h3 { font-size: 19px; margin-bottom: 8px; }
.process p { margin: 0; color: #b9bdd6; font-size: 14.5px; }

/* ---------- projects ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }
.project-card { display: block; border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s; }
.project-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-img { display: block; overflow: hidden; aspect-ratio: 3 / 2; background: var(--paper-2); }
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover img { transform: scale(1.04); }
.project-body { display: block; padding: 20px 22px 22px; }
.project-meta { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.project-card h3 { font-size: 18.5px; }
.project-card p { margin: 8px 0 0; color: var(--ink-2); font-size: 14.5px; }
.chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.chips span { font-size: 12px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: var(--paper-2); color: var(--ink-2); }
.project-cover { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 36px; }
.project-layout, .service-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 44px; align-items: start; }
@media (max-width: 900px) { .project-layout, .service-layout { grid-template-columns: 1fr; } }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.gallery img { border-radius: var(--radius-sm); }
.results { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.results b { display: block; font-family: var(--display); font-size: 26px; font-weight: 800; color: var(--accent); }
.results span { font-size: 13px; color: var(--muted); }

/* ---------- why ---------- */
.why { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 14px; }
.tick { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.tick svg { width: 16px; height: 16px; }
.why-list b { font-family: var(--display); font-size: 17px; }
.why-list p { margin: 4px 0 0; color: var(--ink-2); font-size: 15px; }
.why-art { display: grid; gap: 14px; }
.why-card { padding: 18px 20px; border-radius: 14px; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); }
.why-card b { display: block; font-family: var(--display); }
.why-card small { color: var(--muted); }
.why-card i { display: block; height: 6px; border-radius: 6px; background: var(--paper-2); margin-top: 12px; position: relative; overflow: hidden; }
.why-card i::after { content: ""; position: absolute; inset: 0; width: var(--w); background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 6px; }
.why-card.c2 { margin-left: 30px; }
.why-card.c3 { margin-left: 60px; }
@media (max-width: 600px) { .why-card.c2, .why-card.c3 { margin-left: 0; } }

/* ---------- tech marquee ---------- */
.tech { padding: 36px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.tech-label { text-align: center; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 0 0 20px; }
.marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee-track { display: flex; gap: 14px; width: max-content; animation: marquee 40s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 700; font-size: 15px; padding: 10px 20px; border-radius: 999px; border: 1px solid var(--line); color: var(--ink-2); white-space: nowrap; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial { margin: 0; padding: 26px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 14px; }
.stars { color: #d1d5e6; letter-spacing: 2px; }
.stars .on { color: #f59e0b; }
.testimonial blockquote { margin: 0; font-size: 15.5px; color: var(--ink-2); flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial figcaption img, .avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.avatar { display: grid; place-items: center; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; font-family: var(--display); font-weight: 700; }
.avatar.xl { width: 96px; height: 96px; font-size: 34px; margin: 0 auto 16px; }
.testimonial b { display: block; font-size: 14.5px; }
.testimonial small { color: var(--muted); font-size: 12.5px; }

/* ---------- blog ---------- */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 960px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .posts-grid { grid-template-columns: 1fr; } }
.post-card { display: block; border-radius: var(--radius); overflow: hidden; background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .22s, box-shadow .22s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-img { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; }
.post-body { display: block; padding: 18px 20px 22px; }
.post-meta { display: block; font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.post-card h3 { font-size: 18px; }
.post-card p { margin: 8px 0 0; color: var(--ink-2); font-size: 14.5px; }

/* ---------- faq ---------- */
.faq-wrap { max-width: 820px; }
.faq-list { display: grid; gap: 10px; }
.faq { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); padding: 0 20px; }
.faq summary { cursor: pointer; list-style: none; padding: 18px 0; font-family: var(--display); font-weight: 600; font-size: 16px; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--accent); transition: transform .2s; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; color: var(--ink-2); font-size: 15px; }
.faq-a p { margin: 0 0 8px; }

/* ---------- page heads ---------- */
.page-head { padding: clamp(44px, 7vw, 80px) 0; background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -.03em; }
.page-head p { margin: 14px 0 0; color: var(--ink-2); max-width: 640px; font-size: 17px; }
.page-head-dark { background: var(--dark); color: #fff; border: 0; position: relative; overflow: hidden; }
.page-head-dark::before { content: ""; position: absolute; width: 50vmax; height: 50vmax; border-radius: 50%; background: var(--c, var(--accent)); filter: blur(100px); opacity: .35; right: -20vmax; top: -30vmax; }
.page-head-dark .wrap { position: relative; }
.page-head-dark p { color: #b9bdd6; }
.page-head-dark .hero-actions { margin-top: 24px; }
.breadcrumb { font-size: 13.5px; color: var(--muted); margin: 0 0 14px; }
.breadcrumb a:hover { color: var(--accent); }
.service-hero { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.service-hero-icon { display: grid; place-items: center; width: 140px; height: 140px; border-radius: 36px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .12); color: var(--c, var(--accent)); flex-shrink: 0; }
.service-hero-icon svg { width: 64px; height: 64px; }
@media (max-width: 720px) { .service-hero-icon { display: none; } }
.price-tag { font-size: 14px; color: #b9bdd6; }
.price-tag b { color: #fff; font-size: 16px; }
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filters a { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; font-size: 14px; color: var(--ink-2); }
.filters a:hover { border-color: var(--ink); color: var(--ink); }
.filters a.on { background: var(--ink); border-color: var(--ink); color: #fff; }

/* ---------- prose ---------- */
.prose { font-size: 17px; line-height: 1.75; color: #232640; }
.prose h2 { font-size: 26px; margin: 1.5em 0 .5em; }
.prose h3 { font-size: 20px; margin: 1.3em 0 .4em; }
.prose p { margin: 0 0 1.2em; }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.prose li { margin-bottom: .4em; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote { margin: 1.4em 0; padding-left: 20px; border-left: 4px solid var(--accent); color: var(--ink-2); }
.prose img { border-radius: var(--radius-sm); margin: 1.4em 0; }
.prose code { background: var(--paper-2); padding: 2px 6px; border-radius: 5px; font-size: .9em; }
.prose table { border-collapse: collapse; width: 100%; margin: 1.2em 0; font-size: 15px; }
.prose td, .prose th { border: 1px solid var(--line); padding: 8px 10px; text-align: left; }

/* ---------- cards / sidebars ---------- */
.card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.side-card { padding: 22px; margin-bottom: 16px; }
.side-card h3 { font-size: 17px; margin-bottom: 10px; }
.side-card p { margin: 0 0 10px; font-size: 14.5px; color: var(--ink-2); }
.side-card.accent { background: var(--dark); color: #fff; border: 0; }
.side-card.accent p { color: #b9bdd6; }
.ticks { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; font-size: 14.5px; }
.ticks li { display: flex; gap: 9px; align-items: flex-start; }
.ticks svg { width: 16px; height: 16px; color: var(--ok); flex-shrink: 0; margin-top: 4px; }
.summary { display: grid; grid-template-columns: auto 1fr; gap: 8px 16px; margin: 0; font-size: 14.5px; }
.summary dt { color: var(--muted); }
.summary dd { margin: 0; font-weight: 500; }
.summary a { color: var(--accent); }

/* ---------- forms ---------- */
.field { display: grid; gap: 6px; margin-bottom: 16px; }
.field > span { font-weight: 600; font-size: 14px; }
.field > span small { font-weight: 400; color: var(--muted); }
.field em { color: var(--danger); font-style: normal; font-size: 13px; }
.req { color: var(--danger); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
input:not([type=checkbox]):not([type=radio]):not([type=file]), select, textarea {
    width: 100%; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); font-size: 15px; transition: border-color .15s, box-shadow .15s;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 15%, transparent); }
textarea { resize: vertical; }
input[type=file] { font-size: 14px; }
.checks { display: flex; flex-wrap: wrap; gap: 8px; }
.check { display: inline-flex; align-items: center; gap: 8px; padding: 9px 14px; border: 1.5px solid var(--line); border-radius: 999px; font-size: 14px; cursor: pointer; }
.check:has(input:checked) { border-color: var(--accent); background: color-mix(in srgb, var(--accent) 8%, transparent); }
.check input { accent-color: var(--accent); }
.fine { font-size: 13px; color: var(--muted); }
.fine a { color: var(--accent); }
.step-nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.step-nav .btn:only-child { margin-left: auto; }
.alert { padding: 12px 16px; border-radius: var(--radius-sm); background: var(--paper-2); font-size: 14.5px; margin-bottom: 18px; }
.alert-ok { background: #dcfce7; color: #166534; }
.alert-error { background: #fee2e2; color: #991b1b; }

/* request form */
.request-layout, .contact-layout, .track-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 32px; align-items: start; }
.contact-layout { grid-template-columns: 1fr 1fr; }
@media (max-width: 900px) { .request-layout, .contact-layout, .track-layout { grid-template-columns: 1fr; } }
.request-form fieldset { border: 0; padding: 0; margin: 0; }
.request-form legend { font-family: var(--display); font-weight: 700; font-size: 22px; margin-bottom: 18px; }
.request-form h3 { font-size: 22px; margin-bottom: 18px; }
.steps { list-style: none; margin: 0 0 26px; padding: 0; display: flex; gap: 6px; }
.steps li { flex: 1; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--muted); padding-bottom: 10px; border-bottom: 3px solid var(--line); }
.steps li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--paper-2); font-size: 12px; }
.steps li.on { color: var(--accent); border-color: var(--accent); }
.steps li.on span { background: var(--accent); color: #fff; }
.steps li.done { color: var(--ok); border-color: var(--ok); }
.steps li.done span { background: var(--ok); color: #fff; }
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 18px; }
@media (max-width: 600px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; display: flex; gap: 12px; align-items: center; padding: 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm); cursor: pointer; transition: border-color .15s, background .15s; }
.choice input { position: absolute; opacity: 0; }
.choice:has(input:checked) { border-color: var(--c, var(--accent)); background: color-mix(in srgb, var(--c, var(--accent)) 8%, transparent); }
.choice-icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: color-mix(in srgb, var(--c, var(--accent)) 12%, transparent); color: var(--c, var(--accent)); flex-shrink: 0; }
.choice-icon svg { width: 20px; height: 20px; }
.choice b { display: block; font-size: 14.5px; }
.choice small { color: var(--muted); font-size: 12.5px; }
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; font-size: 14.5px; color: var(--ink-2); }
.timeline b { display: block; color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.big-check { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: #dcfce7; color: var(--ok); margin: 0 auto 20px; }
.big-check svg { width: 40px; height: 40px; stroke-width: 2.5; }
.reference { font-family: var(--display); font-weight: 800; font-size: clamp(30px, 5vw, 44px); letter-spacing: .04em; color: var(--accent); margin: 4px 0 20px; }

/* tracking */
.track-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; flex-wrap: wrap; }
.status-pill { display: inline-block; padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 14px; color: #fff; background: var(--c); }
.stepper { list-style: none; margin: 0 0 16px; padding: 0; display: flex; justify-content: space-between; position: relative; }
.stepper::before { content: ""; position: absolute; left: 14px; right: 14px; top: 11px; height: 3px; background: var(--line); }
.stepper li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--muted); flex: 1; text-align: center; }
.stepper li span { width: 24px; height: 24px; border-radius: 50%; background: var(--paper); border: 3px solid var(--line); }
.stepper li.done span { background: var(--ok); border-color: var(--ok); }
.stepper li.done { color: var(--ok); }
.stepper li.on span { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 0 5px color-mix(in srgb, var(--accent) 20%, transparent); }
.stepper li.on { color: var(--accent); }
@media (max-width: 600px) { .stepper li { font-size: 10.5px; } }
.thread { display: grid; gap: 14px; margin: 18px 0; }
.msg { padding: 16px 18px; border-radius: 14px; background: var(--paper-2); font-size: 15px; }
.msg.staff { background: color-mix(in srgb, var(--accent) 8%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 20%, transparent); }
.msg-head { display: flex; justify-content: space-between; gap: 12px; font-size: 13px; margin-bottom: 6px; }
.msg-head time { color: var(--muted); }
.msg p { margin: 0; white-space: pre-wrap; }
.reply-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

/* contact */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 500px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { display: grid; gap: 4px; padding: 20px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); font-size: 14.5px; color: var(--ink-2); transition: transform .2s, box-shadow .2s; }
a.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-card b { color: var(--ink); font-family: var(--display); font-size: 16px; }
.ci { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent); margin-bottom: 8px; }
.ci svg { width: 20px; height: 20px; }
.address-card { display: flex; gap: 16px; align-items: flex-start; padding: 22px; margin-bottom: 14px; }
.address-card b { font-family: var(--display); font-size: 16px; }
.address-card p { margin: 6px 0 8px; color: var(--ink-2); }
.address-card a { color: var(--accent); font-weight: 600; font-size: 14px; }
.map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; }
.map iframe { width: 100%; height: 100%; border: 0; }

/* about / team / careers */
.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.value { padding: 24px; border-radius: var(--radius); background: var(--paper-2); text-align: center; }
.value b { display: block; font-family: var(--display); font-size: 22px; font-weight: 800; color: var(--accent); }
.value span { font-size: 13px; color: var(--muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 28px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); text-align: center; }
.team-card img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }
.team-card h3 { font-size: 18px; }
.team-card .role { color: var(--accent); font-weight: 600; font-size: 13.5px; margin: 4px 0 10px; }
.team-card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.team-card a { display: inline-block; margin-top: 10px; font-weight: 600; font-size: 13.5px; color: var(--accent); }
.jobs { display: grid; gap: 12px; }
.job-card { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; border-radius: var(--radius); background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow); transition: transform .2s; }
.job-card:hover { transform: translateY(-3px); }
.job-card h3 { font-size: 18px; }
.job-card p { margin: 4px 0 0; color: var(--muted); font-size: 14px; }

/* ---------- CTA + footer ---------- */
.cta-band { background: linear-gradient(135deg, var(--accent), color-mix(in srgb, var(--accent) 45%, var(--accent-2))); color: #fff; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; padding-top: 56px; padding-bottom: 56px; }
.cta-inner h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; }
.cta-inner p { margin: 8px 0 0; color: rgba(255, 255, 255, .85); max-width: 520px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer { background: var(--dark); color: #b9bdd6; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding-top: 60px; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .logo-text { color: #fff; }
.footer-brand p { font-size: 14.5px; margin: 14px 0; }
.footer-brand address { font-style: normal; font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-brand address a:hover { color: #fff; }
.social { display: flex; gap: 8px; }
.social a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 10px; background: rgba(255, 255, 255, .07); color: #fff; }
.social a:hover { background: var(--accent); }
.social svg { width: 17px; height: 17px; }
.site-footer h4 { color: #fff; font-size: 14px; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer h4.mt { margin-top: 24px; }
.footer-grid > div > a { display: block; font-size: 14.5px; padding: 4px 0; }
.footer-grid > div > a:hover { color: #fff; }
.footer-grid .ok { color: #86efac; font-size: 14px; }
.subscribe { display: flex; gap: 8px; }
.subscribe input { flex: 1; min-width: 0; background: rgba(255, 255, 255, .06); border-color: rgba(255, 255, 255, .15); color: #fff; padding: 10px 14px; }
.subscribe input::placeholder { color: #7c819e; }
.footer-base { border-top: 1px solid rgba(255, 255, 255, .08); padding-top: 20px; padding-bottom: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 13px; }

.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 30; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .7); transition: transform .2s; }
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: currentColor; stroke: none; }

.pagination { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; font-weight: 600; }
.pagination a { color: var(--accent); }
.pagination .disabled { color: var(--muted); opacity: .5; }
.page-info { font-size: 13px; color: var(--muted); font-weight: 500; }
