/* ============================================================
   PayKut Ads — Meta & Google Ads Management
   Dynamik Modus LLP · paykut.in
   Container-locked architecture · no text stretching
   ============================================================ */

:root {
  --ink: #071426;
  --ink-2: #10233c;
  --body: #4a5872;
  --muted: #7d8aa3;
  --bg: #ffffff;
  --bg-soft: #f3f7fd;
  --bg-mint: #f2faf5;
  --bg-deep: #071426;
  --line: #e2eaf5;
  --line-soft: #eef3fa;

  --meta: #0866ff;
  --meta-deep: #0a4fcc;
  --meta-lite: #4d94ff;
  --meta-soft: #e9f1ff;

  --g-blue: #4285f4;
  --g-red: #ea4335;
  --g-yellow: #fbbc05;
  --g-green: #34a853;
  --g-soft: #fff8e9;

  --green: #2a9d5c;
  --green-deep: #1b7a3d;
  --green-lite: #76c893;
  --green-soft: #e8f5ed;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius: 18px;
  --radius-lg: 26px;
  --radius-xl: 34px;
  --shadow-sm: 0 4px 16px rgba(7, 20, 38, 0.06);
  --shadow: 0 12px 38px rgba(7, 20, 38, 0.09);
  --shadow-lg: 0 28px 70px rgba(7, 20, 38, 0.14);
  --glow-blue: 0 18px 46px rgba(8, 102, 255, 0.30);
  --glow-green: 0 18px 46px rgba(42, 157, 92, 0.30);
  --container: 1180px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--bg);
  line-height: 1.68;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; position: relative; }
section.tight { padding: 68px 0; }
.bg-soft { background: var(--bg-soft); }
.bg-mint { background: var(--bg-mint); }

.dotgrid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(8, 102, 255, 0.10) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.022em;
}
h1 { font-size: clamp(2.4rem, 5.1vw, 3.85rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.7rem); font-weight: 700; }
h3 { font-size: 1.32rem; }
h4 { font-size: 1.05rem; }

.lead { font-size: 1.16rem; color: var(--body); }

