/* FieldForce marketing site — single committed light theme, white-label.
   Palette: warm paper, deep green-ink, teal accent (product continuity). */
:root {
  --paper: #FAFAF7; --surface: #FFFFFF; --ink: #17201D; --ink-2: #46524C;
  --muted: #6E7973; --accent: #0E7C6B; --accent-ink: #0A5F52; --accent-soft: #E7F2EE;
  --line: #E2E6E0; --amber: #B7791F; --amber-soft: #FBF3E4; --red-soft: #FBE9E7; --radius: 14px;
  /* splash palette — green stays predominant, these punctuate */
  --coral: #C4574A; --coral-soft: #FAE9E6;
  --indigo: #4C5FAB; --indigo-soft: #EAEDF8;
  --plum: #8A4E8C; --plum-soft: #F4EAF5;
  --sun: #D99A2B; --sun-soft: #FBF1DC;
  --skin: #E8B98F; --skin2: #C98E62; --hair: #3A2E28;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--paper); color: var(--ink);
  font-family: 'Public Sans', 'Segoe UI', system-ui, sans-serif;
  font-size: 16px; line-height: 1.65;
}
h1, h2, h3 { font-family: 'Sora', 'Segoe UI', system-ui, sans-serif; line-height: 1.16; text-wrap: balance; margin: 0 0 12px; letter-spacing: -0.4px; }
h1 { font-size: clamp(32px, 4.6vw, 54px); font-weight: 700; }
h2 { font-size: clamp(24px, 2.8vw, 34px); font-weight: 700; }
h3 { font-size: 18.5px; font-weight: 600; }
p { margin: 0 0 14px; max-width: 66ch; color: var(--ink-2); }
a { color: var(--accent-ink); }
img, svg { max-width: 100%; }
.wrap { max-width: 1140px; margin: 0 auto; padding: 0 22px; }

/* ── scroll-reveal (site.js adds .in when visible; reduced-motion = instant) ── */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; }
.rv-l { opacity: 0; transform: translateX(-38px); transition: opacity .7s ease, transform .7s ease; }
.rv-r { opacity: 0; transform: translateX(38px); transition: opacity .7s ease, transform .7s ease; }
.rv-l.in, .rv-r.in { opacity: 1; transform: none; }
.pop { opacity: 0; transform: scale(.85); transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.56,.64,1); }
.pop.in { opacity: 1; transform: scale(1); }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
.float { animation: floaty 4.5s ease-in-out infinite; }
.float.f2 { animation-duration: 5.4s; animation-delay: .8s; }
@media (prefers-reduced-motion: reduce) { .rv-l, .rv-r, .pop { opacity: 1; transform: none; transition: none; } }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ── nav ── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(250,250,247,.92); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; gap: 22px; height: 64px; }
.logo { display: flex; align-items: center; gap: 9px; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; color: var(--ink); text-decoration: none; }
.logo .mk { width: 30px; height: 30px; border-radius: 8px; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 15px; }
.nav nav { display: flex; gap: 18px; align-items: center; margin-left: 8px; }
.nav nav a { color: var(--ink-2); text-decoration: none; font-size: 14.5px; padding: 6px 2px; border-bottom: 2px solid transparent; }
.nav nav a:hover { color: var(--accent-ink); }
.nav nav a[aria-current], .nav nav a.on { color: var(--accent-ink); font-weight: 700; border-bottom-color: var(--accent); }
.nav .sp { flex: 1; }
.btn { display: inline-block; border-radius: 10px; padding: 11px 20px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--accent); color: var(--accent-ink); background: transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px -12px rgba(14,124,107,.55); }
.btn.primary:hover { background: var(--accent-ink); }
.btn.big { padding: 14px 26px; font-size: 16px; }
.btn:focus-visible { outline: 3px solid var(--accent-soft); }
@media (max-width: 900px) { .nav nav { display: none; } }

