/* ==========================================================================
   Ecognity AI — Shared Stylesheet
   ========================================================================== */

:root {
  --navy-900: #0a1128;
  --navy-800: #101a3a;
  --navy-700: #17224d;
  --ink: #111827;
  --slate-600: #4b5568;
  --slate-500: #667085;
  --slate-200: #e4e7ee;
  --slate-100: #f1f3f8;
  --off-white: #f8f9fc;
  --white: #ffffff;

  --teal-400: #2fe6c8;
  --teal-500: #14c9a8;
  --teal-600: #0ea896;
  --violet-500: #7c6cf0;
  --violet-600: #6552e0;

  --gradient-brand: linear-gradient(120deg, #14c9a8 0%, #7c6cf0 100%);
  --gradient-hero: radial-gradient(circle at 15% 20%, rgba(124, 108, 240, 0.35), transparent 45%),
                    radial-gradient(circle at 85% 0%, rgba(47, 230, 200, 0.25), transparent 40%),
                    linear-gradient(160deg, #0a1128 0%, #101a3a 55%, #142255 100%);

  --shadow-sm: 0 2px 8px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 24, 40, 0.10);
  --shadow-lg: 0 20px 48px rgba(16, 24, 40, 0.16);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --container: 1140px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Sora', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}

.section {
  padding: 96px 0;
}
.section--tight { padding: 64px 0; }
.section--muted { background: var(--off-white); }
.section--navy {
  background: var(--gradient-hero);
  color: var(--white);
}
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head {
  max-width: 640px;
  margin: 0 0 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

h2 { font-size: clamp(1.8rem, 2.6vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
p { color: var(--slate-600); }
.lede { font-size: 1.15rem; color: var(--slate-600); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-brand);
  color: var(--navy-900);
  box-shadow: 0 10px 24px rgba(20, 201, 168, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(20, 201, 168, 0.36); }

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(17, 24, 39, 0.15);
  color: var(--navy-900);
}
.btn-outline:hover { border-color: var(--navy-900); transform: translateY(-2px); }

.section--navy .btn-outline,
.hero .btn-outline,
.page-hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}
.section--navy .btn-outline:hover,
.hero .btn-outline:hover,
.page-hero .btn-outline:hover { border-color: var(--white); }

.btn-whatsapp {
  background: #1fbf78;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(31, 191, 120, 0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); background: #17a768; }

.btn-block { width: 100%; }

/* Header ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--slate-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--slate-600);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--navy-900); }
.nav-links a.active { color: var(--navy-900); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -20px;
  height: 3px;
  border-radius: 3px;
  background: var(--gradient-brand);
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 11px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero ---------------------------------------------------------------- */
.hero {
  position: relative;
  color: var(--white);
  background: var(--gradient-hero);
  padding: 110px 0 120px;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 30% 20%, black, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--teal-400);
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(47, 230, 200, 0.2);
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 4.4vw, 3.4rem);
  margin-bottom: 22px;
}
.hero h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lede {
  color: rgba(255, 255, 255, 0.78);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
/* Hero visual panel */
.hero-panel {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(10, 17, 40, 0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 12px;
}
.hero-panel-row:last-child { margin-bottom: 0; }
.hero-panel-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand);
  flex-shrink: 0;
}
.hero-panel-icon svg { width: 18px; height: 18px; color: var(--navy-900); }
.hero-panel-text strong { display: block; font-size: 0.9rem; color: var(--white); }
.hero-panel-text span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }
.hero-panel-status {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--teal-400);
  background: rgba(47, 230, 200, 0.12);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Split media section (photo + text) --------------------------------------- */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-section.reverse .split-media { order: 2; }
.split-section.reverse .split-copy { order: 1; }
.split-media {
  position: relative;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px auto auto;
  width: 70%;
  height: 70%;
  background: var(--gradient-brand);
  opacity: 0.18;
  border-radius: var(--radius-lg);
  z-index: 0;
}
.split-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.split-copy ul { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.split-copy ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--slate-600);
}
.split-copy ul li svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; margin-top: 2px; }

/* Photo inside a service card */
.card-photo {
  margin: -32px -32px 20px;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  overflow: hidden;
  height: 180px;
}
.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card.has-photo .card-icon {
  margin-top: -46px;
  margin-left: 4px;
  box-shadow: var(--shadow-md);
  background: var(--white);
  position: relative;
  z-index: 2;
}

/* Full-bleed photo banner with quote overlay -------------------------------- */
.photo-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image:
    linear-gradient(160deg, rgba(10,17,40,0.82) 0%, rgba(16,26,58,0.72) 100%),
    var(--banner-photo);
  background-size: cover;
  background-position: center 30%;
}
.photo-banner-content { max-width: 640px; padding: 0 24px; }
.photo-banner .eyebrow { justify-content: center; color: var(--teal-400); }
.photo-banner blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}
.photo-banner cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

/* Logo strip --------------------------------------------------------------- */
.logo-strip {
  padding: 40px 0;
  border-bottom: 1px solid var(--slate-200);
}
.logo-strip p {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-500);
  margin-bottom: 28px;
}
.logo-strip-subheading {
  margin-top: 40px;
}
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.logo-row img {
  height: 34px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.logo-row img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* Cards --------------------------------------------------------------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--slate-100);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--teal-600); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.card ul li {
  font-size: 0.88rem;
  color: var(--slate-600);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.card ul li svg { width: 16px; height: 16px; color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }

/* Highlight / feature panel with gradient border */
.feature-panel {
  border-radius: var(--radius-lg);
  padding: 3px;
  background: var(--gradient-brand);
}
.feature-panel-inner {
  background: var(--white);
  border-radius: calc(var(--radius-lg) - 3px);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.feature-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--navy-800);
}