.grad-blue {
  background: linear-gradient(100deg, var(--meta-deep), var(--meta) 45%, var(--meta-lite));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-green {
  background: linear-gradient(100deg, var(--green-deep), var(--green) 55%, var(--green-lite));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 18px;
  padding: 7px 15px 7px 12px;
  border-radius: 999px;
  background: var(--meta-soft);
  border: 1px solid rgba(8, 102, 255, 0.16);
}
.eyebrow i { font-size: 0.9rem; }
.eyebrow.green { color: var(--green-deep); background: var(--green-soft); border-color: rgba(42,157,92,0.2); }
.eyebrow.google { color: #b06f00; background: var(--g-soft); border-color: rgba(251,188,5,0.3); }

.section-head { max-width: 660px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.22s cubic-bezier(.2,.8,.2,1), box-shadow 0.22s, background 0.22s, color 0.22s;
  cursor: pointer;
  border: none;
  position: relative;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: linear-gradient(120deg, var(--meta-deep), var(--meta)); color: #fff; box-shadow: var(--glow-blue); }
.btn-primary:hover { box-shadow: 0 24px 56px rgba(8,102,255,0.42); }
.btn-whatsapp { background: linear-gradient(120deg, var(--green-deep), var(--green)); color: #fff; box-shadow: var(--glow-green); }
.btn-whatsapp:hover { box-shadow: 0 24px 56px rgba(42,157,92,0.42); }
.btn-ghost { background: #fff; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--meta); color: var(--meta); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.btn-light:hover { color: var(--meta); }
.btn-sm { padding: 11px 22px; font-size: 0.9rem; }

/* ---------- Logo lockup (no gap between Pay and Kut) ---------- */
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo img { height: 40px; width: auto; }
.logo .wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}
.logo .wordmark .pay { color: var(--green); }
.logo .wordmark .kut { color: var(--green-deep); }
.logo .ads-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #fff;
  background: linear-gradient(120deg, var(--meta), var(--g-blue));
  padding: 4px 8px;
  border-radius: 6px;
  margin-left: 7px;
  vertical-align: 3px;
}
.logo-tile {
  background: #fff;
  border-radius: 14px;
  padding: 7px 9px;
  display: inline-flex;
  box-shadow: 0 6px 20px rgba(0,0,0,0.18);
}
.logo-tile img { height: 34px; }
footer .logo .wordmark { color: #fff; }
footer .logo .wordmark .pay { color: var(--green-lite); }
footer .logo .wordmark .kut { color: #fff; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 6px 30px rgba(7,20,38,0.07); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 500; font-size: 0.95rem;
  color: var(--ink-2); position: relative; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--meta); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -9px;
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--meta), var(--g-blue));
}
.nav-cta { display: flex; align-items: center; gap: 11px; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--ink); cursor: pointer; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  background: var(--bg);
}
.hero .blob {
  position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero .blob-1 { width: 520px; height: 520px; background: rgba(8,102,255,0.20); top: -180px; right: -110px; }
.hero .blob-2 { width: 420px; height: 420px; background: rgba(42,157,92,0.18); bottom: -180px; left: -130px; animation-delay: -6s; }
.hero .blob-3 { width: 340px; height: 340px; background: rgba(251,188,5,0.14); top: 40%; right: 34%; animation-delay: -11s; }
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(38px,-30px) scale(1.12); }
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  gap: 60px; align-items: center;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 0.82rem; font-weight: 600;
  padding: 8px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(255,255,255,0.9);
  color: var(--ink-2); box-shadow: var(--shadow-sm);
}
.pill.green { border-color: rgba(42,157,92,0.3); color: var(--green-deep); background: var(--green-soft); }
.pill.blue { border-color: rgba(8,102,255,0.25); color: var(--meta-deep); background: var(--meta-soft); }
.dot-live {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(42,157,92,0.6); animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(42,157,92,0.55); }
  70% { box-shadow: 0 0 0 9px rgba(42,157,92,0); }
  100% { box-shadow: 0 0 0 0 rgba(42,157,92,0); }
}
.hero p.lead { margin: 22px 0 32px; max-width: 530px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-note { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--muted); }
.hero-note i { color: var(--green); }

/* Hero stage — layered ad-manager visual */
.hero-stage { position: relative; }

.stage-panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 22px; position: relative; z-index: 3;
}
.sp-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; gap: 10px; }
.sp-title { font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; color: var(--ink); display: flex; align-items: center; gap: 9px; }
.sp-tabs { display: flex; gap: 6px; }
.sp-tab {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  padding: 5px 11px; border-radius: 999px; background: var(--bg-soft); color: var(--muted);
}
.sp-tab.on { background: var(--meta); color: #fff; }

.sp-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.sp-metric { background: var(--bg-soft); border-radius: 13px; padding: 12px 13px; }
.sp-metric .m-l { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted); }
.sp-metric .m-v { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--ink); line-height: 1.3; }
.sp-metric .m-d { font-size: 0.7rem; font-weight: 700; color: var(--green); }

.sp-chart { display: flex; align-items: flex-end; gap: 8px; height: 110px; padding-top: 6px; }
.sp-bar { flex: 1; border-radius: 7px 7px 3px 3px; background: linear-gradient(180deg, var(--meta-lite), var(--meta)); transform-origin: bottom; animation: growbar 1.1s cubic-bezier(.2,.8,.2,1) backwards; }
.sp-bar.alt { background: linear-gradient(180deg, var(--green-lite), var(--green)); }
@keyframes growbar { from { transform: scaleY(0.06); opacity: 0.3; } to { transform: scaleY(1); opacity: 1; } }
.sp-axis { display: flex; justify-content: space-between; margin-top: 10px; font-size: 0.66rem; color: var(--muted); font-weight: 600; }

