/* =========================================================
   Untomation — Landing Page
   Palet diambil dari logo: emas hangat, krem, hijau & kuning aksen
   ========================================================= */

:root {
  /* brand */
  --gold-50:  #FBF3E6;
  --gold-100: #F3E2C6;
  --gold-300: #DCB577;
  --gold-500: #C79A5B;
  --gold-600: #B8874A;
  --gold-700: #8E6534;
  --green:    #8FD35F;
  --green-d:  #5FA834;
  --blue:     #7EC8DA;
  --yellow:   #FFD84D;

  /* surface & text (light) */
  --bg:        #FDFBF7;
  --bg-alt:    #F7F1E7;
  --surface:   #FFFFFF;
  --surface-2: #FFFDF9;
  --line:      #EADFCC;
  --line-soft: #F0E7D8;
  --text:      #2A2118;
  --text-2:    #6B5F51;
  --text-3:    #9A8D7C;

  --shadow-sm: 0 1px 2px rgba(64, 45, 20, .06), 0 2px 6px rgba(64, 45, 20, .05);
  --shadow-md: 0 4px 12px rgba(64, 45, 20, .07), 0 12px 32px rgba(64, 45, 20, .07);
  --shadow-lg: 0 12px 28px rgba(64, 45, 20, .10), 0 32px 64px rgba(64, 45, 20, .10);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;

  --wrap: 1180px;
  --header-h: 72px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

:root[data-theme="dark"] {
  --bg:        #12100C;
  --bg-alt:    #191510;
  --surface:   #1C1812;
  --surface-2: #221D16;
  --line:      #322A20;
  --line-soft: #29221A;
  --text:      #F3ECE1;
  --text-2:    #B8AB99;
  --text-3:    #8A7F70;
  --gold-50:   #241C11;
  --gold-100:  #33281A;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, .45);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, .55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg:        #12100C;
    --bg-alt:    #191510;
    --surface:   #1C1812;
    --surface-2: #221D16;
    --line:      #322A20;
    --line-soft: #29221A;
    --text:      #F3ECE1;
    --text-2:    #B8AB99;
    --text-3:    #8A7F70;
    --gold-50:   #241C11;
    --gold-100:  #33281A;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .4);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, .45);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, .55);
  }
}

