/* =========================================================
   Sooksabay Online — Sales Page Stylesheet
   Structure: Tokens -> Base -> Layout -> Components -> Sections -> Responsive
   ========================================================= */

/* ---------- Design tokens (CI colors) ---------- */
:root {
  --navy:        #0a1c3d;
  --blue-900:    #0f2a63;
  --blue-800:    #123a8f;   /* primary dark blue */
  --blue-700:    #16469f;
  --blue-600:    #1c56c9;   /* mid blue */
  --blue-400:    #5b8ff0;   /* light-mid blue */
  --blue-100:    #e9f1ff;   /* light blue bg */
  --white:       #ffffff;
  --gray-50:     #f5f8fc;   /* light gray section bg */
  --gray-200:    #e3e9f2;
  --text:        #101a30;
  --text-muted:  #4d5975;
  --red:         #dc2626;
  --red-bg:      #fdecec;
  --line-green:  #06c755;
  --line-green-dark: #05a847;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow-sm:   0 6px 18px rgba(15, 42, 99, .08);
  --shadow-md:   0 16px 40px rgba(15, 42, 99, .14);
  --header-h:    68px;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-padding-top: var(--header-h);
}
body {
  font-family: "IBM Plex Sans Thai", "Noto Sans Thai", sans-serif;
  font-size: 1.125rem; /* 18px */
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .logo-text, .btn, .eyebrow {
  font-family: "Prompt", "IBM Plex Sans Thai", sans-serif;
}
h1, h2, h3 { color: var(--text); font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; }
section[id] { scroll-margin-top: var(--header-h); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-navy { color: var(--blue-800); }
.text-crisis { color: var(--red); font-weight: 800; font-style: italic; }
.text-italic-red { color: var(--red); font-style: italic; }
.text-emphasis { color: var(--red); font-weight: 800; font-style: italic; font-size: 1.12em; }
.text-red { color: var(--red); }
.bg-soft { background: var(--gray-50); }
.mobile-only { display: inline; }
@media (min-width: 768px) { .mobile-only { display: none; } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Word-by-word reveal (hero headline) */
.split-reveal .rw {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.split-reveal.in-view .rw { opacity: 1; transform: translateY(0); }
.split-reveal .rw:nth-child(1) { transition-delay: .02s; }
.split-reveal .rw:nth-child(2) { transition-delay: .08s; }
.split-reveal .rw:nth-child(3) { transition-delay: .14s; }
.split-reveal .rw:nth-child(4) { transition-delay: .2s; }
.split-reveal .rw:nth-child(5) { transition-delay: .26s; }
.split-reveal .rw:nth-child(6) { transition-delay: .32s; }
.split-reveal .rw:nth-child(7) { transition-delay: .38s; }
.split-reveal .rw:nth-child(8) { transition-delay: .44s; }

/* Staggered card reveal for grids */
.card-grid > *, .checklist-grid > *, .process-grid > *, .key-message-grid > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .45s ease, transform .45s ease;
}
.reveal.in-view.card-grid > *,
.reveal.in-view .card-grid > *,
.reveal.in-view.checklist-grid > *,
.reveal.in-view.process-grid > *,
.reveal.in-view.key-message-grid > * {
  opacity: 1;
  transform: translateY(0);
}
.card-grid > *:nth-child(1), .checklist-grid > *:nth-child(1), .process-grid > *:nth-child(1), .key-message-grid > *:nth-child(1) { transition-delay: .03s; }
.card-grid > *:nth-child(2), .checklist-grid > *:nth-child(2), .process-grid > *:nth-child(2), .key-message-grid > *:nth-child(2) { transition-delay: .08s; }
.card-grid > *:nth-child(3), .checklist-grid > *:nth-child(3), .process-grid > *:nth-child(3), .key-message-grid > *:nth-child(3) { transition-delay: .13s; }
.card-grid > *:nth-child(4), .checklist-grid > *:nth-child(4), .process-grid > *:nth-child(4), .key-message-grid > *:nth-child(4) { transition-delay: .18s; }
.card-grid > *:nth-child(5), .checklist-grid > *:nth-child(5), .process-grid > *:nth-child(5), .key-message-grid > *:nth-child(5) { transition-delay: .23s; }
.card-grid > *:nth-child(6), .checklist-grid > *:nth-child(6), .process-grid > *:nth-child(6), .key-message-grid > *:nth-child(6) { transition-delay: .28s; }
.card-grid > *:nth-child(7), .checklist-grid > *:nth-child(7), .process-grid > *:nth-child(7), .key-message-grid > *:nth-child(7) { transition-delay: .33s; }
.card-grid > *:nth-child(8), .checklist-grid > *:nth-child(8), .process-grid > *:nth-child(8), .key-message-grid > *:nth-child(8) { transition-delay: .38s; }
.card-grid > *:nth-child(9), .checklist-grid > *:nth-child(9), .process-grid > *:nth-child(9), .key-message-grid > *:nth-child(9) { transition-delay: .43s; }
.card-grid > *:nth-child(10), .checklist-grid > *:nth-child(10), .process-grid > *:nth-child(10), .key-message-grid > *:nth-child(10) { transition-delay: .48s; }
.card-grid > *:nth-child(11), .checklist-grid > *:nth-child(11), .process-grid > *:nth-child(11), .key-message-grid > *:nth-child(11) { transition-delay: .53s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.125rem;
  line-height: 1.3;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 32px; font-size: 1.15rem; }

.btn-primary { background: var(--blue-800); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--blue-900); }

.btn-line { background: var(--line-green); color: var(--white); box-shadow: 0 8px 22px rgba(6,199,85,.3); }
.btn-line:hover { background: var(--line-green-dark); }

.btn-outline { background: var(--white); color: var(--blue-800); border: 2px solid var(--blue-800); }
.btn-outline:hover { background: var(--blue-100); }

.btn-white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.7); }
.btn-white-outline:hover { background: rgba(255,255,255,.12); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 56px; width: auto; }

