/* =========================================================
   TawasulCare — Call Center & Sales Outsourcing
   Palette: Professional Blue + Gold
   ========================================================= */

:root {
  /* Brand colors */
  --blue-900: #0A2540;
  --blue-800: #0E3157;
  --blue-700: #103D6B;
  --blue-500: #1E6FB8;
  --blue-300: #6BA8DE;
  --blue-50:  #EAF2FB;

  --gold:       #D4AF37;
  --gold-dark:  #B8932B;
  --gold-light: #E7C964;

  --ink:    #0B1B2B;
  --body:   #41546A;
  --muted:  #6B7C90;
  --line:   #E4EAF1;
  --bg:     #FFFFFF;
  --bg-soft:#F6F9FD;

  --white: #FFFFFF;

  /* Layout */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(10, 37, 64, 0.06);
  --shadow-md: 0 14px 40px rgba(10, 37, 64, 0.10);
  --shadow-lg: 0 24px 60px rgba(10, 37, 64, 0.16);

  --t-fast: 0.18s ease;
  --t: 0.28s cubic-bezier(.4,.2,.2,1);

  /* Fonts */
  --font-en: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ar: 'Tajawal', system-ui, -apple-system, Segoe UI, Tahoma, sans-serif;
  --font: var(--font-en);
}

html[lang="ar"] { --font: var(--font-ar); }

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

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

body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.25; font-weight: 700; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}

.section { padding: 92px 0; }
.section--soft { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.section-head h2 { font-size: clamp(26px, 4vw, 38px); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: inherit;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px); }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--blue-900);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.35);
}
.btn--gold:hover { box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45); }

.btn--blue {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 8px 22px rgba(30, 111, 184, 0.30);
}
.btn--blue:hover { background: var(--blue-700); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); border-color: #fff; }

.btn--outline {
  background: #fff;
  color: var(--blue-700);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--blue-500); color: var(--blue-500); }

.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: #1FB957; }

.btn--lg { padding: 16px 34px; font-size: 16.5px; }

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--t);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 11px; }
.logo__mark { width: 42px; height: 42px; flex-shrink: 0; }
.logo__img { height: 56px; width: auto; display: block; }
.footer .logo__img { height: 72px; }
@media (max-width: 720px) { .logo__img { height: 46px; } }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__text b { font-size: 20px; color: var(--blue-900); font-weight: 800; letter-spacing: .3px; }
.logo__text b span { color: var(--gold-dark); }
.logo__text small { font-size: 10.5px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav links */
.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--blue-900);
  padding: 9px 14px;
  border-radius: 8px;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__links a:hover { color: var(--blue-500); background: var(--blue-50); }
