/* ============================================
   AAYRA Education & Visa Services — Design System
   Brand: blue #333399 + saffron #FF9933
   Type: Montserrat (display) + Open Sans (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --blue: #333399;
  --blue-deep: #1F1F66;
  --blue-soft: #E8E8F5;
  --saffron: #FF9933;
  --saffron-deep: #E07A1A;
  --saffron-soft: #FFEFD9;

  /* Neutrals */
  --bg: #FFFFFF;
  --bg-alt: #F8F8FB;
  --bg-blue: #F4F4FA;
  --bg-paper: #FAF7F2;
  --ink: #15163A;
  --ink-soft: #4A4B6E;
  --ink-muted: #8688A8;
  --line: #E5E6F0;

  /* Type */
  --display: 'Montserrat', system-ui, sans-serif;
  --body: 'Open Sans', system-ui, sans-serif;

  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--display); font-weight: 800; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(40px, 4.6vw, 64px); }
h2 { font-size: clamp(30px, 3.6vw, 48px); letter-spacing: -0.025em; }
h3 { font-size: clamp(24px, 2.6vw, 34px); }
h4 { font-size: 22px; font-weight: 700; }
h5 { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

p { color: var(--ink-soft); }

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

.mono { font-family: var(--display); font-weight: 700; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--saffron-deep);
}
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--saffron); }
.eyebrow.blue { color: var(--blue); }
.eyebrow.blue::before { background: var(--blue); }
.eyebrow.light { color: var(--saffron); }
.eyebrow.light::before { background: var(--saffron); }

.accent { color: var(--saffron); }
.blue { color: var(--blue); }
.serif { font-family: var(--display); }
.italic { font-style: italic; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  font-family: var(--display); font-weight: 700;
  font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.2s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 11px; }
.btn .arr { transition: transform 0.2s; }
.btn:hover .arr { transform: translateX(4px); }

.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-deep); }

.btn-accent { background: var(--saffron); color: var(--blue); box-shadow: 0 3px 0 0 var(--saffron-deep); }
.btn-accent:hover { background: var(--saffron-deep); color: #fff; box-shadow: 0 3px 0 0 var(--blue-deep); }

.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: #fff; }

.btn-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-light:hover { background: #fff; color: var(--blue); }

.chip {
  display: inline-flex; align-items: center;
  font-family: var(--display); font-weight: 600; font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 6px 10px;
  background: var(--bg-blue);
  border-radius: 3px;
}

/* Brand pattern band */
.brand-pattern {
  background: var(--blue);
  color: #fff;
  padding: 56px 0;
  overflow: hidden;
  position: relative;
  border-top: 6px solid var(--saffron);
  border-bottom: 6px solid var(--saffron);
}
.brand-pattern.light { background: var(--bg-paper); color: var(--blue); border-top-color: var(--blue); border-bottom-color: var(--blue); }
.brand-pattern.light .bp-track .ic.s { color: var(--saffron); }
.bp-track {
  display: inline-flex;
  align-items: center;
  gap: 80px;
  white-space: nowrap;
  animation: bp-scroll 36s linear infinite;
}
.bp-track .ic { width: 48px; height: 48px; flex-shrink: 0; opacity: 0.9; }
.bp-track .ic.s { color: var(--saffron); }
.bp-track .label { font-family: var(--display); font-weight: 800; font-size: 28px; letter-spacing: 0.04em; text-transform: uppercase; }
.bp-track .label .it { font-style: italic; font-weight: 500; opacity: 0.8; }
.bp-track .dot { width: 8px; height: 8px; background: var(--saffron); border-radius: 50%; flex-shrink: 0; }
@keyframes bp-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Inline icon set on pages */
.brand-icons {
  padding: 80px 0;
  background: var(--bg-blue);
}
.brand-icons .grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 2px solid var(--blue);
  border-left: 1px solid var(--line);
  margin-top: 48px;
}
.brand-icons .it {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  background: #fff;
  text-align: center;
  transition: all 0.2s;
}
.brand-icons .it:hover { background: var(--saffron-soft); }
.brand-icons .it:hover .icn { color: var(--saffron-deep); }
.brand-icons .icn { width: 56px; height: 56px; color: var(--blue); transition: color 0.2s; }
.brand-icons .nm { font-family: var(--display); font-weight: 700; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); }
@media (max-width: 980px) { .brand-icons .grid { grid-template-columns: repeat(3, 1fr); } }

