/* KI Solutions — complete design system */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  /* Brand: shield purple + orange (.in accent) from kaisolution.in logos */
  --blue:        #7C3AED;
  --blue-dark:   #5B21B6;
  --blue-navy:   #1a0f2e;
  --blue-light:  #EDE9FE;
  --blue-mid:    #A78BFA;
  --orange:      #F97316;
  --orange-dark: #EA580C;
  --orange-light:#FFF7ED;
  --green:       #16a34a;
  --green-light: #dcfce7;
  --wa-green:    #128c7e;
  --wa-dark:     #0a7468;

  --text:        #111827;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;

  --bg:          #ffffff;
  --bg-soft:     #FAF8FF;
  --bg-section:  #F5F3FF;

  --border:      #e5e7eb;
  --border-dark: #d1d5db;

  --shadow-xs: 0 1px 2px rgba(0,0,0,.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 24px rgba(0,0,0,.08), 0 4px 8px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 40px rgba(0,0,0,.10), 0 8px 16px rgba(0,0,0,.05);

  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max:       1200px;
  --font:      "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--font); font-size: 1rem; }

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

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 9999;
  padding: .5rem 1rem; background: var(--blue); color: #fff;
  font-weight: 600; border-radius: 6px;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: .5rem;
}

.section-title-center {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.03em;
  text-align: center;
  margin-bottom: .5rem;
}

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin-inline: auto;
  line-height: 1.6;
}

.section-lead-center {
  font-size: 1.05rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

/* ─── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .45rem; padding: .75rem 1.5rem;
  font-family: var(--font); font-weight: 700; font-size: .95rem;
  border-radius: 999px; border: 2px solid transparent;
  text-decoration: none; white-space: nowrap;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s, transform .15s;
  cursor: pointer;
}
.btn:active { transform: scale(.97); }

.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.15rem; font-size: .85rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(124,58,237,.35); }

.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); box-shadow: 0 4px 16px rgba(249,115,22,.4); }

.btn-wa { background: var(--wa-green); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); box-shadow: 0 4px 16px rgba(18,140,126,.35); }

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

.btn-wa-outline { background: transparent; color: var(--wa-green); border-color: var(--wa-green); }
.btn-wa-outline:hover { background: #f0faf9; }

/* ─── LOGO TEXT ─────────────────────────────────────────── */
.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: .05em;
  text-decoration: none;
  line-height: 1;
  user-select: none;
}

.logo-kai {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--blue);
  font-style: italic;
}

.logo-solution {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  text-transform: lowercase;
}

/* Footer variant — inverted colours */
.logo-text-footer .logo-kai    { color: #FB923C; }
.logo-text-footer .logo-solution { color: rgba(255,255,255,.75); }

/* ─── HEADER ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0,0,0,.05);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: .75rem 0;
}

.header-logo {
  display: block;
  line-height: 0;
}

.header-logo img {
  display: block;
  width: min(280px, 52vw);
  height: auto;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.nav-toggle-input { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }

.nav-toggle {
  display: none;
  grid-column: 3;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 0;
  border: 1.5px solid var(--border); border-radius: 10px;
  background: #fff; cursor: pointer;
}
.bar { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 1px; margin-inline: auto; transition: transform .2s, opacity .2s; }

.site-nav {
  grid-column: 2 / -1;
  display: flex; align-items: center; justify-content: flex-end;
  gap: 2rem;
}

.nav-list {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: .25rem 1.5rem;
}
.nav-list a {
  font-size: .9rem; font-weight: 500; color: var(--text-muted);
  padding: .35rem 0; transition: color .15s;
}
.nav-list a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: .65rem; }

.header-phone-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .88rem; font-weight: 700; color: var(--blue);
  padding: .45rem .85rem; border-radius: 999px;
  border: 1.5px solid var(--blue-light); background: var(--blue-light);
  transition: background .15s;
}
.header-phone-link:hover { background: #DDD6FE; }

/* Mobile nav */
@media (max-width: 1023px) {
  .nav-toggle { display: flex; }
  .header-row { grid-template-columns: 1fr auto; }

  .site-nav {
    display: none;
    grid-column: 1 / -1; flex-direction: column;
    align-items: stretch; gap: 0;
    padding: .5rem 0 1.25rem;
    border-top: 1px solid var(--border); margin-top: .5rem;
  }
  #nav-open:checked ~ .site-nav { display: flex; }

  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list a { display: block; padding: .8rem 0; border-bottom: 1px solid var(--border); font-size: 1rem; }
  .nav-list li:last-child a { border-bottom: none; }

  .header-actions { padding-top: .75rem; justify-content: flex-start; flex-wrap: wrap; }
  .header-phone-link { display: none; }
}

@media (min-width: 1024px) {
  .site-nav { grid-column: 2 / -1; display: contents; }
  .nav-list { grid-column: 2; justify-self: center; }
  .header-actions { grid-column: 3; justify-self: end; }
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--blue-navy) 0%, #2e1065 42%, #5B21B6 100%);
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 30%, rgba(249,115,22,.22) 0%, transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(124,58,237,.2) 0%, transparent 55%),
    repeating-linear-gradient(-10deg, transparent, transparent 20px, rgba(255,255,255,.025) 20px, rgba(255,255,255,.025) 21px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.85); margin-bottom: 1.25rem;
  padding: .45rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 6px #4ade80;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50% { opacity: .7; box-shadow: 0 0 12px #4ade80; }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.12;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-title-highlight { color: #FB923C; }

