
/* ============================================================
   DESIGN SYSTEM — Professional, Warm, Doctor-Focused
   Clean clinicals with warmth. Think Practo meets Apple.
   ============================================================ */
:root {
  /* Primaries */
  --blue:        #1d4ed8;
  --blue-mid:    #2563eb;
  --blue-dark:   #1e3a8a;
  --blue-subtle: #eff6ff;
  --blue-border: #bfdbfe;

  /* Greens – health, trust, success */
  --green:       #059669;
  --green-light: #d1fae5;
  --green-dark:  #065f46;

  /* Amber – warm, inviting accents */
  --amber:       #d97706;
  --amber-light: #fef3c7;
  /* Purple */
  --purple-light: #f3e8ff;

  /* Neutrals */
  --ink:         #0f172a;
  --ink-2:       #1e293b;
  --ink-3:       #334155;
  --slate:       #64748b;
  --slate-light: #94a3b8;
  --border:      #e2e8f0;
  --bg:          #ffffff;
  --bg-soft:     #f8fafc;
  --bg-blue:     #eff6ff;
  --bg-warm:     #fafaf9;

  /* WhatsApp */
  --wa:          #25d366;
  --wa-dark:     #128c7e;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.07),0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 12px rgba(0,0,0,.08),0 1px 3px rgba(0,0,0,.05);
  --shadow-md:   0 8px 24px rgba(0,0,0,.10),0 2px 8px rgba(0,0,0,.06);
  --shadow-lg:   0 20px 48px rgba(0,0,0,.12),0 4px 16px rgba(0,0,0,.06);
  --shadow-blue: 0 8px 24px rgba(29,78,216,.25);

  /* Radius */
  --radius-sm:  .375rem;
  --radius:     .625rem;
  --radius-md:  .875rem;
  --radius-lg:  1.25rem;
  --radius-xl:  1.75rem;
  --radius-pill: 9999px;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== TYPE ===== */
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; color: var(--ink); }
h2 { font-size: clamp(1.625rem, 3vw, 2.375rem); font-weight: 700; line-height: 1.2; letter-spacing: -.025em; color: var(--ink); }
h3 { font-size: 1.1875rem; font-weight: 700; line-height: 1.3; color: var(--ink); }
h4 { font-size: 1rem; font-weight: 600; color: var(--ink); }
p  { color: var(--slate); line-height: 1.75; }
strong { color: var(--ink); }

/* ===== LAYOUT ===== */
.container        { max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 50rem; margin: 0 auto; padding: 0 1.5rem; }
.section     { padding: 5.5rem 0; }
.section-sm  { padding: 3.5rem 0; }
.section-xs  { padding: 2rem 0; }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: .75rem;
}
.eyebrow-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }

/* ===== BADGES ===== */
.badge {
  display: inline-flex; align-items: center; gap: .375rem;
  padding: .3rem .75rem; border-radius: var(--radius-pill);
  font-size: .75rem; font-weight: 700; line-height: 1;
}
.badge-green  { background: var(--green-light); color: var(--green-dark); }
.badge-blue   { background: var(--blue-subtle); color: var(--blue-dark); }
.badge-amber  { background: var(--amber-light); color: var(--amber); }
.badge-outline { background: transparent; border: 1.5px solid var(--border); color: var(--slate); }
.badge-white  { background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.3); }
.badge-secondary { background: var(--bg-soft); color: var(--slate); border: 1px solid var(--border); }
.bg-white { background: var(--bg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .625rem 1.375rem; border-radius: var(--radius);
  font-weight: 600; font-size: .9375rem; line-height: 1;
  border: 2px solid transparent; cursor: pointer;
  transition: all .18s cubic-bezier(.4,0,.2,1);
  white-space: nowrap; letter-spacing: .01em;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--blue-mid); outline-offset: 2px; }

/* Blue solid */
.btn-blue {
  background: var(--blue); color: #fff; border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(29,78,216,.35); }

/* Default = blue */
.btn-default { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--shadow-blue); }
.btn-default:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); }