/* Steps ----------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
}
.step-number {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.9rem; }

/* Stat row --------------------------------------------------------------- */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-row strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-row span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* Testimonial ------------------------------------------------------------- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}
.testimonial-quote { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 22px; font-weight: 500; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient-brand);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-900);
  font-weight: 700;
  font-family: var(--font-display);
}
.testimonial-person strong { display: block; font-size: 0.92rem; color: var(--navy-900); }
.testimonial-person span { font-size: 0.82rem; color: var(--slate-500); }
.stars { color: var(--teal-500); font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }

/* CTA band ---------------------------------------------------------------- */
.cta-band {
  border-radius: var(--radius-lg);
  background: var(--gradient-hero);
  padding: 64px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.75); }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand { color: var(--white); margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.92rem; color: rgba(255,255,255,0.6); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--teal-400); }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease;
}
.footer-social a:hover { background: var(--gradient-brand); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* Floating WhatsApp button ------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1fbf78;
  color: var(--white);
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(31, 191, 120, 0.4);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 22px; height: 22px; }

/* Page hero (secondary pages) --------------------------------------------- */
.page-hero {
  background: var(--gradient-hero);
  color: var(--white);
  padding: 110px 0 120px;
  min-height: 750px;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 50% 0%, black, transparent 70%);
}
.page-hero .container { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 0 32px; }
.page-hero .hero-actions { margin-bottom: 0; }

.page-hero--photo {
  background-image:
    linear-gradient(160deg, rgba(10,17,40,0.75) 0%, rgba(16,26,58,0.6) 55%, rgba(20,34,85,0.55) 100%),
    var(--hero-photo);
  background-size: cover;
  background-position: center 30%;
}
.page-hero--photo::after { display: none; }

.breadcrumb {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a:hover { color: var(--teal-400); }

/* Course cards -------------------------------------------------------- */
.course-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course-top {
  padding: 24px 28px;
  background: var(--navy-900);
  background: var(--gradient-hero);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.course-level {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
}
.course-format { font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.course-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.course-body h3 { font-size: 1.2rem; }
.course-meta {
  display: flex;
  gap: 18px;
  margin: 18px 0;
  font-size: 0.82rem;
  color: var(--slate-500);
  flex-wrap: wrap;
}
.course-meta span { display: flex; align-items: center; gap: 6px; }
.course-meta svg { width: 15px; height: 15px; color: var(--teal-600); }
.course-body ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.course-body ul li {
  font-size: 0.87rem;
  color: var(--slate-600);
  display: flex;
  gap: 8px;
}
.course-body ul li svg { width: 15px; height: 15px; color: var(--teal-600); flex-shrink: 0; margin-top: 3px; }
.course-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--slate-200);
}
.course-price { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); }
.course-price span { display: block; font-size: 0.72rem; font-weight: 500; color: var(--slate-500); }

/* Timeline / schedule ------------------------------------------------- */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--slate-200);
}
.schedule-table th, .schedule-table td {
  text-align: left;
  padding: 16px 22px;
  font-size: 0.9rem;
}
.schedule-table thead {
  background: var(--slate-100);
}
.schedule-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-500);
  font-weight: 700;
}
.schedule-table tbody tr:not(:last-child) { border-bottom: 1px solid var(--slate-200); }
.schedule-table td { color: var(--slate-600); }
.badge-open {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 201, 168, 0.12);
  color: var(--teal-600);
}
.badge-few {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 176, 32, 0.14);
  color: #b9740a;
}

/* FAQ --------------------------------------------------------------------- */
.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy-900);
  font-size: 0.98rem;
}
.faq-question .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq-item.open .faq-question .icon { background: var(--gradient-brand); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; }

/* Contact page ------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--gradient-hero);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.contact-method {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-method:first-of-type { border-top: none; }
.contact-method-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 18px; height: 18px; color: var(--teal-400); }
.contact-method strong { display: block; font-size: 0.85rem; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 3px; }
.contact-method a, .contact-method span.value { font-size: 1rem; font-weight: 600; color: var(--white); }
.contact-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.contact-social a {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.contact-social a:hover { background: var(--gradient-brand); }
.contact-social svg { width: 17px; height: 17px; }

.form-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--slate-200);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--off-white);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--slate-500);
}
.field-check input { width: auto; margin-top: 3px; }
.form-note { font-size: 0.8rem; color: var(--slate-500); margin-top: 14px; text-align: center; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-alert.success { background: rgba(20, 201, 168, 0.12); color: var(--teal-600); border: 1px solid rgba(20, 201, 168, 0.3); }
.form-alert.error { background: rgba(220, 38, 38, 0.08); color: #b91c1c; border: 1px solid rgba(220, 38, 38, 0.25); }

.map-note {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--slate-100);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 24px;
}
.map-note svg { width: 30px; height: 30px; color: var(--teal-600); flex-shrink: 0; }

/* Utility ------------------------------------------------------------- */
.mt-64 { margin-top: 64px; }
.text-center { text-align: center; }

/* Responsive ---------------------------------------------------------- */
@media (max-width: 980px) {
  .hero-panel { order: -1; }
  .grid-3, .grid-2, .steps, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-panel-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; gap: 32px; }
  .split-section.reverse .split-media, .split-section.reverse .split-copy { order: initial; }
  .split-media img { height: 300px; }
}

@media (max-width: 720px) {
  .hero, .page-hero { min-height: 0; }
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: var(--shadow-md);
  }
  .nav.open .nav-links a.active::after { display: none; }
  .grid-3, .grid-2, .steps, .stat-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 64px 0; }
  .feature-panel-inner { padding: 28px; }
  .whatsapp-float span.wa-label { display: none; }
}