.nav__links a.active { color: var(--blue-500); font-weight: 600; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

/* Language toggle */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-900);
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.lang-toggle:hover { background: var(--blue-500); color: #fff; }
.lang-toggle svg { width: 17px; height: 17px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: var(--blue-50);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.burger span { width: 22px; height: 2.5px; background: var(--blue-900); border-radius: 2px; transition: var(--t-fast); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background: radial-gradient(1200px 600px at 80% -10%, rgba(30,111,184,.45), transparent 60%),
              linear-gradient(160deg, var(--blue-900) 0%, var(--blue-800) 55%, var(--blue-700) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 80%, rgba(212,175,55,.16), transparent 25%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M20 0v40' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  padding: 84px 0 92px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero__badge span { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; box-shadow: 0 0 0 4px rgba(212,175,55,.25); }
.hero h1 {
  color: #fff;
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero h1 .accent { color: var(--gold-light); }
.hero p.lead { font-size: clamp(16px, 2vw, 19px); color: rgba(255,255,255,.85); max-width: 540px; margin-bottom: 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.hero__stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero__stats .stat b { display: block; font-size: 30px; font-weight: 800; color: var(--gold-light); }
.hero__stats .stat span { font-size: 13.5px; color: rgba(255,255,255,.75); }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero__art { width: 100%; height: auto; }

/* ===========================================================
   TRUST / LOGOS BAR
   =========================================================== */
.trustbar { background: var(--blue-900); border-top: 1px solid rgba(255,255,255,.07); }
.trustbar__inner {
  display: flex; align-items: center; justify-content: center; gap: 14px 40px;
  flex-wrap: wrap; padding: 22px 0; color: rgba(255,255,255,.6);
  font-size: 14.5px; font-weight: 500;
}
.trustbar__inner b { color: var(--gold-light); }

/* ===========================================================
   FEATURE / SERVICE CARDS
   =========================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 62px; height: 62px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-700));
  color: #fff;
  margin-bottom: 20px;
}
.card__icon svg { width: 30px; height: 30px; }
.card--gold .card__icon { background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: var(--blue-900); }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card__list { margin-top: 16px; display: grid; gap: 8px; }
.card__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 14.5px; color: var(--body); }
.card__list li svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; margin-top: 3px; }

/* ===========================================================
   WHY US (feature grid)
   =========================================================== */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.feature {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: box-shadow var(--t), transform var(--t);
}
.feature:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.feature__icon {
  width: 54px; height: 54px; flex-shrink: 0;
  display: grid; place-items: center; border-radius: 14px;
  background: var(--blue-50); color: var(--blue-500);
}
.feature__icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 18.5px; margin-bottom: 6px; }
.feature p { font-size: 15px; color: var(--muted); }

/* ===========================================================
   STATS BAND
   =========================================================== */
.statband {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
  color: #fff;
}
.statband__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.statband__grid .stat b { display: block; font-size: clamp(30px, 4vw, 44px); font-weight: 800; color: var(--gold-light); }
.statband__grid .stat span { color: rgba(255,255,255,.78); font-size: 15px; }

/* ===========================================================
   PROCESS / TRAINING STEPS
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 24px 26px;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-size: 14px; font-weight: 800; color: var(--gold-dark);
  background: rgba(212,175,55,.12); width: 44px; height: 44px;
  display: grid; place-items: center; border-radius: 12px; margin-bottom: 16px;
}
.step h3 { font-size: 17.5px; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--muted); }

/* ===========================================================
   CTA BAND
   =========================================================== */
.cta {
  position: relative;
  background: radial-gradient(800px 400px at 80% 0%, rgba(212,175,55,.18), transparent 60%),
              linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff; border-radius: 26px; overflow: hidden;
  padding: 58px 50px; text-align: center;
}
.cta h2 { color: #fff; font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 14px; }
.cta p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 28px; font-size: 17px; }
.cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================================================
   ABOUT page
   =========================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.prose h2 { font-size: clamp(24px, 3.5vw, 34px); margin-bottom: 16px; }
.prose p { margin-bottom: 16px; color: var(--body); }
.checklist { display: grid; gap: 12px; margin-top: 20px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--body); }
.checklist li svg { width: 22px; height: 22px; color: #fff; background: var(--gold); border-radius: 50%; padding: 4px; flex-shrink: 0; }

.valuegrid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value { text-align: center; padding: 30px 22px; border: 1px solid var(--line); border-radius: var(--radius); background:#fff; }
.value__icon { width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 50%; display: grid; place-items: center; background: var(--blue-50); color: var(--blue-500); }
.value__icon svg { width: 28px; height: 28px; }
.value h3 { font-size: 18px; margin-bottom: 8px; }
.value p { font-size: 14.5px; color: var(--muted); }

/* ===========================================================
   CONTACT page
   =========================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 22px;
  transition: box-shadow var(--t), transform var(--t);
}
.contact-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item__icon { width: 50px; height: 50px; flex-shrink: 0; display: grid; place-items: center; border-radius: 13px; background: var(--blue-50); color: var(--blue-500); }
.contact-item__icon svg { width: 24px; height: 24px; }
.contact-item b { display: block; color: var(--ink); font-size: 16px; }
.contact-item span { color: var(--muted); font-size: 14.5px; }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 14.5px; color: var(--ink); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color var(--t-fast), background var(--t-fast);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--blue-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(30,111,184,.10);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn { width: 100%; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; text-align: center; }

/* page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: #fff; padding: 70px 0 64px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(28px, 4.5vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 600px; margin: 0 auto; font-size: 17px; }
.crumbs { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.6); margin-top: 16px; }
.crumbs a:hover { color: var(--gold-light); }

/* ===========================================================
   FOOTER
   =========================================================== */
.footer { background: var(--blue-900); color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer .logo__text b { color: #fff; }
.footer .logo__text small { color: rgba(255,255,255,.5); }
.footer__about p { margin-top: 16px; font-size: 14.5px; line-height: 1.7; }
.footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer__links { display: grid; gap: 11px; }
.footer__links a { font-size: 14.5px; transition: color var(--t-fast); }
.footer__links a:hover { color: var(--gold-light); }
.footer__contact li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; margin-bottom: 12px; }
.footer__contact svg { width: 19px; height: 19px; color: var(--gold-light); flex-shrink: 0; margin-top: 3px; }
.socials { display: flex; gap: 11px; margin-top: 18px; }
.socials a { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; background: rgba(255,255,255,.08); transition: background var(--t-fast), transform var(--t-fast); }
.socials a:hover { background: var(--gold); color: var(--blue-900); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ===========================================================
   Floating WhatsApp
   =========================================================== */
.wa-float {
  position: fixed; bottom: 24px; inset-inline-end: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform var(--t-fast);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ===========================================================
   Lottie animations (graceful fallback to SVG)
   A container marked [data-lottie] keeps its SVG until the
   JSON loads, then "upgrades" to the animation automatically.
   =========================================================== */
[data-lottie] { position: relative; }
[data-lottie] lottie-player,
[data-lottie] dotlottie-player { position: absolute; inset: 0; width: 100%; height: 100%; display: none; }
[data-lottie].lottie-on lottie-player,
[data-lottie].lottie-on dotlottie-player { display: block; }
[data-lottie].lottie-on .lottie-fallback { visibility: hidden; }
/* Animated service icons: larger & clean (drop the colored box once playing) */
.card__icon[data-lottie] { width: 104px; height: 104px; border-radius: 18px; margin-bottom: 14px; }
.card__icon[data-lottie].lottie-on { background: none; box-shadow: none; }
.card__icon[data-lottie] lottie-player { padding: 0; }

/* ===========================================================
   i18n visibility helpers
   =========================================================== */
[data-lang-show] { display: none; }
html[lang="en"] [data-lang-show="en"],
html[lang="ar"] [data-lang-show="ar"] { display: inline; }

/* ===========================================================
   Reveal on scroll
   =========================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 36px; padding: 56px 0 64px; }
  .hero__visual { max-width: 460px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards, .valuegrid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .statband__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .nav__links {
    position: fixed; inset: 76px 0 auto 0;
    flex-direction: column; align-items: stretch;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 18px; gap: 2px; box-shadow: var(--shadow-md);
    transform: translateY(-150%); transition: transform var(--t); z-index: 99;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 13px 14px; border-radius: 10px; }
  .burger { display: flex; }
  .nav__cta-desktop { display: none; }
  .cards, .features, .valuegrid, .steps { grid-template-columns: 1fr; }
  .cta { padding: 44px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 24px; }
}

/* ===========================================================
   Mobile polish (professional refinements)
   =========================================================== */
@media (max-width: 720px) {
  .hero__inner { padding: 46px 0 54px; text-align: center; }
  .hero__badge { margin-inline: auto; }
  .hero h1 { line-height: 1.22; }
  .hero p.lead { margin-inline: auto; }
  .hero__cta { justify-content: center; }
  .hero__cta .btn { flex: 1 1 auto; }
  .hero__stats { justify-content: center; text-align: center; gap: 16px 30px; }
  .hero__visual { margin-inline: auto; }
  .section-head { margin-bottom: 36px; }
  .card { padding: 26px 22px; }
  .cta__btns .btn { width: 100%; }
  .trustbar__inner { gap: 10px 22px; font-size: 13px; }
  .contact-grid, .split { gap: 30px; }
}

@media (max-width: 480px) {
  body { font-size: 15.5px; }
  .container { padding-inline: 18px; }
  .nav { height: 66px; }
  .nav__links { inset: 66px 0 auto 0; }
  .logo__img { height: 40px; }
  .lang-toggle { padding: 7px 12px; font-size: 13px; }
  .section { padding: 50px 0; }
  .hero h1 { font-size: 27px; }
  .hero p.lead { font-size: 15px; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 12px 22px; }
  .hero__stats .stat b { font-size: 23px; }
  .hero__stats .stat span { font-size: 12.5px; }
  .section-head h2 { font-size: 23px; }
  .section-head p { font-size: 15.5px; }
  .btn--lg { padding: 14px 22px; font-size: 15px; }
  .card__icon[data-lottie] { width: 92px; height: 92px; }
  .page-hero { padding: 50px 0 44px; }
  .page-hero h1 { font-size: 26px; }
  .cta { padding: 38px 20px; border-radius: 20px; }
  .cta h2 { font-size: 22px; }
  .form-card { padding: 22px; }
  .contact-item { padding: 16px; }
  .wa-float { width: 52px; height: 52px; bottom: 18px; inset-inline-end: 18px; }
  .wa-float svg { width: 27px; height: 27px; }
}