.float-chip {
  position: absolute; z-index: 4;
  background: #fff; border: 1px solid var(--line);
  border-radius: 15px; padding: 11px 15px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 11px;
  animation: bob 5.5s ease-in-out infinite;
}
.float-chip .fi {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.float-chip .fl { font-size: 0.64rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); line-height: 1.4; }
.float-chip .fv { font-family: var(--font-display); font-weight: 800; font-size: 0.96rem; color: var(--ink); line-height: 1.25; }
.chip-meta { top: -28px; left: -30px; animation-delay: -1s; }
.chip-meta .fi { background: var(--meta-soft); color: var(--meta); }
.chip-google { bottom: 56px; right: -34px; animation-delay: -3s; }
.chip-google .fi { background: var(--g-soft); color: #d9a303; }
.chip-wa { bottom: -30px; left: 4%; animation-delay: -2s; }
.chip-wa .fi { background: var(--green-soft); color: var(--green); }
@keyframes bob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-13px); }
}

/* ---------- Marquee ---------- */
.marquee-band { background: var(--ink); padding: 17px 0; overflow: hidden; position: relative; }
.marquee-band::before, .marquee-band::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.marquee-band::before { left: 0; background: linear-gradient(90deg, var(--ink), transparent); }
.marquee-band::after { right: 0; background: linear-gradient(270deg, var(--ink), transparent); }
.marquee-track { display: flex; width: max-content; animation: slide 36s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 600; font-size: 0.94rem;
  color: #d5e0f0; padding: 0 24px; display: inline-flex; align-items: center; gap: 24px;
  white-space: nowrap;
}
.marquee-track span::after { content: '\25CF'; font-size: 0.4rem; color: var(--green-lite); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-band { background: linear-gradient(140deg, #071426 0%, #0d2444 55%, #071e38 100%); padding: 64px 0; position: relative; overflow: hidden; }
.stats-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(8,102,255,0.28), transparent 60%),
              radial-gradient(500px 280px at 88% 100%, rgba(42,157,92,0.25), transparent 60%);
}
.stats-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.stat-item { text-align: center; padding: 8px 12px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: -13px; top: 18%; bottom: 18%; width: 1px;
  background: rgba(255,255,255,0.12);
}
.stat-item .s-icon {
  width: 46px; height: 46px; margin: 0 auto 13px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.05rem;
  background: rgba(255,255,255,0.09); color: var(--green-lite);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-item .s-num { font-family: var(--font-display); font-weight: 800; font-size: 2.35rem; color: #fff; line-height: 1.05; }
.stat-item .s-num span { color: var(--green-lite); }
.stat-item .s-label { font-size: 0.86rem; color: #9db0cb; margin-top: 6px; }

/* ---------- Bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; position: relative; overflow: hidden;
  transition: transform 0.28s cubic-bezier(.2,.8,.2,1), box-shadow 0.28s, border-color 0.28s;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(8,102,255,0.28); }
.bento-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--meta), var(--g-blue), var(--green));
  opacity: 0; transition: opacity 0.28s;
}
.bento-card:hover::before { opacity: 1; }
.span-2 { grid-column: span 2; }
.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-6 { grid-column: span 6; }

.b-icon {
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  font-size: 1.3rem; margin-bottom: 20px;
  background: var(--meta-soft); color: var(--meta);
}
.b-icon.green { background: var(--green-soft); color: var(--green); }
.b-icon.yellow { background: var(--g-soft); color: #d9a303; }
.b-icon.red { background: #fdecea; color: var(--g-red); }
.b-icon.ggreen { background: #e9f7ee; color: var(--g-green); }
.b-icon.dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.14); }
.bento-card h3 { margin-bottom: 11px; font-size: 1.2rem; }
.bento-card p { font-size: 0.95rem; }
.bento-card.dark-card { background: linear-gradient(140deg, #071426, #10294a); border-color: transparent; }
.bento-card.dark-card h3 { color: #fff; }
.bento-card.dark-card p { color: #a8b8d0; }
.bento-card.dark-card::before { opacity: 1; }
.bento-card.dark-card:hover { border-color: transparent; }

.mini-price {
  display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; color: var(--ink);
  margin-bottom: 8px;
}
.mini-price small { font-size: 0.78rem; font-weight: 600; color: var(--muted); }
.dark-card .mini-price { color: #fff; }
.dark-card .mini-price small { color: #94a7c2; }

.step-ladder { display: flex; align-items: flex-end; gap: 7px; margin-top: 22px; height: 76px; }
.ladder-bar {
  flex: 1; border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, rgba(8,102,255,0.28), var(--meta));
  display: flex; align-items: flex-start; justify-content: center;
  font-family: var(--font-display); font-size: 0.62rem; font-weight: 700; color: #fff;
  padding-top: 5px;
}

/* ---------- Ad preview mockups ---------- */
.ad-previews { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ad-mock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform 0.28s;
}
.ad-mock:hover { transform: translateY(-5px); }
.am-bar {
  display: flex; align-items: center; gap: 9px;
  padding: 14px 18px; border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-display); font-weight: 700; font-size: 0.88rem; color: var(--ink);
}
.am-bar .badge-ad {
  margin-left: auto; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.1em;
  padding: 4px 9px; border-radius: 5px; background: var(--g-soft); color: #b06f00;
}
.am-body { padding: 18px; }

.fb-head { display: flex; align-items: center; gap: 11px; margin-bottom: 13px; }
.fb-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.fb-avatar img { height: 27px; width: auto; }
.fb-name { font-family: var(--font-display); font-weight: 700; font-size: 0.92rem; color: var(--ink); line-height: 1.3; }
.fb-meta { font-size: 0.73rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.fb-copy { font-size: 0.9rem; margin-bottom: 14px; }
.fb-image {
  height: 136px; border-radius: 12px; margin-bottom: 13px;
  background: linear-gradient(130deg, #0a4fcc, #0866ff 50%, #4d94ff);
  display: grid; place-items: center; color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  position: relative; overflow: hidden; text-align: center; padding: 0 22px; line-height: 1.4;
}
.fb-image::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}
.fb-image span { position: relative; z-index: 2; }
.fb-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--bg-soft); border-radius: 11px; padding: 11px 14px;
}
.fb-cta .fc-t { font-size: 0.8rem; color: var(--muted); }
.fb-cta .fc-b {
  font-family: var(--font-display); font-weight: 700; font-size: 0.78rem;
  background: var(--green); color: #fff; padding: 8px 15px; border-radius: 9px;
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}

.gs-bar {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 17px; margin-bottom: 20px; font-size: 0.85rem; color: var(--ink-2);
  background: var(--bg-soft);
}
.gs-bar i { color: var(--muted); font-size: 0.85rem; }
.gs-bar .cursor { width: 1.5px; height: 15px; background: var(--meta); animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.gs-tag {
  display: inline-block; font-family: var(--font-display); font-weight: 800;
  font-size: 0.68rem; color: var(--ink); border: 1px solid var(--line);
  padding: 2px 8px; border-radius: 4px; margin-bottom: 9px;
}
.gs-url { font-size: 0.78rem; color: var(--body); display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.gs-url .gs-fav { width: 22px; height: 22px; border-radius: 50%; background: var(--green-soft); display: grid; place-items: center; overflow: hidden; flex-shrink: 0; }
.gs-url .gs-fav img { height: 14px; }
.gs-title { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; color: #1a0dab; margin-bottom: 6px; line-height: 1.35; }
.gs-desc { font-size: 0.85rem; color: var(--body); }
.gs-links { display: flex; gap: 18px; margin-top: 12px; font-size: 0.8rem; color: #1a0dab; font-weight: 500; flex-wrap: wrap; }

/* ---------- Plan stepper ---------- */
.stepper-wrap {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
  padding: 42px; position: relative; overflow: hidden;
}
.stepper-wrap::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--meta), var(--g-blue), var(--g-yellow), var(--green));
}
.stepper-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-bottom: 36px; }
.step-btn {
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
  padding: 17px 8px; border-radius: 16px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink-2); cursor: pointer; text-align: center;
  transition: all 0.22s cubic-bezier(.2,.8,.2,1);
}
.step-btn small {
  display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--muted); margin-top: 4px;
}
.step-btn:hover { border-color: var(--meta); transform: translateY(-2px); }
.step-btn.active {
  background: linear-gradient(135deg, var(--meta-deep), var(--meta));
  border-color: transparent; color: #fff; box-shadow: var(--glow-blue);
  transform: translateY(-3px);
}
.step-btn.active small { color: rgba(255,255,255,0.78); }