/* Topbar — REMOVED per request, kept for safety */
.topbar { display: none !important; }
.topbar-old {
  background: var(--blue-deep);
  color: #DDE0F0;
  font-size: 12px;
}
.topbar-old .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--display); font-weight: 500;
}
.topbar .left, .topbar .right { display: flex; gap: 24px; align-items: center; }
.topbar .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--saffron); margin-right: 8px; vertical-align: middle; box-shadow: 0 0 0 4px rgba(255,153,51,0.2); }
@media (max-width: 720px) { .topbar .right span:not(:last-child) { display: none; } }

/* ===== HEADER — REDESIGNED ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(51,51,153,0.08);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px -10px rgba(51,51,153,0.18); }
.site-header .inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand .logo { width: 48px; height: 48px; transition: transform 0.3s ease; }
.brand:hover .logo { transform: rotate(-6deg) scale(1.05); }
.brand .name { font-family: var(--display); font-weight: 800; font-size: 20px; letter-spacing: 0.04em; color: var(--blue); line-height: 1; }
.brand small { display: block; font-family: var(--display); font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; }
.brand:hover .name { color: var(--saffron-deep); }

.nav { display: flex; gap: 14px; align-items: center; }
.nav a, .nav .menu > button {
  font-family: var(--display); font-weight: 600;
  font-size: 14px; letter-spacing: 0.01em;
  padding: 10px 6px;
  color: var(--ink);
  border-radius: 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit;
}
.nav a { font-family: var(--display); }
.nav a::after, .nav .menu > button::after {
  content: '';
  position: absolute;
  left: 6px; right: 6px; bottom: 4px;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}
.nav a:hover, .nav .menu > button:hover { color: var(--blue); background: rgba(51,51,153,0.04); }
.nav a:hover::after, .nav .menu > button:hover::after { transform: scaleX(1); }
.nav a.active { color: var(--blue); }
.nav a.active::after { transform: scaleX(1); }
.nav .menu.has-active > button { color: var(--blue); }
.nav .menu.has-active > button::after { transform: scaleX(1); }

.nav .menu { position: relative; }
.nav .menu > button .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.25s ease;
  margin-left: 2px;
}
.nav .menu.open > button .caret { transform: rotate(-135deg) translate(-1px, -1px); }
.nav .menu .panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  margin-top: 14px;
  min-width: 320px;
  background: #fff;
  border: 1px solid rgba(51,51,153,0.08);
  border-radius: 14px;
  box-shadow: 0 24px 48px -16px rgba(20,20,80,0.18), 0 4px 12px rgba(20,20,80,0.06);
  padding: 10px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 50;
}
.nav .menu .panel::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%; transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid rgba(51,51,153,0.08);
  border-top: 1px solid rgba(51,51,153,0.08);
}
/* Invisible hover bridge so the cursor can travel button → panel */
.nav .menu::after {
  content: '';
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 18px;
  pointer-events: none;
}
.nav .menu.open::after { pointer-events: auto; }
.nav .menu.open .panel { opacity: 1; pointer-events: auto; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav .menu .panel a.opt {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 10px;
  align-items: center;
  background: transparent;
}
.nav .menu .panel a.opt::after { display: none; }
.nav .menu .panel a.opt:hover { background: var(--bg-blue); }
.nav .menu .panel a.opt .flag {
  width: 44px; height: 30px; border-radius: 4px;
  display: grid; place-items: center;
  overflow: hidden;
  background: #00247D;
  border: 1px solid rgba(0,0,0,0.06);
  flex-shrink: 0;
}
.nav .menu .panel a.opt .flag svg { width: 100%; height: 100%; display: block; }
.nav .menu .panel a.opt .ti { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--blue); letter-spacing: 0.01em; }
.nav .menu .panel a.opt .sb { font-family: var(--body); font-size: 12px; color: var(--ink-muted); margin-top: 2px; }

