/* ==========================================================================
   Alpha Beta International — أكاديمية ألفا بيتا
   Design System & Global Styles
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette */
  --navy: #062B4F;
  --navy-700: #0A3A68;
  --navy-600: #0F4A82;
  --cyan: #01AED3;
  --cyan-600: #048EAD;
  --cyan-300: #7FD6EC;
  --sky: #E6F7FB;
  --yellow: #FFE500;
  --yellow-600: #F0C400;

  /* Neutrals */
  --ink: #111827;
  --slate: #475569;
  --slate-400: #94A3B8;
  --line: #E5EAF0;
  --bg: #F8FAFC;
  --white: #FFFFFF;

  /* Gradients */
  --grad-hero: radial-gradient(1200px 600px at 85% -10%, rgba(1,174,211,.30), transparent 60%),
               radial-gradient(900px 500px at 0% 10%, rgba(15,74,130,.35), transparent 55%),
               linear-gradient(160deg, #062B4F 0%, #0A3A68 55%, #0F4A82 100%);
  --grad-cyan: linear-gradient(135deg, var(--cyan) 0%, var(--cyan-600) 100%);
  --grad-yellow: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-600) 100%);

  /* Effects */
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --shadow-sm: 0 4px 16px rgba(6, 43, 79, .06);
  --shadow: 0 14px 40px rgba(6, 43, 79, .10);
  --shadow-lg: 0 30px 70px rgba(6, 43, 79, .16);
  --shadow-cyan: 0 16px 40px rgba(1, 174, 211, .30);
  --ring: 0 0 0 4px rgba(1, 174, 211, .22);

  /* Type */
  --font: "Tajawal", "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-head: "Cairo", "Tajawal", system-ui, sans-serif;

  --container: 1200px;
  --header-h: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---------- 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(--ink);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.25; color: var(--navy); font-weight: 800; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 8px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(58px, 8vw, 104px); }
.section--tight { padding-block: clamp(44px, 6vw, 72px); }
.center { text-align: center; }
.muted { color: var(--slate); }

/* Section heads */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  letter-spacing: .04em; color: var(--cyan-600);
  background: var(--sky); padding: 7px 16px; border-radius: 999px;
  border: 1px solid rgba(1,174,211,.22);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.section-head { max-width: 660px; margin-inline: auto; margin-bottom: 46px; }