.plan-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.plan-detail .pd-left h3 { font-size: 2.4rem; display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.plan-detail .pd-left h3 .gst { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.pd-tagline { font-family: var(--font-display); font-weight: 600; color: var(--meta); margin: 8px 0 16px; font-size: 1.02rem; }
.pd-desc { font-size: 0.96rem; margin-bottom: 24px; }
.plan-detail .pd-right { border-left: 1px solid var(--line); padding-left: 44px; }
.plan-detail .pd-right h4 {
  font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 18px;
}
.fee-note {
  margin-top: 30px; background: linear-gradient(120deg, var(--meta-soft), var(--green-soft));
  border-radius: 16px; padding: 20px 22px; font-size: 0.9rem;
  display: flex; gap: 13px; align-items: flex-start;
}
.fee-note i { color: var(--meta); margin-top: 3px; font-size: 1.05rem; }

/* ---------- Checklist ---------- */
.check-list { display: grid; gap: 15px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.97rem; }
.check-list li i { color: var(--green); margin-top: 5px; font-size: 0.95rem; flex-shrink: 0; }
.check-list.blue li i { color: var(--meta); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split .visual {
  border-radius: var(--radius-xl); padding: 44px; min-height: 360px;
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}

/* ---------- Timeline ---------- */
.timeline { display: grid; position: relative; }
.tl-item { display: grid; grid-template-columns: 68px 1fr; gap: 26px; padding-bottom: 48px; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute; left: 33px; top: 70px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--line), var(--line-soft));
}
.tl-item:last-child::before { display: none; }
.tl-num {
  width: 68px; height: 68px; border-radius: 20px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  background: var(--meta-soft); color: var(--meta); position: relative; z-index: 1;
  box-shadow: var(--shadow-sm);
}
.tl-item:nth-child(2) .tl-num { background: #fdecea; color: var(--g-red); }
.tl-item:nth-child(3) .tl-num { background: var(--g-soft); color: #d9a303; }
.tl-item:nth-child(4) .tl-num { background: #e9f7ee; color: var(--g-green); }
.tl-item:nth-child(5) .tl-num { background: var(--green-soft); color: var(--green); }
.tl-item:nth-child(6) .tl-num { background: var(--meta-soft); color: var(--meta); }
.tl-body h3 { margin-bottom: 9px; }
.tl-body p { font-size: 0.97rem; max-width: 640px; }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--line); border-radius: 16px; margin-bottom: 14px;
  overflow: hidden; background: #fff; transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item.open { border-color: rgba(8,102,255,0.3); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 21px 25px; background: none; border: none; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); text-align: left;
}
.faq-q i { transition: transform 0.28s; color: var(--meta); flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.32s ease; }
.faq-a-inner { padding: 0 25px 23px; font-size: 0.95rem; }

/* ---------- Comparison table ---------- */
.cmp-table {
  width: 100%; border-collapse: collapse; background: #fff;
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); font-size: 0.95rem;
}
.cmp-table th, .cmp-table td { padding: 17px 20px; text-align: left; border-bottom: 1px solid var(--line-soft); }
.cmp-table thead th {
  font-family: var(--font-display);
  background: linear-gradient(120deg, #071426, #123055); color: #fff; font-size: 0.9rem;
}
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: var(--bg-soft); }
.cmp-table td:first-child { font-weight: 600; color: var(--ink); font-family: var(--font-display); font-size: 0.9rem; }
.cmp-table .yes { color: var(--green); font-weight: 600; }
.cmp-table .no { color: var(--muted); }
.table-scroll { overflow-x: auto; border-radius: var(--radius); }

/* ---------- Notes ---------- */
.notes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.note-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.note-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.note-card h4 { display: flex; align-items: center; gap: 11px; margin-bottom: 11px; }
.note-card h4 i { color: var(--meta); }
.note-card p { font-size: 0.93rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(140deg, #071426 0%, #0e2748 55%, #08203b 100%);
  border-radius: var(--radius-xl); padding: 72px 48px; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 88% 0%, rgba(8,102,255,0.34), transparent 60%),
              radial-gradient(500px 300px at 8% 100%, rgba(42,157,92,0.30), transparent 60%);
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; margin-bottom: 15px; }
.cta-band p { color: #b3c3d8; max-width: 560px; margin: 0 auto 32px; }
.cta-band .hero-cta { justify-content: center; margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.88fr 1.12fr; gap: 48px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start; padding: 23px;
  border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px;
  background: #fff; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(8,102,255,0.25); }
.contact-card .cc-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; font-size: 1.15rem; flex-shrink: 0; }
.contact-card.wa .cc-icon { background: var(--green-soft); color: var(--green); }
.contact-card.ph .cc-icon { background: var(--meta-soft); color: var(--meta); }
.contact-card.em .cc-icon { background: #fdecea; color: var(--g-red); }
.contact-card.ad .cc-icon { background: var(--g-soft); color: #d9a303; }
.contact-card h4 { margin-bottom: 3px; }
.contact-card p { font-size: 0.94rem; }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg); padding: 40px; position: relative; overflow: hidden;
}
.form-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--meta), var(--g-blue), var(--green));
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 19px; }
.form-group label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.87rem; color: var(--ink); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 13px;
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: var(--bg-soft); transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--meta); background: #fff;
  box-shadow: 0 0 0 4px rgba(8,102,255,0.10);
}
.form-hint { font-size: 0.82rem; color: var(--muted); margin-top: 12px; }

