:root {
  --primary: #1A9E8F;
  --primary-dark: #157d72;
  --dark: #1A2E3B;
  --dark-2: #0f1f29;
  --gold: #F4A72A;
  --gold-dark: #d88f15;
  --bg: #FAFAF8;
  --text: #1A2E3B;
  --muted: #6b7c8a;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px -20px rgba(26, 46, 59, 0.25);
  --shadow-md: 0 10px 30px -10px rgba(26, 46, 59, 0.18);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  transition: all .35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 30px rgba(26,46,59,.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--white);
  transition: color .35s;
}
.navbar.scrolled .logo { color: var(--dark); }
.logo-main { letter-spacing: .02em; }
.logo-key { font-size: 20px; transform: translateY(-1px); }
.logo-sub { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: .25em; color: var(--gold); margin-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,.92);
  position: relative;
  transition: color .25s;
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--gold); transition: width .3s;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: 10px 20px; border-radius: 999px;
  font-weight: 600; font-size: 14px;
  box-shadow: 0 6px 20px rgba(244,167,42,.35);
  transition: transform .2s, box-shadow .2s;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(244,167,42,.5); }

.lang-switcher { display: flex; gap: 4px; background: rgba(255,255,255,.12); padding: 4px; border-radius: 999px; backdrop-filter: blur(8px); }
.navbar.scrolled .lang-switcher { background: rgba(26,46,59,.08); }
.lang-switcher button {
  border: 0; background: transparent; cursor: pointer;
  font-size: 16px; padding: 6px 10px; border-radius: 999px;
  transition: all .2s; opacity: .65;
}
.lang-switcher button.active { background: var(--white); opacity: 1; box-shadow: 0 2px 8px rgba(0,0,0,.1); }
.lang-switcher button:hover { opacity: 1; }

.mobile-toggle { display: none; background: transparent; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 4px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: background .3s; }
.navbar.scrolled .mobile-toggle span { background: var(--dark); }

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: rgba(255,255,255,.97); backdrop-filter: blur(16px); padding: 24px; gap: 18px; align-items: flex-start; box-shadow: 0 10px 30px rgba(0,0,0,.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--dark) !important; }
  .mobile-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--white); text-align: center;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/hero.jpg');
  background-image: -webkit-image-set(
    url('/img/hero.avif') type('image/avif'),
    url('/img/hero.webp') type('image/webp'),
    url('/img/hero.jpg') type('image/jpeg')
  );
  background-image: image-set(
    url('/img/hero.avif') type('image/avif'),
    url('/img/hero.webp') type('image/webp'),
    url('/img/hero.jpg') type('image/jpeg')
  );
  background-size: cover; background-position: center;
  transform: scale(1.08);
  animation: slowZoom 18s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes slowZoom { to { transform: scale(1.18); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(26,158,143,.45), transparent 60%),
    linear-gradient(180deg, rgba(15,31,41,.55) 0%, rgba(15,31,41,.85) 100%);
}
.hero-content { position: relative; max-width: 880px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 13px; letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  border: 1px solid rgba(244,167,42,.4);
  padding: 8px 18px; border-radius: 999px;
  background: rgba(244,167,42,.08);
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(36px, 6.5vw, 76px);
  font-weight: 700; margin-bottom: 24px;
  text-shadow: 0 4px 30px rgba(0,0,0,.3);
}
.caret { display: inline-block; color: var(--gold); animation: blink 1s step-end infinite; margin-left: 4px; font-weight: 300; }
@keyframes blink { 50% { opacity: 0; } }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,.88);
  max-width: 620px; margin: 0 auto 36px;
}
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 32px; border-radius: 999px;
  font-weight: 600; font-size: 16px;
  transition: all .25s ease; cursor: pointer;
  border: 0; font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: 0 12px 40px rgba(244,167,42,.45);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(244,167,42,.6); }
.btn-wide { width: 100%; padding: 18px 28px; }

.hero-meta {
  display: flex; justify-content: center; gap: 48px;
  margin-top: 56px; flex-wrap: wrap;
  color: rgba(255,255,255,.78); font-size: 14px;
}
.hero-meta strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--white); margin-bottom: 4px; }

/* ---------- SECTIONS ---------- */
section { padding: 120px 0; position: relative; }
.section-title { font-size: clamp(30px, 4vw, 46px); margin-bottom: 16px; max-width: 760px; }
.section-sub { font-size: 17px; color: var(--muted); margin-bottom: 56px; max-width: 600px; }
.section-title.light, .section-sub.light { color: var(--white); }
.section-sub.light { color: rgba(255,255,255,.72); }