.nav-links {
  display: none;
}
.nav-cta-desktop { display: none; }

.hamburger {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; padding: 8px;
}
.hamburger span { display: block; height: 2px; width: 100%; background: var(--blue-800); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-links.open {
  display: flex;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0; bottom: 0;
  height: calc(100vh - var(--header-h));
  background: var(--white);
  flex-direction: column;
  align-items: stretch;
  align-self: auto;
  padding: 24px 20px;
  gap: 4px;
  overflow-y: auto;
  z-index: 190;
}
.nav-links.open a {
  padding: 14px 6px;
  font-size: 1.15rem;
  font-weight: 600;
  border-bottom: 1px solid var(--gray-200);
}
.nav-cta-mobile.btn { margin-top: 16px; width: 100%; }

/* ---------- Eyebrow / section titles ---------- */
.eyebrow {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }
.section-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
.section-title.align-left { text-align: left; }
.section:not(.expert) .section-title,
.who-for .section-title,
.pain-points .section-title,
.no-single-ad .section-title,
.funnel-timeline .section-title,
.what-you-get .section-title,
.portfolio .section-title,
.ads-results .section-title,
.content-helps .section-title,
.why-us .section-title,
.comparison .section-title,
.process .section-title,
.packages .section-title,
.faq .section-title {
  text-align: center;
}
.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}
.section-lead.align-left { text-align: left; margin: 0 0 16px; }
.section-summary {
  text-align: center;
  max-width: 760px;
  margin: 36px auto 0;
  font-size: 1.1rem;
  color: var(--text);
  background: var(--blue-100);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.pain-image { max-width: 420px; margin: 32px auto; }
.pain-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.pain-cta { text-align: center; max-width: 680px; margin: 32px auto 0; }
.pain-cta p {
  font-family: "Prompt", sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  line-height: 1.35;
  margin-bottom: 6px;
}
.pain-cta p:last-child { margin-bottom: 0; }
.pain-cta p.text-italic-red { font-weight: 800; font-style: normal; }
.pain-banner {
  background: var(--blue-800);
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.3;
  padding: 22px 20px;
  border-radius: var(--radius);
  margin-bottom: 22px;
  box-shadow: var(--shadow-md);
}
.line-banner {
  display: block;
  text-align: center;
  background: var(--line-green);
  color: var(--white);
  font-family: "Prompt", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  padding: 18px 20px;
  border-radius: var(--radius);
  margin-top: 24px;
  box-shadow: 0 8px 22px rgba(6,199,85,.3);
  transition: transform .15s ease;
}
.line-banner:hover { transform: translateY(-2px); }
.big-statement {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.section { padding: 56px 0; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--blue-100) 0%, var(--white) 65%);
  padding: 48px 0 40px;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.hero-content h1 {
  font-size: 2.1rem;
  margin: 10px 0 18px;
}
.hero-sub { font-size: 1.15rem; margin-bottom: 14px; }
.hero-desc { color: var(--text-muted); margin-bottom: 18px; }
.hero-highlight {
  display: inline-block;
  background: var(--blue-800);
  color: var(--white);
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-price { font-size: 1.3rem; margin-bottom: 24px; }
.hero-price strong { color: var(--blue-800); font-size: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-visual { position: relative; display: flex; justify-content: center; }
.hero-photo-frame {
  width: 100%; max-width: 420px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-photo-img { width: 100%; height: auto; display: block; }
.photo-placeholder {
  aspect-ratio: 4 / 5;
  width: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  background: linear-gradient(150deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  text-align: center;
  padding: 24px;
  border: 2px dashed rgba(255,255,255,.4);
}
.photo-placeholder .ph-icon { width: 64px; height: 64px; stroke: var(--white); fill: none; stroke-width: 1.4; opacity: .85; }
.photo-placeholder span { font-size: 1rem; font-weight: 600; line-height: 1.5; }
.photo-placeholder-round { border-radius: 50%; aspect-ratio: 1/1; }

.float-card {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 10px 14px;
  font-size: .85rem;
}
.float-card svg { width: 26px; height: 26px; stroke: var(--blue-600); fill: none; stroke-width: 1.8; flex-shrink: 0; }
.float-card strong { display: block; font-size: .95rem; color: var(--text); }
.float-card span { color: var(--text-muted); font-size: .78rem; }
.card-lead { top: -6px; left: -6px; }
.card-growth { bottom: -6px; left: 10%; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--blue-800); padding: 26px 0; }
.stats-inner {
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
}
.stat-item strong { display: block; color: var(--white); font-size: 1.5rem; font-family: "Prompt", sans-serif; }
.stat-item span { color: rgba(255,255,255,.8); font-size: .9rem; }
.stat-item .result-num,
.stat-item .result-suffix { font-size: 1.5rem; font-weight: 800; }

/* ---------- Card grids ---------- */
.card-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.mini-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease;
}
.mini-card:hover { transform: translateY(-4px); }
.mini-card .icon { width: 34px; height: 34px; stroke: var(--blue-800); fill: none; stroke-width: 1.6; }
.mini-card span { font-weight: 600; font-size: .98rem; }

/* Service gallery — full-size real ad creative images */
.service-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 640px;
  margin: 0 auto;
}
.service-gallery img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  display: block;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 1rem;
}
.icon { width: 26px; height: 26px; stroke: var(--blue-800); fill: none; stroke-width: 1.7; flex-shrink: 0; }
.icon-red { stroke: var(--red); }

/* ---------- Key message (no single ad) ---------- */
.key-message-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
  margin: 32px 0;
}
.key-msg {
  background: var(--blue-100);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}
