/* ============================================================
   POSTABI — MAIN CSS  |  Next Level Design
   Font: Bricolage Grotesque (headings) + Instrument Sans (body)
   ============================================================ */

/* Fonts handled via header.php for better performance (preloading) */

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --g: #00B574;          /* Primary green */
  --g2: #008f5b;         /* Dark green */
  --g3: #e6f9f1;         /* Light green */
  --g4: #00d68f;         /* Bright green */
  --acc: #FFD600;        /* Yellow accent */
  --acc2: #ff6b00;       /* Orange accent (for warnings) */
  --dark: #070d0a;       /* Near black */
  --dark2: #0f1f17;      /* Dark section bg */
  --dark3: #162a1e;      /* Card on dark */
  --ink: #1a2e22;        /* Body text */
  --muted: #5f7a6b;      /* Muted text */
  --border: #d4e8dc;     /* Light border */
  --surface: #f5fbf8;    /* Light surface */
  --white: #ffffff;

  --font-h: 'Bricolage Grotesque', sans-serif;
  --font-b: 'Instrument Sans', sans-serif;

  --r: 14px;             /* Border radius */
  --r2: 20px;            /* Larger radius */
  --r3: 28px;            /* Card radius */
  --sh: 0 4px 32px rgba(0,181,116,.12);
  --sh2: 0 8px 48px rgba(0,0,0,.08);

  --nav-h: 68px;
  --topbar-h: 38px;
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + var(--topbar-h) + 16px); }
body { font-family: var(--font-b); background: var(--white); color: var(--ink); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); line-height: 1.1; color: var(--dark); }
h1 { font-size: clamp(2.2rem,5vw,3.8rem); font-weight: 800; letter-spacing: -1px; }
h2 { font-size: clamp(1.7rem,3.5vw,2.8rem); font-weight: 700; letter-spacing: -.5px; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { line-height: 1.7; }

/* ── TOP BAR ────────────────────────────────────────────────── */
.topbar {
  background: var(--dark);
  height: var(--topbar-h);
  display: flex; align-items: center; justify-content: center;
  position: sticky; top: 0; z-index: 1001;
  overflow: hidden;
}
.topbar-inner {
  display: flex; align-items: center; gap: 20px;
  font-size: .78rem; color: rgba(255,255,255,.75);
  font-weight: 500; white-space: nowrap;
}
.topbar-cta {
  background: var(--g); color: #fff;
  padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  transition: background .2s;
  white-space: nowrap;
}
.topbar-cta:hover { background: var(--g2); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: var(--topbar-h); z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  height: var(--nav-h);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.08); }

.nav-logo { display: flex; align-items: center; }
.nav-logo .logo-img { height: 36px; width: auto; }
.logo-text { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: var(--dark); letter-spacing: -0.5px; }
.logo-text span { color: var(--g); }

.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  font-size: .88rem; font-weight: 500; color: var(--muted);
  transition: all .2s;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }
.nav-links a.active { color: var(--g); background: var(--g3); font-weight: 600; }
.nav-cta {
  background: var(--g) !important; color: #fff !important;
  padding: 9px 20px !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: .85rem !important;
  transition: background .2s, transform .2s !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--g2) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: var(--ink); transition: .3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── SECTIONS ───────────────────────────────────────────────── */
section { padding: 96px 5%; }
.container { max-width: 1200px; margin: 0 auto; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.section-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g3); color: var(--g2);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid rgba(0,181,116,.2);
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); font-size: 1.02rem; max-width: 560px;
  line-height: 1.75; margin-bottom: 52px;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 50px;
  font-family: var(--font-h); font-size: .92rem; font-weight: 700;
  transition: all .2s; cursor: pointer; border: none; text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--g); color: #fff; }