.header-cta { display: flex; gap: 10px; align-items: center; }
@media (max-width: 1100px) and (min-width: 981px) { .nav { display: none; } }

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head .lead { color: var(--ink-soft); font-size: 17px; max-width: 50ch; }
@media (max-width: 880px) { .section-head { grid-template-columns: 1fr; gap: 24px; } }

/* Cols */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 980px) { .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; } }

/* Image placeholder */
.ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 14px, rgba(51,51,153,0.06) 14px, rgba(51,51,153,0.06) 16px),
    var(--bg-blue);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.ph-label {
  font-family: var(--display); font-weight: 600;
  font-size: 11px; letter-spacing: 0.06em; text-transform: lowercase;
  color: var(--ink-muted);
  background: rgba(255,255,255,0.92);
  padding: 6px 12px;
  border-radius: 3px;
  position: relative; z-index: 1;
}

/* CTA band — used on most pages */
.cta-band {
  background: var(--blue);
  color: #DDE0F0;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,153,51,0.2) 0, transparent 70%);
  pointer-events: none;
}
.cta-band .grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 64px; align-items: end; position: relative; }
.cta-band h2 { color: #fff; }
.cta-band h2 .accent { color: var(--saffron); }
.cta-band p { color: #B5BAD8; font-size: 18px; max-width: 50ch; margin-top: 16px; }
.cta-band .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .right ul { display: grid; gap: 12px; padding-bottom: 12px; }
.cta-band .right li {
  font-family: var(--display); font-weight: 500;
  font-size: 14px;
  color: #DDE0F0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px;
}
.cta-band .right li::before { content: '✦'; position: absolute; left: 0; color: var(--saffron); }
@media (max-width: 880px) { .cta-band .grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #B5BAD8;
  padding: 80px 0 32px;
}
.site-footer .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand .name { color: #fff; }
.site-footer h5 { color: var(--saffron); margin-bottom: 16px; }
.site-footer ul { display: grid; gap: 10px; }
.site-footer ul a, .site-footer ul li { font-family: var(--display); font-weight: 500; font-size: 13px; color: #B5BAD8; }
.site-footer ul a:hover { color: var(--saffron); }
.site-footer .legal {
  display: flex; justify-content: space-between; gap: 24px;
  padding-top: 32px;
  font-family: var(--display); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #6B6E94;
}
@media (max-width: 880px) { .site-footer .grid { grid-template-columns: 1fr 1fr; } }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line, #E5E5E5);
  border-radius: 6px;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brand-blue, #333399);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .site-header .inner { position: relative; flex-wrap: nowrap; padding: 12px 16px; }
  .site-header .nav {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 16px;
    border-top: 1px solid var(--line, #E5E5E5);
    border-bottom: 1px solid var(--line, #E5E5E5);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
    z-index: 100;
  }
  .site-header .nav.open { max-height: 90vh; overflow-y: auto; padding: 12px 16px 20px; }
  .site-header .nav a, .site-header .nav .menu > button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 16px 4px;
    border-bottom: 1px solid #EEE;
    font-size: 15px;
    border-radius: 0;
  }
  .site-header .nav a:last-child { border-bottom: 0; }
  .site-header .nav .menu { width: 100%; }
  .site-header .nav .menu > button { justify-content: space-between; padding-right: 4px; }
  .site-header .nav .menu .panel {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--bg-blue);
    border-radius: 8px;
    padding: 6px;
    min-width: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: max-height 0.3s ease, padding 0.2s ease, margin 0.2s ease;
    margin: 0;
  }
  .site-header .nav .menu .panel::before { display: none; }
  .site-header .nav .menu.open .panel { max-height: 280px; padding: 8px; margin: 0 0 8px; }
  .nav .menu .panel a.opt { padding: 10px; }
  .nav .menu .panel a.opt .ti { font-size: 14px; }
}
    border-top: 1px solid var(--line, #E5E5E5);
    border-bottom: 1px solid var(--line, #E5E5E5);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.2s ease;
    z-index: 100;
  }
  .site-header .nav.open { max-height: 80vh; padding: 12px 16px 20px; }
  .site-header .nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--line, #EEE);
    font-size: 15px;
  }
  .site-header .nav a:last-child { border-bottom: 0; }
}

/* Prevent grid children from blowing out their tracks (mobile horizontal scroll fix) */
@media (max-width: 980px) {
  body { overflow-x: hidden; }
  .blog .posts > *,
  .dest-grid > *,
  .services-grid > *,
  .why-grid > *,
  .uni-cards > *,
  .poly-grid > *,
  .col-grid > *,
  .intake-grid > *,
  .cost-grid > *,
  .office-grid > *,
  .visa-grid > *,
  .mvv-grid > *,
  .val-grid > *,
  .team-grid > *,
  .numbers .grid > *,
  .site-footer .grid > *,
  .cta-band .grid > *,
  .hero .grid > *,
  .page-hero .grid > *,
  .contact-grid .grid > *,
  .story .grid > *,
  .why .grid > *,
  .brand-icons .grid > *,
  .process .timeline > * { min-width: 0; }
  img, svg { max-width: 100%; height: auto; }
}

/* ============================================
   Mobile responsive — global rules
   ============================================ */
@media (max-width: 880px) {
  .container { padding: 0 20px; }
  section { padding: 60px 0; }
  h1 { font-size: clamp(34px, 7vw, 44px) !important; }
  h2 { font-size: clamp(28px, 6vw, 36px) !important; }
  h3 { font-size: 26px !important; }
  h4 { font-size: 20px !important; }


  .site-header .inner { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .brand .logo { width: 40px; height: 40px; }
  .brand .name { font-size: 18px; }
  .brand small { font-size: 8px; }
  .header-cta { gap: 6px; }
  .header-cta .btn-sm { padding: 8px 12px; font-size: 10px; }
  .header-cta .btn-ghost { display: none; }

  .btn { padding: 12px 18px; font-size: 12px; }

  .section-head { margin-bottom: 32px; }
  .section-head .lead { font-size: 15px; }

  .marquee .track { font-size: 16px; gap: 28px; }
  .brand-pattern { padding: 32px 0; }
  .bp-track { gap: 40px; }
  .bp-track .ic { width: 32px; height: 32px; }
  .bp-track .label { font-size: 18px; }

  .hero { padding: 32px 0 0; }
  .hero .grid { padding-bottom: 48px; }
  .hero .meta { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero .meta .k { font-size: 28px; }
  .hero-art .quote-card { right: 0; width: 80%; padding: 16px; }
  .hero-art .quote-card p { font-size: 14px; }

  .dest-card { grid-template-rows: 220px auto; }
  .dest-card .body { padding: 20px; }
  .dest-card h3 { font-size: 32px !important; }
  .dest-card .stats .k { font-size: 22px; }

  .services-grid { grid-template-columns: 1fr !important; }
  .svc { min-height: auto; padding: 28px 22px; }

  .process .timeline { grid-template-columns: 1fr !important; gap: 20px; }
  .process .timeline::before { display: none; }
  .process .step .n { box-shadow: none; }

  .why .grid { grid-template-columns: 1fr !important; gap: 32px; }
  .why .left { position: static !important; }
  .why .pt { grid-template-columns: 50px 1fr; gap: 16px; padding: 24px 0; }
  .why .pt .n { width: 44px; height: 44px; font-size: 14px; }

  .testimonial-band { padding: 60px 0; }
  .testimonial-band .stories { grid-template-columns: 1fr !important; gap: 20px !important; }
  .testimonial-band blockquote { font-size: 18px !important; }

  .trust .row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust .marks { gap: 24px; }
  .trust .mark-item { font-size: 16px; }

  .blog .posts { grid-template-columns: 1fr !important; gap: 32px; }
  .blog .head { flex-direction: column; align-items: flex-start; gap: 16px; }

  .cta-band { padding: 60px 0; }
  .cta-band .grid { grid-template-columns: 1fr !important; gap: 32px; }
  .cta-band .ctas { flex-direction: column; align-items: stretch; }
  .cta-band .ctas .btn { justify-content: center; }

  .site-footer { padding: 48px 0 24px; }
  .site-footer .grid { grid-template-columns: 1fr !important; gap: 32px; padding-bottom: 32px; }
  .site-footer .legal { flex-direction: column; gap: 8px; padding-top: 20px; }

  /* Page heroes (about, study, services, contact) */
  .page-hero { padding: 60px 0 40px !important; }
  .page-hero .grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .page-hero .stats { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .page-hero .stats .k { font-size: 32px !important; }

  /* About */
  .story .grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .story .left { position: static !important; }
  .story .pull { font-size: 20px; padding-left: 16px; margin: 24px 0; }
  .mvv-grid { grid-template-columns: 1fr !important; }
  .mvv-card { min-height: auto; padding: 36px 28px; }
  .mvv-card .num { font-size: 56px; }
  .val-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .val { padding: 24px; }
  .team-grid { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  .member h4 { font-size: 18px !important; }
  .numbers .grid { grid-template-columns: 1fr 1fr !important; gap: 24px; }
  .numbers .k { font-size: 44px !important; }

  /* Study pages */
  .why-grid { grid-template-columns: 1fr !important; }
  .uni-table { overflow-x: auto; }
  .uni-row { grid-template-columns: 40px 1fr 80px !important; gap: 12px !important; padding: 16px !important; }
  .uni-row .city, .uni-row .rank, .uni-row .pop { display: none; }
  .uni-row.head .city, .uni-row.head .rank, .uni-row.head .pop { display: none; }
  .poly-grid, .col-grid { grid-template-columns: 1fr !important; }
  .uni-cards { grid-template-columns: 1fr !important; }
  .tier { flex-direction: column; gap: 8px; align-items: flex-start; }
  .tier .num { font-size: 56px; }
  .intake-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .cost-grid { grid-template-columns: 1fr !important; }
  .cost-card { padding: 28px 24px; }
  .cost-card .total { font-size: 40px; }

  /* Services */
  .svc-row { grid-template-columns: 1fr !important; gap: 12px !important; padding: 32px 0 !important; }
  .svc-row .num { font-size: 36px; }
  .svc-row h3 { font-size: 28px !important; }
  .visa-grid { grid-template-columns: 1fr !important; }
  .visa { min-height: auto; padding: 28px; }
  .method { grid-template-columns: 1fr !important; gap: 20px; }
  .method::before { display: none; }
  .fee-table { overflow-x: auto; }
  .fee-row { grid-template-columns: 40px 1fr 80px !important; gap: 12px !important; padding: 16px !important; }
  .fee-row .desc, .fee-row .when { display: none; }

  /* Contact */
  .contact-grid .grid { grid-template-columns: 1fr !important; gap: 24px; }
  .form { padding: 28px 22px; }
  .form .head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .form h3 { font-size: 26px !important; }
  .row2 { grid-template-columns: 1fr !important; }
  .country-pick { grid-template-columns: 1fr !important; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { justify-content: center; }
  .quick { padding: 24px; }
  .quick .item { grid-template-columns: 90px 1fr; gap: 8px; padding: 12px 0; }
  .office-grid { grid-template-columns: 1fr !important; }
  .office { min-height: auto; padding: 24px; }
  .office.cta { grid-column: span 1 !important; }
  .office.cta h4 { font-size: 24px !important; }

  /* Brand iconography grid */
  .brand-icons { padding: 48px 0; }
  .brand-icons .grid { grid-template-columns: repeat(2, 1fr) !important; }
  .brand-icons .it { padding: 20px 12px; }
  .brand-icons .icn { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 30px !important; }
  h2 { font-size: 26px !important; }
  .hero .meta { grid-template-columns: 1fr; }
  .page-hero .stats { grid-template-columns: 1fr 1fr !important; }
  .team-grid { grid-template-columns: 1fr !important; }
  .numbers .grid { grid-template-columns: 1fr !important; }
  .ctas { flex-direction: column; align-items: stretch; }
  .ctas .btn { justify-content: center; }
}
