/* ============================================================
   CLICKJI.COM — style.css
   Theme: Navy contact-sheet. Accent: signal coral.
   ============================================================ */

/* ── TOKENS ── */
:root {
  --navy:        #0B2245;
  --navy-700:    #143460;
  --navy-900:    #071733;
  --coral:       #FD4F3C;
  --coral-600:   #E23A28;
  --coral-50:    #FFEDE9;
  --paper:       #FFFFFF;
  --mist:        #F3F6FB;
  --mist-2:      #E9EFF8;
  --ink:         #0B2245;
  --body:        #3E4B63;
  --muted:       #6E7C96;
  --muted-light: #97A3BA;
  --line:        #DDE4EF;
  --line-strong: #C2CEE1;
  --wa:          #25D366;
  --wa-dark:     #1DAF55;

  --font-display: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1180px;
  --r-sm: 6px;
  --r:    12px;
  --r-lg: 18px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow: 0 14px 40px rgba(11, 34, 69, 0.10);
  --shadow-sm: 0 4px 16px rgba(11, 34, 69, 0.07);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--body);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg, video, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; width: 100%; }

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

::selection { background: var(--coral); color: #fff; }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--mist); }
::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 9999;
  background: var(--coral); color: #fff; padding: 0.8rem 1.4rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ── LAYOUT ── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: clamp(1.1rem, 4vw, 2rem);
  padding-right: clamp(1.1rem, 4vw, 2rem);
}

.sec { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }
.sec-mist { background: var(--mist); }
.sec-navy { background: var(--navy); color: rgba(255, 255, 255, 0.78); }
.sec-navy h2, .sec-navy h3 { color: #fff; }

.grid { display: grid; gap: 1.1rem; }
.grid > * { min-width: 0; }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* ── TYPE ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.32rem); }

p { max-width: 68ch; }

.label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.9rem;
  letter-spacing: 0;
}
.label::before {
  content: '';
  width: 9px; height: 9px;
  background: var(--coral);
  border-radius: 2px;
  flex-shrink: 0;
}
.sec-navy .label { color: #FF8873; }
.sec-navy .label::before { background: #FF8873; }

.lede {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  color: var(--muted);
  line-height: 1.8;
  max-width: 60ch;
}
.sec-navy .lede { color: rgba(255, 255, 255, 0.7); }

.sec-head { margin-bottom: clamp(2rem, 4vw, 3rem); max-width: 780px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .label { justify-content: center; }
.sec-head.center .lede { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin-bottom: 0.9rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: transform 0.18s var(--ease), background 0.22s, color 0.22s, border-color 0.22s, box-shadow 0.22s;
  text-align: center;
  line-height: 1.2;
}
.btn:active { transform: translateY(1px); }
.btn i { font-size: 1.05em; }

.btn-coral { background: var(--coral); color: #fff; box-shadow: 0 8px 22px rgba(253, 79, 60, 0.28); }
.btn-coral:hover { background: var(--coral-600); color: #fff; box-shadow: 0 10px 26px rgba(253, 79, 60, 0.36); }

.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.26); }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }

.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn-ghost:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.38); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.88rem; }
.btn-block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s, border-color 0.3s, padding 0.3s;
  padding: 0.55rem 0;
}
#nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 18px rgba(11, 34, 69, 0.07);
  padding: 0.3rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo img { height: 46px; width: auto; transition: height 0.3s; }
#nav.scrolled .nav-logo img { height: 40px; }

.nav-links { display: flex; align-items: center; gap: 0.15rem; }
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--body);
  padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--mist); }