/* ---------- Page hero ---------- */
.page-hero { padding: 82px 0 72px; position: relative; overflow: hidden; }
.page-hero .blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.page-hero.meta-theme { background: var(--bg-soft); }
.page-hero.meta-theme .blob-1 { width: 460px; height: 460px; background: rgba(8,102,255,0.22); top: -190px; right: -90px; }
.page-hero.google-theme { background: var(--bg-soft); }
.page-hero.google-theme .blob-1 { width: 400px; height: 400px; background: rgba(66,133,244,0.20); top: -170px; right: 4%; }
.page-hero.google-theme .blob-2 { width: 320px; height: 320px; background: rgba(251,188,5,0.22); bottom: -160px; left: -70px; }
.page-hero.green-theme { background: var(--bg-mint); }
.page-hero.green-theme .blob-1 { width: 440px; height: 440px; background: rgba(42,157,92,0.20); top: -180px; right: -80px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { max-width: 780px; }
.page-hero .lead { max-width: 620px; margin-top: 20px; }
.page-hero .hero-cta { margin-top: 32px; margin-bottom: 0; }

.g-bar { display: inline-flex; gap: 6px; margin-bottom: 20px; }
.g-bar i { width: 34px; height: 6px; border-radius: 3px; display: inline-block; }
.g-bar i:nth-child(1) { background: var(--g-blue); }
.g-bar i:nth-child(2) { background: var(--g-red); }
.g-bar i:nth-child(3) { background: var(--g-yellow); }
.g-bar i:nth-child(4) { background: var(--g-green); }
.gdots { display: inline-flex; gap: 4px; vertical-align: middle; }
.gdots i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.gdots i:nth-child(1) { background: var(--g-blue); }
.gdots i:nth-child(2) { background: var(--g-red); }
.gdots i:nth-child(3) { background: var(--g-yellow); }
.gdots i:nth-child(4) { background: var(--g-green); }

/* ---------- Footer ---------- */
footer { background: var(--bg-deep); color: #a2b2c9; padding: 72px 0 0; position: relative; overflow: hidden; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--meta), var(--g-blue), var(--g-yellow), var(--green));
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.25fr; gap: 44px; padding-bottom: 52px; }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 19px; }
.footer-grid .logo { margin-bottom: 18px; }
.footer-grid p { font-size: 0.9rem; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { font-size: 0.92rem; transition: color 0.2s; }
.footer-grid ul a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; margin-bottom: 13px; }
.footer-contact li i { color: var(--green-lite); margin-top: 5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; font-size: 0.85rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-deep), var(--green)); color: #fff;
  display: grid; place-items: center; font-size: 1.6rem;
  box-shadow: 0 12px 34px rgba(42,157,92,0.48); z-index: 150; transition: transform 0.22s;
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(42,157,92,0.45); animation: ripple 2.4s ease-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float:hover { transform: scale(1.09); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(.2,.8,.2,1), transform 0.7s cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .blob, .float-chip, .marquee-track, .sp-bar, .wa-float::before, .dot-live, .gs-bar .cursor { animation: none !important; }
  .btn:hover, .bento-card:hover, .contact-card:hover, .ad-mock:hover, .note-card:hover, .wa-float:hover, .step-btn:hover { transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1040px) {
  .hero-grid, .split, .plan-detail, .contact-grid, .ad-previews { grid-template-columns: 1fr; }
  .plan-detail .pd-right { border-left: none; padding-left: 0; border-top: 1px solid var(--line); padding-top: 32px; }
  .bento { grid-template-columns: repeat(4, 1fr); }
  .span-2 { grid-column: span 2; }
  .span-3 { grid-column: span 2; }
  .span-4, .span-6 { grid-column: span 4; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .stat-item:nth-child(2)::after { display: none; }
  .stepper-track { grid-template-columns: repeat(3, 1fr); }
  .hero-stage { margin-top: 46px; }
  .chip-meta { left: 0; top: -24px; }
  .chip-google { right: 0; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; background: #fff; flex-direction: column;
    align-items: flex-start; padding: 26px; gap: 22px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-ghost { display: none; }
}

@media (max-width: 700px) {
  section { padding: 68px 0; }
  .bento { grid-template-columns: 1fr; }
  .span-2, .span-3, .span-4, .span-6 { grid-column: span 1; }
  .notes-grid, .form-row { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item::after { display: none !important; }
  .stat-item .s-num { font-size: 1.9rem; }
  .stepper-wrap { padding: 26px 20px; border-radius: var(--radius-lg); }
  .stepper-track { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 52px 24px; }
  .form-card { padding: 28px 22px; }
  .hero { padding: 62px 0 72px; }
  .hero-stage { display: flex; flex-wrap: wrap; gap: 10px; }
  .stage-panel { flex: 1 1 100%; order: -1; }
  .float-chip {
    position: static; animation: none;
    flex: 1 1 calc(50% - 5px); min-width: 0; padding: 10px 12px;
  }
  .chip-wa { flex-basis: 100%; }
  .float-chip .fv { font-size: 0.88rem; }
  .footer-bottom { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .tl-item { grid-template-columns: 52px 1fr; gap: 17px; }
  .tl-num { width: 52px; height: 52px; border-radius: 16px; font-size: 1.12rem; }
  .tl-item::before { left: 25px; top: 54px; }
  .logo img { height: 34px; }
  .logo .wordmark { font-size: 1.22rem; }
  .split .visual { padding: 30px 22px; min-height: auto; }
}
