:root {
  --red: #ed1f2f;
  --red-dark: #b81422;
  --black: #151515;
  --ink: #2a2a2a;
  --muted: #6d727c;
  --line: #e8e8ea;
  --white: #fff;
  --soft: #f7f7f8;
  --shadow: 0 20px 60px rgba(21, 21, 21, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.utility-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 4vw, 56px);
  background: var(--black);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}
.utility-bar div {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.utility-bar a:hover { color: var(--white); }
.utility-bar .whatsapp-link { color: #8ff0b7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(232,232,234,.9);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 222px;
}
.brand-emblem {
  position: relative;
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(21,21,21,.1);
}
.brand-emblem img {
  position: absolute;
  width: 154px;
  max-width: none;
  height: auto;
  left: -46px;
  top: -49px;
}
.brand-copy {
  display: grid;
  line-height: 1;
}
.brand-copy strong {
  color: var(--black);
  font-size: 24px;
  font-weight: 950;
}
.brand-copy strong span { color: var(--red); }
.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  font-size: 14px;
  color: #333;
}
.nav a { transition: color .2s ease; }
.nav a:hover, .nav a.active { color: var(--red); }
.header-cta {
  background: var(--black);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
}
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  min-height: calc(100vh - 85px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px);
  overflow: hidden;
}
.hero h1, .page-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 5.8vw, 76px);
  line-height: 1.01;
  letter-spacing: 0;
  max-width: 980px;
}
.headline-highlight {
  display: inline;
  color: var(--white);
  background: linear-gradient(90deg, var(--red), #111);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0 .12em .06em;
  border-radius: 6px;
  text-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.hero-brand-heading {
  display: grid;
  gap: 14px;
  margin: 0;
  max-width: 760px;
}
.hero-brand-shade {
  display: inline-block;
  width: fit-content;
  padding: .14em .22em .18em;
  border-radius: 8px;
  background: linear-gradient(92deg, var(--red), #bf1724);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(237,31,47,.25);
}
.hero-brand-heading > span:last-child {
  display: block;
  color: var(--black);
  font-size: clamp(30px, 4.2vw, 56px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}
.hero-text {
  max-width: 620px;
  margin: 24px 0;
  font-size: clamp(17px, 2vw, 21px);
  color: var(--muted);
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  cursor: pointer;
}
.btn.primary { background: var(--red); color: var(--white); box-shadow: 0 14px 32px rgba(237,31,47,.25); }
.btn.ghost { border: 1px solid var(--black); color: var(--black); background: var(--white); }
.btn.light { background: var(--white); color: var(--black); }
.text-link {
  color: var(--red);
  font-weight: 900;
  border-bottom: 2px solid var(--red);
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.trust-strip span {
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}
.hero-media {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 520px;
  box-shadow: var(--shadow);
  background: var(--black);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(21,21,21,0), rgba(21,21,21,.28));
}
.hero-card {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 1;
  width: 210px;
  padding: 18px;
  background: rgba(255,255,255,.94);
  border-radius: 8px;
}
.hero-card strong { display: block; color: var(--red); font-size: 38px; line-height: 1; }
.hero-card span { font-weight: 800; color: var(--black); }

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}
.stats-band div { padding: 28px clamp(18px, 4vw, 56px); border-right: 1px solid rgba(255,255,255,.12); }
.stats-band strong { display: block; font-size: clamp(24px, 3vw, 34px); }
.stats-band span { color: rgba(255,255,255,.72); }

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.quick-actions a {
  display: grid;
  gap: 4px;
  min-height: 112px;
  padding: 24px;
  background: var(--white);
}
.quick-actions strong {
  color: var(--black);
  font-size: 22px;
  line-height: 1.1;
}
.quick-actions span { color: var(--muted); font-size: 14px; }
.quick-actions a:hover strong { color: var(--red); }
.tech-stack-bar {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.tech-stack-bar span {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 72px);
}
.section h2, .page-section h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}
.section p { color: var(--muted); }
.conversion-lab { background: var(--soft); }
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tool-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21,21,21,.07);
}
.tool-card span,
.newsletter-form span,
.instagram-panel span {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
}
.tool-card h3,
.newsletter-form h3,
.instagram-panel h3 {
  margin: 10px 0 14px;
  color: var(--black);
  font-size: 24px;
  line-height: 1.12;
}
.tool-card.lead-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.appointment-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.appointment-card .btn { width: 100%; }
.promos {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  background: var(--soft);
}
.promos article {
  padding: clamp(28px, 4vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.promos article:first-child {
  background: var(--black);
  color: var(--white);
}
.promos article:first-child h2,
.promos article:first-child p { color: var(--white); }
.promos span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 13px;
}
.promos h2 {
  margin: 12px 0;
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.04;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  max-width: 980px;
  margin-bottom: 30px;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(28px, 5vw, 74px);
}
.split.reverse { grid-template-columns: minmax(0, .8fr) minmax(0, 1fr); }
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.destination-grid a, .pill {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(21,21,21,.05);
}
.destination-grid a:hover { border-color: var(--red); color: var(--red); }
.university-search { background: var(--white); }
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.filter-tabs button {
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
  cursor: pointer;
}
.filter-tabs button.active {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
.university-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.university-list article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}
.university-list strong {
  display: block;
  color: var(--black);
  line-height: 1.2;
}
.university-list span {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}
.university-list article.hidden { display: none; }
.cards {
  display: grid;
  gap: 18px;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.four { grid-template-columns: repeat(4, 1fr); }
.service-cards { grid-template-columns: repeat(3, 1fr); }
.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}
.card span { color: var(--red); font-weight: 900; }
.card h3 { margin: 12px 0 10px; color: var(--black); font-size: 22px; line-height: 1.15; }
.card p { margin: 0; }
.dark .card h3 { color: var(--black); }
.dark .card p { color: var(--muted); }
.dark {
  background: var(--black);
  color: var(--white);
}
.dark h2, .dark .eyebrow { color: var(--white); }
.dark p { color: rgba(255,255,255,.76); }
.check-list {
  display: grid;
  gap: 14px;
}
.check-list p {
  margin: 0;
  padding: 18px 18px 18px 46px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  position: relative;
}
.check-list p:before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 10px;
  height: 10px;
  background: var(--red);
  border-radius: 50%;
}
.review-panel {
  padding: clamp(26px, 4vw, 44px);
  border-radius: 8px;
  background: var(--soft);
  border-left: 6px solid var(--red);
}
.stars { color: var(--red); font-size: 22px; letter-spacing: 0; }
blockquote { margin: 16px 0; color: var(--black); font-size: clamp(22px, 3vw, 34px); line-height: 1.2; font-weight: 900; }
cite { color: var(--muted); font-style: normal; font-weight: 800; }
.journey { background: var(--soft); }
.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.timeline article {
  min-height: 220px;
  padding: 22px;
  background: var(--white);
}
.timeline span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-weight: 900;
  font-size: 13px;
}
.timeline h3 {
  margin: 18px 0 10px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.15;
}
.timeline p { margin: 0; color: var(--muted); font-size: 14px; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
}
.faq-list summary {
  cursor: pointer;
  color: var(--black);
  font-weight: 900;
}
.faq-list p { margin: 12px 0 0; }
.social-proof { background: var(--soft); }
.social-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr;
  gap: 18px;
}
.newsletter-form,
.instagram-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(21,21,21,.07);
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.backlink-hub {
  background: var(--black);
  color: var(--white);
}
.backlink-hub h2,
.backlink-hub .eyebrow { color: var(--white); }
.backlink-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.backlink-columns div {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.07);
}
.backlink-columns h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 20px;
}
.backlink-columns a {
  display: block;
  margin: 10px 0;
  color: rgba(255,255,255,.82);
  font-weight: 800;
  line-height: 1.35;
}
.backlink-columns a:hover {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.inquiry {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--soft);
}
.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  background: var(--white);
}
textarea { min-height: 120px; resize: vertical; }
.lead-form .btn, .lead-form textarea { grid-column: 1 / -1; }
.field-group { display: grid; gap: 7px; }
.field-group label { color: var(--black); font-size: 14px; font-weight: 800; }
.field-group:has(textarea), .form-status { grid-column: 1 / -1; }
.form-status { min-height: 24px; margin: 0; font-weight: 800; }
.form-status.success { color: #14733b; }
.form-status.error { color: #b21120; }
.lead-form [aria-invalid="true"] { border-color: #b21120; box-shadow: 0 0 0 3px rgba(178,17,32,.12); }
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 3px solid #1473e6;
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
}
.skip-link:focus { top: 12px; }
.country-conversion { border-top: 1px solid var(--line); }
.country-conversion .resource-links { margin-top: 18px; }
.trust-carousel { position: relative; }
.trust-carousel .cards { grid-template-columns: 1fr; }
.trust-carousel article[hidden] { display: none; }
.carousel-controls { display: flex; gap: 8px; margin-top: 18px; }
.carousel-controls button { min-width: 44px; min-height: 44px; border: 1px solid var(--line); background: var(--white); cursor: pointer; }
.partner-list { display: flex; flex-wrap: wrap; gap: 10px; }
.partner-list span { padding: 11px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--white); font-weight: 800; }
.verified-trust[hidden] { display: none; }

.page-hero {
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #fff 0%, #fff 52%, #f7f7f8 52%);
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 760px; color: var(--muted); font-size: 19px; }
.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.9)),
    radial-gradient(circle at 78% 12%, rgba(237,31,47,.12), transparent 30%),
    var(--white);
  border-bottom: 1px solid var(--line);
}
.about-hero h1 {
  margin: 0;
  color: var(--black);
  font-size: clamp(34px, 4.8vw, 60px);
  line-height: 1.08;
  letter-spacing: 0;
  max-width: 880px;
}
.brand-title-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
  padding: 10px 16px 10px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(21,21,21,.08);
}
.brand-title-lockup img {
  width: 76px;
  height: 48px;
  object-fit: contain;
}
.brand-title-lockup span {
  color: var(--black);
  font-weight: 950;
  font-size: clamp(18px, 2.2vw, 28px);
}
.eduwest-wordmark {
  margin: 0 0 22px;
  color: #111936;
}
.eduwest-wordmark strong {
  display: block;
  font-size: clamp(68px, 8vw, 116px);
  line-height: .78;
  font-weight: 950;
  letter-spacing: 0;
}
.eduwest-wordmark strong span { color: #f50612; }
.eduwest-wordmark em {
  display: block;
  margin-top: 10px;
  color: #101936;
  font-style: normal;
  font-weight: 950;
  font-size: clamp(26px, 3.2vw, 43px);
  line-height: 1;
}
.highlight-name {
  color: var(--red);
  display: inline;
}
.about-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.classic-panel {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
}
.classic-panel:before {
  content: "";
  display: block;
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(237,31,47,.22);
  border-radius: 6px;
  pointer-events: none;
}
.classic-logo-frame {
  display: inline-flex;
  padding: 12px;
  margin-bottom: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(21,21,21,.08);
}
.classic-logo-frame img {
  width: 190px;
  height: 92px;
  object-fit: contain;
}
.classic-panel h2 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}
.classic-panel h2 span { color: var(--red); }
.classic-panel p { margin: 0; color: var(--muted); font-size: 16px; }
.hero-stat-stack {
  display: grid;
  justify-content: end;
  gap: 24px;
  padding: clamp(18px, 3vw, 34px);
}
.hero-stat-stack div { text-align: right; }
.hero-stat-stack strong {
  display: block;
  color: #101936;
  font-size: clamp(42px, 5vw, 66px);
  line-height: .9;
  font-weight: 950;
}
.hero-stat-stack strong span { color: var(--red); }
.hero-stat-stack p {
  margin: 8px 0 0;
  color: var(--red);
  font-weight: 800;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.1;
}
.hero-logo-large {
  justify-self: end;
  padding: 16px;
  width: min(100%, 360px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(21,21,21,.12);
}
.hero-logo-large img {
  width: 100%;
  height: 210px;
  object-fit: contain;
}
.university-marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--black);
  color: var(--white);
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 18px 0;
  animation: marqueeScroll 36s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 9px 18px 9px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.9);
  font-weight: 900;
  white-space: nowrap;
}
.marquee-track span:before {
  content: attr(data-logo);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  border: 2px solid var(--red);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
}
.marquee-track span:nth-child(3n) {
  color: var(--white);
  border-color: rgba(237,31,47,.5);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.page-section {
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px);
}
.signature-card {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 8px;
  background: var(--black);
  color: var(--white);
  border-left: 6px solid var(--red);
}
.signature-card span {
  color: var(--red);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 13px;
}
.signature-card h3 {
  margin: 14px 0;
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.05;
}
.signature-card p { color: rgba(255,255,255,.72); margin: 0; }
.classic-section { background: var(--soft); }
.link-cloud, .resource-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.link-cloud a {
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-weight: 900;
}
.link-cloud a:hover {
  background: var(--red);
  border-color: var(--red);
}
.resource-links a {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-weight: 900;
}
.resource-links a:hover { color: var(--red); border-color: var(--red); }
.grid-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 8px; }
table { width: 100%; border-collapse: collapse; min-width: 760px; background: var(--white); }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--black); background: var(--soft); }
.blog-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #0d0d0e;
  color: var(--white);
}
.site-footer img { width: 142px; height: 58px; object-fit: contain; background: var(--white); border-radius: 6px; }
.site-footer p { max-width: 430px; color: rgba(255,255,255,.66); }
.site-footer h3 { margin: 0 0 12px; }
.site-footer a { display: block; color: rgba(255,255,255,.76); margin: 8px 0; }
.contact-ribbon {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  padding: 26px clamp(18px, 5vw, 72px);
  background: var(--red);
  color: var(--white);
}
.contact-ribbon div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}
.contact-ribbon strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}
.contact-ribbon a,
.contact-ribbon span {
  color: var(--white);
  font-weight: 900;
  font-size: clamp(16px, 2vw, 21px);
}
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25d366;
  color: #092515;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
}
.sticky-consultation {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 25;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(237,31,47,.28);
}
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0,0,0,.64);
}
.lead-modal.open { display: flex; }
.lead-modal-panel {
  position: relative;
  width: min(100%, 540px);
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0,0,0,.28);
}
.lead-modal-panel h2 {
  margin: 10px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.08;
}
.lead-modal-panel p { color: var(--muted); }
.lead-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  font-size: 22px;
  cursor: pointer;
}
.modal-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.modal-step {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-step[hidden] { display: none; }
.modal-form .btn { grid-column: 1 / -1; }
.ai-chatbot {
  position: fixed;
  right: 18px;
  bottom: 76px;
  z-index: 25;
  display: grid;
  gap: 2px;
  padding: 12px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0,0,0,.2);
  cursor: pointer;
}
.ai-chatbot span {
  color: #ffb5bc;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.ai-chatbot strong { font-size: 14px; }

@media (max-width: 1060px) {
  .utility-bar { display: none; }
  .nav {
    position: fixed;
    inset: 86px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero, .split, .split.reverse, .inquiry { grid-template-columns: 1fr; }
  .about-hero { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-media, .hero-media img { min-height: 420px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .cards.three, .cards.four, .service-cards, .blog-list, .promos, .tool-grid, .social-grid, .university-list, .backlink-columns { grid-template-columns: repeat(2, 1fr); }
  .link-cloud, .resource-links { grid-template-columns: repeat(2, 1fr); }
  .quick-actions { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
  body { padding-bottom: 78px; }
  body::after {
    content: "";
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 24;
    height: 78px;
    background: var(--white);
    box-shadow: 0 -12px 30px rgba(21,21,21,.08);
    pointer-events: none;
  }
  .site-header { padding: 10px 16px; }
  .brand { min-width: 0; }
  .brand-emblem { flex-basis: 54px; width: 54px; height: 54px; }
  .brand-emblem img { width: 135px; left: -41px; top: -43px; }
  .brand-copy strong { font-size: 20px; }
  .brand-copy small { font-size: 9px; }
  .page-hero {
    padding: 44px 18px;
    background: var(--white);
  }
  .hero h1 { font-size: 38px; }
  .page-hero h1 {
    max-width: 100%;
    font-size: 32px;
    line-height: 1.08;
    overflow-wrap: normal;
  }
  .hero-brand-heading > span:last-child { font-size: 32px; }
  .about-hero h1 { font-size: 34px; }
  .hero-stat-stack { justify-content: stretch; }
  .hero-stat-stack div { text-align: left; }
  .hero-logo-large { justify-self: start; width: 100%; }
  .hero-logo-large img { height: 170px; }
  .hero-media, .hero-media img { min-height: 320px; }
  .destination-grid, .grid-list, .cards.three, .cards.four, .service-cards, .blog-list, .site-footer, .lead-form, .stats-band, .quick-actions, .promos, .timeline, .link-cloud, .resource-links, .contact-ribbon, .tool-grid, .social-grid, .university-list, .backlink-columns { grid-template-columns: 1fr; }
  .quick-actions { padding: 0; }
  .lead-form { padding: 16px; }
  .field-group, .field-group:has(textarea), .form-status { grid-column: 1; }
  .floating-whatsapp { left: auto; right: 12px; bottom: 12px; padding: 11px 14px; }
  .sticky-consultation { left: 12px; bottom: 12px; padding: 11px 14px; }
  .ai-chatbot {
    right: 12px;
    bottom: 70px;
    width: 52px;
    height: 52px;
    padding: 0;
    place-content: center;
    border-radius: 50%;
  }
  .ai-chatbot span { display: none; }
  .ai-chatbot strong { font-size: 0; }
  .ai-chatbot strong:after { content: "AI"; font-size: 15px; }
  .modal-form { grid-template-columns: 1fr; }
  .modal-step { grid-template-columns: 1fr; }
  .modal-form .btn { grid-column: auto; }
}