.btn-primary:hover { background: var(--g2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,181,116,.35); }
.btn-accent  { background: var(--acc); color: var(--dark); }
.btn-accent:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,214,0,.4); }
.btn-outline { background: transparent; color: var(--g); border: 2px solid var(--g); }
.btn-outline:hover { background: var(--g); color: #fff; transform: translateY(-1px); }
.btn-ghost   { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-ghost:hover   { background: rgba(255,255,255,.22); }
.btn-dark    { background: var(--dark); color: #fff; }
.btn-dark:hover    { background: var(--dark2); transform: translateY(-1px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: .82rem; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--dark2);
  min-height: calc(100vh - var(--nav-h) - var(--topbar-h));
  padding: 80px 5% 60px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(0,181,116,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255,214,0,.08) 0%, transparent 60%);
}
/* Animated grid pattern */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,181,116,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,181,116,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
  max-width: 1200px; margin: 0 auto; width: 100%; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,181,116,.15); border: 1px solid rgba(0,181,116,.3);
  color: var(--g4); padding: 7px 16px; border-radius: 50px;
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 22px;
  animation: fadeInDown .6s ease both;
}
.hero h1 {
  color: #fff; margin-bottom: 22px;
  animation: fadeInUp .7s ease .1s both;
}
.hero h1 .highlight {
  color: var(--acc);
  position: relative;
}
.hero-sub {
  color: rgba(255,255,255,.7); font-size: 1.05rem;
  max-width: 520px; margin-bottom: 36px; line-height: 1.75;
  animation: fadeInUp .7s ease .2s both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: fadeInUp .7s ease .3s both;
}
.hero-trust {
  display: flex; gap: 20px; margin-top: 36px; flex-wrap: wrap;
  animation: fadeInUp .7s ease .4s both;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.6); font-size: .82rem; font-weight: 500;
}
.hero-trust-item::before { content: '✓'; color: var(--g4); font-weight: 800; }

/* Hero right — Pricing Card */
.hero-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r3);
  padding: 32px;
  backdrop-filter: blur(8px);
  animation: floatY 5s ease-in-out infinite, fadeInRight .8s ease .3s both;
}
.hero-price-box {
  background: linear-gradient(135deg, var(--g) 0%, var(--g2) 100%);
  border-radius: var(--r2);
  padding: 28px 24px;
  text-align: center; margin-bottom: 22px;
  position: relative; overflow: hidden;
}
.hero-price-box::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,transparent,transparent 10px,rgba(255,255,255,.04) 10px,rgba(255,255,255,.04) 20px);
}
.hpb-price {
  font-family: var(--font-h); font-size: 3rem; font-weight: 800; color: #fff;
  line-height: 1; position: relative; z-index: 1;
}
.hpb-price sub { font-size: 1.1rem; font-weight: 600; vertical-align: baseline; }
.hpb-label { color: rgba(255,255,255,.85); font-size: .82rem; margin-top: 6px; position: relative; z-index: 1; }
.hpb-badge {
  position: absolute; top: -1px; right: 16px;
  background: var(--acc); color: var(--dark);
  font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .5px;
  padding: 5px 12px; border-radius: 0 0 10px 10px;
  z-index: 2;
}
.hero-feat-list { display: flex; flex-direction: column; gap: 2px; }
.hfl-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.85); font-size: .88rem;
  padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hfl-item:last-child { border: none; }
.hfl-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--g); display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 800; color: #fff; flex-shrink: 0;
}
.hero-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: rgba(255,255,255,.08);
  border-radius: var(--r); margin-top: 22px; overflow: hidden;
}
.hstat { background: rgba(255,255,255,.04); padding: 14px 8px; text-align: center; }
.hstat-num { font-family: var(--font-h); font-size: 1.4rem; font-weight: 800; color: var(--acc); }
.hstat-lbl { font-size: .68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  background: var(--dark); padding: 16px 5%;
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
}
.tb-item {
  display: flex; align-items: center; gap: 9px;
  color: rgba(255,255,255,.65); font-size: .8rem; font-weight: 500;
}
.tb-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(0,181,116,.25);
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.tb-divider { width: 1px; height: 20px; background: rgba(255,255,255,.1); }