.hero-sub {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,.78); line-height: 1.65;
  margin-bottom: 2rem; max-width: 34rem;
}

.hero-cta-row { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  font-size: .88rem; color: rgba(255,255,255,.72); font-weight: 500;
}
.hero-check { color: #4ade80; margin-right: .2rem; }

/* Price card */
.hero-visual { display: flex; justify-content: center; }

.price-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  width: 100%;
  max-width: 380px;
}

.price-card-header {
  display: flex; align-items: center; gap: .65rem;
  padding: 1.1rem 1.4rem;
  background: var(--blue-navy);
  color: #fff; font-weight: 700; font-size: .95rem;
}
.price-card-icon { font-size: 1.2rem; }

.price-card-list {
  padding: .5rem 0;
}
.price-card-list li {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: .92rem;
}
.price-card-list li:last-child { border-bottom: none; }

.pci-left { display: flex; align-items: center; gap: .6rem; color: var(--text); font-weight: 500; }
.pci-emoji { font-size: 1.15rem; }
.pci-price { font-weight: 800; color: var(--orange); font-size: .97rem; white-space: nowrap; }

.price-card-link {
  display: block; padding: .9rem 1.4rem;
  text-align: center; font-weight: 700; font-size: .88rem;
  color: var(--blue); background: var(--blue-light);
  transition: background .15s;
}
.price-card-link:hover { background: #DDD6FE; }

/* ─── TRUST BAR ──────────────────────────────────────────── */
.trust-bar {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 1rem 0;
}

.trust-item {
  flex: 1; min-width: 140px;
  text-align: center; padding: .5rem 1rem;
}
.trust-num {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800; letter-spacing: -.02em; color: var(--blue); line-height: 1;
  margin-bottom: .25rem;
}
.trust-label { font-size: .8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }

.trust-divider {
  width: 1px; height: 2.5rem; background: var(--border-dark);
  align-self: center;
}

@media (max-width: 599px) {
  .trust-divider:nth-child(4) { display: none; }
  .trust-bar-inner { gap: 0; }
  .trust-item { min-width: 45%; }
}

/* ─── SERVICES ───────────────────────────────────────────── */
.services-section { background: var(--bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.svc-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  transition: box-shadow .22s, transform .22s, border-color .22s;
}
.svc-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
  transform: translateY(-3px);
}

.svc-card-wide { grid-column: 1 / -1; }
@media (min-width: 860px) {
  .svc-card-wide { grid-column: span 2; }
}

.svc-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .28rem .65rem; border-radius: 999px; color: #fff;
}
.svc-badge-popular { background: var(--orange); }

.svc-card-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--icon-bg, #EDE9FE);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; line-height: 1;
  margin-bottom: 1.1rem;
  transition: transform .2s;
}
.svc-card:hover .svc-card-icon { transform: scale(1.08); }

.svc-card-title {
  font-size: 1.1rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .5rem; color: var(--text);
}

.svc-card-desc {
  font-size: .92rem; color: var(--text-muted); line-height: 1.6;
  flex: 1; margin-bottom: 1.25rem;
}

.svc-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .75rem; margin-top: auto;
  padding-top: 1.1rem; border-top: 1px solid var(--border);
}