.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  white-space: nowrap;
}
.nav-call i { color: var(--coral); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-right: -10px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: var(--navy);
  padding: 5.5rem 1.5rem 2rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-menu .btn { margin-top: 1.4rem; border-bottom: none; font-size: 1rem; }
.mobile-close {
  position: absolute;
  top: 1.1rem; right: 1.2rem;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
}

/* ── FLOATING / STICKY CTAs ── */
.wa-float {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 880;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 26px rgba(37, 211, 102, 0.42);
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); color: #fff; }
.wa-float::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: waPulse 2.6s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(0.9); opacity: 0.9; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

.sticky-cta { display: none; }

/* ── HERO ── */
#hero {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.76);
  padding: calc(72px + clamp(2.2rem, 5vw, 4rem)) 0 clamp(2.5rem, 5vw, 4.5rem);
  position: relative;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -140px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(253, 79, 60, 0.16) 0%, rgba(253, 79, 60, 0) 68%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-grid > * { min-width: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.hero-eyebrow i { color: var(--coral); }

h1.hero-h1 { color: #fff; margin-bottom: 1rem; }
.hero-h1 .accent { color: var(--coral); }

.hero-desc {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  max-width: 46ch;
  margin-bottom: 1.6rem;
}

.price-anchor {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.55rem;
  border-left: 3px solid var(--coral);
  padding: 0.15rem 0 0.15rem 0.9rem;
  margin-bottom: 1.6rem;
}
.price-anchor b {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.price-anchor span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.62); }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem 1.2rem;
  margin: 1.7rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}
.hero-trust i { color: var(--coral); font-size: 0.85rem; flex-shrink: 0; }

/* Contact-sheet photo strip */
.sheet {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 10px;
  position: relative;
}
.sheet figure { position: relative; overflow: hidden; border-radius: var(--r); background: var(--navy-700); }
.sheet img { width: 100%; height: 100%; object-fit: cover; }
.sheet .s-tall { grid-row: span 2; aspect-ratio: 3 / 4.35; }
.sheet .s-wide { aspect-ratio: 4 / 3; }

.frame-mark { position: relative; }
.frame-mark::before, .frame-mark::after {
  content: '';
  position: absolute;
  width: 26px; height: 26px;
  border: 2px solid var(--coral);
  pointer-events: none;
  z-index: 3;
}
.frame-mark::before { top: -8px; left: -8px; border-right: 0; border-bottom: 0; border-radius: 4px 0 0 0; }
.frame-mark::after { bottom: -8px; right: -8px; border-left: 0; border-top: 0; border-radius: 0 0 4px 0; }

.sheet-badge {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  box-shadow: var(--shadow);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sheet-badge i { color: var(--coral); }

/* ── PROOF BAR ── */
.proof-bar { background: var(--coral); color: #fff; }
.proof-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem 1.5rem;
  padding: 1.1rem 0;
}
.proof-inner div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.35;
}
.proof-inner i { font-size: 1rem; opacity: 0.9; flex-shrink: 0; }

/* ── STATS ── */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  margin-top: -3.2rem;
  position: relative;
  z-index: 5;
}
.stat-row div { text-align: center; padding: 0 0.4rem; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label { font-size: 0.82rem; color: var(--muted); margin-top: 0.35rem; line-height: 1.35; }

/* ── OCCASIONS ── */
.occ-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.occ {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 0.95rem 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.22s, transform 0.22s var(--ease);
}
.occ:hover { border-color: var(--coral); transform: translateY(-2px); }
.occ i { color: var(--coral); width: 20px; text-align: center; flex-shrink: 0; }

/* ── PORTFOLIO ── */
.filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.filter-btn {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--body);
  background: #fff;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.masonry { columns: 4; column-gap: 12px; }
.m-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  cursor: zoom-in;
  background: var(--mist-2);
}
.m-item img { width: 100%; transition: transform 0.55s var(--ease); }
.m-item:hover img { transform: scale(1.05); }
.m-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 12px; bottom: 12px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(11, 34, 69, 0.82);
  color: #fff;
  border-radius: 50%;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.28s;
}
.m-item:hover::after { opacity: 1; }
.m-item.hidden { display: none; }

/* ── LIGHTBOX ── */
.lb {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(7, 23, 51, 0.97);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.28s;
}
.lb.open { opacity: 1; pointer-events: auto; }
.lb-img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: var(--r-sm); }
.lb-close, .lb-btn {
  position: absolute;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 1.05rem;
  transition: background 0.22s, border-color 0.22s;
}
.lb-close:hover, .lb-btn:hover { background: var(--coral); border-color: var(--coral); }
.lb-close { top: 1.2rem; right: 1.2rem; }
.lb-btn { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 1.2rem; }
.lb-next { right: 1.2rem; }

/* ── PACKAGES ── */
.offer-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  background: var(--coral-50);
  border: 1px solid rgba(253, 79, 60, 0.28);
  color: var(--coral-600);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  margin-top: 1.2rem;
}
.offer-strip i { color: var(--coral); }
.offer-strip strong { color: var(--coral-600); }

.pkg-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; align-items: start; }