.section-head.center { text-align: center; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); margin-top: 16px; letter-spacing: -.01em; }
.section-sub { margin-top: 14px; color: var(--slate); font-size: 1.06rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px; transition: .25s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary { background: var(--grad-cyan); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 50px rgba(1,174,211,.40); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-yellow { background: var(--grad-yellow); color: var(--navy); box-shadow: 0 14px 32px rgba(245,179,1,.32); }
.btn-yellow:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(245,179,1,.42); }
.btn-ghost { background: rgba(255,255,255,.10); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn-ghost:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--navy); border: 1.5px solid var(--line); }
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan-600); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 14px 32px rgba(37,211,102,.32); }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(37,211,102,.42); }
.btn-sm { padding: 11px 20px; font-size: .9rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: .3s var(--ease);
}
.site-header.scrolled { background: rgba(255,255,255,.95); border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; gap: 22px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand__logo { height: 40px; width: auto; display: block; }
.brand__name { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: 1.16rem; line-height: 1.15; }
.brand__name small { display: block; font-size: .7rem; font-weight: 600; color: var(--cyan-600); letter-spacing: .06em; }
.footer .brand__logo { height: 42px; }

.nav__links { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav__links a:not(.btn) {
  font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--navy);
  padding: 9px 15px; border-radius: 999px; transition: .2s var(--ease); position: relative;
}
.nav__links a:not(.btn):hover { color: var(--cyan-600); background: var(--sky); }
.nav__links a:not(.btn).active { color: var(--cyan-600); background: var(--sky); }

.nav__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.lang-switch {
  display: inline-flex; background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 3px; font-family: var(--font-head); font-weight: 700; font-size: .82rem;
}
.lang-switch button { padding: 6px 13px; border-radius: 999px; color: var(--slate); transition: .2s; }
.lang-switch button.active { background: var(--navy); color: #fff; }

.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; background: var(--sky); }
.nav__toggle span { display: block; width: 22px; height: 2.2px; background: var(--navy); border-radius: 2px; margin: 5px auto; transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(7.2px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7.2px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; }
.hero::after {
  content: ""; position: absolute; inset-inline: 0; bottom: -1px; height: 90px;
  background: linear-gradient(to bottom, transparent, var(--bg)); pointer-events: none;
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(8px); opacity: .5; pointer-events: none; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  padding-block: clamp(56px, 8vw, 96px); position: relative; z-index: 2;
}
.hero__grid--solo {
  grid-template-columns: 1fr; text-align: center; justify-items: center;
  padding-block: clamp(68px, 10vw, 120px);
}
.hero__grid--solo .hero__sub { margin-inline: auto; }
.hero__grid--solo .hero__cta,
.hero__grid--solo .hero__stats { justify-content: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22); padding: 8px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem; backdrop-filter: blur(6px);
}
.hero__badge b { color: var(--yellow); }
.hero h1 {
  color: #fff; font-size: clamp(2.05rem, 5vw, 3.4rem); line-height: 1.2;
  margin-top: 22px; letter-spacing: -.015em;
}
.hero h1 .hl { position: relative; color: var(--cyan-300); white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; inset-inline: -2px; bottom: 4px; height: 12px; z-index: -1;
  background: rgba(255,212,59,.32); border-radius: 6px;
}
.hero__sub { margin-top: 20px; font-size: 1.14rem; color: rgba(255,255,255,.86); max-width: 540px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero__stat b { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; color: #fff; display: block; line-height: 1; }
.hero__stat span { font-size: .86rem; color: rgba(255,255,255,.72); }
.hero__stat b i { color: var(--yellow); font-style: normal; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__stage {
  position: relative; aspect-ratio: 1/1; max-width: 460px; margin-inline: auto;
  border-radius: 34px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(4px); overflow: visible;
  display: grid; place-items: center;
}
.hero__stage-inner { width: 82%; }
.float-card {
  position: absolute; background: #fff; color: var(--navy); border-radius: 15px;
  padding: 11px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .92rem; white-space: nowrap;
  animation: floaty 5s var(--ease) infinite;
}
.float-card i {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0;
  background: var(--sky); color: var(--cyan-600);
}
.float-card svg { width: 17px; height: 17px; }
.fc-1 { top: 6%; inset-inline-start: -8%; animation-delay: 0s; }
.fc-2 { top: 30%; inset-inline-end: -14%; animation-delay: .8s; }
.fc-3 { bottom: 26%; inset-inline-start: -13%; animation-delay: 1.6s; }
.fc-4 { bottom: 2%; inset-inline-end: -6%; animation-delay: 2.4s; }
.fc-5 { top: 54%; inset-inline-start: 42%; animation-delay: 3.2s; }
.fc-2 i, .fc-4 i { background: #FFF6D6; color: var(--yellow-600); }
.fc-3 i { background: #E7F6EE; color: #1a9e5f; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ==========================================================================
   Marquee / trust strip
   ========================================================================== */
.trust { background: #fff; border-block: 1px solid var(--line); }
.trust__row { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; padding-block: 26px; }
.trust__item { display: flex; align-items: center; gap: 11px; color: var(--slate); font-family: var(--font-head); font-weight: 600; font-size: .95rem; }
.trust__item svg { width: 22px; height: 22px; color: var(--cyan); }

/* ==========================================================================
   Cards grids
   ========================================================================== */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Feature card */
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px;
  transition: .3s var(--ease); position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset-inline-start: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-cyan); transform: scaleX(0); transform-origin: inline-start; transition: .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature:hover::before { transform: scaleX(1); }
.feature__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px;
  background: var(--sky); color: var(--cyan-600);
}
.feature__icon svg { width: 28px; height: 28px; }
.feature:nth-child(3n+2) .feature__icon { background: #FFF6D6; color: var(--yellow-600); }
.feature:nth-child(3n) .feature__icon { background: #E7F6EE; color: #1a9e5f; }
.feature h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feature p { color: var(--slate); font-size: .98rem; }

/* ==========================================================================
   Category cards
   ========================================================================== */
.cat-card {
  position: relative; border-radius: var(--radius-lg); padding: 34px 28px; overflow: hidden;
  color: #fff; min-height: 230px; display: flex; flex-direction: column; justify-content: flex-end;
  transition: .3s var(--ease); isolation: isolate;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: .4s; }
.cat-card--adults::before { background: linear-gradient(150deg, #0A3A68, #062B4F); }
.cat-card--kids::before { background: linear-gradient(150deg, var(--cyan), var(--cyan-600)); }
.cat-card--short::before { background: linear-gradient(150deg, #F5B301, #E68A00); }
.cat-card__ico { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.16); display: grid; place-items: center; margin-bottom: auto; }
.cat-card__ico svg { width: 30px; height: 30px; }
.cat-card h3 { color: #fff; font-size: 1.5rem; margin-top: 20px; }
.cat-card p { color: rgba(255,255,255,.85); font-size: .96rem; margin-top: 6px; }
.cat-card .lnk { margin-top: 16px; font-family: var(--font-head); font-weight: 700; display: inline-flex; align-items: center; gap: 8px; }
.cat-card .lnk svg { width: 18px; height: 18px; transition: .25s; }
.cat-card:hover .lnk svg { transform: translateX(-5px); }

/* ==========================================================================
   Course cards
   ========================================================================== */
.course-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column; transition: .3s var(--ease);
}
.course-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.course-card__top {
  position: relative; padding: 22px; color: #fff; min-height: 132px;
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(150deg, var(--navy-700), var(--navy));
}
.course-card--kids .course-card__top { background: linear-gradient(150deg, var(--cyan), var(--cyan-600)); }
.course-card--short .course-card__top { background: linear-gradient(150deg, #F5B301, #E68A00); }
.course-card__level { font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; }
.course-card__badge {
  align-self: flex-start; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
  padding: 5px 12px; border-radius: 999px; font-size: .76rem; font-family: var(--font-head); font-weight: 700;
}
.course-card__num {
  position: absolute; inset-inline-end: 18px; top: 14px; font-family: var(--font-head); font-weight: 800;
  font-size: 3.2rem; color: rgba(255,255,255,.14); line-height: 1;
}
.course-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.course-card__body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.course-card__body p { color: var(--slate); font-size: .93rem; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.course-card__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--line);
  color: var(--slate); padding: 6px 12px; border-radius: 999px; font-size: .8rem; font-family: var(--font-head); font-weight: 600;
}
.chip svg { width: 14px; height: 14px; color: var(--cyan-600); }
.course-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }

/* Feature list (course general features) */
.feat-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; }
.feat-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 1rem; }
.feat-list li svg { width: 22px; height: 22px; color: var(--cyan); flex-shrink: 0; margin-top: 3px; }

/* ==========================================================================
   Placement test band
   ========================================================================== */
.band {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff;
  background: var(--grad-hero); padding: clamp(38px, 6vw, 66px);
}
.band__grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.band h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.3rem); }
.band p { color: rgba(255,255,255,.86); margin-top: 14px; font-size: 1.08rem; }
.band .btn { margin-top: 8px; }
.band__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 26px; }
.band__art { display: grid; place-items: center; }
.band__ring {
  width: 210px; height: 210px; border-radius: 50%; display: grid; place-items: center; position: relative;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
}
.band__ring b { font-family: var(--font-head); font-weight: 800; font-size: 3.4rem; color: var(--yellow); }
.band__ring span { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testi {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px;
  display: flex; flex-direction: column; transition: .3s var(--ease); position: relative;
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.testi__stars { display: flex; gap: 3px; color: var(--yellow-600); margin-bottom: 14px; }
.testi__stars svg { width: 18px; height: 18px; }
.testi p { color: var(--ink); font-size: 1.02rem; flex: 1; }
.testi__quote { position: absolute; top: 22px; inset-inline-end: 26px; font-family: var(--font-head); font-size: 3.6rem; color: var(--sky); line-height: 1; }
.testi__author { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testi__avatar { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 800; background: var(--grad-cyan); }
.testi__author b { font-family: var(--font-head); color: var(--navy); font-size: 1rem; display: block; }
.testi__author span { font-size: .84rem; color: var(--slate); }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; transition: .25s var(--ease); }
.faq__item.open { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq__q { width: 100%; text-align: start; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 1.06rem; color: var(--navy); }
.faq__q i { width: 32px; height: 32px; border-radius: 10px; background: var(--sky); color: var(--cyan-600); display: grid; place-items: center; flex-shrink: 0; transition: .3s; }
.faq__q i svg { width: 18px; height: 18px; }
.faq__item.open .faq__q i { background: var(--cyan); color: #fff; transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 24px 22px; color: var(--slate); }

/* ==========================================================================
   Page hero (inner pages)
   ========================================================================== */
.page-hero { background: var(--grad-hero); color: #fff; position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset-inline: 0; bottom: -1px; height: 70px; background: linear-gradient(to bottom, transparent, var(--bg)); }
.page-hero__inner { padding-block: clamp(50px, 7vw, 84px); position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.6vw, 3rem); }
.page-hero p { color: rgba(255,255,255,.86); margin-top: 16px; font-size: 1.14rem; }
.breadcrumb { display: flex; gap: 10px; align-items: center; font-size: .88rem; color: rgba(255,255,255,.7); font-family: var(--font-head); font-weight: 600; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ==========================================================================
   About page
   ========================================================================== */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.about-block--rev { direction: ltr; }
.about-block--rev > * { direction: rtl; }
.about-visual {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--grad-hero); aspect-ratio: 4/3;
  display: grid; place-items: center; box-shadow: var(--shadow); position: relative;
}
.mvv-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: .3s var(--ease); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvv-card__ico { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: var(--sky); color: var(--cyan-600); }
.mvv-card__ico svg { width: 28px; height: 28px; }
.mvv-card:nth-child(2) .mvv-card__ico { background: #FFF6D6; color: var(--yellow-600); }
.mvv-card:nth-child(3) .mvv-card__ico { background: #E7F6EE; color: #1a9e5f; }
.mvv-card h3 { font-size: 1.24rem; margin-bottom: 10px; }
.mvv-card p { color: var(--slate); font-size: .98rem; }

.stat-band { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 44px; }
.stat-band .grid-4 { gap: 20px; }
.stat-item { text-align: center; }
.stat-item b { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--cyan-300); display: block; line-height: 1; }
.stat-item b i { color: var(--yellow); font-style: normal; }
.stat-item span { color: rgba(255,255,255,.75); font-size: .92rem; margin-top: 8px; display: block; }

/* ==========================================================================
   Translation page
   ========================================================================== */
.svc-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; transition: .3s var(--ease); height: 100%; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 18px; background: var(--sky); color: var(--cyan-600); }
.svc-card__ico svg { width: 27px; height: 27px; }
.svc-card:nth-child(3n+2) .svc-card__ico { background: #FFF6D6; color: var(--yellow-600); }
.svc-card:nth-child(3n) .svc-card__ico { background: #E7F6EE; color: #1a9e5f; }
.svc-card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.svc-card p { color: var(--slate); font-size: .95rem; }
.svc-card ul { margin-top: 14px; display: grid; gap: 8px; }
.svc-card ul li { position: relative; padding-inline-start: 20px; color: var(--slate); font-size: .9rem; }
.svc-card ul li::before { content: ""; position: absolute; inset-inline-start: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: .3s var(--ease); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card__img { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; color: #fff; }
.blog-card__img svg.illus { width: 46%; opacity: .95; }
.blog-card__tag { position: absolute; top: 14px; inset-inline-start: 14px; background: #fff; color: var(--cyan-600); padding: 5px 13px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .76rem; }
.blog-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card__meta { display: flex; gap: 14px; color: var(--slate-400); font-size: .82rem; margin-bottom: 12px; font-family: var(--font-head); font-weight: 600; }
.blog-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card__meta svg { width: 14px; height: 14px; }
.blog-card h3 { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card p { color: var(--slate); font-size: .94rem; margin-bottom: 18px; flex: 1; }
.read-more { font-family: var(--font-head); font-weight: 700; color: var(--cyan-600); display: inline-flex; align-items: center; gap: 8px; margin-top: auto; }
.read-more svg { width: 17px; height: 17px; transition: .25s; }
.read-more:hover svg { transform: translateX(-5px); }

/* ==========================================================================
   Contact
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: var(--font); font-size: 1rem; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 14px; background: var(--bg);
  transition: .2s; resize: vertical;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); background: #fff; box-shadow: var(--ring); outline: none; }
.field textarea { min-height: 130px; }

.info-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-item:last-child { border-bottom: none; }
.info-item__ico { width: 50px; height: 50px; border-radius: 14px; background: var(--sky); color: var(--cyan-600); display: grid; place-items: center; flex-shrink: 0; }
.info-item__ico svg { width: 23px; height: 23px; }
.info-item b { font-family: var(--font-head); color: var(--navy); display: block; font-size: 1.02rem; }
.info-item a, .info-item span { color: var(--slate); font-size: .98rem; }
.info-item a:hover { color: var(--cyan-600); }
.socials { display: flex; gap: 12px; margin-top: 6px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: #fff; display: grid; place-items: center; transition: .25s; }
.socials a:hover { background: var(--cyan); transform: translateY(-3px); }
.socials a svg { width: 20px; height: 20px; }

.form-note { padding: 14px 16px; border-radius: 12px; background: #E7F6EE; color: #16794a; font-family: var(--font-head); font-weight: 600; font-size: .92rem; margin-top: 14px; display: none; }
.form-note.show { display: block; }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: var(--navy); color: rgba(255,255,255,.72); padding-top: 64px; }
.footer a { transition: .2s; }
.footer a:hover { color: var(--yellow); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 48px; }
.footer .brand__name { color: #fff; }
.footer .brand__name small { color: var(--cyan-300); }
.footer__about p { margin-top: 18px; font-size: .96rem; max-width: 320px; }
.footer__cta { margin-top: 20px; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; font-family: var(--font-head); }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: rgba(255,255,255,.72); font-size: .96rem; }
.footer__contact li { display: flex; gap: 11px; margin-bottom: 14px; font-size: .94rem; align-items: flex-start; }
.footer__contact svg { width: 19px; height: 19px; color: var(--cyan-300); flex-shrink: 0; margin-top: 3px; }
.newsletter { display: flex; gap: 8px; margin-top: 14px; }
.newsletter input { flex: 1; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); color: #fff; font-family: var(--font); font-size: .92rem; }
.newsletter input::placeholder { color: rgba(255,255,255,.5); }
.newsletter input:focus { outline: none; border-color: var(--cyan); }
.newsletter button { flex-shrink: 0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; }
.footer__social a:hover { background: var(--cyan); }
.footer__social svg { width: 18px; height: 18px; }

/* ==========================================================================
   Floating WhatsApp
   ========================================================================== */
.wa-float {
  position: fixed; inset-inline-end: 22px; bottom: 22px; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 14px 34px rgba(37,211,102,.44);
  animation: wapulse 2.4s infinite; transition: .25s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
@keyframes wapulse { 0% { box-shadow: 0 14px 34px rgba(37,211,102,.44), 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 14px 34px rgba(37,211,102,.44), 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 14px 34px rgba(37,211,102,.44), 0 0 0 0 rgba(37,211,102,0); } }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

/* ==========================================================================
   CTA final band
   ========================================================================== */
.cta-final { text-align: center; }
.cta-final__box { background: var(--grad-hero); border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); color: #fff; position: relative; overflow: hidden; }
.cta-final h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-final p { color: rgba(255,255,255,.86); margin-top: 14px; max-width: 560px; margin-inline: auto; font-size: 1.1rem; }
.cta-final__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; max-width: 420px; margin-inline: auto; }
  .band__grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__links, .nav__actions .lang-switch, .nav__actions .btn:not(.nav__cta-wa) { display: none; }
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 18px; gap: 4px; box-shadow: var(--shadow-lg); border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: .4s var(--ease); max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__links.open { transform: none; display: flex; }
  .nav__links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav__links .mobile-only { display: flex; }
  .mobile-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 14px; border-top: 1px solid var(--line); }
  .mobile-actions .btn { width: 100%; }
  .mobile-lang { display: flex; justify-content: center; margin-top: 8px; }
}
@media (min-width: 861px) { .nav__links .mobile-only, .mobile-actions, .mobile-lang { display: none; } }
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .about-block { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 22px; }
  .band { padding: 30px 22px; }
  .float-card { font-size: .82rem; padding: 9px 13px; }
  .fc-2 { inset-inline-end: -6%; } .fc-3 { inset-inline-start: -6%; }
  .section-head { margin-bottom: 34px; }
}
@media (max-width: 380px) {
  body { font-size: 15.5px; }
  .hero__cta .btn, .band__cta .btn { width: 100%; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
