/* ============================================================
   НаКипр / NaKipr — Design System
   Palette: Mediterranean — deep navy, aegean sea, sun gold, sand
   ============================================================ */

:root {
  --navy: #0b2239;
  --navy-soft: #16334f;
  --sea: #0087b8;
  --sea-deep: #006494;
  --aqua: #00c2cb;
  --sun: #ffb703;
  --coral: #ff6b5e;
  --sand: #faf7f2;
  --card: #ffffff;
  --ink: #1c2b3a;
  --muted: #5a6b7c;
  --line: #e6e0d6;
  --grad-sea: linear-gradient(135deg, #0087b8 0%, #00c2cb 100%);
  --grad-hero: linear-gradient(160deg, #0b2239 0%, #123a5c 55%, #006494 100%);
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 40px -12px rgba(11, 34, 57, 0.18);
  --shadow-sm: 0 4px 16px -6px rgba(11, 34, 57, 0.14);
  --font-head: 'Unbounded', 'Arial Black', sans-serif;
  --font-body: 'Manrope', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --wrap: 1140px;
  --speed: 0.55s;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(1.9rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); }
h3 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1em; }

a { color: var(--sea-deep); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff;
  padding: 10px 18px; border-radius: 0 0 12px 0; z-index: 200;
}
.skip-link:focus { left: 0; }

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

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: 15px 30px; border-radius: 999px; border: 0; cursor: pointer;
  text-decoration: none; transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn-primary {
  background: var(--grad-sea); color: #fff;
  box-shadow: 0 8px 24px -8px rgba(0, 135, 184, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px -8px rgba(0, 135, 184, 0.6); }
.btn-primary:active { transform: translateY(-1px); }
.btn-sun { background: var(--sun); color: var(--navy); box-shadow: 0 8px 24px -8px rgba(255, 183, 3, 0.6); }
.btn-sun:hover { transform: translateY(-3px); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 2px solid rgba(11, 34, 57, 0.2);
}
.btn-ghost:hover { border-color: var(--sea); color: var(--sea-deep); transform: translateY(-2px); }
.hero .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.hero .btn-ghost:hover { border-color: var(--aqua); color: var(--aqua); }
.btn-lg { padding: 18px 40px; font-size: 1.08rem; }
.btn .arr { transition: transform 0.25s ease; }
.btn:hover .arr { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 14px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--navy);
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
}
.logo svg { width: 38px; height: 38px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -5px;
  width: 0; height: 2px; background: var(--sea); border-radius: 2px;
  transition: width 0.3s ease;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.lang-switch {
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em;
  border: 1.5px solid var(--line); border-radius: 999px; padding: 7px 14px;
  text-decoration: none; color: var(--muted); transition: all 0.25s ease;
}
.lang-switch:hover { border-color: var(--sea); color: var(--sea-deep); }
.nav-cta { padding: 11px 22px; font-size: 0.92rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2.5px; background: var(--navy);
  border-radius: 2px; margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--grad-hero);
  color: #fff;
  padding: clamp(70px, 10vw, 130px) 0 0;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
  padding-bottom: clamp(60px, 8vw, 110px);
}
.hero h1 { color: #fff; }
.hero h1 .accent {
  background: linear-gradient(90deg, var(--sun), #ffd35c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 34em; margin-bottom: 2em;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-note {
  margin-top: 18px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6);
  display: flex; align-items: center; gap: 8px;
}
.hero-visual { position: relative; }
.hero-visual svg { width: 100%; max-width: 520px; margin: 0 auto; }

/* floating blobs behind hero */
.blob {
  position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.45;
  pointer-events: none; z-index: 1;
}
.blob-1 { width: 420px; height: 420px; background: var(--aqua); top: -140px; right: -100px; animation: drift 14s ease-in-out infinite alternate; }
.blob-2 { width: 340px; height: 340px; background: var(--sun); bottom: -160px; left: -120px; opacity: 0.22; animation: drift 18s ease-in-out infinite alternate-reverse; }

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.12); }
}

/* wave divider */
.hero-wave { display: block; width: 100%; margin-top: -2px; position: relative; z-index: 2; }
.hero-wave svg { display: block; width: 100%; height: 70px; }

