/* ============================================================
   LAMONTE GLOBAL — Landing page styles
   Light-purple + gold theme (final iteration from the design brief).
   Type: Space Grotesk (display) · Sora (body) · JetBrains Mono (data)
   ============================================================ */

:root {
  /* ---- surfaces (light lavender) ---- */
  --bg:            #F3EDFB;
  --surface:       #FFFFFF;
  --surface-soft:  #FBF7FF;
  --surface-tint:  #F6F0FC;
  --surface-lav:   #EAE1F5;
  --surface-lav-2: #EEE7F8;
  --footer-bg:     #E7DDF4;

  /* ---- ink / text ---- */
  --ink:        #241536;
  --ink-2:      #3A2952;
  --text:       #5E4C78;
  --text-2:     #786890;
  --text-muted: #8B79A8;
  --text-faint: #9585B0;

  /* ---- gold accents ---- */
  --gold:        #D4AF37;
  --gold-deep:   #B4882A;
  --gold-light:  #F6D77A;
  --gold-grad:   linear-gradient(135deg, #F6D77A 0%, #D4AF37 55%, #B4882A 100%);
  --gold-text:   linear-gradient(135deg, #F6D77A, #D4AF37 60%, #B4882A);
  --on-gold:     #1B0E29;

  /* ---- other accents ---- */
  --purple-glow: rgba(155, 107, 255, .22);
  --green:       #3DBE5E;
  --rose:        #A8466C;

  /* ---- borders ---- */
  --line:        rgba(70, 35, 110, .09);
  --line-soft:   rgba(70, 35, 110, .08);
  --line-card:   rgba(70, 35, 110, .11);
  --line-input:  rgba(70, 35, 110, .13);
  --line-gold:   rgba(212, 175, 55, .22);

  /* ---- type ---- */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body:    'Sora', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --shell: 1200px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; }

@keyframes lm-pulse {
  0%, 100% { opacity: .5; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.35); }
}

/* ---- shared building blocks ---- */
.shell { max-width: var(--shell); margin: 0 auto; padding-left: 44px; padding-right: 44px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eyebrow .rule { width: 26px; height: 1px; background: var(--gold); }
.eyebrow .label {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.mono {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: .16em;
}

.gold-text {
  background: var(--gold-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* section headings */
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.lede {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}

/* ---- buttons ---- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.btn-gold {
  color: var(--on-gold);
  background: var(--gold-grad);
  padding: 16px 30px;
  border: none;
  box-shadow: 0 8px 30px rgba(212, 175, 55, .30);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%);
}
.btn-gold:hover {
  filter: brightness(1.06);
  box-shadow: 0 12px 40px rgba(212, 175, 55, .38);
}
.btn-ghost {
  color: var(--gold-deep);
  background: transparent;
  border: 1px solid rgba(212, 175, 55, .45);
  padding: 16px 30px;
  border-radius: 6px;
}
.btn-ghost:hover {
  background: rgba(212, 175, 55, .10);
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 44px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 237, 251, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { filter: drop-shadow(0 0 10px rgba(212, 175, 55, .35)); }
.brand .stack { display: flex; flex-direction: column; line-height: 1; }
.brand .name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .02em;
  color: var(--ink);
}
.brand .sub {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: .34em;
  color: var(--gold);
  margin-top: 3px;
}
.nav { flex: 1; display: flex; gap: 26px; margin-left: 16px; flex-wrap: wrap; }
.nav a { font-size: 14px; color: var(--text); text-decoration: none; transition: color .18s; }
.nav a:hover { color: var(--gold-deep); }
.header-cta {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--on-gold);
  background: var(--gold-grad);
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(212, 175, 55, .28);
  white-space: nowrap;
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.header-cta:hover { filter: brightness(1.06); box-shadow: 0 12px 40px rgba(212, 175, 55, .38); }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line-soft); }
.hero .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212, 175, 55, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, .05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 90% 70% at 70% 20%, #000 0%, transparent 75%);
}
.hero .glow {
  position: absolute; top: -140px; right: -120px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, var(--purple-glow) 0%, rgba(212, 175, 55, .10) 40%, transparent 68%);
  filter: blur(10px);
}
.hero-inner {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 88px 44px 78px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: -.025em;
}
.hero p.sub {
  font-size: 19px;
  line-height: 1.62;
  color: var(--text);
  max-width: 560px;
  margin: 26px 0 34px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }
.trust-badges { display: flex; gap: 9px; flex-wrap: wrap; }
.trust-badges span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  color: var(--text-muted);
  border: 1px solid var(--line-input);
  border-radius: 999px;
  padding: 6px 13px;
}

/* hero glance panel */
.glance {
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: linear-gradient(160deg, #FFFFFF, #FBF7FF);
  padding: 30px;
  box-shadow: 0 24px 60px rgba(90, 50, 130, .14);
  position: relative;
}
.glance .live {
  position: absolute; top: 16px; right: 18px;
  display: flex; align-items: center; gap: 7px;
}
.glance .live .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: lm-pulse 2.4s ease-in-out infinite;
}
.glance .live .txt {
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: .18em; color: var(--text-muted);
}
.glance .cap {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 22px;
}
.glance .rows { display: flex; flex-direction: column; }
.glance .row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.glance .row:last-child { border-bottom: none; }
.glance .row .k { font-size: 14px; color: var(--text); }
.glance .row .v {
  font-family: var(--font-mono); font-weight: 700; font-size: 23px; color: var(--gold-deep);
}

/* ============================================================
   EXPORT DATA STRIP
   ============================================================ */
.strip { border-bottom: 1px solid var(--line-soft); background: var(--surface-lav); }
.strip-inner {
  max-width: var(--shell); margin: 0 auto;
  padding: 22px 44px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 30px; flex-wrap: wrap;
}
.strip .head {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .16em; color: var(--text-muted); white-space: nowrap;
}
.strip .stat { display: flex; align-items: baseline; gap: 9px; }
.strip .stat .n { font-family: var(--font-mono); font-weight: 700; font-size: 20px; color: var(--gold-deep); }
.strip .stat .d { font-size: 13px; color: var(--text); }

/* ============================================================
   generic section
   ============================================================ */
.section { max-width: var(--shell); margin: 0 auto; padding: 86px 44px; }
.section-band { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

/* ---- cards ---- */
.card {
  border: 1px solid var(--line-card);
  border-radius: 10px;
  background: var(--surface);
  padding: 24px;
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.card:hover {
  border-color: rgba(212, 175, 55, .42);
  transform: translateY(-3px);
  box-shadow: 0 18px 46px rgba(90, 50, 130, .12);
}

/* ============================================================
   PROBLEM
   ============================================================ */
.problem h2 { max-width: 720px; margin-bottom: 14px; }
.problem .lede { max-width: 640px; margin: 0 0 46px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.risk-tag {
  font-family: var(--font-mono); font-weight: 700; font-size: 12px;
  color: var(--rose); margin-bottom: 12px;
}
.card h3.rowtitle, .card .rowtitle { font-weight: 600; font-size: 16px; margin-bottom: 7px; color: var(--ink); }
.card p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0; }

/* ============================================================
   SOLUTION
   ============================================================ */
.solution { background: linear-gradient(180deg, #FFFFFF, #EEE7F8); border-top: 1px solid rgba(212, 175, 55, .14); border-bottom: 1px solid rgba(212, 175, 55, .14); }
.solution-inner {
  max-width: var(--shell); margin: 0 auto; padding: 82px 44px;
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center;
}
.solution h2 { font-size: 38px; margin-bottom: 16px; }
.solution .lede { margin: 0 0 26px; line-height: 1.62; }
.quote {
  border-left: 2px solid var(--gold);
  padding: 4px 0 4px 18px;
}
.quote p { font-size: 15px; line-height: 1.6; color: var(--ink-2); font-style: italic; margin: 0; }
.chips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.chip {
  border: 1px solid var(--line-card);
  border-radius: 8px;
  background: var(--surface-tint);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--ink-2);
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.chip:hover { border-color: rgba(212, 175, 55, .5); color: var(--gold-deep); }

/* ============================================================
   SERVICES
   ============================================================ */
.services-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 44px; gap: 30px; flex-wrap: wrap;
}
.services-head h2 { font-size: 40px; line-height: 1.08; max-width: 560px; }
.link-underline {
  font-size: 14px; font-weight: 500; color: var(--ink);
  text-decoration: none; border-bottom: 2px solid var(--gold); padding-bottom: 3px;
  white-space: nowrap;
}
.link-underline:hover { color: var(--gold-deep); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px;
}
.service-card { border-radius: 12px; background: var(--surface); padding: 30px; }
.service-card .no {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px; color: var(--gold); margin-bottom: 16px;
}
.service-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 21px; margin-bottom: 10px; color: var(--ink);
}
.service-card p { font-size: 14px; line-height: 1.62; color: var(--text-2); margin: 0; }

/* ============================================================
   CATEGORIES
   ============================================================ */
.categories { background: var(--surface-lav); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.categories .inner { max-width: var(--shell); margin: 0 auto; padding: 82px 44px; }
.categories h2 { font-size: 38px; margin-bottom: 40px; max-width: 640px; }
.cat-chips { display: flex; flex-wrap: wrap; gap: 11px; }
.cat-chip {
  border: 1px solid rgba(212, 175, 55, .24);
  border-radius: 999px;
  background: var(--surface);
  padding: 12px 20px;
  font-size: 15px;
  color: var(--ink-2);
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.cat-chip:hover { border-color: rgba(212, 175, 55, .5); color: var(--gold-deep); }

/* ============================================================
   WHY INDONESIA
   ============================================================ */
.indonesia {
  max-width: var(--shell); margin: 0 auto; padding: 88px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.indonesia h2 { font-size: 38px; margin-bottom: 16px; }
.indonesia .lede { line-height: 1.62; margin: 0 0 24px; }
.arrow-list { display: flex; flex-direction: column; gap: 14px; }
.arrow-list .item { display: flex; gap: 12px; align-items: flex-start; }
.arrow-list .arrow { color: var(--gold); font-weight: 700; }
.arrow-list .item span:last-child { font-size: 15px; color: var(--ink-2); }
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  border: 1px solid var(--line-gold);
  border-radius: 12px;
  background: linear-gradient(160deg, #FFFFFF, #FBF7FF);
  padding: 26px;
}
.stat-box .n { font-family: var(--font-mono); font-weight: 700; font-size: 34px; color: var(--gold-deep); }
.stat-box .d { font-size: 13px; color: var(--text-2); margin-top: 8px; }

/* ============================================================
   WHY LAMONTE + GLOBAL REACH
   ============================================================ */
.why { background: linear-gradient(180deg, #FFFFFF, #F3EDFB); border-top: 1px solid rgba(212, 175, 55, .14); }
.why .inner { max-width: var(--shell); margin: 0 auto; padding: 82px 44px; }
.why .head { text-align: center; margin-bottom: 50px; }
.why .head .eyebrow { justify-content: center; }
.why .head h2 { font-size: 38px; margin: 0 auto; max-width: 640px; }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px; margin-bottom: 56px;
}
.why-card { border-radius: 12px; background: var(--surface); padding: 26px; }
.why-card .t { font-weight: 600; font-size: 17px; margin-bottom: 8px; color: var(--gold-deep); }
.why-card p { font-size: 14px; line-height: 1.6; color: var(--text-2); margin: 0; }
.reach {
  border: 1px solid rgba(212, 175, 55, .20);
  border-radius: 14px;
  background: var(--surface-soft);
  padding: 34px;
}
.reach .cap {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.reach .flags { display: flex; flex-wrap: wrap; gap: 9px; }
.reach .flag {
  border: 1px solid var(--line-card);
  border-radius: 6px;
  background: var(--surface-tint);
  padding: 9px 15px;
  font-size: 13px;
  color: var(--text);
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.reach .flag:hover { border-color: rgba(212, 175, 55, .5); color: var(--gold-deep); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { max-width: var(--shell); margin: 0 auto; padding: 88px 44px; }
.process h2 { font-size: 40px; line-height: 1.08; margin-bottom: 44px; max-width: 560px; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.step { border-radius: 10px; background: var(--surface); padding: 22px; }
.step .no {
  font-family: var(--font-mono); font-weight: 700; font-size: 26px;
  color: var(--gold); opacity: .55; margin-bottom: 10px;
}
.step .t { font-weight: 600; font-size: 15px; color: var(--ink); }
.step.final {
  border-color: rgba(212, 175, 55, .4);
  background: linear-gradient(160deg, #FBF0D4, #FFFFFF);
}
.step.final .no { color: var(--gold-deep); opacity: 1; }
.step.final .t { color: var(--gold-deep); }

/* ============================================================
   QUALITY
   ============================================================ */
.quality { background: var(--surface-lav); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.quality-inner {
  max-width: var(--shell); margin: 0 auto; padding: 82px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
}
.quality h2 { font-size: 34px; margin-bottom: 16px; }
.quality .lede { font-size: 16px; line-height: 1.62; margin: 0 0 24px; }
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-list .item { display: flex; gap: 11px; align-items: center; }
.check-list .box {
  width: 20px; height: 20px; border-radius: 5px;
  background: rgba(61, 190, 94, .16); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.check-list .item span:last-child { font-size: 15px; color: var(--ink-2); }
.capability {
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: linear-gradient(160deg, #FFFFFF, #FBF7FF);
  padding: 34px;
  display: flex; flex-direction: column; justify-content: center;
}
.capability .cap {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px;
}
.capability .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.capability .n { font-family: var(--font-mono); font-weight: 700; font-size: 38px; color: var(--gold-deep); }
.capability .d { font-size: 13px; color: var(--text-2); margin-top: 6px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 900px; margin: 0 auto; padding: 88px 44px; }
.faq .head { text-align: center; margin-bottom: 44px; }
.faq .head .eyebrow { justify-content: center; }
.faq .head h2 { font-size: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--line-card); border-radius: 10px; background: var(--surface); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .plus { color: var(--gold); font-size: 22px; transition: transform .2s; flex-shrink: 0; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 24px 22px; font-size: 15px; line-height: 1.62; color: var(--text-2); }

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead { background: linear-gradient(180deg, #FFFFFF, #F3EDFB); border-top: 1px solid rgba(212, 175, 55, .16); }
.lead-inner {
  max-width: 1080px; margin: 0 auto; padding: 82px 44px;
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 52px; align-items: start;
}
.lead h2 { font-size: 36px; line-height: 1.08; margin-bottom: 16px; }
.lead .lede { font-size: 16px; line-height: 1.62; margin: 0 0 26px; }
.lead .assurances { display: flex; flex-direction: column; gap: 14px; }
.lead .assurances .item { display: flex; gap: 11px; align-items: center; }
.lead .assurances .item .tick { color: var(--gold); }
.lead .assurances .item span:last-child { font-size: 14px; color: var(--text); }
.form-panel {
  border: 1px solid var(--line-gold);
  border-radius: 14px;
  background: linear-gradient(160deg, #FFFFFF, #EAE1F5);
  padding: 32px;
  box-shadow: 0 24px 60px rgba(90, 50, 130, .14);
}
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--text-muted);
}
.in {
  background: var(--bg);
  border: 1px solid var(--line-input);
  border-radius: 7px;
  padding: 11px 13px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
}
.in.file { border: 1px dashed rgba(212, 175, 55, .3); color: var(--text-2); font-size: 13px; }
textarea.in { resize: vertical; }
.in::placeholder { color: var(--text-faint); }
.in:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, .16);
}
.form-submit {
  grid-column: 1 / -1;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  color: var(--on-gold); background: var(--gold-grad);
  border: none; padding: 15px; border-radius: 7px; cursor: pointer;
  box-shadow: 0 8px 30px rgba(212, 175, 55, .28); margin-top: 4px;
  transition: all .18s cubic-bezier(.2, .7, .3, 1);
}
.form-submit:hover { filter: brightness(1.06); box-shadow: 0 12px 40px rgba(212, 175, 55, .38); }
.form-success { text-align: center; padding: 30px 10px; }
.form-success .ring {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(61, 190, 94, .15); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 18px;
}
.form-success h3 { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin-bottom: 10px; color: var(--ink); }
.form-success p { font-size: 15px; line-height: 1.6; color: var(--text); margin: 0; }
[hidden] { display: none !important; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final { position: relative; overflow: hidden; border-top: 1px solid rgba(212, 175, 55, .16); }
.final .glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% 0%, rgba(155, 107, 255, .18), transparent 60%);
}
.final-inner { position: relative; max-width: 820px; margin: 0 auto; padding: 92px 44px; text-align: center; }
.final h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 46px;
  line-height: 1.05; letter-spacing: -.025em; margin-bottom: 18px;
}
.final p { font-size: 18px; line-height: 1.55; color: var(--text); max-width: 560px; margin: 0 auto 32px; }
.final .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-gold.compact, .btn-ghost.compact { padding: 16px 32px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-bg); border-top: 1px solid var(--line); }
.footer-top {
  max-width: var(--shell); margin: 0 auto; padding: 56px 44px 30px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand .blurb { font-size: 14px; line-height: 1.6; color: var(--text-muted); max-width: 280px; margin: 0 0 16px; }
.footer-brand .email { font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--text-faint); }
.footer-col .col-head {
  font-family: var(--font-mono); font-weight: 700; font-size: 11px;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.footer-col .links { display: flex; flex-direction: column; gap: 10px; }
.footer-col .links a, .footer-col .links span { font-size: 14px; color: var(--text-2); text-decoration: none; }
.footer-col .links a:hover { color: var(--gold-deep); }
.footer-col .links .btn-ghost {
  display: inline-block; margin-top: 6px; font-size: 13px; padding: 9px 16px; text-align: center;
}
.footer-bottom {
  max-width: var(--shell); margin: 0 auto; padding: 20px 44px 40px;
  border-top: 1px solid var(--line-soft);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-family: var(--font-mono); font-weight: 700; font-size: 12px; color: var(--text-faint); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero h1 { font-size: 48px; }
  .solution-inner,
  .indonesia,
  .quality-inner,
  .lead-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
  .shell,
  .site-header,
  .hero-inner,
  .strip-inner,
  .section,
  .solution-inner,
  .categories .inner,
  .indonesia,
  .why .inner,
  .process,
  .quality-inner,
  .faq,
  .lead-inner,
  .final-inner,
  .footer-top,
  .footer-bottom { padding-left: 20px; padding-right: 20px; }

  .site-header {
    height: auto;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 14px;
    padding-bottom: 14px;
    position: relative;
  }
  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 16px 20px;
    display: none;
  }
  .site-header.open .nav { display: flex; }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    align-items: center;
    justify-content: center;
    width: 42px; height: 38px;
    background: transparent;
    border: 1px solid var(--line-input);
    border-radius: 6px;
    color: var(--ink);
    font-size: 18px;
    cursor: pointer;
  }
  .header-cta { order: 2; }
  .brand { order: 1; }

  .hero { }
  .hero-inner { padding-top: 56px; padding-bottom: 56px; }
  .hero h1 { font-size: 38px; }
  .hero p.sub { font-size: 17px; }

  .section, .process { padding-top: 60px; padding-bottom: 60px; }
  .solution-inner, .categories .inner, .why .inner, .quality-inner, .lead-inner { padding-top: 56px; padding-bottom: 56px; }

  .h2, .services-head h2, .process h2 { font-size: 30px; }
  .solution h2, .categories h2, .indonesia h2, .why .head h2, .lead h2 { font-size: 28px; }
  .quality h2 { font-size: 26px; }
  .final h2 { font-size: 32px; }

  .chips-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .capability .grid { grid-template-columns: 1fr 1fr; }
  .lead-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}