/* ── PAGE HERO (inner pages) ────────────────────────────────── */
.page-hero {
  background: var(--dark2);
  padding: 80px 5% 70px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 60% 50%, rgba(0,181,116,.15) 0%, transparent 65%),
    linear-gradient(rgba(0,181,116,.06) 1px,transparent 1px) 0 0/48px 48px,
    linear-gradient(90deg,rgba(0,181,116,.06) 1px,transparent 1px) 0 0/48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 800px; }
.ph-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,214,0,.15); border: 1px solid rgba(255,214,0,.3);
  color: var(--acc); padding: 6px 14px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; margin-bottom: 18px;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .ph-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; max-width: 600px; margin-bottom: 28px; line-height: 1.75; }
.ph-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px;
  transition: all .3s;
}
.card:hover { box-shadow: var(--sh); border-color: rgba(0,181,116,.3); transform: translateY(-3px); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.card p  { font-size: .88rem; color: var(--muted); line-height: 1.65; }

/* ── FEATURE GRID ───────────────────────────────────────────── */
.feat-grid-3 { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.feat-grid-4 { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 18px; }
.feat-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

/* ── PLAN CARDS ─────────────────────────────────────────────── */
.plans-wrap { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; max-width: 880px; margin: 0 auto; }
.plan-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r3); padding: 36px; position: relative;
  transition: all .3s;
}
.plan-card:hover { box-shadow: var(--sh2); transform: translateY(-4px); }
.plan-card.featured {
  border-color: var(--g);
  background: linear-gradient(160deg, #f0faf6 0%, #fff 100%);
}
.plan-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--g); color: #fff; font-size: .68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .6px;
  padding: 5px 18px; border-radius: 50px; white-space: nowrap;
}
.plan-icon { font-size: 2rem; margin-bottom: 16px; margin-top: 8px; display: block; }
.plan-type { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--g); font-weight: 700; margin-bottom: 6px; }
.plan-name { font-size: 1.3rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); font-family: var(--font-h); }
.plan-desc { font-size: .88rem; color: var(--muted); margin-bottom: 22px; line-height: 1.65; }
.plan-price { font-family: var(--font-h); font-size: 2.8rem; font-weight: 800; color: var(--dark); line-height: 1; }
.plan-price sub { font-size: 1rem; vertical-align: baseline; }
.plan-period { font-size: .8rem; color: var(--muted); margin: 6px 0 24px; }
.plan-feats { display: flex; flex-direction: column; gap: 0; margin-bottom: 28px; }
.pf-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: .88rem;
}
.pf-item:last-child { border: none; }
.pf-yes { color: var(--g); font-weight: 700; flex-shrink: 0; }
.pf-no  { color: #ccc; flex-shrink: 0; }
.pf-note { color: var(--acc2); flex-shrink: 0; }
.plan-btn {
  display: block; text-align: center;
  padding: 14px; border-radius: var(--r);
  font-family: var(--font-h); font-size: .95rem; font-weight: 700;
  transition: all .2s; background: var(--g); color: #fff;
}
.plan-btn:hover { background: var(--g2); transform: translateY(-1px); }
.plan-btn.outline { background: transparent; border: 2px solid var(--g); color: var(--g); }
.plan-btn.outline:hover { background: var(--g); color: #fff; }

/* ── STEPS / HOW IT WORKS ───────────────────────────────────── */
.steps-dark { background: var(--dark2); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: 20px; max-width: 1000px; margin: 0 auto; }
.step-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r2); padding: 28px 20px; text-align: center;
  transition: all .3s; position: relative;
}
.step-card::before {
  content: attr(data-step);
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--g); color: #fff;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 800; font-family: var(--font-h);
}
.step-card:hover { background: rgba(0,181,116,.1); border-color: rgba(0,181,116,.3); }
.step-icon { font-size: 2.2rem; margin: 8px 0 14px; display: block; }
.step-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.step-desc  { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── USE CASES ──────────────────────────────────────────────── */
.uc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(175px,1fr)); gap: 14px; }
.uc-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 20px 16px; text-align: center;
  cursor: default; transition: all .25s;
}
.uc-card:hover {
  background: var(--g); border-color: var(--g);
  transform: translateY(-4px); box-shadow: 0 12px 28px rgba(0,181,116,.28);
}
.uc-card:hover * { color: #fff !important; }
.uc-emoji { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.uc-title { font-weight: 700; font-size: .9rem; margin-bottom: 4px; }
.uc-desc  { font-size: .78rem; color: var(--muted); line-height: 1.5; transition: color .25s; }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r2); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 600; font-size: .92rem; user-select: none;
  transition: color .2s; gap: 12px;
}
.faq-q:hover { color: var(--g); }
.faq-arr { color: var(--g); font-size: .9rem; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; color: var(--muted); font-size: .9rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a strong { color: var(--ink); }

/* ── COMPARISON TABLE ───────────────────────────────────────── */
.compare-wrap { max-width: 820px; margin: 0 auto; border-radius: var(--r2); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh2); }
.compare-wrap table { width: 100%; border-collapse: collapse; }
.compare-wrap thead tr { background: var(--dark); color: #fff; }
.compare-wrap th { padding: 16px 20px; font-family: var(--font-h); font-size: .85rem; font-weight: 600; text-align: left; }
.compare-wrap th:not(:first-child) { text-align: center; }
.compare-wrap th.featured-col { background: var(--g); }
.compare-wrap tbody tr:nth-child(even) { background: var(--surface); }
.compare-wrap td { padding: 13px 20px; font-size: .86rem; border-bottom: 1px solid var(--border); }
.compare-wrap td:not(:first-child) { text-align: center; }
.compare-wrap td.featured-col { background: #f0faf6 !important; }
.c-yes { color: var(--g); font-weight: 800; font-size: 1.15rem; }
.c-no  { color: #ccc; font-size: 1.1rem; }
.c-warn { color: var(--acc2); font-weight: 600; font-size: .82rem; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 20px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); padding: 28px; position: relative;
  transition: all .3s;
}
.testi-card:hover { box-shadow: var(--sh); transform: translateY(-3px); }
.testi-stars { color: var(--acc); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-text { font-size: .9rem; color: var(--ink); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-text::before { content: '"'; }
.testi-text::after  { content: '"'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--g3); border: 2px solid var(--g);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 800; color: var(--g);
  font-size: 1.1rem; flex-shrink: 0;
}
.ta-name { font-weight: 700; font-size: .9rem; }
.ta-biz  { font-size: .78rem; color: var(--muted); }
.testi-plan { position: absolute; top: 18px; right: 18px; background: var(--g3); color: var(--g2); font-size: .68rem; font-weight: 700; padding: 3px 10px; border-radius: 50px; text-transform: uppercase; letter-spacing: .5px; }

/* ── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--dark2) 0%, #0d3824 50%, #0a4a2e 100%);
  position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(0,181,116,.2) 0%, transparent 65%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section p  { color: rgba(255,255,255,.7); max-width: 500px; margin: 0 auto 32px; font-size: 1.02rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── GUIDELINES SECTION ─────────────────────────────────────── */
.guideline-box {
  background: linear-gradient(135deg, #fff8e6 0%, #fffdf5 100%);
  border: 2px solid rgba(255,214,0,.4);
  border-radius: var(--r2); padding: 28px;
}
.gb-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.gb-icon { font-size: 1.8rem; }
.gb-title { font-size: 1.1rem; font-weight: 800; color: #92640a; font-family: var(--font-h); }
.gb-sub   { font-size: .82rem; color: #a0722b; }
.gb-items { display: flex; flex-direction: column; gap: 8px; }
.gb-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: #5a4020; padding: 8px 0;
  border-bottom: 1px solid rgba(255,214,0,.2); line-height: 1.55;
}
.gb-item:last-child { border: none; }
.gb-item-icon { flex-shrink: 0; font-size: 1rem; margin-top: 1px; }

.disclaimer-box {
  background: #fff5f5;
  border: 1px solid #ffcdd2; border-radius: var(--r); padding: 16px 20px;
  display: flex; align-items: flex-start; gap: 12px; font-size: .84rem; color: #7f2525;
  line-height: 1.6; margin-top: 16px;
}
.disclaimer-box strong { color: #c0392b; }

/* ── LEAD FORM SECTION ──────────────────────────────────────── */
.lead-section {
  background: linear-gradient(135deg, var(--dark2) 0%, #0d3824 60%, #00793f 100%);
}
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1040px; margin: 0 auto; align-items: start; }
.lead-points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.lp-item {
  display: flex; align-items: flex-start; gap: 14px;
  color: rgba(255,255,255,.85); font-size: .92rem; padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08); line-height: 1.55;
}
.lp-item:last-child { border: none; }
.lp-ic {
  width: 36px; height: 36px; background: rgba(0,181,116,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.form-card {
  background: #fff; border-radius: var(--r3); padding: 36px;
  box-shadow: 0 24px 64px rgba(0,0,0,.16);
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; font-family: var(--font-h); }
.form-card > p { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 15px;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: var(--font-b); font-size: .88rem; color: var(--ink);
  background: var(--white); transition: border-color .2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--g); box-shadow: 0 0 0 3px rgba(0,181,116,.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit {
  width: 100%; background: var(--g); color: #fff;
  padding: 14px; border: none; border-radius: var(--r);
  font-family: var(--font-h); font-size: .98rem; font-weight: 700;
  cursor: pointer; transition: all .2s; margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--g2); transform: translateY(-1px); }
.form-submit .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; }
.form-submit.loading .spinner { display: inline-block; }
.form-submit.loading .btn-label { display: none; }
.form-note { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 10px; }
#form-success { display: none; background: #f0faf6; border: 1px solid var(--g); border-radius: var(--r); padding: 16px; text-align: center; color: var(--g2); font-weight: 600; margin-top: 14px; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer-newsletter {
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 5%;
}
.fn-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1000px; margin: 0 auto; gap: 24px; flex-wrap: wrap;
}
.fn-inner h3 { font-size: 1rem; color: #fff; font-family: var(--font-h); margin-bottom: 4px; }
.fn-inner p  { font-size: .82rem; color: rgba(255,255,255,.5); }
.fn-form { display: flex; gap: 10px; flex-wrap: wrap; }
.fn-form input { flex: 1; min-width: 220px; padding: 11px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: 50px; background: rgba(255,255,255,.07); color: #fff; font-family: var(--font-b); font-size: .88rem; outline: none; transition: border-color .2s; }
.fn-form input::placeholder { color: rgba(255,255,255,.35); }
.fn-form input:focus { border-color: var(--g); }
.fn-form button { background: var(--g); color: #fff; padding: 11px 22px; border-radius: 50px; font-weight: 700; font-size: .85rem; transition: background .2s; white-space: nowrap; }
.fn-form button:hover { background: var(--g4); }

.site-footer { background: var(--dark); }
.footer-main { padding: 56px 5% 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 44px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo img { height: 32px; width: auto; }
.fl-text { font-family: var(--font-h); font-size: 1.35rem; font-weight: 800; color: #fff; }
.fl-text span { color: var(--g); }
.footer-desc { font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.65; max-width: 280px; margin-bottom: 18px; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.fbadge { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 600; padding: 4px 10px; border-radius: 50px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; }
.footer-contact-info a { color: rgba(255,255,255,.55); font-size: .83rem; transition: color .2s; }
.footer-contact-info a:hover { color: var(--g4); }
.footer-col h4 { font-family: var(--font-h); font-size: .78rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .84rem; transition: color .2s; }
.footer-col ul li a:hover { color: var(--g4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; max-width: 1200px; margin: 0 auto; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--g4); }
.footer-seo-text { color: rgba(255,255,255,.2) !important; font-size: .72rem !important; }

/* ── WA FLOAT BUTTON ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.55);
  animation: pulseWA 2.5s infinite;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-tooltip {
  position: absolute; right: 72px;
  background: var(--dark); color: #fff;
  padding: 6px 12px; border-radius: 8px;
  font-size: .75rem; font-weight: 600; white-space: nowrap;
  opacity: 0; transition: opacity .2s; pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ── SCROLL TOP ─────────────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  opacity: 0; transform: translateY(8px);
  transition: all .3s; cursor: pointer;
}
.scroll-top.show { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--g); }

/* ── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-30px); transition: opacity .65s ease, transform .65s ease; }
.reveal-right { opacity: 0; transform: translateX(30px);  transition: opacity .65s ease, transform .65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── BLOG CARDS ─────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r2); overflow: hidden; transition: all .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh2); transform: translateY(-4px); }
.bc-thumb { background: var(--g3); padding: 32px; text-align: center; font-size: 3rem; }
.bc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.bc-cat  { font-size: .7rem; text-transform: uppercase; letter-spacing: 1px; color: var(--g); font-weight: 700; margin-bottom: 8px; }
.bc-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; font-family: var(--font-h); color: var(--dark); }
.bc-excerpt { font-size: .85rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.bc-meta { font-size: .76rem; color: var(--muted); display: flex; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.bc-read { color: var(--g); font-weight: 600; font-size: .83rem; }
.bc-read:hover { text-decoration: underline; }

/* ── CODE BLOCKS ────────────────────────────────────────────── */
.code-block {
  background: #0d1117; border-radius: var(--r2); padding: 24px;
  font-family: 'Fira Code', 'Cascadia Code', monospace; font-size: .82rem;
  overflow-x: auto; line-height: 1.6;
}
.code-comment { color: #6b7280; }
.code-key     { color: #79c0ff; }
.code-val     { color: #ffd600; }
.code-method  { color: #00d68f; }
.code-url     { color: #ff7b72; }
.code-success { color: #56d364; }

/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes floatY  { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInRight { from{opacity:0;transform:translateX(22px)} to{opacity:1;transform:translateX(0)} }
@keyframes spin  { to{transform:rotate(360deg)} }
@keyframes pulseWA {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.55); }
  50%      { box-shadow: 0 4px 36px rgba(37,211,102,.85), 0 0 0 10px rgba(37,211,102,.08); }
}

/* ── MOBILE NAVBAR SCRIPT FIX ─────────────────────────────── */
.nav-links.open {
  display: flex !important;
  animation: fadeInDown .3s ease;
}

/* ── RESPONSIVE OVERRIDES ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; text-align: center; }
  .hero-card     { max-width: 400px; margin: 40px auto 0; }
  .hero-sub      { margin-left: auto; margin-right: auto; }
  .hero-btns     { justify-content: center; }
  .hero-trust    { justify-content: center; }
  .feat-grid-2   { grid-template-columns: 1fr; gap: 40px; }
  .lead-grid     { grid-template-columns: 1fr; }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links {
    display: none; flex-direction: column; position: fixed;
    top: calc(var(--topbar-h) + var(--nav-h)); left: 0; right: 0;
    background: #fff; padding: 30px 5%; border-bottom: 1px solid var(--border);
    gap: 15px; z-index: 999; box-shadow: 0 10px 30px rgba(0,0,0,.1);
    max-height: calc(100vh - 120px); overflow-y: auto;
  }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: 12px; font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 1001; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 4%; }
  .hero { padding: 40px 4% 40px; }
  .page-hero { padding: 60px 4% 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .topbar-inner span { display: none; }
  .trust-bar { gap: 15px; justify-content: center; }
  .fn-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .hero-trust { gap: 10px; font-size: 0.75rem; }
  .hpb-price { font-size: 2.5rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
}