.key-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-800); color: var(--white); font-weight: 700;
  margin-bottom: 10px;
}
.key-msg p { font-size: 1.1rem; }
.key-msg-featured {
  background: var(--blue-800);
  color: var(--white);
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}
.key-msg-featured .key-num { background: var(--white); color: var(--blue-800); }
.key-msg-featured p { font-size: 1.25rem; }

/* ---------- Timeline ---------- */
.timeline { display: flex; flex-direction: column; gap: 18px; }
.timeline-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  padding-left: 68px;
}
.step-no {
  position: absolute; left: 20px; top: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-800); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: "Prompt", sans-serif;
}
.timeline-step h3 { font-size: 1.15rem; margin-bottom: 6px; }
.timeline-step p { color: var(--text-muted); font-size: .98rem; }

/* ---------- Checklist ---------- */
.checklist-grid { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 32px; }
.check-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 44px;
  position: relative;
  font-weight: 500;
}
.check-item::before {
  content: "✓";
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--line-green); font-weight: 800; font-size: 1.1rem;
}

/* ---------- Portfolio ---------- */
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.portfolio-tile {
  aspect-ratio: 4/3;
  background: linear-gradient(150deg, var(--blue-100), var(--white));
  border: 2px dashed var(--blue-400);
  border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  color: var(--blue-800);
  transition: transform .2s ease, box-shadow .2s ease;
}
.portfolio-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.portfolio-tile svg { width: 34px; height: 34px; stroke: var(--blue-800); fill: none; stroke-width: 1.6; }
.portfolio-tile span { font-weight: 600; font-size: .9rem; text-align: center; padding: 0 8px; }
.portfolio-tile.filled { border: 1px solid var(--gray-200); padding: 0; overflow: hidden; }
.portfolio-tile.filled img { width: 100%; height: 100%; object-fit: cover; display: block; }
.center-btn { text-align: center; }