/* ---------- Stats ---------- */
.stats {
  position: relative; z-index: 3;
  margin-top: clamp(-60px, -4vw, -40px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  background: var(--card); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 30px 34px;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--sea-deep);
  display: block;
}
.stat-num sup { font-size: 0.5em; color: var(--coral); }
.stat-label { font-size: 0.86rem; color: var(--muted); margin-top: 4px; display: block; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 8vw, 110px) 0; }
.section-head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 56px); }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--sea);
  background: rgba(0, 135, 184, 0.09); border-radius: 999px;
  padding: 6px 16px; margin-bottom: 16px;
}
.section-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ---------- Services grid ---------- */
.cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: var(--card); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(230, 224, 214, 0.6);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--grad-sea);
  transition: transform 0.35s ease;
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; margin: 0; }

/* ---------- Why Cyprus ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 70px);
  align-items: center;
}
.split-visual svg { width: 100%; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; padding: 0; list-style: none; }
.chips li {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px; font-size: 0.9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.chips li:hover { transform: translateY(-2px); border-color: var(--sea); }
.chips .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--sun); flex: none; }
.other-countries {
  background: rgba(0, 194, 203, 0.08); border-left: 4px solid var(--aqua);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; font-size: 0.95rem; color: var(--muted);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative; background: var(--card); border-radius: var(--radius);
  padding: 36px 28px 30px; box-shadow: var(--shadow-sm);
}
.step-num {
  position: absolute; top: -22px; left: 28px;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--sun);
  font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  display: grid; place-items: center;
  box-shadow: 0 6px 18px -6px rgba(11, 34, 57, 0.5);
}
.step h3 { margin-top: 8px; }
.step p { color: var(--muted); font-size: 0.94rem; margin: 0; }
.step .free-badge {
  display: inline-block; margin-top: 14px;
  background: rgba(255, 183, 3, 0.16); color: #8a6100;
  font-weight: 700; font-size: 0.8rem; padding: 5px 12px; border-radius: 999px;
}

/* ---------- About ---------- */
.about {
  background: var(--navy); color: #fff; border-radius: calc(var(--radius) * 1.6);
  padding: clamp(40px, 6vw, 70px);
  display: grid; grid-template-columns: 260px 1fr; gap: clamp(30px, 5vw, 60px);
  align-items: center; position: relative; overflow: hidden;
}
.about::after {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 194, 203, 0.35), transparent 70%);
}
.about h2 { color: #fff; }
.about p { color: rgba(255, 255, 255, 0.8); }
.about-photo {
  width: 100%; max-width: 260px; aspect-ratio: 1;
  border-radius: 50%; overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.15);
  background: var(--grad-sea);
}
.about .signature { font-family: var(--font-head); color: var(--sun); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq details {
  background: var(--card); border-radius: var(--radius-sm);
  border: 1px solid var(--line); margin-bottom: 12px;
  transition: box-shadow 0.3s ease;
}
.faq details[open] { box-shadow: var(--shadow-sm); border-color: rgba(0, 135, 184, 0.35); }
.faq summary {
  cursor: pointer; font-weight: 700; padding: 20px 56px 20px 24px;
  list-style: none; position: relative; color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-head); font-size: 1.3rem; color: var(--sea);
  transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 0.96rem; }