/* ── hero ── */
.hero { padding: 78px 0 66px; background:
  radial-gradient(900px 420px at 85% -10%, #DFF0EA 0%, transparent 60%),
  linear-gradient(170deg, var(--accent-soft) 0%, var(--paper) 62%);
  border-bottom: 1px solid var(--line); overflow: hidden; }
.hero .wrap { display: grid; grid-template-columns: 1.02fr .98fr; gap: 48px; align-items: center; }
.hero .kick { font-size: 12.5px; letter-spacing: .15em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; margin-bottom: 12px; }
.hero .lede { font-size: 18.5px; }
.hero .ctas { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero .sub { margin-top: 14px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .hero .wrap { grid-template-columns: 1fr; } }

/* ── device mocks ── */
.stage { position: relative; }
.shot { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 24px 60px -26px rgba(14,60,52,.32); overflow: hidden; }
.shot .bar { height: 32px; background: var(--accent-soft); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 5px; padding: 0 12px; }
.shot .bar i { width: 9px; height: 9px; border-radius: 50%; background: #cfd9d3; }
.shot .bar .t { font-size: 11px; color: var(--accent-ink); font-weight: 700; margin-left: 6px; letter-spacing: .06em; }
.shot .body { padding: 14px; display: grid; gap: 10px; }
.phone { position: absolute; right: -14px; bottom: -30px; width: 168px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 20px 50px -20px rgba(14,60,52,.4); padding: 10px 10px 14px; }
.phone .notch { width: 54px; height: 5px; border-radius: 3px; background: var(--line); margin: 2px auto 10px; }
.phone .prow { display: flex; align-items: center; gap: 7px; padding: 6px 4px; border-bottom: 1px solid #F0F2EE; font-size: 10.5px; color: var(--ink-2); }
.phone .prow:last-child { border: 0; }
.phone .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex: none; }
.phone .dot.a { background: var(--amber); }
@media (max-width: 900px) { .phone { display: none; } }

.row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.pill { border-radius: 99px; padding: 4px 12px; font-size: 11.5px; font-weight: 700; white-space: nowrap; }
.pill.g { background: var(--accent-soft); color: var(--accent-ink); }
.pill.a { background: var(--amber-soft); color: var(--amber); }
.pill.r { background: var(--red-soft); color: #B23C2E; }
.pill.b { background: var(--indigo-soft); color: var(--indigo); }
.pill.p { background: var(--plum-soft); color: var(--plum); }
.linebar { height: 9px; border-radius: 6px; background: #EDF0EC; flex: 1; position: relative; overflow: hidden; min-width: 90px; }
.linebar b { position: absolute; inset: 0 auto 0 0; border-radius: 6px; background: var(--accent); width: 0; transition: width 1.1s cubic-bezier(.2,.7,.2,1) .2s; }
.in .linebar b, .shot:hover .linebar b { width: var(--w, 60%); }
.mini { font-size: 12px; color: var(--muted); }

/* animated map */
.mapmock { height: 190px; border-radius: 10px; border: 1px solid var(--line); position: relative; overflow: hidden;
  background:
    linear-gradient(transparent 96%, #E3E9E3 96%) 0 0/28px 28px,
    linear-gradient(90deg, transparent 96%, #E3E9E3 96%) 0 0/28px 28px,
    linear-gradient(#F4F7F3, #EAF0EB); }
.mapmock svg.route { position: absolute; inset: 0; width: 100%; height: 100%; }
.mapmock .rt { fill: none; stroke: var(--accent); stroke-width: 2.5; stroke-dasharray: 7 7; opacity: .75; animation: dash 14s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -280; } }
.pin { position: absolute; width: 15px; height: 15px; border-radius: 50% 50% 50% 0; background: var(--accent); transform: rotate(-45deg); box-shadow: 0 2px 6px rgba(0,0,0,.28); }
.pin.a { background: var(--amber); }
.pin.r { background: #C4574A; }
.pin::after { content: ''; position: absolute; inset: -9px; border-radius: 50%; border: 2px solid currentColor; color: inherit; opacity: 0; animation: ripple 2.6s ease-out infinite; }
.pin.g2::after { animation-delay: .9s; }
.pin.a::after { animation-delay: 1.5s; }
@keyframes ripple { 0% { transform: scale(.35); opacity: .55; } 80% { transform: scale(1.15); opacity: 0; } 100% { opacity: 0; } }

/* avatar pins — a person on the map, not an abstract dot */
.apin { position: absolute; width: 34px; text-align: center; transform: translate(-50%, -100%); }
.apin .face { width: 30px; height: 30px; border-radius: 50%; margin: 0 auto; display: grid; place-items: center; font-size: 12px; font-weight: 800; color: #fff; border: 2.5px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.3); background: var(--accent); position: relative; z-index: 1; }
.apin .tip { width: 0; height: 0; margin: -3px auto 0; border: 7px solid transparent; border-top-color: #fff; filter: drop-shadow(0 2px 1px rgba(0,0,0,.15)); }
.apin.a .face { background: var(--amber); }
.apin.b .face { background: var(--indigo); }
.apin.r .face { background: var(--coral); }
.apin .face::after { content: ''; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid var(--accent); opacity: 0; animation: ripple 2.8s ease-out infinite; }
.apin.a .face::after { border-color: var(--amber); animation-delay: 1s; }
.apin.b .face::after { border-color: var(--indigo); animation-delay: 1.8s; }
.apin.r .face::after { border-color: var(--coral); animation-delay: .5s; }

/* speech bubbles (unolo-style pains/solutions) */
.bubble { background: var(--surface); border: 2px solid var(--ink); border-radius: 14px; padding: 10px 14px; font-size: 13.5px; font-weight: 600; position: relative; box-shadow: 4px 4px 0 rgba(23,32,29,.12); max-width: 220px; }
.bubble::after { content: ''; position: absolute; bottom: -10px; left: 26px; width: 16px; height: 16px; background: var(--surface); border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); transform: rotate(45deg) skew(8deg, 8deg); }
.bubble.flip::after { left: auto; right: 26px; }

/* flat people (geometric caricatures) */
.person { display: block; }
.scene { position: relative; display: flex; align-items: flex-end; justify-content: center; gap: 8px; min-height: 240px; }
.scene .bubble { position: absolute; }

/* perspectives (For the Manager / Executive / Owner) */
.persona { border-top: 5px solid var(--accent); }
.persona.p2 { border-top-color: var(--indigo); }
.persona.p3 { border-top-color: var(--sun); }
.persona .role { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--accent-ink); }
.persona.p2 .role { color: var(--indigo); }
.persona.p3 .role { color: var(--sun); }
.persona .scene { min-height: 180px; margin-bottom: 10px; }

/* use-case story switcher */
.stories { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.stories .tabsbar { display: flex; flex-wrap: wrap; border-bottom: 1px solid var(--line); }
.stories .tabsbar button { flex: 1 1 auto; border: 0; background: none; padding: 15px 14px; font: inherit; font-weight: 700; font-size: 14px; color: var(--muted); cursor: pointer; border-bottom: 3px solid transparent; }
.stories .tabsbar button.on { color: var(--accent-ink); border-bottom-color: var(--accent); background: var(--accent-soft); }
.stories .panel { display: none; padding: 28px; gap: 34px; grid-template-columns: 1.1fr .9fr; align-items: center; }
.stories .panel.on { display: grid; }
@media (max-width: 900px) { .stories .panel.on { grid-template-columns: 1fr; } }

/* ── extended mock vocabulary (each used once per site) ── */
.stops { list-style: none; padding: 0; margin: 0; display: grid; }
.stops li { position: relative; padding: 0 0 16px 32px; font-size: 13px; color: var(--ink-2); }
.stops li b { color: var(--ink); }
.stops li::before { content: ''; position: absolute; left: 7px; top: 3px; width: 13px; height: 13px; border-radius: 50%; background: var(--accent); border: 2.5px solid #fff; box-shadow: 0 0 0 2px var(--accent); }
.stops li::after { content: ''; position: absolute; left: 13px; top: 20px; bottom: 2px; width: 2px; background: var(--line); }
.stops li:last-child { padding-bottom: 0; }
.stops li:last-child::after { display: none; }
.stops li.a::before { background: var(--amber); box-shadow: 0 0 0 2px var(--amber); }
.stops li.b::before { background: var(--indigo); box-shadow: 0 0 0 2px var(--indigo); }
.stops li.p::before { background: var(--plum); box-shadow: 0 0 0 2px var(--plum); }
.stops li .when { float: right; font-size: 11.5px; color: var(--muted); }

.phonebig { width: 230px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: 28px; box-shadow: 0 24px 54px -24px rgba(14,60,52,.35); padding: 14px 14px 20px; }
.phonebig .notch { width: 60px; height: 6px; border-radius: 3px; background: var(--line); margin: 2px auto 12px; }
.phonebig .prow { display: flex; align-items: center; gap: 8px; padding: 8px 4px; border-bottom: 1px solid #F0F2EE; font-size: 12px; color: var(--ink-2); }
.phonebig .prow:last-child { border: 0; }
.phonebig .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); flex: none; }
.phonebig .dot.a { background: var(--amber); } .phonebig .dot.b { background: var(--indigo); } .phonebig .dot.p { background: var(--plum); }

.ffield { display: grid; gap: 4px; }
.ffield label { font-size: 10px; color: var(--muted); font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.ffield .inp { min-height: 28px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); padding: 5px 10px; font-size: 12.5px; color: var(--ink); }

.mtable { width: 100%; border-collapse: collapse; font-size: 12.5px; }
.mtable th { text-align: left; color: var(--muted); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; padding: 4px 8px; border-bottom: 1px solid var(--line); }
.mtable td { padding: 7px 8px; border-bottom: 1px solid #F0F2EE; color: var(--ink-2); }
.mtable tr:last-child td { border-bottom: 0; }
.mtable td b { color: var(--ink); }

.facecard { display: flex; gap: 14px; align-items: center; }
.facecard .avatarbig { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 19px; color: #fff; background: var(--indigo); border: 3px solid #fff; box-shadow: 0 5px 14px rgba(0,0,0,.22); flex: none; }
.facecard .nm { font-weight: 700; font-size: 14px; }
.facecard .sub2 { font-size: 12px; color: var(--muted); }

.mapmock svg.poly path { fill: rgba(14,124,107,.12); stroke: var(--accent); stroke-width: 2; stroke-dasharray: 6 5; }
.mapmock svg.poly path.z2 { fill: rgba(76,95,171,.10); stroke: var(--indigo); }
.mapmock .vertex { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: #fff; border: 2.5px solid var(--accent); transform: translate(-50%, -50%); }

/* notification toasts (alerts story) */
.alerts { display: grid; gap: 14px; max-width: 400px; }
.notif { background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--coral); border-radius: 12px; padding: 12px 16px; box-shadow: 0 14px 32px -16px rgba(0,0,0,.28); }
.notif .nt { font-size: 10.5px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); font-weight: 800; display: flex; gap: 6px; align-items: center; }
.notif .nb { font-size: 13.5px; font-weight: 700; margin-top: 3px; }
.notif .ns { font-size: 12px; color: var(--ink-2); margin-top: 2px; }
.notif.warn { border-left-color: var(--amber); }
.notif.ok { border-left-color: var(--accent); }
.alertscene { position: relative; display: flex; gap: 26px; align-items: flex-end; }

/* icon chips on cards — splash tints */
.card .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; font-size: 22px; margin-bottom: 12px; background: var(--accent-soft); }
.card:nth-child(3n+2) .ic { background: var(--indigo-soft); }
.card:nth-child(3n) .ic { background: var(--sun-soft); }

/* timeline strip */
.tl { display: flex; height: 16px; border-radius: 8px; overflow: hidden; border: 1px solid var(--line); }
.tl i { display: block; }
.tl .mv { background: #9CC8BE; } .tl .mt { background: var(--accent); } .tl .id { background: #E8D9AF; } .tl .of { background: #EDF0EC; }
.tlx { display: flex; justify-content: space-between; font-size: 10.5px; color: var(--muted); margin-top: 3px; }

/* approval mini card */
.apr { border: 1px solid var(--line); border-radius: 10px; padding: 10px 12px; display: grid; gap: 6px; background: var(--paper); }
.apr .who { font-size: 13px; font-weight: 700; }
.apr .what { font-size: 12px; color: var(--ink-2); }
.apr .acts { display: flex; gap: 8px; }
.apr .acts span { border-radius: 7px; padding: 4px 12px; font-size: 11.5px; font-weight: 700; }
.apr .ok { background: var(--accent-soft); color: var(--accent-ink); }
.apr .no { background: var(--red-soft); color: #B23C2E; }

/* mini calendar */
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal i { aspect-ratio: 1; border-radius: 5px; background: #EFF2EE; display: block; }
.cal i.v { background: var(--accent-soft); border: 1px solid #BFDCD4; }
.cal i.f { background: var(--accent); }
.cal i.m { background: var(--amber-soft); border: 1px solid #E7CD9A; }

/* ── stats band ── */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px; }
.stat .n { font-family: 'Sora', sans-serif; font-size: 34px; font-weight: 700; color: var(--accent-ink); font-variant-numeric: tabular-nums; }
.stat:nth-child(2) .n { color: var(--indigo); }
.stat:nth-child(3) .n { color: var(--plum); }
.stat:nth-child(4) .n { color: var(--sun); }
.stat .l { font-size: 13.5px; color: var(--ink-2); }
@media (max-width: 900px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ── sections ── */
.sec { padding: 68px 0; }
.sec.alt { background: var(--surface); border-block: 1px solid var(--line); }
/* tinted sections — splash without shouting */
.sec.ti { background: linear-gradient(180deg, var(--indigo-soft) 0%, var(--paper) 88%); border-block: 1px solid #DCE1F2; }
.sec.ts { background: linear-gradient(180deg, var(--sun-soft) 0%, var(--paper) 88%); border-block: 1px solid #F0E2C4; }
.sec.tp { background: linear-gradient(180deg, var(--plum-soft) 0%, var(--paper) 88%); border-block: 1px solid #E8D8E9; }
.sec.ti .shot .bar { background: var(--indigo-soft); }
.sec.ts .shot .bar { background: var(--sun-soft); }
.sec.tp .shot .bar { background: var(--plum-soft); }

/* real product screenshots */
.screenshot { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: 0 26px 60px -26px rgba(14,60,52,.35); overflow: hidden; background: var(--surface); }
.screenshot img { display: block; width: 100%; height: auto; }
.screenshot .cap { padding: 10px 16px; font-size: 12.5px; color: var(--muted); border-top: 1px solid var(--line); display: flex; gap: 8px; align-items: center; }
.screenshot .cap b { color: var(--accent-ink); }

/* "see it in action" carousel */
.carousel { position: relative; }
.carousel .track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 22px; padding-bottom: 8px; scrollbar-width: none; }
.carousel .track::-webkit-scrollbar { display: none; }
.carousel .slide { flex: 0 0 88%; max-width: 940px; scroll-snap-align: center; }
.carousel .dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.carousel .dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: var(--line); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.carousel .dots button.on { background: var(--accent); transform: scale(1.25); }
.sechead { max-width: 760px; margin-bottom: 34px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.grid2.rev > .viz { order: -1; }
@media (max-width: 900px) { .grid3 { grid-template-columns: 1fr; } .grid2 { grid-template-columns: 1fr; } .grid2.rev > .viz { order: 0; } }
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: block; text-decoration: none; color: inherit; transition: border-color .15s, transform .15s, box-shadow .15s; }
a.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(14,60,52,.3); }
.card .ic { font-size: 26px; margin-bottom: 8px; }
.card h3 { margin-bottom: 6px; }
.card p { font-size: 14px; margin: 0; }
.card .more { display: inline-block; margin-top: 10px; font-size: 13px; font-weight: 700; color: var(--accent-ink); }
ul.feats { padding-left: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 16px; }
ul.feats li { padding-left: 27px; position: relative; color: var(--ink-2); font-size: 15px; }
ul.feats li::before { content: '✓'; position: absolute; left: 2px; color: var(--accent); font-weight: 800; }
ul.feats li b { color: var(--ink); }
.eyebrow { font-size: 12px; letter-spacing: .13em; text-transform: uppercase; color: var(--accent-ink); font-weight: 700; margin-bottom: 8px; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: relative; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -16px; left: 20px; width: 34px; height: 34px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: 'Sora', sans-serif; font-weight: 700; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* FAQ */
.faq details { border: 1px solid var(--line); border-radius: 10px; background: var(--surface); margin-bottom: 10px; padding: 0 18px; }
.faq summary { cursor: pointer; font-weight: 600; padding: 15px 0; list-style: none; position: relative; padding-right: 30px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 4px; top: 12px; font-size: 20px; color: var(--accent-ink); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding-bottom: 15px; font-size: 14.5px; }

/* ── ecosystem ── */
.eco { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.eco a { border: 1px solid var(--line); background: var(--surface); border-radius: 12px; padding: 14px; font-size: 13.5px; color: var(--ink-2); text-decoration: none; text-align: center; transition: border-color .15s, transform .15s; }
.eco a b { display: block; color: var(--ink); font-size: 14px; margin-bottom: 2px; }
.eco a:hover { border-color: var(--accent); transform: translateY(-2px); }
@media (max-width: 900px) { .eco { grid-template-columns: 1fr 1fr; } }

/* ── CTA band ── */
.ctaband { background: linear-gradient(120deg, var(--accent) 0%, #0B6355 100%); color: #fff; border-radius: 18px; padding: 40px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; box-shadow: 0 26px 60px -28px rgba(11,99,85,.6); }
.ctaband h2 { color: #fff; margin: 0; }
.ctaband p { color: #DFF0EC; margin: 6px 0 0; }
.ctaband .sp { flex: 1; }
.ctaband .btn { background: #fff; color: var(--accent-ink); border-color: #fff; }

/* related links */
.related { display: flex; gap: 10px; flex-wrap: wrap; }
.related a { border: 1px solid var(--line); background: var(--surface); border-radius: 99px; padding: 8px 16px; font-size: 13.5px; text-decoration: none; color: var(--ink-2); }
.related a:hover { border-color: var(--accent); color: var(--accent-ink); }

/* ── footer ── */
footer.site { border-top: 1px solid var(--line); background: var(--surface); padding: 44px 0 30px; margin-top: 64px; }
footer.site .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 26px; }
footer.site h4 { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; }
footer.site a { display: block; color: var(--ink-2); text-decoration: none; font-size: 14px; padding: 3px 0; }
footer.site a:hover { color: var(--accent-ink); }
footer.site .legal { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) { footer.site .cols { grid-template-columns: 1fr 1fr; } }

/* ── cookie consent ── */
.consent { position: fixed; inset: auto 16px 16px 16px; z-index: 90; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 40px -18px rgba(0,0,0,.3); padding: 16px 18px; display: none; gap: 14px; align-items: center; flex-wrap: wrap; max-width: 980px; margin: 0 auto; }
.consent.show { display: flex; }
.consent p { margin: 0; font-size: 13.5px; flex: 1 1 380px; }
.consent .btn { padding: 8px 14px; font-size: 13px; }