/* ---------- base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Inter, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.18; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.15rem, 5.2vw, 3.85rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); letter-spacing: -.028em; }
h3 { font-size: 1.12rem; }
p  { margin: 0 0 1rem; color: var(--text-2); }

svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--gold-600); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--gold-600); outline-offset: 3px; border-radius: 6px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  font-weight: 600; font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, border-color .2s, color .2s;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff;
  box-shadow: 0 6px 18px rgba(184, 135, 74, .32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(184, 135, 74, .42); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--gold-300); color: var(--gold-700); }
:root[data-theme="dark"] .btn-ghost:hover { color: var(--gold-300); }
.btn-sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-weight: 800; letter-spacing: -.03em; }
.brand img { border-radius: 50%; }
.brand-text { font-size: 1.15rem; }
.brand-text em { color: var(--gold-600); font-style: normal; }

.nav { margin-left: auto; display: flex; align-items: center; gap: .35rem; }
.nav > a {
  padding: .5rem .8rem; border-radius: 999px;
  font-size: .93rem; font-weight: 500; color: var(--text-2);
  transition: color .18s, background .18s;
}
.nav > a:hover { color: var(--text); background: var(--gold-50); }
.nav-cta { color: #fff !important; margin-left: .4rem; }
.nav-cta:hover { color: #fff !important; }

.header-actions { display: flex; align-items: center; gap: .5rem; }

.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--line);
  background: var(--surface); color: var(--text-2); cursor: pointer;
  transition: color .18s, border-color .18s, transform .18s;
}
.icon-btn:hover { color: var(--gold-600); border-color: var(--gold-300); }
.icon-btn svg { width: 18px; height: 18px; }
.ico-moon { display: none; }
:root[data-theme="dark"] .ico-sun { display: none; }
:root[data-theme="dark"] .ico-moon { display: block; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .ico-sun { display: none; }
  :root:not([data-theme="light"]) .ico-moon { display: block; }
}

.menu-btn { display: none; flex-direction: column; gap: 4px; }
.menu-btn span { width: 17px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s var(--ease), opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(3rem, 6vw, 4.5rem); overflow: hidden; }
.hero-glow {
  position: absolute; inset: -30% -10% auto -10%; height: 720px; pointer-events: none;
  background:
    radial-gradient(45% 42% at 22% 38%, rgba(199, 154, 91, .30), transparent 70%),
    radial-gradient(38% 40% at 78% 28%, rgba(143, 211, 95, .20), transparent 70%),
    radial-gradient(40% 38% at 62% 70%, rgba(126, 200, 218, .16), transparent 72%);
  filter: blur(8px);
}
:root[data-theme="dark"] .hero-glow { opacity: .5; }

.hero-inner {
  position: relative;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .9rem .4rem .7rem;
  border-radius: 999px; border: 1px solid var(--line);
  background: var(--surface); box-shadow: var(--shadow-sm);
  font-size: .82rem; font-weight: 600; color: var(--text-2);
  margin-bottom: 1.25rem;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--green-d);
  box-shadow: 0 0 0 4px rgba(143, 211, 95, .22);
  animation: pulse 2.4s ease-in-out infinite;
}
.pill-quiet { background: var(--gold-50); border-color: var(--gold-100); margin-bottom: .75rem; }
@keyframes pulse { 50% { box-shadow: 0 0 0 8px rgba(143, 211, 95, 0); } }

.grad {
  background: linear-gradient(120deg, var(--gold-600), var(--green-d) 55%, var(--gold-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.lead { font-size: clamp(1.02rem, 1.6vw, 1.16rem); max-width: 56ch; }

.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; margin: 1.75rem 0 1.5rem; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; list-style: none; padding: 0; margin: 0; }
.hero-trust li { display: flex; align-items: center; gap: .45rem; font-size: .88rem; color: var(--text-2); font-weight: 500; }
.hero-trust svg { width: 16px; height: 16px; color: var(--green-d); stroke-width: 2.6; }

/* hero visual */
.hero-visual { position: relative; display: grid; place-items: center; min-height: 420px; }
.mascot-ring {
  position: relative; width: min(360px, 82%); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 45%, var(--surface), var(--gold-50));
  box-shadow: var(--shadow-lg), inset 0 0 0 1px var(--line-soft);
  animation: floaty 7s ease-in-out infinite;
}
.mascot-ring::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 1.5px dashed var(--gold-300); opacity: .55;
  animation: spin 42s linear infinite;
}
.mascot-ring img { width: 78%; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 50% { transform: translateY(-12px); } }

