/* =========================================================
   Iskra Overseas Education — stylesheet
   Palette: navy #0F2A5F, sky #1E9BD7, ivory #FBF8F2, gold #C9A45A
   ========================================================= */

:root {
  --navy: #0F2A5F;
  --navy-2: #1a3a7a;
  --sky: #1E9BD7;
  --sky-2: #4fb7e8;
  --ivory: #FBF8F2;
  --cream: #F3EEE1;
  --gold: #C9A45A;
  --ink: #14213D;
  --muted: #5b6779;
  --line: rgba(15, 42, 95, 0.12);
  --shadow-sm: 0 1px 2px rgba(15, 42, 95, 0.06), 0 2px 8px rgba(15, 42, 95, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 42, 95, 0.08), 0 12px 40px rgba(15, 42, 95, 0.08);
  --shadow-lg: 0 20px 60px rgba(15, 42, 95, 0.18);
  --radius: 14px;
  --radius-lg: 22px;
  --serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: italic; color: var(--sky); font-weight: 500; }

/* =====================================================
   NAV
===================================================== */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand img { height: 44px; width: auto; }
.nav__links { display: flex; gap: 28px; align-items: center; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--sky);
  transition: width .25s;
}
.nav__links a:hover { color: var(--navy); }
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  background: var(--navy); color: var(--ivory) !important;
  padding: 10px 18px !important; border-radius: 999px;
  transition: background .2s, transform .2s;
}
.nav__cta:hover { background: var(--sky); transform: translateY(-1px); }
.nav__cta::after { display: none; }
.nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; }

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px; font-weight: 600;
  border: 0; cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}
.btn--primary {
  background: var(--navy); color: white;
  box-shadow: 0 6px 18px rgba(15,42,95,.25);
}
.btn--primary:hover { background: var(--sky); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(30,155,215,.35); }
.btn--ghost {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: white; }
.btn--full { width: 100%; justify-content: center; }

/* =====================================================
   HERO
===================================================== */
.hero { padding: 60px 32px 0; max-width: 1240px; margin: 0 auto; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 40px 0 80px;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  color: var(--navy);
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(30, 155, 215, 0.08);
  border-radius: 999px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 0 4px rgba(30,155,215,.2);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(30,155,215,.2); }
  50% { box-shadow: 0 0 0 8px rgba(30,155,215,.05); }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 28px;
}
.hero__lede {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 18px;
  max-width: 560px;
}
.hero__lede .ul {
  border-bottom: 2px solid var(--sky);
  padding-bottom: 1px;
  font-weight: 500;
  color: var(--navy);
}
.hero__sub {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero__badges {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__badges > div {
  display: flex; flex-direction: column; gap: 4px;
}
.hero__badges strong {
  font-family: var(--serif);
  font-size: 1.9rem; font-weight: 500;
  color: var(--navy);
  line-height: 1;
}
.hero__badges span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual — passport */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1.05;
}
.hero__arc {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.passport {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--navy) 0%, #0a1f4a 100%);
  color: var(--ivory);
  border-radius: 18px;
  padding: 32px 30px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  max-width: 420px;
  margin-left: auto;
  border: 1px solid rgba(201, 164, 90, 0.3);
}
.passport::before {
  content: ''; position: absolute; inset: 8px;
  border: 1px solid rgba(201, 164, 90, 0.25);
  border-radius: 12px; pointer-events: none;
}
.passport__header {
  display: flex; align-items: center; gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(201,164,90,.25);
  margin-bottom: 20px;
}
.passport__title { display: flex; flex-direction: column; }
.passport__country {
  font-family: var(--serif); font-size: 15px; font-weight: 600;
  letter-spacing: .1em; color: var(--gold);
}
.passport__type {
  font-size: 11px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(251,248,242,.6);
  margin-top: 2px;
}
.passport__row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(201,164,90,.15);
  font-size: 13px;
}
.passport__row:last-child { border: 0; }
.passport__row span {
  text-transform: uppercase; letter-spacing: .12em;
  color: rgba(251,248,242,.55);
  font-size: 10px;
}
.passport__row b {
  font-family: var(--serif); font-weight: 500;
  font-size: 15px;
  color: var(--ivory);
}
.passport__stamps {
  position: absolute; bottom: -20px; left: -30px; right: -30px;
  display: flex; justify-content: space-around;
}
.stamp {
  padding: 12px 16px;
  border: 2px solid;
  border-radius: 8px;
  font-family: var(--serif);
  font-weight: 700; font-size: 15px;
  text-align: center;
  background: var(--ivory);
  transform: rotate(-8deg);
  letter-spacing: .06em;
}
.stamp small { display: block; font-size: 8px; letter-spacing: .15em; font-weight: 600; margin-top: 2px; font-family: var(--sans); }
.stamp--us { color: #B22234; border-color: #B22234; transform: rotate(-12deg); }
.stamp--uk { color: #012169; border-color: #012169; transform: rotate(4deg) translateY(-8px); }
.stamp--ca { color: #D80621; border-color: #D80621; transform: rotate(-6deg) translateY(6px); }

/* Trust bar */
.trustbar {
  margin: 0 -32px;
  background: var(--navy);
  color: var(--ivory);
}
.trustbar__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 20px 32px;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px 32px;
  font-size: 14.5px; font-weight: 500;
}
.trustbar__inner > div { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sky); color: var(--navy);
  font-size: 12px; font-weight: 700;
}

/* =====================================================
   SECTION
===================================================== */
.section {
  padding: 100px 32px;
  max-width: 1240px;
  margin: 0 auto;
}
.section--cream { background: var(--cream); max-width: none; margin: 0; }
.section--cream > * { max-width: 1240px; margin-left: auto; margin-right: auto; }
.section--navy {
  background: var(--navy); color: var(--ivory);
  max-width: none; margin: 0;
}
.section--navy > *:not(.contact) { max-width: 1240px; margin-left: auto; margin-right: auto; }
.section--navy .section__title { color: var(--ivory); }
.section--navy .section__lede { color: rgba(251,248,242,.75); }
.section--navy em { color: var(--gold); }

.section__head { max-width: 780px; margin: 0 auto 60px; text-align: center; }
.section__eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em;
  color: var(--sky);
  padding: 6px 14px;
  background: rgba(30,155,215,.1);
  border-radius: 999px;
  margin-bottom: 20px;
}
.section__eyebrow--light {
  background: rgba(201, 164, 90, 0.15);
  color: var(--gold);
}
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 20px;
}
.section__lede {
  font-size: 1.1rem; color: var(--muted);
  max-width: 620px; margin: 0 auto;
}