/* Green */
.btn-green { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(5,150,105,.3); }

/* Outline blue */
.btn-outline {
  background: transparent; color: var(--blue); border-color: var(--blue-border);
}
.btn-outline:hover { background: var(--blue-subtle); border-color: var(--blue); }

/* Outline white */
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* WhatsApp */
.btn-whatsapp { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-whatsapp:hover { background: var(--wa-dark); border-color: var(--wa-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,.35); }

/* Ghost */
.btn-ghost { background: transparent; color: var(--slate); border-color: var(--border); }
.btn-ghost:hover { background: var(--bg-soft); color: var(--ink); }

/* Sizes */
.btn-sm  { padding: .4375rem 1rem; font-size: .8125rem; }
.btn-lg  { padding: .875rem 2rem; font-size: 1.0625rem; }
.btn-xl  { padding: 1.0625rem 2.375rem; font-size: 1.125rem; }
.w-full  { width: 100%; }

/* ===== CARDS ===== */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.card-lift { transition: all .2s; }
.card-lift:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-border); }

/* ===== FORMS ===== */
.form-group    { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.125rem; }
.form-label    { font-size: .875rem; font-weight: 600; color: var(--ink-2); }
.form-req      { color: #ef4444; margin-left: .2rem; }
.form-control  {
  width: 100%; padding: .6875rem 1rem; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: inherit; font-size: .9375rem;
  color: var(--ink); background: var(--bg); transition: border .15s, box-shadow .15s;
}
.form-control::placeholder { color: var(--slate-light); }
.form-control:focus { outline: none; border-color: var(--blue-mid); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
textarea.form-control { resize: vertical; min-height: 96px; }
.form-grid-2  { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid-3  { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
.form-section {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.625rem; margin-bottom: 1.125rem;
}
.form-section-title {
  font-size: .9375rem; font-weight: 700; color: var(--ink);
  padding-bottom: .875rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem;
}

/* ===== ALERTS ===== */
.alert { padding: 1rem 1.125rem; border-radius: var(--radius); margin-bottom: 1rem; font-size: .9rem; }
.alert-success { background: var(--green-light); border: 1px solid #6ee7b7; color: var(--green-dark); }
.alert-error   { background: #fef2f2; border: 1px solid #fca5a5; color: #b91c1c; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); box-shadow: var(--shadow-xs);
}
.navbar-inner {
  max-width: 72rem; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.navbar-logo { display: flex; align-items: center; gap: .625rem; }
.navbar-logo-mark {
  width: 40px; height: 40px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(29,78,216,.3); flex-shrink: 0;
}
.navbar-logo-text { font-size: 1.125rem; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.navbar-logo-text span { color: var(--blue-mid); }
.navbar-links { display: flex; align-items: center; }
.navbar-link {
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 500; color: var(--ink-3);
  transition: all .15s; white-space: nowrap;
}
.navbar-link:hover, .navbar-link.active { color: var(--blue); background: var(--blue-subtle); }
.navbar-actions { display: flex; align-items: center; gap: .625rem; }
.navbar-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .5rem; color: var(--ink); }
.mobile-only-link { display: none; }

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue-mid), var(--green));
}
.hero-grid {
  max-width: 72rem; margin: 0 auto; padding: 5rem 1.5rem 4.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.hero-trust-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green-light); border: 1px solid #6ee7b7;
  border-radius: var(--radius-pill); padding: .375rem 1rem;
  font-size: .8125rem; font-weight: 700; color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.hero-trust-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
.hero-heading { color: var(--ink); margin-bottom: 1.25rem; }
.hero-heading-accent { color: var(--blue-mid); }
.hero-ctas { display: flex; align-items: center; gap: .875rem; flex-wrap: wrap; margin-bottom: 2.25rem; }
.hero-trust-chips { display: flex; flex-wrap: wrap; gap: .75rem; }
.trust-chip {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .8125rem; font-weight: 500; color: var(--ink-3);
}
.trust-chip-icon { color: var(--green); font-size: .9rem; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-img { width: 100%; height: auto; display: block; }
.hero-card-float {
  position: absolute; background: #fff; border-radius: var(--radius-md);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  padding: .875rem 1.125rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero-float-tl { top: -16px; left: -20px; }
.hero-float-br { bottom: -16px; right: -20px; }
.hero-float-icon { font-size: 1.5rem; }
.hero-float-label { font-size: .7rem; color: var(--slate); font-weight: 500; }
.hero-float-val { font-size: .9375rem; font-weight: 800; color: var(--ink); line-height: 1.2; }

/* ===== STATS STRIP ===== */
.stats-strip { background: var(--bg-blue); border-top: 1px solid var(--blue-border); border-bottom: 1px solid var(--blue-border); }
.stats-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 0; }
.stat-item {
  text-align: center; padding: 1.75rem 1.5rem; flex: 1; min-width: 130px;
  border-right: 1px solid var(--blue-border);
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-val { font-size: 1.875rem; font-weight: 900; color: var(--blue); line-height: 1; }
.stat-lbl { font-size: .8rem; font-weight: 500; color: var(--slate); margin-top: .375rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .75rem; }
.section-header p { max-width: 560px; margin: 0 auto; font-size: 1.0625rem; }

/* ===== HOW IT WORKS ===== */
.steps-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.step-col { background: var(--bg); padding: 2.5rem 2rem; position: relative; }
.step-index {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.25rem;
}
.step-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md); margin-bottom: 1.25rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.si-blue   { background: var(--blue-subtle); }
.si-green  { background: var(--green-light); }
.si-amber  { background: var(--amber-light); }
.step-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: .5rem; }
.step-desc  { font-size: .9rem; line-height: 1.7; }

/* ===== FEATURES ===== */
.features-section { background: var(--bg-soft); }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.feature-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.875rem; transition: all .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-3px); }
.feat-icon { width: 48px; height: 48px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.25rem; margin-bottom: 1.125rem; }
.fi-blue   { background: var(--blue-subtle); }
.fi-green  { background: var(--green-light); }
.fi-amber  { background: var(--amber-light); }
.fi-purple { background: var(--purple-light); }
.fi-slate  { background: var(--bg-soft); }
.fi-rose   { background: #fff1f2; }
.feat-title { font-size: .9375rem; font-weight: 700; margin-bottom: .375rem; }
.feat-desc  { font-size: .875rem; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.testi-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.875rem; display: flex; flex-direction: column; gap: 1.125rem;
  transition: all .2s;
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); }
.testi-stars { color: #f59e0b; font-size: .9rem; letter-spacing: .05em; }
.testi-quote {
  font-size: .9375rem; color: var(--ink-3); line-height: 1.75; flex: 1;
  font-style: italic; position: relative;
}
.testi-quote::before { content: '"'; font-size: 3rem; color: var(--blue-subtle); font-family: 'Playfair Display'; line-height: 1; position: absolute; top: -8px; left: -4px; }
.testi-author { display: flex; align-items: center; gap: .875rem; margin-top: .25rem; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .875rem; color: #fff;
}
.av-blue   { background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid)); }
.av-green  { background: linear-gradient(135deg, #065f46, var(--green)); }
.av-amber  { background: linear-gradient(135deg, #92400e, var(--amber)); }
.testi-name { font-weight: 700; font-size: .875rem; color: var(--ink); }
.testi-spec { font-size: .8rem; color: var(--slate); margin-top: .1rem; }

/* ===== TRUST LOGOS / PROOF ===== */
.trust-bar { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 1.25rem 1.5rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--ink-3); }
.ti-icon { font-size: 1.125rem; }

/* ===== PRICING ===== */
.pricing-section { background: var(--bg-soft); }
.p-tabs { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.p-tab {
  padding: .5625rem 1.375rem; border-radius: var(--radius-pill);
  border: 1.5px solid var(--border); background: var(--bg);
  font-size: .875rem; font-weight: 600; color: var(--slate);
  cursor: pointer; transition: all .18s;
}
.p-tab:hover { border-color: var(--blue-mid); color: var(--blue); }
.p-tab.active { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--shadow-blue); }
.p-table-wrap { border-radius: var(--radius-lg); overflow-x: auto; box-shadow: var(--shadow); border: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.p-table { width: 100%; border-collapse: collapse; background: var(--bg); min-width: 560px; }
.p-table th { background: var(--blue-dark); color: #fff; padding: 1rem 1.375rem; text-align: left; font-size: .8125rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.p-table td { padding: 1rem 1.375rem; border-bottom: 1px solid var(--border); font-size: .9375rem; color: var(--ink-2); }
.p-table tr:last-child td { border-bottom: none; }
.p-table tr:hover td { background: var(--bg-soft); }
.p-table tr.pop td { background: var(--blue-subtle); }
.p-table tr.pop td:first-child { border-left: 3px solid var(--blue); }
.price-main { font-weight: 800; font-size: 1.0625rem; color: var(--blue); }
.price-per  { font-size: .8125rem; color: var(--slate); margin-top: .2rem; }
.pop-tag { display: inline-block; background: var(--amber); color: #fff; border-radius: var(--radius-pill); padding: .15rem .625rem; font-size: .65rem; font-weight: 700; margin-left: .625rem; vertical-align: middle; }
.p-notes { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 1.75rem; justify-content: center; }
.p-note { display: flex; align-items: center; gap: .375rem; font-size: .875rem; color: var(--slate); }
.p-note-icon { color: var(--green); font-weight: 700; }

/* ===== DESIGNER SECTION ===== */
.designer-section {
  background: var(--ink); color: #fff;
  position: relative; overflow: hidden;
}
.designer-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(29,78,216,.35), transparent 60%);
  pointer-events: none;
}
.designer-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.ds-eyebrow { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #86efac; margin-bottom: .875rem; display: block; }
.ds-title { color: #fff; margin-bottom: .875rem; font-size: clamp(1.5rem,2.5vw,2.25rem); }
.ds-body { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; line-height: 1.75; }
.ds-steps { display: flex; flex-direction: column; gap: 1.375rem; margin-bottom: 2.25rem; }
.ds-step { display: flex; gap: 1rem; align-items: flex-start; }
.ds-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 1.5px solid rgba(255,255,255,.25);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: .8125rem; color: #fff; flex-shrink: 0;
}
.ds-step-num.active { background: var(--green); border-color: var(--green); }
.ds-step-text strong { font-size: .9375rem; color: #fff; display: block; margin-bottom: .2rem; }
.ds-step-text p { font-size: .8375rem; color: rgba(255,255,255,.55); margin: 0; }

/* WA preview panel */
.wa-panel {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl); overflow: hidden; backdrop-filter: blur(12px);
}
.wa-panel-top {
  background: #075e54; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.wa-av-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--wa); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: .875rem; color: #fff; flex-shrink: 0; }
.wa-online { font-size: .75rem; color: #86efac; margin-top: .1rem; }
.wa-panel-name { font-weight: 600; color: #fff; font-size: .9375rem; }
.wa-msgs { padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.wa-msg {
  max-width: 82%; padding: .625rem .875rem; border-radius: .875rem; font-size: .8375rem; line-height: 1.55;
}
.wa-in  { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); border-radius: .875rem .875rem .875rem .125rem; align-self: flex-start; }
.wa-out { background: #dcf8c6; color: #111; border-radius: .875rem .875rem .125rem .875rem; align-self: flex-end; }
.wa-time { font-size: .65rem; margin-top: .25rem; }
.wa-time-in  { color: rgba(255,255,255,.35); }
.wa-time-out { color: rgba(0,0,0,.45); text-align: right; }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-soft); }
.faq-wrap { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: .625rem; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 1.25rem 1.375rem; text-align: left;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-size: .9375rem; font-weight: 600; color: var(--ink); transition: background .15s;
}
.faq-btn:hover { background: var(--bg-soft); }
.faq-btn[aria-expanded="true"] { color: var(--blue); }
.faq-chevron { color: var(--slate); transition: transform .25s; flex-shrink: 0; }
.faq-btn[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); color: var(--blue); }
.faq-body { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq-body-inner { padding: 0 1.375rem 1.375rem; font-size: .9rem; color: var(--slate); line-height: 1.75; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--blue-dark); padding: 6rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.5) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; position: relative; z-index: 1; margin-bottom: .875rem; }
.cta-section p { color: rgba(255,255,255,.7); font-size: 1.0625rem; max-width: 480px; margin: 0 auto 2.25rem; position: relative; z-index: 1; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 1; }
/* White button on dark bg */
.btn-white { background: #fff; color: var(--blue); border-color: #fff; font-weight: 700; }
.btn-white:hover { background: var(--blue-subtle); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,255,255,.25); }

/* ===== FOOTER ===== */
.site-footer { background: #020617; padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3.5rem; padding-bottom: 4rem; }
.footer-brand-name { display: block; font-size: 1.125rem; font-weight: 800; color: #fff; margin-bottom: .875rem; letter-spacing: -.01em; }
.footer-brand-name span { color: #60a5fa; }
.footer-brand-desc { font-size: .875rem; color: rgba(255,255,255,.45); line-height: 1.75; max-width: 260px; }
.footer-heading { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding: 1.5rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .8125rem; color: rgba(255,255,255,.35);
}

/* ===== WHATSAPP FAB ===== */
.wa-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999;
  display: flex; align-items: center; gap: .5625rem;
  background: var(--wa); color: #fff; border-radius: var(--radius-pill);
  padding: .875rem 1.5rem; box-shadow: 0 4px 20px rgba(37,211,102,.5);
  font-weight: 700; font-size: .9rem; transition: all .2s;
}
.wa-fab:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,.55); }
.wa-fab-text { display: inline; }

/* ===== PAGE HERO (Inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #1e40af 100%);
  padding: 3.75rem 0; border-bottom: 1px solid rgba(255,255,255,.1);
  position: relative; overflow: hidden;
}
.page-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(255,255,255,.05), transparent 65%); border-radius: 50%; pointer-events: none; }
.page-hero .eyebrow { color: #86efac; }
.page-hero h1 { color: #fff; margin: .5rem 0; }
.page-hero p { color: rgba(255,255,255,.7); }

/* ===== SUCCESS CARD ===== */
.success-card { text-align: center; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 4rem 2rem; box-shadow: var(--shadow-md); }
.success-icon { font-size: 3.75rem; margin-bottom: 1rem; }
.success-card h2 { margin-bottom: .75rem; }
.success-card code { background: var(--bg-soft); padding: .25rem .625rem; border-radius: var(--radius-sm); font-size: .9rem; color: var(--blue); border: 1px solid var(--border); }
.success-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* ===== PRICE DISPLAY ===== */
.price-display {
  background: var(--blue-subtle); border: 1.5px solid var(--blue-border);
  border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1rem;
  font-size: .9375rem; color: var(--ink-2); font-weight: 600;
}
.price-display strong { font-size: 1.375rem; color: var(--blue); }

/* ===== DROPZONE ===== */
.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius-md);
  padding: 3rem; text-align: center; cursor: pointer;
  transition: all .2s; background: var(--bg-soft); position: relative;
}
.dropzone:hover { border-color: var(--blue-mid); background: var(--blue-subtle); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 1; }
.dropzone-icon { font-size: 2.75rem; margin-bottom: 1rem; }
.dropzone-text strong { display: block; color: var(--ink); font-size: 1rem; margin-bottom: .3rem; }
.dropzone-text span { font-size: .875rem; color: var(--slate); }

/* ===== ERROR ===== */
.error-code { font-size: 7rem; font-weight: 900; color: var(--border); line-height: 1; }
.error-actions { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* ===== DESIGN CHOICES ===== */
.design-choices { display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
.design-choice { border: 1.5px solid var(--border); border-radius: var(--radius); padding: 1rem; cursor: pointer; transition: all .15s; }
.design-choice:has(input:checked) { border-color: var(--blue); background: var(--blue-subtle); }
.design-choice input { display: none; }
.design-choice strong { display: block; color: var(--ink); font-size: .875rem; margin-bottom: .25rem; }
.design-choice p { font-size: .8rem; margin: 0; }
.design-selected { background: var(--green-light); border: 1px solid #6ee7b7; padding: .75rem 1rem; border-radius: var(--radius); font-size: .9rem; font-weight: 600; color: var(--green-dark); }

/* ===== ABOUT ===== */
.about-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 4.5rem; align-items: start; }
.about-content h2 { font-size: 1.375rem; margin: 2rem 0 .75rem; }
.about-content h2:first-child { margin-top: 0; }
.about-stat-card { background: var(--blue-dark); border-radius: var(--radius-md); padding: 2rem; margin-bottom: 1.25rem; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.about-stat strong { display: block; font-size: 1.875rem; font-weight: 900; color: #fff; }
.about-stat span { font-size: .8rem; color: rgba(255,255,255,.6); }
.about-contact { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.5rem; }

/* ===== CONTACT ===== */
.contact-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-item-icon { font-size: 1.375rem; flex-shrink: 0; margin-top: .125rem; }
.contact-item strong { display: block; color: var(--ink); font-size: .9375rem; margin-bottom: .3rem; }
.contact-form-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 2rem; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 1.25rem; }
.blog-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 1.75rem; display: flex; flex-direction: column; gap: .75rem; transition: all .2s; }
.blog-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-border); transform: translateY(-3px); }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; font-size: .8125rem; color: var(--slate); }
.blog-card-title { font-size: 1rem; font-weight: 700; }
.blog-card-title a { color: var(--ink); transition: color .15s; }
.blog-card-title a:hover { color: var(--blue); }
.blog-card-excerpt { font-size: .875rem; line-height: 1.7; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: .875rem; font-weight: 700; color: var(--blue); }
.blog-post-hero { background: linear-gradient(135deg, var(--blue-dark), #1e40af); padding: 3.75rem 0; }
.blog-post-hero h1 { color: #fff; margin: .75rem 0; }
.blog-post-body { padding: 3rem 0; }
.blog-post-body h2 { color: var(--ink); margin: 2rem 0 .75rem; }
.blog-post-body p { margin-bottom: 1.25rem; }
.blog-post-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.blog-post-body ul li { margin-bottom: .5rem; }
.blog-cta-card { background: var(--blue-dark); border-radius: var(--radius-lg); padding: 2.5rem; text-align: center; margin: 2.5rem 0; }
.blog-cta-card h3 { color: #fff; margin-bottom: .5rem; }
.blog-cta-card p { color: rgba(255,255,255,.7); margin-bottom: 1.5rem; }
.blog-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== TEMPLATE GALLERY ===== */
.template-card.is-selected { border: 2px solid var(--blue) !important; box-shadow: 0 0 0 4px rgba(37,99,235,.15) !important; }
.template-card.is-hidden { display: none !important; }
.template-filter-bar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 68px; z-index: 40; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .designer-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 1.5rem 3rem; }
  .steps-row { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .designer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-grid-2, .form-grid-3 { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .navbar-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 1rem 1.5rem; gap: .25rem; box-shadow: var(--shadow-md); z-index: 99; }
  .navbar-toggle { display: flex; }
  .mobile-only-link { display: block !important; color: var(--blue); font-weight: 700; border-top: 1px solid var(--border); margin-top: .5rem; padding-top: .75rem; }
  #nav-order-btn { display: none; }
  .template-filter-bar { position: static; }
  .wa-fab-text { display: none; }
  .wa-fab { padding: 1rem; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 1.25rem 1rem; }
  .trust-bar-inner { gap: 1.25rem; }
}
@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .design-choices { grid-template-columns: 1fr; }
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .p-notes { gap: 1rem; }
}