.float-card {
  position: absolute; display: flex; align-items: center; gap: .7rem;
  padding: .7rem .95rem; border-radius: var(--r-md);
  background: var(--surface); border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  animation: floaty 6s ease-in-out infinite;
}
.float-card div { display: flex; flex-direction: column; line-height: 1.3; }
.float-card strong { font-size: .86rem; }
.float-card span { font-size: .75rem; color: var(--text-3); }
.fc-icon { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.fc-icon svg { width: 17px; height: 17px; }
.fc-icon.gold  { background: rgba(199, 154, 91, .16); color: var(--gold-700); }
.fc-icon.green { background: rgba(143, 211, 95, .18); color: var(--green-d); }
.fc-icon.blue  { background: rgba(126, 200, 218, .20); color: #3E8DA3; }
:root[data-theme="dark"] .fc-icon.gold { color: var(--gold-300); }

.fc-1 { top: 6%;  left: -2%;  animation-delay: -1.5s; }
.fc-2 { top: 42%; right: -4%; animation-delay: -3s; }
.fc-3 { bottom: 6%; left: 6%; animation-delay: -4.5s; }

/* stats */
.stats {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.stat { background: var(--surface); padding: 1.5rem 1.25rem; text-align: center; }
.stat b {
  display: block; font-size: clamp(1.35rem, 2.6vw, 1.9rem); font-weight: 800;
  letter-spacing: -.03em; color: var(--gold-700); white-space: nowrap;
}
:root[data-theme="dark"] .stat b { color: var(--gold-300); }
.stat span { font-size: .84rem; color: var(--text-3); }

/* ---------- sections ---------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section-alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }

.eyebrow {
  display: inline-block; font-size: .78rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-600); margin-bottom: .65rem;
}
:root[data-theme="dark"] .eyebrow { color: var(--gold-300); }

.sec-head { max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3.25rem); text-align: center; }
.sec-head p { font-size: 1.03rem; }
.sec-head-left { text-align: left; margin-inline: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* ---------- cards (layanan) ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green));
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }
.card:hover::after { transform: scaleX(1); }
.card p { font-size: .94rem; }

.card-icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; margin-bottom: 1.1rem; }
.card-icon svg { width: 23px; height: 23px; }
.card-icon.gold  { background: rgba(199, 154, 91, .15); color: var(--gold-700); }
.card-icon.green { background: rgba(143, 211, 95, .18); color: var(--green-d); }
.card-icon.blue  { background: rgba(126, 200, 218, .20); color: #3E8DA3; }
:root[data-theme="dark"] .card-icon.gold { color: var(--gold-300); }

.ticks { list-style: none; padding: 0; margin: 1rem 0 0; display: grid; gap: .5rem; }
.ticks li {
  position: relative; padding-left: 1.6rem; font-size: .9rem; color: var(--text-2);
}
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .45em;
  width: 15px; height: 15px; border-radius: 50%;
  background: rgba(143, 211, 95, .2);
  box-shadow: inset 0 0 0 1px rgba(95, 168, 52, .35);
}
.ticks li::after {
  content: ""; position: absolute; left: 4.5px; top: .68em;
  width: 6px; height: 3px; border-left: 1.8px solid var(--green-d); border-bottom: 1.8px solid var(--green-d);
  transform: rotate(-45deg);
}

/* ---------- kenapa ---------- */
.why-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 3.75rem); align-items: start; }
.why-list { display: grid; gap: 1.4rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; }
.why-item h3 { margin-bottom: .3rem; }
.why-item p { font-size: .94rem; margin: 0; }
.why-num {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--gold-50); color: var(--gold-700);
  border: 1px solid var(--gold-100);
  font-weight: 800; font-size: .82rem; letter-spacing: .02em;
}
:root[data-theme="dark"] .why-num { color: var(--gold-300); }

.why-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 1.75rem; box-shadow: var(--shadow-md); position: sticky; top: calc(var(--header-h) + 24px);
}
.panel-head h3 { font-size: 1.25rem; margin-bottom: 1.25rem; }

.compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: .75rem; align-items: center; }
.compare-col { border-radius: var(--r-md); padding: 1rem; border: 1px solid var(--line); background: var(--surface-2); }
.compare-col.before { opacity: .82; }
.compare-col.after { border-color: rgba(143, 211, 95, .45); background: rgba(143, 211, 95, .07); }
.compare-label {
  display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--text-3); margin-bottom: .6rem;
}
.compare-col.after .compare-label { color: var(--green-d); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .85rem; color: var(--text-2); }
.compare-col li b { color: var(--text); }
.compare-arrow { width: 26px; height: 26px; color: var(--gold-500); }
.panel-note { margin: 1.1rem 0 0; font-size: .87rem; color: var(--text-3); text-align: center; }

/* ---------- proses ---------- */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.4rem 1.4rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 44px; right: -13px; width: 10px; height: 10px;
  border-top: 2px solid var(--gold-300); border-right: 2px solid var(--gold-300);
  transform: rotate(45deg);
}
.step-num {
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700));
  color: #fff; font-weight: 700; font-size: .9rem; margin-bottom: .9rem;
}
.step p { font-size: .92rem; margin-bottom: .8rem; }
.step-meta {
  font-size: .76rem; font-weight: 600; color: var(--gold-700);
  background: var(--gold-50); border: 1px solid var(--gold-100);
  padding: .18rem .6rem; border-radius: 999px;
}
:root[data-theme="dark"] .step-meta { color: var(--gold-300); }