/* =====================================================
   COUNTRIES
===================================================== */
.countries {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.country {
  position: relative;
  background: white;
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid var(--line);
}
.country:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.country__flag {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; line-height: 1;
  background: var(--cream);
}
.country__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.country__tagline {
  font-size: 14px; color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.45;
  min-height: 42px;
}
.country__meta {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: grid; gap: 10px;
}
.country__meta-row {
  display: flex; flex-direction: column; gap: 2px;
}
.country__meta-row span {
  font-size: 10.5px; text-transform: uppercase;
  letter-spacing: .1em; color: var(--muted);
  font-weight: 600;
}
.country__meta-row b {
  font-size: 13.5px; color: var(--navy); font-weight: 500;
  line-height: 1.35;
}
.country__arc {
  position: absolute; top: -60px; right: -60px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--sky) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
}
.country:hover .country__arc { opacity: .15; }

/* =====================================================
   SERVICES
===================================================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.service {
  background: white;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: border-color .3s, transform .3s, box-shadow .3s;
  position: relative;
  overflow: hidden;
}
.service:hover {
  transform: translateY(-4px);
  border-color: var(--sky);
  box-shadow: var(--shadow-sm);
}
.service__num {
  font-family: var(--serif);
  font-size: 3.2rem; font-weight: 500;
  color: var(--sky); opacity: .35;
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.service h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.service p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* =====================================================
   PROCESS
===================================================== */
.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  counter-reset: step;
  position: relative;
}
.process::before {
  content: ''; position: absolute;
  top: 42px; left: 8%; right: 8%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 12px);
  opacity: .4;
  z-index: 0;
}
.process li {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,164,90,.25);
  border-radius: var(--radius);
  padding: 24px 20px 26px;
  z-index: 1;
  backdrop-filter: blur(6px);
}
.process__num {
  font-family: var(--serif);
  font-size: 14px; font-weight: 600;
  color: var(--gold);
  letter-spacing: .1em;
}
.process__icon {
  font-size: 32px; margin: 12px 0 16px;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.process h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  margin-bottom: 8px;
}
.process p {
  font-size: 13.5px;
  color: rgba(251,248,242,.7);
  line-height: 1.55;
}