/* ---------- PAINS ---------- */
.pains {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--white);
  position: relative;
}
.pains::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(26,158,143,.18), transparent 50%);
  pointer-events: none;
}
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; position: relative; }
.glass-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: all .35s;
}
.glass-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); border-color: rgba(244,167,42,.4); }
.pain-icon { font-size: 38px; margin-bottom: 18px; display: inline-block; transition: transform .4s; }
.glass-card:hover .pain-icon { transform: scale(1.15) rotate(-6deg); }
.glass-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--white); }
.glass-card p { color: rgba(255,255,255,.75); font-size: 15px; }

/* ---------- HOW ---------- */
.how { background: var(--bg); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.timeline-line {
  position: absolute; top: 36px; left: 12%; right: 12%; height: 3px;
  background: rgba(26,46,59,.08); border-radius: 3px; overflow: hidden;
}
.timeline-progress {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transition: width 1.2s ease-out;
}
.timeline.in-view .timeline-progress { width: 100%; }
.timeline-step { text-align: center; padding: 0 12px; }
.step-num {
  width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: 24px;
  color: var(--primary);
  position: relative; z-index: 2;
  box-shadow: 0 10px 30px rgba(26,158,143,.18);
  transition: all .3s;
}
.timeline-step:hover .step-num { background: var(--primary); color: var(--white); transform: translateY(-4px); }
.timeline-step h3 { font-size: 22px; margin-bottom: 10px; }
.timeline-step p { color: var(--muted); }

@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; gap: 40px; }
  .timeline-line { display: none; }
}

/* ---------- SERVICES ---------- */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.service-card {
  background: var(--bg);
  border: 1px solid rgba(26,46,59,.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s, border-color .3s;
  cursor: default;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); }
.svc-cover { aspect-ratio: 4 / 3; overflow: hidden; background: rgba(26,46,59,.06); }
.svc-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); }
.service-card:hover .svc-cover img { transform: scale(1.06); }
.svc-body { padding: 22px 22px 26px; }
.svc-icon { font-size: 28px; margin-bottom: 10px; display: inline-block; }
.service-card h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--dark); }
.service-card p { font-size: 14px; color: var(--muted); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  background: linear-gradient(135deg, var(--dark) 0%, #14252f 100%);
  color: var(--white);
}
.testi-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  transition: all .35s;
}
.testi-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; }
.testi-card p { font-family: 'Playfair Display', serif; font-style: italic; font-size: 18px; line-height: 1.5; color: rgba(255,255,255,.92); margin-bottom: 24px; }
.testi-meta { display: flex; align-items: center; gap: 14px; font-size: 14px; }
.testi-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid rgba(244,167,42,.45); box-shadow: 0 4px 14px rgba(0,0,0,.25); }
.testi-meta-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.testi-meta .flag { font-size: 20px; margin-bottom: 2px; }
.testi-meta strong { color: var(--white); font-weight: 600; }
.testi-meta-text span:last-child { color: rgba(255,255,255,.55); font-size: 13px; }
.testi-dots { display: none; gap: 8px; justify-content: center; margin-top: 24px; }

@media (max-width: 880px) {
  .testi-track { grid-template-columns: 100%; overflow-x: auto; scroll-snap-type: x mandatory; gap: 16px; padding-bottom: 8px; -webkit-overflow-scrolling: touch; }
  .testi-card { scroll-snap-align: center; min-width: 85%; }
  .testi-dots { display: flex; }
  .testi-dots span { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); transition: all .3s; }
  .testi-dots span.active { background: var(--gold); width: 24px; border-radius: 4px; }
}

/* ---------- GALLERY ---------- */
.gallery { background: var(--white); padding: 120px 0; }
.gallery .section-title, .gallery .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 48px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: zoom-in;
  background: rgba(26,46,59,.06);
  box-shadow: 0 6px 20px rgba(26,46,59,.08);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .35s; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.85); }