/* ---------- karya ---------- */
.work {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; padding-bottom: 1.4rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.work-thumb {
  height: 150px; display: grid; place-items: center; position: relative;
  border-bottom: 1px solid var(--line);
}
.work-thumb span {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #fff; background: rgba(0, 0, 0, .28); padding: .3rem .8rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.work-thumb::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .22) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
}
.t1 { background: linear-gradient(135deg, #C79A5B, #8E6534); }
.t2 { background: linear-gradient(135deg, #8FD35F, #4E8F31); }
.t3 { background: linear-gradient(135deg, #7EC8DA, #3E8DA3); }
.t4 { background: linear-gradient(135deg, #FFD84D, #C79A5B); }
.t5 { background: linear-gradient(135deg, #A79BE0, #6C5FB8); }
.t6 { background: linear-gradient(135deg, #F2A07B, #C4603C); }

.work h3 { margin: 1.2rem 1.4rem .4rem; }
.work p { margin: 0 1.4rem 1rem; font-size: .92rem; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin: 0 1.4rem; }
.tags span {
  font-size: .74rem; font-weight: 600; color: var(--text-2);
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: .2rem .6rem; border-radius: 999px;
}
.section-alt .tags span { background: var(--surface-2); }

/* ---------- harga ---------- */
.price-grid { align-items: start; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 1.9rem 1.65rem; display: flex; flex-direction: column;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.price:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price h3 { font-size: 1.22rem; margin-bottom: .2rem; }
.price-for { font-size: .86rem; color: var(--text-3); margin-bottom: 1.1rem; }
.price-amt {
  font-size: 2.35rem; font-weight: 800; letter-spacing: -.035em; color: var(--text);
  padding-bottom: 1.1rem; margin-bottom: 1.1rem; border-bottom: 1px solid var(--line-soft);
  display: flex; align-items: baseline; gap: .35rem;
  min-height: calc(2.35rem * 1.65 + 1.1rem); /* samakan tinggi antar paket */
}
/* varian tanpa angka (Custom System) */
.price-amt-quote { font-size: 1.45rem; align-items: center; color: var(--gold-700); }
:root[data-theme="dark"] .price-amt-quote { color: var(--gold-300); }
.price-amt small { font-size: .78rem; font-weight: 600; color: var(--text-3); letter-spacing: 0; }
.price-amt span { font-size: 1.15rem; font-weight: 700; }
.price .ticks { margin-bottom: 1.5rem; flex: 1; }
.price .btn { margin-top: auto; }
.price-eta { display: block; text-align: center; font-size: .78rem; color: var(--text-3); margin-top: .7rem; }

.price.featured {
  position: relative; border-color: var(--gold-300);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(160deg, var(--gold-300), var(--green)) border-box;
  border: 1.5px solid transparent;
}
.price.featured::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(80% 45% at 50% 0%, rgba(199, 154, 91, .12), transparent 70%);
}
.ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-700)); color: #fff;
  font-size: .74rem; font-weight: 700; letter-spacing: .04em;
  padding: .3rem .9rem; border-radius: 999px; white-space: nowrap;
  box-shadow: 0 4px 12px rgba(184, 135, 74, .35);
}

.price-note {
  text-align: center; margin: 2rem auto 0; max-width: 620px;
  font-size: .93rem; padding: 1rem 1.25rem;
  background: var(--gold-50); border: 1px dashed var(--gold-300); border-radius: var(--r-md);
}
.price-note b { color: var(--text); }

/* ---------- testimoni ---------- */
.quote {
  margin: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--yellow); letter-spacing: .12em; font-size: .95rem; }
.quote blockquote { margin: 0; font-size: .97rem; color: var(--text); line-height: 1.7; }
.quote blockquote::before { content: "“"; color: var(--gold-300); font-size: 1.4em; line-height: 0; vertical-align: -.15em; margin-right: .1em; }
.quote figcaption { display: flex; flex-direction: column; margin-top: auto; padding-top: .6rem; border-top: 1px solid var(--line-soft); }
.quote figcaption b { font-size: .92rem; }
.quote figcaption span { font-size: .8rem; color: var(--text-3); }

/* ---------- faq ---------- */
.faq-inner { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq-list { display: grid; gap: .7rem; }

.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 0 1.25rem; transition: border-color .2s, box-shadow .2s;
}
.faq-list details[open] { border-color: var(--gold-300); box-shadow: var(--shadow-sm); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 1.05rem 2rem 1.05rem 0;
  font-weight: 600; font-size: .98rem; position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: ""; position: absolute; right: 2px; top: 1.5rem;
  width: 9px; height: 9px; border-right: 2px solid var(--gold-600); border-bottom: 2px solid var(--gold-600);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq-list details[open] summary::after { transform: rotate(-135deg); top: 1.75rem; }
.faq-list details p { margin: 0 0 1.1rem; font-size: .93rem; }

/* ---------- CTA / kontak ---------- */
.cta-section { background: var(--bg-alt); border-top: 1px solid var(--line-soft); }
.cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }

.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; align-items: center; gap: .9rem; }
.contact-list div { display: flex; flex-direction: column; line-height: 1.4; }
.contact-list b { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); font-weight: 700; }
.contact-list a { font-weight: 600; transition: color .18s; }
.contact-list a:hover { color: var(--gold-600); }
.contact-list span { color: var(--text-2); font-weight: 500; }
.ci {
  width: 42px; height: 42px; flex: none; border-radius: 12px; display: grid; place-items: center;
  background: var(--surface); border: 1px solid var(--line); color: var(--gold-600);
}
.ci svg { width: 19px; height: 19px; }

.form {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 1.9rem; box-shadow: var(--shadow-md);
}
.form h3 { font-size: 1.2rem; margin-bottom: 1.25rem; }
.field { display: flex; flex-direction: column; gap: .38rem; margin-bottom: 1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.field label { font-size: .84rem; font-weight: 600; color: var(--text-2); }
.field label small { font-weight: 400; color: var(--text-3); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .94rem; color: var(--text);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: .72rem .9rem; width: 100%;
  transition: border-color .18s, box-shadow .18s;
}
.field select {
  appearance: none; -webkit-appearance: none;
  cursor: pointer; line-height: 1.5; padding-right: 2.4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239A8D7C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .85rem center;
  background-size: 16px 16px;
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--text-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(199, 154, 91, .18);
}
.field input.invalid, .field textarea.invalid { border-color: #D9634B; box-shadow: 0 0 0 3px rgba(217, 99, 75, .15); }
.form .btn { margin-top: .4rem; }
.form-note { font-size: .78rem; color: var(--text-3); text-align: center; margin: .8rem 0 0; }
.form-error { font-size: .84rem; color: #C4472F; text-align: center; margin: .6rem 0 0; }

/* ---------- footer ---------- */
.site-footer { background: var(--surface); border-top: 1px solid var(--line); padding: clamp(2.5rem, 5vw, 3.5rem) 0 1.5rem; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-brand p { font-size: .89rem; margin-top: .9rem; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: .55rem; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .11em; color: var(--text-3); margin-bottom: .3rem; }
.footer-col a { font-size: .9rem; color: var(--text-2); transition: color .18s, transform .18s; width: fit-content; }
.footer-col a:hover { color: var(--gold-600); transform: translateX(2px); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem;
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid var(--line-soft);
  font-size: .82rem; color: var(--text-3);
}

/* ---------- WA float ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .8rem 1.15rem; border-radius: 999px;
  background: #1FA855; color: #fff; font-weight: 600; font-size: .9rem;
  box-shadow: 0 8px 22px rgba(31, 168, 85, .38);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 28px rgba(31, 168, 85, .48); }
.wa-float svg { width: 19px; height: 19px; flex: none; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta, .hero-trust { justify-content: center; }
  .hero-visual { order: -1; min-height: 340px; }
  .mascot-ring { width: min(290px, 70%); }
  .float-card { padding: .55rem .75rem; }
  .fc-1 { left: -6px; } .fc-2 { right: -6px; } .fc-3 { left: 0; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after { display: none; }
  .why-inner, .faq-inner, .cta-inner { grid-template-columns: 1fr; }
  .why-panel { position: static; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: .1rem;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 1rem 20px 1.4rem; box-shadow: var(--shadow-md);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
    max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav > a { padding: .8rem .6rem; border-radius: var(--r-sm); font-size: 1rem; }
  .nav-cta { margin: .6rem 0 0; justify-content: center; }
  .menu-btn { display: flex; }
  .header-actions { margin-left: auto; }
}

@media (max-width: 720px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step::after { display: none !important; }
  .compare { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); margin-inline: auto; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .wa-float span { display: none; }
  .wa-float { padding: .85rem; }
  .form { padding: 1.4rem; }
  .float-card.fc-3 { display: none; }
}

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