.faq .faq-body p { margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--grad-hero); border-radius: calc(var(--radius) * 1.6);
  color: #fff; text-align: center;
  padding: clamp(50px, 7vw, 90px) 30px;
  position: relative; overflow: hidden;
}
.cta-band h2 { color: #fff; max-width: 18em; margin-left: auto; margin-right: auto; }
.cta-band p { color: rgba(255, 255, 255, 0.75); margin-bottom: 2em; }
.cta-band .sun-ring {
  position: absolute; width: 480px; height: 480px; border-radius: 50%;
  border: 60px solid rgba(255, 183, 3, 0.12);
  top: -240px; right: -160px; pointer-events: none;
  animation: pulse-ring 6s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy); color: rgba(255, 255, 255, 0.65);
  padding: 56px 0 32px; margin-top: clamp(64px, 8vw, 110px);
  font-size: 0.9rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer .logo { color: #fff; margin-bottom: 14px; }
.site-footer h3 { color: #fff; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: rgba(255, 255, 255, 0.65); text-decoration: none; transition: color 0.25s ease; }
.site-footer a:hover { color: var(--aqua); }
.footer-note { padding-top: 24px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity var(--speed) ease, transform var(--speed) cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ---------- Hero SVG animations ---------- */
.sun-spin { transform-box: fill-box; transform-origin: center; animation: sunspin 40s linear infinite; }
@keyframes sunspin { to { transform: rotate(360deg); } }
.wave-move { animation: wavemove 7s ease-in-out infinite alternate; }
.wave-move-2 { animation: wavemove 9s ease-in-out infinite alternate-reverse; }
@keyframes wavemove { from { transform: translateX(0); } to { transform: translateX(-28px); } }
.float-soft { animation: floatsoft 6s ease-in-out infinite alternate; }
@keyframes floatsoft { from { transform: translateY(0); } to { transform: translateY(-12px); } }

/* ---------- Hero scene (abstract route + glass cards) ---------- */
.hero-scene { position: relative; aspect-ratio: 26 / 22; max-width: 520px; margin: 0 auto; }
.hero-scene .orb {
  position: absolute; right: -10%; top: -12%; width: 58%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 183, 3, 0.5), rgba(255, 107, 94, 0.22) 55%, transparent 72%);
  filter: blur(4px);
}
.scene-route { position: absolute; inset: 0; height: 100%; }
.pin {
  position: absolute; left: 67.5%; top: 34.5%; transform: translate(-50%, -85%);
  display: flex; flex-direction: column; align-items: center;
}
.pin-icon { width: 46px; height: 46px; filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35)); }
.pin-ring {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255, 183, 3, 0.6); margin-top: -8px;
  animation: pinpulse 2.4s ease-out infinite;
}
@keyframes pinpulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
.pin-label {
  margin-top: 12px; color: #fff; font-weight: 700; font-size: 0.88rem;
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 4px 14px; border-radius: 999px;
}
.glass-card {
  position: absolute; display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 14px; padding: 12px 16px;
  color: #fff; font-weight: 700; font-size: clamp(0.78rem, 1.3vw, 0.95rem);
  box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.45);
  animation: floatsoft 6s ease-in-out infinite alternate;
  white-space: nowrap;
}
.gc-icon { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; flex: none; }
.gc-icon svg { width: 16px; height: 16px; }
.gc-1 { left: 0; top: 9%; animation-delay: -1.5s; }
.gc-2 { right: -2%; top: 60%; animation-delay: -3s; }
.gc-3 { left: 4%; bottom: 2%; animation-delay: -4.5s; }

/* ============================================================
   FUNNEL
   ============================================================ */
.funnel-page { min-height: 100dvh; display: flex; flex-direction: column; background: var(--sand); }
.funnel-header { padding: 18px 0; }
.funnel-header .nav-bar { padding: 0; }
.funnel-main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 20px 0 60px; }
.funnel-card {
  width: 100%; max-width: 640px; background: var(--card);
  border-radius: calc(var(--radius) * 1.3); box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
}
.progress {
  height: 8px; border-radius: 999px; background: #ede8df;
  overflow: hidden; margin-bottom: 34px;
}
.progress-bar {
  height: 100%; width: 0%; border-radius: 999px;
  background: var(--grad-sea);
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.funnel-step { display: none; }
.funnel-step.active { display: block; animation: stepin 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes stepin {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}
.funnel-step h1 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 6px; }
.funnel-step h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 6px; }
.step-hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }

.option-list { display: grid; gap: 12px; margin: 0 0 26px; padding: 0; border: 0; }
.option-list.two-col { grid-template-columns: 1fr 1fr; }
.option {
  position: relative; display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; cursor: pointer; background: #fff;
  transition: border-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  font-weight: 600; font-size: 0.98rem;
}
.option:hover { border-color: var(--sea); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.option input { position: absolute; opacity: 0; pointer-events: none; }
.option .emoji { font-size: 1.5rem; flex: none; }
.option:has(input:checked) {
  border-color: var(--sea); background: rgba(0, 135, 184, 0.06);
  box-shadow: 0 0 0 3px rgba(0, 135, 184, 0.14);
}
.option:has(input:focus-visible) { outline: 3px solid var(--aqua); outline-offset: 2px; }

.funnel-nav { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 8px; }
.btn-back {
  background: none; border: 0; cursor: pointer; color: var(--muted);
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 10px 14px; border-radius: 8px; transition: color 0.25s ease;
}
.btn-back:hover { color: var(--navy); }

.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 7px; color: var(--navy); }
.field input, .field textarea {
  width: 100%; border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  background: #fff; transition: border-color 0.25s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(0, 135, 184, 0.14); }
.field textarea { resize: vertical; min-height: 90px; }
.field .err { color: var(--coral); font-size: 0.84rem; margin-top: 5px; display: none; }
.field.invalid input { border-color: var(--coral); }
.field.invalid .err { display: block; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.88rem; color: var(--muted); margin: 4px 0 22px; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--sea); flex: none; }

.funnel-done { text-align: center; padding: 12px 0; }
.done-icon { width: 96px; height: 96px; margin: 0 auto 24px; }
.done-icon svg { width: 100%; height: 100%; }
.checkmark-circle { stroke-dasharray: 260; stroke-dashoffset: 260; animation: drawcircle 0.8s ease forwards; }
.checkmark-tick { stroke-dasharray: 60; stroke-dashoffset: 60; animation: drawtick 0.5s 0.6s ease forwards; }
@keyframes drawcircle { to { stroke-dashoffset: 0; } }
@keyframes drawtick { to { stroke-dashoffset: 0; } }
.calendly-fallback {
  background: rgba(0, 194, 203, 0.08); border-radius: var(--radius-sm);
  padding: 18px 20px; font-size: 0.95rem; color: var(--muted); margin-top: 20px;
}

/* ============================================================
   Blog
   ============================================================ */
.blog-card { display: flex; flex-direction: column; }
.blog-card-date { color: var(--muted); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; line-height: 1.35; }
.blog-card h3 a { color: var(--navy); text-decoration: none; transition: color 0.25s ease; }
.blog-card h3 a:hover { color: var(--sea-deep); }
.blog-card .more { margin-top: auto; padding-top: 14px; font-weight: 700; font-size: 0.9rem; color: var(--sea-deep); text-decoration: none; }
.blog-card .more:hover { text-decoration: underline; }

.article-main { max-width: 720px; margin: 0 auto; padding: clamp(40px, 6vw, 70px) 24px; }
.article-main h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.article-main h2 { font-size: 1.25rem; margin-top: 2em; }
.article-main p, .article-main li { font-size: 1rem; }
.article-main .lead { font-size: 1.12rem; color: var(--muted); }
.breadcrumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumbs a { color: var(--muted); }
.article-meta { color: var(--muted); font-size: 0.88rem; margin-bottom: 2.2em; }
.article-note {
  background: rgba(0, 194, 203, 0.08); border-left: 4px solid var(--aqua);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; font-size: 0.92rem; color: var(--muted); margin: 1.6em 0;
}
.article-cta {
  background: var(--grad-hero); color: #fff; border-radius: var(--radius);
  padding: 32px 28px; text-align: center; margin-top: 3em;
}
.article-cta h2 { color: #fff; margin-top: 0; font-size: 1.3rem; }
.article-cta p { color: rgba(255, 255, 255, 0.78); }

/* ============================================================
   Legal pages
   ============================================================ */
.legal-main { max-width: 760px; margin: 0 auto; padding: clamp(40px, 6vw, 70px) 24px; }
.legal-main h1 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.legal-main h2 { font-size: 1.2rem; margin-top: 2em; }
.legal-main p, .legal-main li { color: var(--muted); font-size: 0.96rem; }
.placeholder-box {
  background: rgba(255, 183, 3, 0.12); border: 1.5px dashed var(--sun);
  border-radius: var(--radius-sm); padding: 14px 18px; font-size: 0.9rem;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-scene { max-width: 420px; }
  .cards { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about-photo { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 65px 0 auto 0;
    background: var(--card); flex-direction: column; align-items: stretch;
    padding: 24px; gap: 18px; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 0 0 var(--radius) var(--radius);
    text-align: center;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .stats-grid { grid-template-columns: 1fr 1fr; padding: 24px; }
  .cards { grid-template-columns: 1fr; }
  .option-list.two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
}