/* ---------- Ads results ---------- */
.result-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
.result-card {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.result-num-line { margin-bottom: 4px; }
.result-num { display: inline-block; font-family: "Prompt", sans-serif; font-size: 2.2rem; font-weight: 800; }
.result-prefix, .result-suffix { font-family: "Prompt", sans-serif; font-weight: 700; font-size: 1.15rem; }
.result-label { font-size: .95rem; opacity: .9; }
.grid-shots { margin-bottom: 20px; }
.disclaimer { font-size: .85rem; color: var(--text-muted); text-align: center; max-width: 700px; margin: 0 auto; }

/* ---------- Content helps decision ---------- */
.content-topics { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0 32px; }
.content-topics span {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: .92rem;
  font-weight: 500;
}
.mockup-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
.mockup-banner, .mockup-post {
  border-radius: var(--radius);
  border: 2px dashed var(--blue-400);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-800); font-weight: 600;
}
.mockup-banner { aspect-ratio: 16/9; }
.mockup-post { aspect-ratio: 4/5; }

/* ---------- Expert ---------- */
.expert-inner { display: flex; flex-direction: column; gap: 32px; align-items: center; }
.expert-photo { width: 100%; max-width: 320px; }
.expert-photo-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.expert-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 10px; }
.expert-gallery img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); display: block; }
.expert-content ul.expert-points { margin: 18px 0; display: flex; flex-direction: column; gap: 10px; }
.expert-points li { padding-left: 26px; position: relative; }
.expert-points li::before {
  content: "✓"; position: absolute; left: 0; color: var(--blue-600); font-weight: 800;
}
.expert-quote {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--blue-800);
  border-left: 4px solid var(--blue-800);
  padding-left: 16px;
}

/* ---------- Comparison ---------- */
.compare-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.compare-col {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.compare-col h3 { text-align: center; margin-bottom: 18px; font-size: 1.2rem; }
.compare-list { display: flex; flex-direction: column; gap: 12px; }
.compare-list li { padding-left: 28px; position: relative; font-size: .98rem; }
.list-minus li::before { content: "✕"; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.list-check li::before { content: "✓"; position: absolute; left: 0; color: var(--line-green); font-weight: 800; }
.compare-featured {
  background: var(--blue-800);
  color: var(--white);
  border-color: var(--blue-800);
  box-shadow: var(--shadow-md);
}
.compare-featured .list-minus li::before,
.compare-featured .list-check li::before { color: var(--white); }
.compare-featured li { color: var(--white); }
.compare-featured h3 { color: var(--white); font-weight: 800; }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.process-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-100); color: var(--blue-800); font-weight: 700;
  margin-bottom: 10px; font-family: "Prompt", sans-serif;
}
.process-step p { font-size: .95rem; font-weight: 500; }

/* ---------- Packages ---------- */
.packages-grid { grid-template-columns: 1fr; align-items: stretch; }
.package-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-sm);
}
.package-card.featured {
  border: 2px solid var(--line-green);
  box-shadow: var(--shadow-md);
}
.package-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--line-green); color: var(--white);
  font-size: .8rem; font-weight: 700; padding: 5px 16px; border-radius: 999px;
  white-space: nowrap;
}
.package-card h3 { font-size: 1.2rem; }
.price { font-family: "Prompt", sans-serif; font-size: 1.7rem; font-weight: 800; color: var(--blue-800); }
.price span { display: block; font-size: .85rem; font-weight: 500; color: var(--text-muted); }
.package-card ul { text-align: left; color: var(--text-muted); font-size: .95rem; display: flex; flex-direction: column; gap: 8px; }
.package-card li { padding-left: 24px; position: relative; }
.package-card li::before { content: "✓"; position: absolute; left: 0; color: var(--line-green); font-weight: 700; }
.package-card .btn { margin-top: auto; }
.packages-note { text-align: center; color: var(--text-muted); font-size: .9rem; margin-top: 20px; }

/* ---------- FAQ Accordion ---------- */
.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 4px 20px;
}
.accordion-item summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 30px 16px 0;
  font-weight: 600;
  position: relative;
  font-size: 1.02rem;
}
.accordion-item summary::-webkit-details-marker { display: none; }
.accordion-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--blue-800); font-weight: 400;
}
.accordion-item[open] summary::after { content: "−"; }
.accordion-item p { padding-bottom: 18px; color: var(--text-muted); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue-800));
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); font-size: 1.6rem; margin-bottom: 16px; }
.final-cta p { opacity: .92; margin-bottom: 8px; }
.final-highlight { font-size: 1.1rem; margin: 18px 0; }
.final-price { font-size: 1.25rem; margin-bottom: 26px; }
.final-price strong { color: #ffd166; }
.final-cta .hero-cta { justify-content: center; margin-bottom: 22px; }
.final-contacts { font-size: .95rem; opacity: .85; }
.final-tagline { margin-top: 18px; font-size: 1.05rem; letter-spacing: .01em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.8); padding: 40px 0 0; }
.footer-inner { display: flex; flex-direction: column; gap: 28px; padding-bottom: 28px; }
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-logo-img { height: 90px; width: auto; align-self: flex-start; background: var(--white); border-radius: 12px; padding: 10px; }
.footer-brand p { font-size: .9rem; opacity: .8; max-width: 360px; }
.footer-contact p { font-size: .95rem; margin-bottom: 6px; }
.footer-bottom {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 18px 20px; font-size: .82rem;
}
.footer-bottom a { text-decoration: underline; }