.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.7rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}
.pkg:hover { border-color: var(--line-strong); box-shadow: var(--shadow); transform: translateY(-3px); }
.pkg.featured {
  border: 2px solid var(--navy);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  position: relative;
  box-shadow: 0 20px 46px rgba(11, 34, 69, 0.24);
}
.pkg-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.32rem 0.9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pkg-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.pkg.featured .pkg-name { color: #fff; }
.pkg-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pkg.featured .pkg-price { color: #fff; }
.pkg-price small { font-size: 1.1rem; font-weight: 600; margin-right: 0.1rem; }
.pkg-meta { display: flex; align-items: center; gap: 0.6rem; margin-top: 0.45rem; flex-wrap: wrap; }
.pkg-old { color: var(--muted-light); text-decoration: line-through; font-size: 0.92rem; }
.pkg.featured .pkg-old { color: rgba(255, 255, 255, 0.45); }
.pkg-save {
  background: var(--coral-50);
  color: var(--coral-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}
.pkg.featured .pkg-save { background: rgba(253, 79, 60, 0.2); color: #FFB3A6; }

.pkg-list { margin: 1.2rem 0 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line); flex-grow: 1; }
.pkg.featured .pkg-list { border-top-color: rgba(255, 255, 255, 0.16); }
.pkg-list li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 0.6rem;
  color: var(--body);
}
.pkg.featured .pkg-list li { color: rgba(255, 255, 255, 0.82); }
.pkg-list i { color: var(--coral); font-size: 0.72rem; margin-top: 0.42rem; flex-shrink: 0; }

.pkg-note { text-align: center; margin-top: 1.6rem; font-size: 0.92rem; color: var(--muted); }
.pkg-note a { color: var(--coral-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── STEPS ── */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; counter-reset: step; }
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.3rem;
  position: relative;
}
.step-n {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.step-n::after { content: ''; width: 30px; height: 1px; background: var(--line-strong); }
.step h3 { font-size: 1.06rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── WHY / FEATURE CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.why-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.6rem 1.4rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.why-card:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.why-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--coral-50);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.why-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.7; }

/* ── PAYMENT SPLIT ── */
.pay-split { display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.4rem; align-items: stretch; }
.pay-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  text-align: center;
}
.pay-pc {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  letter-spacing: -0.03em;
}
.pay-box h3 { margin: 0.6rem 0 0.5rem; font-size: 1.1rem; }
.pay-box p { font-size: 0.9rem; color: var(--muted); margin: 0 auto; }
.pay-plus { display: flex; align-items: center; font-family: var(--font-display); font-size: 1.6rem; color: var(--line-strong); font-weight: 600; }
.pay-foot { text-align: center; margin-top: 1.4rem; font-size: 0.9rem; color: var(--muted); }
.pay-foot i { color: var(--coral); }

/* ── ANSWERS (AI/SEO block) ── */
.ans-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem 2rem; }
.ans { border-left: 2px solid var(--coral); padding-left: 1.1rem; }
.ans h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.ans p { font-size: 0.94rem; color: var(--muted); margin: 0; }

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.7rem; max-width: 860px; margin: 0 auto; }
.faq {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  position: relative;
  line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '\2b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.2rem; top: 1.15rem;
  color: var(--coral);
  font-size: 0.85rem;
  transition: transform 0.25s;
}
.faq[open] summary::after { content: '\f068'; }
.faq[open] summary { color: var(--coral-600); }
.faq p { padding: 0 1.2rem 1.2rem; font-size: 0.95rem; color: var(--muted); margin: 0; max-width: none; }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 1.5rem 1.4rem;
}
.testi-stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 0.12em; margin-bottom: 0.8rem; }
.testi p { font-size: 0.96rem; color: var(--body); line-height: 1.75; margin-bottom: 1.1rem; }
.testi-by { display: flex; align-items: center; gap: 0.7rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testi-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 0.95rem; line-height: 1.3; }
.testi-when { font-size: 0.82rem; color: var(--muted); }

/* ── SERVICE AREA ── */
.area-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.5rem, 4vw, 2.6rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.area-pills { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-top: 1.2rem; }
.area-pills span {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  color: var(--body);
}

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(1.5rem, 4vw, 2.6rem); align-items: start; }