.svc-price { font-size: .85rem; color: var(--text-muted); font-weight: 500; }
.svc-price strong { color: var(--orange); font-size: 1.05rem; }

.svc-btn {
  display: inline-flex; align-items: center;
  font-size: .83rem; font-weight: 700; color: var(--blue);
  padding: .45rem .95rem; border-radius: 999px;
  background: var(--blue-light); border: none;
  transition: background .15s; white-space: nowrap;
}
.svc-btn:hover { background: #DDD6FE; }

/* ─── HOW IT WORKS ───────────────────────────────────────── */
.hiw-section { background: var(--bg-section); }

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .hiw-steps {
    grid-template-columns: 1fr 40px 1fr 40px 1fr;
    align-items: center;
  }
}

.hiw-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 2rem 1.5rem;
  background: #fff; border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.hiw-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem;
}

.hiw-icon { font-size: 2.5rem; line-height: 1; margin-bottom: 1rem; }

.hiw-title {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .5rem;
}

.hiw-desc { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

.hiw-connector {
  display: none;
}
@media (min-width: 768px) {
  .hiw-connector {
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--border-dark);
    position: relative;
  }
  .hiw-connector::after {
    content: '→';
    font-size: 1.75rem; color: var(--blue-light); font-weight: 700;
  }
}

.hiw-cta { text-align: center; }

/* ─── WHY US ─────────────────────────────────────────────── */
.why-section { background: var(--bg); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow .2s, border-color .2s;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--blue-light); }

.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}

.why-title {
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .5rem;
}
.why-desc { font-size: .92rem; color: var(--text-muted); line-height: 1.6; }