/* ---------- Floating CTA (desktop) ---------- */
.floating-cta { display: none; }
.float-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 18px; border-radius: 999px;
  font-weight: 700; font-size: .9rem; color: var(--white);
  box-shadow: var(--shadow-md);
}
.float-btn svg { width: 20px; height: 20px; fill: currentColor; }
.float-btn.line { background: var(--line-green); }
.float-btn.phone { background: var(--blue-800); }
.float-btn:hover { transform: translateY(-2px); }

/* ---------- Sticky mobile bar ---------- */
.sticky-mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  display: flex;
  background: var(--white);
  box-shadow: 0 -6px 20px rgba(15,42,99,.15);
  padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
}
.sticky-mobile-bar a {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 4px;
  font-size: .72rem; font-weight: 600; color: var(--blue-800);
  border-radius: 10px;
}
.sticky-mobile-bar svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.8; }
.sticky-mobile-bar a.sticky-main { background: var(--line-green); color: var(--white); margin: 0 4px; }
.sticky-mobile-bar a.sticky-main svg { fill: currentColor; stroke: none; }
body { padding-bottom: 70px; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 999;
  background: rgba(10,28,61,.92);
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  color: var(--blue-800);
  max-width: 420px;
  text-align: center;
}
.lightbox-box svg { width: 64px; height: 64px; stroke: var(--blue-800); fill: none; stroke-width: 1.4; }
.lightbox-box span { font-weight: 600; font-size: 1.1rem; }
.lightbox-img { display: none; max-width: min(90vw, 480px); max-height: 85vh; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  color: var(--white); font-size: 2rem; line-height: 1;
}

/* =========================================================
   RESPONSIVE — Tablet (>=768px)
   ========================================================= */
@media (min-width: 768px) {
  :root { --header-h: 76px; }
  .section { padding: 80px 0; }
  .nav-links { display: none !important; }
  .nav-cta-desktop { display: inline-flex; }
  .hamburger { display: none; }
  body { padding-bottom: 0; }
  .sticky-mobile-bar { display: none; }
  .floating-cta {
    display: flex; flex-direction: column; gap: 12px;
    position: fixed; right: 22px; bottom: 22px; z-index: 200;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: opacity .25s ease, transform .25s ease;
  }
  .floating-cta.show {
    opacity: 1; pointer-events: auto; transform: translateY(0);
  }

  .hero-inner { flex-direction: row; align-items: center; }
  .hero-content { flex: 1.1; }
  .hero-visual { flex: 1; }
  .hero-content h1 { font-size: 2.8rem; }

  .stats-inner { flex-direction: row; justify-content: space-around; }

  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(4, 1fr); }
  .key-message-grid { grid-template-columns: repeat(3, 1fr); }
  .checklist-grid { grid-template-columns: repeat(2, 1fr); }
  .result-cards { grid-template-columns: repeat(3, 1fr); }
  .mockup-row { grid-template-columns: repeat(3, 1fr); }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(4, 1fr); }
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .package-card.featured { transform: scale(1.04); }

  .expert-inner { flex-direction: row; align-items: flex-start; text-align: left; }
  .expert-photo { flex-shrink: 0; }

  .section-title { font-size: 2.2rem; }
  .big-statement { font-size: 2.4rem; }
}

/* =========================================================
   RESPONSIVE — Desktop (>=1024px)
   ========================================================= */
@media (min-width: 1024px) {
  .hero-content h1 { font-size: 3.4rem; }
  .section-title { font-size: 2.6rem; }
  .big-statement { font-size: 2.8rem; }
  .timeline { flex-direction: row; }
  .timeline-step { flex: 1; }
  .process-grid { grid-template-columns: repeat(7, 1fr); }
}

@media (min-width: 1024px) and (max-width: 1023.98px) { }