.gallery-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 16px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 13.5px;
  background: linear-gradient(180deg, transparent, rgba(15,31,41,.78));
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.gallery-item:hover figcaption,
.gallery-item:focus-within figcaption { opacity: 1; transform: translateY(0); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; gap: 10px; }
  .gi-tall { grid-row: span 2; }
  .gi-wide { grid-column: span 2; grid-row: span 1; }
  .gallery-item figcaption { opacity: 1; transform: none; font-size: 12px; padding: 20px 12px 10px; }
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(8, 16, 22, .94);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; transition: opacity .25s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.open { opacity: 1; }
.lb-frame { max-width: min(1100px, 92vw); max-height: 88vh; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lb-frame img { max-width: 100%; max-height: 80vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); animation: lbZoom .35s cubic-bezier(.2,.8,.2,1); }
@keyframes lbZoom { from { transform: scale(.96); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-frame figcaption { color: rgba(255,255,255,.85); font-size: 14px; text-align: center; font-family: 'DM Sans', sans-serif; }
.lb-close, .lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  color: var(--white); cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%;
  font-size: 28px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s;
  font-family: inherit;
}
.lb-close:hover, .lb-nav:hover { background: rgba(244,167,42,.85); color: var(--dark); transform: translateY(-50%) scale(1.06); }
.lb-close { top: 22px; right: 22px; transform: none; width: 44px; height: 44px; font-size: 26px; }
.lb-close:hover { transform: scale(1.08); }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
@media (max-width: 720px) {
  .lb-nav { width: 42px; height: 42px; font-size: 22px; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; }
}

/* ---------- CHATBOT ---------- */
.chat-section { background: var(--bg); padding: 100px 0; }
.chat-header-text { text-align: center; margin-bottom: 48px; }
.chat-header-text .section-title, .chat-header-text .section-sub { margin-left: auto; margin-right: auto; }

.chat-window {
  max-width: 720px; margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(26,46,59,.06);
  display: flex; flex-direction: column;
  height: 640px; max-height: 85vh;
}
.chat-topbar {
  display: flex; align-items: center; gap: 14px;
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
}
.chat-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
}
.chat-name { font-weight: 600; font-size: 15px; font-family: 'DM Sans', sans-serif; }
.chat-status { display: flex; align-items: center; gap: 6px; font-size: 12px; opacity: .85; }
.chat-status .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 8px #4ade80; }

.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 24px 20px;
  background:
    repeating-linear-gradient(45deg, rgba(26,158,143,.025) 0 1px, transparent 1px 14px),
    #f7f7f3;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(26,46,59,.15); border-radius: 6px; }

.msg { display: flex; gap: 8px; animation: msgIn .3s ease-out; max-width: 80%; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg.ai { align-self: flex-start; }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg-avatar { width: 32px; height: 32px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; align-self: flex-end; overflow: hidden; box-shadow: 0 2px 6px rgba(0,0,0,.12); }
.msg-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.msg.user .msg-avatar { background: var(--dark); }
.chat-sub-name { font-weight: 400; opacity: .65; font-size: 12px; margin-left: 4px; }
.msg-bubble {
  padding: 12px 16px; border-radius: 18px;
  font-size: 15px; line-height: 1.45;
  white-space: pre-wrap; word-break: break-word;
}
.msg.ai .msg-bubble { background: var(--primary); color: var(--white); border-bottom-left-radius: 6px; box-shadow: 0 4px 14px rgba(26,158,143,.18); }
.msg.user .msg-bubble { background: var(--white); color: var(--dark); border: 1px solid rgba(26,46,59,.08); border-bottom-right-radius: 6px; }
.msg-time { font-size: 11px; color: var(--muted); margin-top: 4px; padding: 0 6px; }
.msg.user .msg-time { text-align: right; }

.typing { display: flex; align-items: center; gap: 4px; padding: 14px 18px; background: var(--primary); border-radius: 18px; border-bottom-left-radius: 6px; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.7); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .15s; }
.typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

.chat-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 20px 12px; background: #f7f7f3; }
.chip {
  background: var(--white); border: 1px solid var(--primary); color: var(--primary);
  padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 500;
  cursor: pointer; transition: all .2s; font-family: inherit;
}
.chip:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }

.chat-input-bar {
  display: flex; gap: 10px; align-items: center;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid rgba(26,46,59,.08);
}
#chatInput {
  flex: 1; border: 0; outline: none;
  background: var(--bg); border-radius: 999px;
  padding: 12px 18px; font-size: 15px; font-family: inherit;
  color: var(--dark);
}
#chatInput:focus { box-shadow: 0 0 0 2px var(--primary); }
.send-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  box-shadow: 0 6px 16px rgba(244,167,42,.4);
}
.send-btn:hover { transform: scale(1.06); }
.send-btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.chat-footer-cta { padding: 16px 18px; background: var(--white); border-top: 1px solid rgba(26,46,59,.08); }

/* ---------- FOOTER ---------- */
.footer { background: var(--dark); color: rgba(255,255,255,.78); padding: 64px 0 24px; }
.footer .logo.light { color: var(--white); }
.tagline { font-family: 'Playfair Display', serif; font-style: italic; margin-top: 14px; color: rgba(255,255,255,.6); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 40px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 14px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }

/* ---------- FAQ ---------- */
.faq { background: var(--cream); padding: 120px 0; }
.faq-list { max-width: 820px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--white); border-radius: 14px; padding: 22px 26px; box-shadow: 0 4px 20px rgba(0,0,0,.04); border: 1px solid rgba(0,0,0,.05); transition: box-shadow .2s, transform .2s; }
.faq-item:hover { box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.faq-item summary { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 600; color: var(--ink); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 28px; font-weight: 300; line-height: 1; transition: transform .25s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 14px; color: #4a5560; line-height: 1.7; font-size: 16px; }
.footer h5 { font-family: 'DM Sans', sans-serif; color: var(--white); font-size: 13px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 14px; }
.wa-link { display: inline-block; color: var(--gold); font-weight: 600; margin-bottom: 8px; transition: color .2s; }
.wa-link:hover { color: var(--white); }
.muted { color: rgba(255,255,255,.5); font-size: 14px; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.5); }

@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }

/* ---------- REVEAL ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 720px) {
  section { padding: 80px 0; }
  .hero { padding-top: 100px; }
  .hero-meta { gap: 24px; }
  .hero-meta strong { font-size: 22px; }
}

/* ---------- SEO LANDING PAGES ---------- */
.seo-nav { position: sticky; top: 0; z-index: 100; background: rgba(26,46,59,.96); backdrop-filter: blur(10px); padding: 16px 0; }
.seo-nav .nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; }
.seo-nav .logo { color: var(--white); display: flex; align-items: center; gap: 6px; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; text-decoration: none; }
.seo-nav .logo .logo-sub { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .15em; color: var(--gold); margin-left: 4px; }
.seo-nav .nav-cta { background: var(--gold); color: var(--dark); padding: 10px 20px; border-radius: 999px; font-weight: 600; font-size: 14px; text-decoration: none; }
.seo-hero { background: linear-gradient(135deg, #1A2E3B 0%, #2c4a5e 100%); color: var(--white); padding: 100px 0 80px; }
.seo-hero .container { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.seo-hero .breadcrumbs { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.seo-hero .breadcrumbs a { color: var(--gold); text-decoration: none; }
.seo-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 5vw, 52px); line-height: 1.15; margin: 0 0 20px; }
.seo-hero .lede { font-size: 19px; line-height: 1.6; color: rgba(255,255,255,.85); max-width: 720px; }
.seo-hero .meta { display: flex; gap: 24px; margin-top: 28px; font-size: 14px; color: rgba(255,255,255,.65); flex-wrap: wrap; }
.seo-hero .meta span strong { color: var(--white); }

.seo-article { max-width: 780px; margin: 0 auto; padding: 60px 24px 80px; color: #2a3540; line-height: 1.75; font-size: 17px; }
.seo-article .answer-box { background: linear-gradient(135deg, #FFF8EC 0%, #FFEFD0 100%); border-left: 4px solid var(--gold); padding: 22px 26px; border-radius: 10px; margin: 0 0 32px; font-size: 17px; }
.seo-article .answer-box strong { color: var(--dark); }
.seo-article .stat-bar { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; margin: 32px 0; }
.seo-article .stat-bar .stat { background: var(--cream); border-radius: 12px; padding: 22px; text-align: center; }
.seo-article .stat-bar .stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 28px; color: var(--dark); margin-bottom: 4px; }
.seo-article .stat-bar .stat span { font-size: 13px; color: #5a6570; }
.seo-article h2 { font-family: 'Playfair Display', serif; font-size: 30px; margin: 56px 0 18px; color: var(--dark); }
.seo-article h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 36px 0 12px; color: var(--dark); }
.seo-article p { margin: 0 0 16px; }
.seo-article ul, .seo-article ol { padding-left: 24px; margin: 0 0 20px; }
.seo-article li { margin-bottom: 8px; }
.seo-article table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 15px; }
.seo-article th, .seo-article td { padding: 12px 14px; text-align: left; border-bottom: 1px solid #e5e9ed; }
.seo-article th { background: var(--cream); font-weight: 600; color: var(--dark); }
.seo-article blockquote { border-left: 3px solid var(--gold); padding: 4px 0 4px 20px; margin: 24px 0; font-style: italic; color: #4a5560; }
.seo-article a { color: #1A6E8C; text-decoration: underline; }
.seo-article .source { font-size: 13px; color: #6a7580; margin-top: 32px; padding-top: 16px; border-top: 1px solid #e5e9ed; }
.seo-cta { background: var(--dark); color: var(--white); padding: 56px 24px; text-align: center; }
.seo-cta h3 { font-family: 'Playfair Display', serif; font-size: 28px; margin: 0 0 12px; }
.seo-cta p { margin: 0 0 24px; color: rgba(255,255,255,.75); }
.seo-cta .btn { display: inline-block; background: var(--gold); color: var(--dark); padding: 14px 32px; border-radius: 999px; font-weight: 700; text-decoration: none; }
.seo-related { background: var(--cream); padding: 48px 24px; }
.seo-related .container { max-width: 880px; margin: 0 auto; }
.seo-related h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin: 0 0 20px; color: var(--dark); text-align: center; }
.seo-related ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.seo-related li a { display: block; background: var(--white); padding: 18px 20px; border-radius: 10px; text-decoration: none; color: var(--dark); font-weight: 600; box-shadow: 0 2px 12px rgba(0,0,0,.04); transition: transform .2s, box-shadow .2s; }
.seo-related li a:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