/* ─── TESTIMONIALS ───────────────────────────────────────── */
.testimonials-section { background: var(--bg-section); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow .2s, transform .2s;
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.review-stars { font-size: 1.1rem; color: #f59e0b; letter-spacing: .05em; }

.review-text {
  font-size: .95rem; color: var(--text); line-height: 1.7;
  font-style: italic; flex: 1;
}

.review-name { font-weight: 800; font-size: .95rem; color: var(--text); }
.review-meta { font-size: .8rem; color: var(--text-muted); margin-top: .15rem; }

/* ─── BRANDS ─────────────────────────────────────────────── */
.brands-section { background: var(--bg); }

.brands-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: .65rem;
  margin-top: 1.5rem;
}

.brand-chip {
  padding: .55rem 1.2rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  transition: background .15s, border-color .15s, color .15s;
  cursor: default;
}
.brand-chip:hover { background: var(--blue-light); border-color: var(--blue-light); color: var(--blue); }

/* ─── PRICING ────────────────────────────────────────────── */
.pricing-section { background: var(--bg-section); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.pricing-card-wide { grid-column: 1 / -1; }
@media (min-width: 900px) {
  .pricing-card-wide { grid-column: span 2; }
}

.pricing-card-head {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: color-mix(in srgb, var(--head-color) 12%, #fff);
  border-bottom: 2px solid color-mix(in srgb, var(--head-color) 20%, transparent);
}
.pricing-emoji { font-size: 2rem; line-height: 1; }
.pricing-card-title { font-size: 1.05rem; font-weight: 800; letter-spacing: -.02em; color: var(--text); }
.pricing-card-sub { font-size: .8rem; color: var(--text-muted); margin-top: .15rem; }

.pricing-card-body { padding: 1.25rem 1.5rem; flex: 1; }

.price-table { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 0; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem .85rem;
  background: var(--bg-soft); border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .9rem;
}
.price-row dt { font-weight: 600; color: var(--text); }
.price-row dd { font-weight: 800; color: var(--orange); white-space: nowrap; margin: 0; }
.price-row-highlight { border-color: color-mix(in srgb, var(--orange) 30%, transparent); background: var(--orange-light); }
.price-row-highlight dd { color: var(--orange-dark); }

.pricing-note {
  font-size: .87rem; color: var(--text-muted); line-height: 1.55;
}

.pricing-features {
  margin-top: 1rem; list-style: none;
  display: flex; flex-direction: column; gap: .4rem;
}
.pricing-features li {
  font-size: .88rem; color: var(--text-muted);
  padding-left: 1.4rem; position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green); font-weight: 800; font-size: .85rem;
}

.pricing-card-cta {
  display: flex; flex-wrap: wrap; gap: .65rem;
  padding: 1.1rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-soft);
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-section { background: var(--bg); }

.faq-inner { max-width: 780px; margin-inline: auto; }

.faq-list { display: flex; flex-direction: column; gap: .65rem; margin-top: .5rem; }

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item[open] { border-color: var(--blue-light); box-shadow: var(--shadow-sm); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-weight: 700; font-size: 1rem; color: var(--text);
  cursor: pointer; list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.35rem; font-weight: 400; color: var(--blue);
  flex-shrink: 0; transition: transform .2s;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-item[open] .faq-q { color: var(--blue); }

.faq-a {
  padding: 0 1.4rem 1.25rem;
  font-size: .95rem; color: var(--text-muted); line-height: 1.7;
}
.faq-a p { margin: 0; }

/* ─── CONTACT ────────────────────────────────────────────── */
.contact-section { background: var(--bg-section); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 860px) {
  .contact-inner { grid-template-columns: 1fr 1.1fr; }
}

.contact-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800; letter-spacing: -.03em;
  margin-bottom: .6rem;
}
.contact-lead {
  font-size: 1.05rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.6;
}
.contact-cta-pair { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

.contact-detail-list { display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
  display: grid; grid-template-columns: 7rem 1fr;
  gap: .5rem; align-items: baseline;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-child { border-bottom: none; }
.contact-detail-label {
  font-size: .72rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
}
.contact-detail-val {
  font-weight: 600; color: var(--blue); font-size: 1rem;
  text-decoration: none;
}
a.contact-detail-val:hover { text-decoration: underline; }
span.contact-detail-val { color: var(--text); }

/* Contact form */
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}
.contact-form-title {
  font-size: 1.25rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: .3rem;
}
.contact-form-sub {
  font-size: .9rem; color: var(--text-muted); margin-bottom: 1.5rem;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label {
  font-size: .82rem; font-weight: 700; color: var(--text); letter-spacing: .01em;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem; border-radius: 10px;
  border: 1.5px solid var(--border);
  font-size: .95rem; color: var(--text);
  background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-group select { cursor: pointer; }

.form-note {
  font-size: .78rem; color: var(--text-muted);
  text-align: center; margin-top: .75rem; line-height: 1.5;
}

/* ─── FOOTER CTA STRIP ───────────────────────────────────── */
.footer-cta-strip {
  background: linear-gradient(135deg, var(--blue-navy) 0%, #3b0764 100%);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.footer-cta-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: 1.5rem 3rem;
}
.footer-cta-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -.03em; color: #fff; margin-bottom: .35rem;
}
.footer-cta-sub { font-size: 1rem; color: rgba(255,255,255,.72); }
.footer-cta-btns { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ─── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: #0d0618;
  color: rgba(255,255,255,.75);
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-logo-wrap {
  display: block;
  margin-bottom: 1rem;
  line-height: 0;
}

.footer-logo-img {
  display: block;
  width: min(280px, 100%);
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.6; margin-bottom: .6rem; }
.footer-location { font-size: .85rem; color: rgba(255,255,255,.5); }

.footer-col-heading {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 1rem;
}

.footer-link-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-link-list a {
  font-size: .88rem; color: rgba(255,255,255,.6); font-weight: 500;
  transition: color .15s;
}
.footer-link-list a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: .5rem; }
.footer-contact-list li { font-size: .88rem; }
.footer-contact-list a { color: rgba(255,255,255,.6); font-weight: 500; transition: color .15s; }
.footer-contact-list a:hover { color: #fff; }
.footer-contact-list span { color: rgba(255,255,255,.4); }

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: .5rem; font-size: .8rem; color: rgba(255,255,255,.35);
}

/* ─── FLOATING DOCK ──────────────────────────────────────── */
.float-dock {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  z-index: 150;
  display: flex; justify-content: space-between;
  pointer-events: none;
}

.float-btn {
  pointer-events: auto;
  display: flex; align-items: center; justify-content: center;
  width: 54px; height: 54px; border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.float-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(0,0,0,.25); }

.float-call { background: var(--blue); }
.float-wa   { background: var(--wa-green); }

/* ─── MISC ───────────────────────────────────────────────── */
main section[id], main article[id], main div[id] { scroll-margin-top: 5.5rem; }