/* =====================================================
   TESTIMONIALS
===================================================== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 32px 30px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}
.testimonial__author {
  display: flex; gap: 14px; align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sky), var(--navy));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 600; font-size: 16px;
}
.testimonial__meta b {
  font-family: var(--serif); font-weight: 500;
  font-size: 15px; color: var(--navy); display: block;
}
.testimonial__meta span {
  font-size: 13px; color: var(--muted);
}

/* =====================================================
   ABOUT
===================================================== */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about__copy p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 560px;
}
.about__copy .section__title { text-align: left; margin-bottom: 28px; }
.about__copy .section__eyebrow { margin-bottom: 20px; }
.promise {
  display: grid; gap: 20px;
  margin-top: 32px;
}
.promise__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px; align-items: start;
}
.promise__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.promise h4 {
  font-family: var(--serif);
  font-weight: 500; font-size: 1.15rem;
  color: var(--navy); margin-bottom: 4px;
}
.promise p { font-size: 14.5px; margin: 0; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stat {
  background: var(--ivory);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.stat b {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat span {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
}

/* =====================================================
   CONTACT
===================================================== */
.contact {
  max-width: 1240px; margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}
.contact__copy .section__title { text-align: left; }
.contact__copy .section__lede { text-align: left; margin-left: 0; }
.contact__list {
  list-style: none;
  margin-top: 40px;
  display: grid; gap: 20px;
}
.contact__list li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px; align-items: center;
}
.contact__ico {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(201, 164, 90, 0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact__list b {
  display: block;
  font-family: var(--serif); font-weight: 500;
  font-size: 15px; color: var(--gold);
  margin-bottom: 2px;
}
.contact__list a, .contact__list span {
  font-size: 15px; color: var(--ivory);
  transition: color .2s;
}
.contact__list a:hover { color: var(--sky-2); }

/* form */
.contact__form {
  background: var(--ivory);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__form h3 {
  grid-column: 1/-1;
  font-family: var(--serif); font-weight: 500;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.contact__form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: var(--muted);
  font-weight: 500;
}
.contact__form label.full { grid-column: 1/-1; }
.contact__form label > span {
  display: flex; justify-content: space-between; align-items: baseline;
  color: var(--navy);
}
.contact__form label small { color: var(--muted); font-weight: 400; }
.contact__form em { color: var(--sky); font-style: normal; }
.contact__form input,
.contact__form select,
.contact__form textarea {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--ink);
  background: white;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(30,155,215,.15);
}
.contact__form textarea { resize: vertical; }
.contact__form button { grid-column: 1/-1; margin-top: 8px; }
.form-note {
  grid-column: 1/-1;
  font-size: 12.5px; color: var(--muted);
  text-align: center;
  margin: 0;
}

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #0a1f4a;
  color: rgba(251,248,242,.7);
  padding: 60px 32px 24px;
}
.footer__inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(251,248,242,.1);
}
.footer__brand img {
  height: 48px; margin-bottom: 20px;
  background: white; padding: 8px 12px; border-radius: 8px;
}
.footer__brand p { font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h5 {
  font-family: var(--serif); font-weight: 500;
  font-size: 15px; color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.footer__col a, .footer__col span {
  font-size: 14px;
  color: rgba(251,248,242,.7);
  transition: color .2s;
}
.footer__col a:hover { color: var(--sky-2); }
.footer__base {
  max-width: 1240px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(251,248,242,.5);
}

/* =====================================================
   FLOAT WA
===================================================== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366; color: white;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08) rotate(-6deg); }
.wa-float::before {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366; opacity: .4;
  animation: pulse-ring 2s infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 420px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .contact { grid-template-columns: 1fr; gap: 48px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__inner { padding: 12px 20px; }
  .nav__links {
    position: fixed; inset: 62px 0 0 0;
    background: var(--ivory);
    flex-direction: column; gap: 8px;
    padding: 24px;
    transform: translateX(100%);
    transition: transform .3s;
  }
  .menu-open .nav__links { transform: translateX(0); }
  .nav__burger { display: block; }
  .hero { padding: 32px 20px 0; }
  .hero__grid { padding: 20px 0 60px; }
  .hero__badges { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero__cta .btn { flex: 1; justify-content: center; }
  .trustbar { margin: 0 -20px; }
  .trustbar__inner { justify-content: flex-start; overflow-x: auto; padding: 16px 20px; flex-wrap: nowrap; }
  .section { padding: 70px 20px; }
  .section__head { margin-bottom: 40px; }
  .process { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 28px 22px; }
  .footer { padding: 40px 20px 20px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .about__stats { grid-template-columns: 1fr; }
  .contact { padding: 0 20px; }
  .passport { transform: rotate(-2deg); }
  .stamp { padding: 8px 12px; font-size: 12px; }
}