.c-item { display: flex; gap: 0.9rem; padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
.c-item:first-child { padding-top: 0; }
.c-ic {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--mist);
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.c-label { font-size: 0.8rem; color: var(--muted); }
.c-val { font-family: var(--font-display); font-weight: 600; color: var(--ink); font-size: 1.02rem; line-height: 1.45; }
.c-val a:hover { color: var(--coral); }

.map-embed {
  width: 100%;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  margin-top: 1.4rem;
  filter: saturate(0.9);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(1.3rem, 3vw, 2rem);
  box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 0.4rem; }
.form-card > p { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.3rem; }
.field { margin-bottom: 0.9rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.field input, .field select, .field textarea {
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 0.75rem 0.9rem;
  background: #fff;
  font-size: 0.98rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(253, 79, 60, 0.12);
  outline: none;
}
.field textarea { resize: vertical; min-height: 92px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.form-err {
  display: none;
  background: var(--coral-50);
  color: var(--coral-600);
  border-radius: var(--r-sm);
  padding: 0.6rem 0.85rem;
  font-size: 0.88rem;
  margin-bottom: 0.9rem;
}
.form-foot { font-size: 0.82rem; color: var(--muted); text-align: center; margin-top: 0.8rem; line-height: 1.5; }

/* ── FINAL CTA ── */
.final {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.final::before {
  content: '';
  position: absolute;
  bottom: -220px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 420px;
  background: radial-gradient(ellipse, rgba(253, 79, 60, 0.20) 0%, rgba(253, 79, 60, 0) 70%);
  pointer-events: none;
}
.final-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.final h2 { color: #fff; margin-bottom: 0.9rem; }
.final p { color: rgba(255, 255, 255, 0.72); margin: 0 auto 1.8rem; }
.final .btn-row { justify-content: center; }

/* ── FOOTER ── */
footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.55); padding: clamp(2.8rem, 5vw, 4rem) 0 1.6rem; }
.f-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
.f-logo img { height: 44px; width: auto; margin-bottom: 1rem; }
.f-desc { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.2rem; max-width: 34ch; }
.f-social { display: flex; gap: 0.55rem; }
.f-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.22s, border-color 0.22s, color 0.22s;
}
.f-social a:hover { background: var(--coral); border-color: var(--coral); color: #fff; }
.f-head { font-family: var(--font-display); font-weight: 600; color: #fff; font-size: 0.98rem; margin-bottom: 0.9rem; }
.f-link { display: block; font-size: 0.9rem; padding: 0.28rem 0; color: rgba(255, 255, 255, 0.55); transition: color 0.2s; }
.f-link:hover { color: var(--coral); }
.f-contact { font-size: 0.9rem; line-height: 1.9; }
.f-contact i { color: var(--coral); width: 18px; margin-right: 0.4rem; }
.f-services {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.6rem;
  margin-top: 2.2rem;
}
.f-services .f-head { margin-bottom: 0.7rem; }
.f-services-list { display: flex; flex-wrap: wrap; gap: 0.5rem 0.9rem; }
.f-services-list a {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.f-services-list a:hover { color: var(--coral); }

.f-bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.85rem;
}
.f-bottom a:hover { color: var(--coral); }

/* ── REVEAL ── */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1100px) {
  .masonry { columns: 3; }
  .pkg-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .occ-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-actions .btn { display: none; }
  .hamburger { display: flex; }

  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .hero-desc, .price-anchor { max-width: none; }
  .sheet { max-width: 520px; margin: 0 auto; }

  .steps, .why-grid, .testi-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .proof-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.4rem 1rem; margin-top: -2.4rem; }
  .area-wrap, .contact-grid { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr 1fr; gap: 1.8rem; }
  .ans-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .masonry { columns: 2; }
  .pay-split { grid-template-columns: 1fr; }
  .pay-plus { justify-content: center; }
  .occ-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .lb-close { top: 0.6rem; right: 0.6rem; }
}

@media (max-width: 560px) {
  .pkg-grid, .steps, .why-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-trust { grid-template-columns: 1fr; }
  .proof-inner { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .f-top { grid-template-columns: 1fr; }
  .btn-row .btn { width: 100%; }
  .sheet .s-tall { aspect-ratio: 3 / 4; }
  .stat-row { padding: 1.3rem 0.8rem; }

  /* Sticky bottom bar keeps the two conversion actions in thumb reach */
  .sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 890;
    box-shadow: 0 -6px 22px rgba(11, 34, 69, 0.16);
  }
  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 56px;
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
  }
  .sticky-cta a:first-child { background: var(--wa); }
  .sticky-cta a:last-child { background: var(--coral); }
  body { padding-bottom: 56px; }
  .wa-float { bottom: 70px; width: 50px; height: 50px; font-size: 1.5rem; left: 14px; }
}

@media (max-width: 400px) {
  .masonry { columns: 1; }
}
