@import "tailwindcss";

:root {
  --ink: #102638;
  --muted: #5d6d78;
  --cream: #f5f2ea;
  --red: #d92938;
  --red-dark: #b81f2b;
  --line: rgba(16, 38, 56, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #fbfaf7;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.cookie-banner { position: fixed; z-index: 1000; left: 18px; right: 18px; bottom: 18px; max-width: 1180px; margin: auto; padding: 22px; display: grid; grid-template-columns: 1.3fr .8fr auto; align-items: center; gap: 24px; color: white; background: #102638; border: 1px solid rgba(255,255,255,.15); border-radius: 6px; box-shadow: 0 24px 70px rgba(0,0,0,.3); }
.cookie-banner[hidden] { display: none; }
.cookie-copy strong { font-family: Georgia, serif; font-size: 21px; }
.cookie-copy p { margin: 7px 0 0; color: #d5dde2; font-size: 13px; line-height: 1.55; }
.cookie-settings summary { padding: 8px 0; color: white; font-family: Arial, sans-serif; font-size: 13px; font-weight: 800; }
.cookie-settings label { display: block; padding: 5px 0; color: #d5dde2; font-size: 12px; }
.cookie-settings input { margin-right: 8px; accent-color: var(--red); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions button { cursor: pointer; padding: 11px 14px; color: white; background: transparent; border: 1px solid rgba(255,255,255,.35); border-radius: 3px; font-size: 12px; font-weight: 800; }
.cookie-actions .cookie-accept { background: var(--red); border-color: var(--red); }
.cookie-reopen { cursor: pointer; position: fixed; z-index: 900; left: 12px; bottom: 10px; padding: 7px 10px; color: var(--muted); background: white; border: 1px solid var(--line); border-radius: 3px; font-size: 10px; }
.whatsapp-chat { position: fixed; z-index: 950; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 10px; min-height: 54px; padding: 0 18px; color: #fff; background: #1fa855; border: 1px solid rgba(0,0,0,.08); border-radius: 999px; box-shadow: 0 14px 38px rgba(16,38,56,.25); font-size: 13px; font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.whatsapp-chat:hover { color: #fff; background: #168846; transform: translateY(-2px); box-shadow: 0 18px 44px rgba(16,38,56,.3); }
.whatsapp-chat:focus-visible { outline: 3px solid rgba(31,168,85,.35); outline-offset: 4px; }
.whatsapp-chat svg { width: 25px; height: 25px; fill: currentColor; flex: 0 0 auto; }
.operator-disclosure { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 7px 12px; padding: 17px 80px; border-top: 1px solid var(--line); color: var(--muted); background: #fff; font-size: 12px; line-height: 1.5; text-align: center; }
.operator-disclosure strong { color: var(--ink); }
.operator-disclosure a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

.site-header {
  width: min(1180px, calc(100% - 48px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 39px; height: 39px; display: grid; place-items: center;
  color: white; background: var(--red); border-radius: 50%;
  font-family: Georgia, serif; font-weight: 700; font-size: 23px;
}
.brand strong, .brand small { display: block; }
.brand strong { font-family: Georgia, serif; font-size: 17px; letter-spacing: .01em; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 32px; font-size: 14px; font-weight: 700; }
.mobile-nav { display: none; }
nav > a:not(.nav-cta):hover { color: var(--red); }
.nav-current { color: var(--red); }
.language-menu, .resource-menu { position: relative; }
.language-menu summary, .resource-menu summary { display: flex; align-items: center; gap: 5px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 800; letter-spacing: .03em; color: var(--ink); white-space: nowrap; }
.language-menu summary::-webkit-details-marker, .resource-menu summary::-webkit-details-marker { display: none; }
.language-menu summary span, .resource-menu summary span { font-size: 14px; transition: transform .2s ease; }
.language-menu[open] summary span, .resource-menu[open] summary span { transform: rotate(180deg); }
.language-options, .resource-options { position: absolute; z-index: 30; top: calc(100% + 14px); right: 0; min-width: 190px; padding: 7px; background: #fff; border: 1px solid rgba(13,36,52,.12); border-radius: 10px; box-shadow: 0 16px 40px rgba(13,36,52,.16); }
.resource-options { right: auto; left: 0; min-width: 240px; }
.language-options a, .resource-options a { display: flex; gap: 10px; padding: 10px 12px; border-radius: 7px; white-space: nowrap; }
.language-options a:hover, .language-options a.active, .resource-options a:hover { color: var(--red); background: #f7f3ef; }
.language-options b { min-width: 22px; font-size: 12px; }
.nav-cta { display: inline-flex; gap: 12px; align-items: center; color: white; background: var(--red); padding: 13px 18px; border-radius: 3px; }
.nav-cta:hover, .button-primary:hover { background: var(--red-dark); }

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 80px;
  padding: 70px 0 82px;
}
.eyebrow { display: flex; align-items: center; gap: 11px; margin: 0 0 24px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow span { width: 24px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; font-family: Georgia, 'Times New Roman', serif; font-weight: 400; }
h1 { max-width: 680px; font-size: clamp(51px, 5.1vw, 76px); line-height: .99; letter-spacing: -.045em; }
.hero-lead { max-width: 610px; margin: 28px 0 32px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 25px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 54px; padding: 0 23px; border-radius: 3px; font-size: 14px; font-weight: 800; transition: .2s ease; }
.button-primary { color: white; background: var(--red); box-shadow: 0 10px 28px rgba(217, 41, 56, .2); }
.text-link { font-size: 14px; font-weight: 700; border-bottom: 1px solid var(--line); padding: 10px 0; }
.microcopy { color: #7d898f; font-size: 12px; margin: 15px 0 0; }
.provider-lockup { display: flex; align-items: center; gap: 15px; margin: 0 0 26px; }
.provider-lockup img { width: 126px; height: auto; border-radius: 3px; }
.provider-lockup small, .provider-lockup strong { display: block; }
.provider-lockup small { margin-bottom: 3px; color: var(--muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.provider-lockup strong { font-family: Georgia, serif; font-size: 16px; font-weight: 400; }

.hero-card { position: relative; min-height: 520px; background: var(--ink); color: white; border-radius: 6px; overflow: hidden; box-shadow: 0 30px 75px rgba(16, 38, 56, .2); }
.hero-card > img { width: 100%; height: 520px; object-fit: cover; object-position: 62% center; display: block; }
.hero-card.branch-photo > img { object-position: 50% center; }
.hero-card.branch-photo::after { background: linear-gradient(180deg, rgba(16,38,56,.04) 35%, rgba(16,38,56,.78)); }
.hero-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(16,38,56,.65)); pointer-events: none; }
.photo-label { position: absolute; z-index: 2; left: 24px; bottom: 22px; padding: 12px 16px; background: rgba(255,255,255,.94); color: var(--ink); font-size: 12px; font-weight: 800; border-radius: 3px; }
.photo-label i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: #38a373; border-radius: 50%; }
.faq-search { width: min(1000px, calc(100% - 48px)); margin: -26px auto 64px; padding: 34px 40px 28px; position: relative; z-index: 5; background: white; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: 5px; box-shadow: 0 22px 55px rgba(16,38,56,.11); }
.faq-search-heading { display: flex; align-items: center; gap: 18px; }
.faq-search-heading > span { width: 44px; height: 44px; flex: 0 0 auto; display: grid; place-items: center; color: white; background: var(--red); border-radius: 50%; font: 700 24px Georgia,serif; }
.faq-search-heading h2 { font-size: clamp(28px,3vw,39px); line-height: 1.05; }
.faq-search-heading p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.faq-search-field { margin: 25px 0 6px; min-height: 58px; display: flex; align-items: center; gap: 11px; padding: 0 18px; background: #fbfaf7; border: 1px solid var(--line); border-radius: 4px; }
.faq-search-field:focus-within { border-color: var(--red); box-shadow: 0 0 0 3px rgba(217,41,56,.1); }
.faq-search-field b { color: var(--red); font-size: 26px; font-weight: 400; transform: rotate(-20deg); }
.faq-search-field input { width: 100%; min-width: 0; padding: 17px 0; color: var(--ink); background: transparent; border: 0; outline: 0; font-size: 16px; }
.faq-search-results { max-height: 345px; overflow-y: auto; border-top: 0; }
.faq-search-results details[hidden] { display: none; }
.faq-search-results summary { padding: 19px 3px; font-size: 18px; }
.faq-search-results details p { margin: -2px 40px 22px 3px; }
.faq-search-empty { margin: 18px 3px; color: var(--muted); }
.faq-search-all { display: inline-block; margin-top: 19px; color: var(--red); font-size: 13px; font-weight: 800; }
.card-topline { padding: 19px 23px; display: flex; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.status { color: #b9d9cb; }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 7px; background: #60c494; border-radius: 50%; }
.card-visual { position: relative; min-height: 354px; display: grid; place-items: center; background: radial-gradient(circle at 50% 48%, #28485e 0, #102638 62%); overflow: hidden; }
.card-visual::before, .card-visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.card-visual::before { width: 310px; height: 310px; }
.card-visual::after { width: 440px; height: 440px; }
.orb { position: relative; z-index: 2; width: 218px; height: 218px; padding: 53px 0; text-align: center; border-radius: 50%; background: var(--red); box-shadow: 0 20px 60px rgba(0,0,0,.28); }
.orb span { display: block; font-size: 11px; letter-spacing: .3em; }
.orb strong { display: block; margin: 10px 0 6px; font-family: Georgia, serif; font-size: 37px; font-weight: 400; }
.orb small { font-size: 10px; opacity: .8; }
.cross { position: absolute; width: 22px; height: 22px; opacity: .25; }
.cross::before, .cross::after { content: ""; position: absolute; background: white; }
.cross::before { width: 22px; height: 2px; top: 10px; }
.cross::after { width: 2px; height: 22px; left: 10px; }
.cross-one { top: 47px; right: 54px; }.cross-two { bottom: 58px; left: 46px; }
.card-features { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.card-features span { padding: 19px 8px; text-align: center; color: #d7dfe4; font-size: 10px; text-transform: uppercase; letter-spacing: .08em; border-right: 1px solid rgba(255,255,255,.12); }
.card-features span:last-child { border: 0; }

.trust-strip { background: white; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 calc((100% - 1180px)/2); }
.trust-strip p { margin: 0; padding: 26px; text-align: center; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-right: 1px solid var(--line); }
.trust-strip p:last-child { border: 0; }
.trust-strip p::before { content: "✓"; color: var(--red); margin-right: 10px; }
.seo-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 0; }
.seo-paths > a { padding: 42px; background: white; border: 1px solid var(--line); border-top: 4px solid var(--red); border-radius: 4px; }
.seo-paths span, .landing-kicker { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.seo-paths h2 { margin: 22px 0 16px; font-size: 36px; line-height: 1.08; }
.seo-paths p { color: var(--muted); line-height: 1.7; }
.seo-paths strong { display: inline-block; margin-top: 12px; color: var(--red); font-size: 13px; }
.slavia-proof { width: min(1180px, calc(100% - 48px)); margin: 85px auto 0; padding: 64px 70px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 80px; color: white; background: #b92d19; border-radius: 6px; }
.slavia-proof h2 { max-width: 680px; font-size: clamp(38px, 4vw, 56px); line-height: 1.05; }
.slavia-proof p:not(.eyebrow) { max-width: 650px; margin: 22px 0 28px; color: rgba(255,255,255,.82); line-height: 1.7; }
.slavia-proof > img { width: 100%; max-width: 400px; justify-self: end; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 25px 60px rgba(69,13,7,.22); }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 78px 0; }
.benefit-grid article { padding: 0 30px; border-right: 1px solid var(--line); }
.benefit-grid article:first-child { padding-left: 0; }
.benefit-grid article:last-child { padding-right: 0; border: 0; }
.benefit-grid article > span { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .15em; }
.benefit-grid h3 { margin: 30px 0 13px; font-size: 24px; }
.benefit-grid p { color: var(--muted); font-size: 14px; line-height: 1.65; }


.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 110px 0; }
.section-heading { display: grid; grid-template-columns: .75fr 1.4fr 1fr; align-items: end; gap: 45px; margin-bottom: 58px; }
.section-heading .eyebrow { align-self: start; }
.section-heading h2, .audience h2, .final-cta h2 { font-size: clamp(39px, 4.2vw, 60px); line-height: 1.04; letter-spacing: -.035em; }
.section-heading > p:last-child { color: var(--muted); line-height: 1.7; margin: 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.step { padding: 34px 42px 24px 0; border-right: 1px solid var(--line); }
.step + .step { padding-left: 42px; }
.step:last-child { border-right: 0; }
.step-number { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .15em; }
.step h3 { margin: 42px 0 15px; font-size: 28px; }
.step p { color: var(--muted); line-height: 1.65; font-size: 15px; }

.audience { padding-top: 0; }
.audience-panel { background: var(--red); color: white; padding: 69px 72px; display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 55px; border-radius: 5px; }
.eyebrow.light { color: white; opacity: .78; }
.audience-panel > p { line-height: 1.7; opacity: .84; }
.button-light { background: white; color: var(--red); white-space: nowrap; }
.button-light:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }

.guides { padding-top: 0; }
.guide-grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-rows: repeat(2, 1fr); gap: 16px; }
.guide-grid article { min-height: 218px; padding: 30px; background: white; border: 1px solid var(--line); border-radius: 4px; }
.guide-grid .guide-featured { grid-row: 1 / 3; min-height: 452px; display: flex; flex-direction: column; justify-content: flex-end; color: white; background: linear-gradient(160deg, rgba(217,41,56,.88), rgba(16,38,56,.97)), url('/international-students-hero.png') center/cover; border: 0; }
.guide-grid article > span { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.guide-grid .guide-featured > span { color: #ffd7da; }
.guide-grid h3 { margin: 18px 0 12px; font-size: 25px; }
.guide-grid .guide-featured h3 { max-width: 390px; font-size: 38px; }
.guide-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.guide-grid .guide-featured p { color: rgba(255,255,255,.82); }
.guide-grid a { margin-top: 22px; font-size: 13px; font-weight: 800; }

.guide-hero { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 92px 0 70px; }
.guide-hero h1 { max-width: 950px; }
.guide-hero > p:not(.eyebrow) { max-width: 760px; margin: 28px 0 34px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.guide-jump { display: flex; flex-wrap: wrap; gap: 9px; }
.guide-jump a { padding: 11px 15px; background: white; border: 1px solid var(--line); border-radius: 3px; font-size: 12px; font-weight: 800; }
.guide-jump a:hover { color: var(--red); border-color: var(--red); }
.emergency-strip { padding: 23px max(24px, calc((100% - 1180px)/2)); display: flex; align-items: center; gap: 42px; color: white; background: var(--red); }
.emergency-strip span b { margin-right: 7px; font-size: 20px; }
.emergency-strip a { margin-left: auto; font-size: 13px; font-weight: 800; }
.guide-layout { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 95px 0 110px; display: grid; grid-template-columns: 220px 1fr; gap: 100px; }
.guide-layout aside { position: sticky; top: 30px; height: fit-content; display: grid; gap: 5px; padding: 24px; background: var(--cream); border-top: 3px solid var(--red); }
.guide-layout aside strong { margin-bottom: 10px; font-family: Georgia, serif; font-size: 18px; }
.guide-layout aside a { padding: 7px 0; color: var(--muted); font-size: 13px; }
.guide-layout aside a:hover { color: var(--red); }
.guide-content { max-width: 780px; }
.guide-content article { scroll-margin-top: 25px; padding: 0 0 82px; margin: 0 0 82px; border-bottom: 1px solid var(--line); }
.article-tag { margin: 0 0 18px; color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.guide-content h2 { font-size: clamp(38px, 4vw, 56px); line-height: 1.04; letter-spacing: -.035em; }
.guide-content h3 { margin: 34px 0 14px; font-size: 25px; }
.guide-content article > p:not(.article-tag) { color: var(--muted); font-size: 16px; line-height: 1.8; }
.guide-content ul { padding-left: 22px; color: var(--muted); line-height: 1.8; }
.notice { margin: 30px 0; padding: 25px 28px; background: #edf2f5; border-left: 4px solid var(--ink); }
.notice strong { font-family: Georgia, serif; font-size: 20px; }
.notice p { margin: 8px 0 0; color: var(--muted); line-height: 1.65; }
.notice.warning { background: #fff3e9; border-color: #e97928; }
.source-link { display: inline-block; margin-top: 16px; color: var(--red); font-size: 12px; font-weight: 800; border-bottom: 1px solid rgba(217,41,56,.3); }
.compare-grid, .emergency-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 30px 0; }
.compare-grid > div, .emergency-cards > div { padding: 27px; background: white; border: 1px solid var(--line); }
.compare-grid strong, .emergency-cards strong { display: block; font-family: Georgia, serif; font-size: 21px; }
.compare-grid p, .emergency-cards p { margin-bottom: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }
.emergency-cards b { display: block; margin-bottom: 17px; color: var(--red); font-size: 44px; }
.number-list { margin: 30px 0; padding: 0; list-style: none; counter-reset: guide-steps; }
.number-list li { position: relative; padding: 23px 0 23px 62px; border-top: 1px solid var(--line); counter-increment: guide-steps; }
.number-list li::before { content: "0" counter(guide-steps); position: absolute; left: 0; top: 24px; color: var(--red); font-size: 12px; font-weight: 800; }
.number-list strong, .number-list span { display: block; }
.number-list strong { font-family: Georgia, serif; font-size: 20px; }
.number-list span { margin-top: 6px; color: var(--muted); line-height: 1.6; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 30px 0; }
.check-grid span { padding: 18px; background: var(--cream); font-size: 13px; font-weight: 700; }
.check-grid span::before { content: "✓"; margin-right: 10px; color: var(--red); }
.guide-disclaimer { padding: 27px; background: var(--ink); color: white; }
.guide-disclaimer p { margin: 8px 0 0; color: #c8d2d8; font-size: 13px; line-height: 1.6; }

.landing-hero { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0 70px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: center; }
.landing-hero h1 { margin-top: 22px; }
.landing-hero p { max-width: 690px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.landing-hero .button { margin-top: 12px; }
.landing-panel { padding: 38px; color: white; background: var(--ink); border-radius: 5px; }
.landing-panel h2 { font-size: 32px; line-height: 1.1; }
.landing-panel ul { margin: 25px 0 0; padding: 0; list-style: none; }
.landing-panel li { padding: 15px 0; border-top: 1px solid rgba(255,255,255,.14); line-height: 1.5; }
.landing-panel li::before { content: "✓"; margin-right: 11px; color: #65d09c; }
.landing-body { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 90px 0; }
.landing-body section { padding: 55px 0; border-bottom: 1px solid var(--line); }
.landing-body h2 { max-width: 760px; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; }
.landing-body h3 { margin: 30px 0 12px; font-size: 25px; }
.landing-body p, .landing-body li { color: var(--muted); line-height: 1.8; }
.landing-body .compare-grid p { line-height: 1.65; }
.landing-faq details { max-width: 850px; }
.faq-hub { width: min(980px, calc(100% - 48px)); margin: 0 auto; padding: 20px 0 100px; }
.faq-hub > section { scroll-margin-top: 25px; padding: 70px 0; border-bottom: 1px solid var(--line); }
.faq-hub h2 { margin-bottom: 34px; font-size: clamp(36px, 4vw, 54px); line-height: 1.05; }
.faq-hub .faq-list { max-width: 880px; }
.official-resources p { color: var(--muted); line-height: 1.7; }
.official-resources .check-grid a { padding: 18px; color: var(--ink); background: var(--cream); font-size: 13px; font-weight: 700; }
.official-resources .check-grid a:hover { color: var(--red); }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; border-top: 1px solid var(--line); }
.section-heading.compact { display: block; margin: 0; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; display: flex; justify-content: space-between; gap: 20px; padding: 25px 0; font-family: Georgia, serif; font-size: 21px; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary span { width: 24px; height: 24px; flex: 0 0 24px; display: grid; place-items: center; color: var(--red); font-family: Arial, sans-serif; transform-origin: center; }
details[open] summary span { transform: rotate(45deg); }
details p { margin: -5px 45px 26px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.final-cta { width: 100%; max-width: none; padding: 100px max(24px, calc((100% - 1180px)/2)); background: var(--ink); color: white; text-align: center; }
.final-cta .eyebrow { justify-content: center; }
.final-cta > p:not(.eyebrow) { max-width: 570px; margin: 24px auto 30px; color: #c8d2d8; line-height: 1.7; }
footer { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 46px 0; display: grid; grid-template-columns: auto 1fr 1.35fr; align-items: center; gap: 45px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.footer-brand { color: var(--ink); }
.legal { text-align: right; }
.footer-provider { display: flex; align-items: center; gap: 12px; }
.footer-provider img { width: 88px; border-radius: 2px; }
.footer-provider span { max-width: 150px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.facility-directory { width: min(1180px, calc(100% - 48px)); margin: 60px auto 20px; padding: 34px; background: #f7f3ef; border: 1px solid var(--line); border-radius: 4px; }
.directory-heading h2 { margin: 9px 0 10px; }
.directory-heading p { color: var(--muted); }
.directory-controls { display: grid; grid-template-columns: minmax(280px,1fr) 245px 245px; gap: 12px; margin: 28px 0 14px; }
.directory-controls input, .directory-controls select { width: 100%; min-height: 50px; padding: 0 15px; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 3px; font: inherit; }
.directory-controls input:focus, .directory-controls select:focus { outline: 2px solid rgba(181,38,50,.22); border-color: var(--red); }
.directory-count { margin: 0 0 18px; color: var(--muted); font-size: 13px; }
.facility-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.facility-card { display: flex; flex-direction: column; justify-content: space-between; gap: 20px; min-width: 0; padding: 20px; background: white; border: 1px solid var(--line); border-radius: 3px; }
.facility-card > div > span { color: var(--red); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.facility-card h3 { margin: 7px 0 5px; font: 700 20px/1.25 Georgia,serif; }
.facility-card p, .facility-card dd { color: var(--muted); font-size: 13px; line-height: 1.55; }
.facility-card dl { display: grid; gap: 12px; }
.facility-card dt { margin-bottom: 3px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.facility-card dd { margin: 0; overflow-wrap: anywhere; }
.facility-card dd a { color: var(--red); font-weight: 700; }
.facility-languages { display: flex; flex-wrap: wrap; gap: 6px; }
.language-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 8px; color: var(--ink); background: #f7f3ef; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; line-height: 1; }
.language-badge > span { font-size: 16px; }
.facility-card[hidden], .directory-empty[hidden], .directory-more[hidden] { display: none; }
.directory-more { display: block; margin: 24px auto 0; padding: 13px 18px; color: white; background: var(--ink); border: 0; border-radius: 3px; font-weight: 800; cursor: pointer; }
.directory-note, .directory-empty { margin: 22px 0 0; padding: 14px 16px; color: var(--muted); background: white; border-left: 3px solid var(--red); font-size: 13px; line-height: 1.55; }

@media (max-width: 900px) {
  .cookie-banner { grid-template-columns: 1fr; gap: 14px; }
  .cookie-actions { justify-content: flex-start; }
  .desktop-nav { display: none; }
  .mobile-nav { display: block; position: relative; }
  .mobile-nav > summary { min-width: 92px; min-height: 44px; display: flex; align-items: center; justify-content: center; gap: 9px; cursor: pointer; list-style: none; color: var(--ink); background: white; border: 1px solid var(--line); border-radius: 4px; font-size: 13px; font-weight: 800; }
  .mobile-nav > summary b { font: inherit; }
  .mobile-nav > summary::-webkit-details-marker { display: none; }
  .mobile-nav > summary .menu-icon { width: 18px; height: auto; flex: 0 0 18px; display: grid; gap: 4px; color: var(--ink); transform: none; }
  .mobile-nav[open] > summary .menu-icon { transform: none; }
  .menu-icon i { height: 2px; display: block; background: currentColor; border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
  .mobile-nav[open] .menu-icon i:first-child { transform: translateY(6px) rotate(45deg); }
  .mobile-nav[open] .menu-icon i:nth-child(2) { opacity: 0; }
  .mobile-nav[open] .menu-icon i:last-child { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav-panel { position: fixed; z-index: 100; top: 88px; left: 18px; right: 18px; max-height: calc(100dvh - 108px); overflow-y: auto; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 24px 60px rgba(16,38,56,.22); }
  .mobile-nav-panel nav { display: grid; align-items: stretch; gap: 2px; }
  .mobile-nav-panel nav > a { min-height: 44px; display: flex; align-items: center; padding: 10px 12px; border-radius: 5px; }
  .mobile-nav-panel nav > a:hover, .mobile-nav-panel nav > a.nav-current { color: var(--red); background: #f7f3ef; }
  .mobile-nav-panel strong { margin: 14px 12px 5px; color: var(--muted); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
  .mobile-language { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 6px; margin-top: 10px; padding-top: 14px; border-top: 1px solid var(--line); }
  .mobile-language strong { grid-column: 1 / -1; margin: 0 0 3px; }
  .mobile-language a { min-height: 42px; display: grid; place-items: center; padding: 6px 3px; color: var(--muted); background: #f7f3ef; border-radius: 4px; font-size: 0; }
  .mobile-language a b { font-size: 12px; }
  .mobile-language a.active { color: white; background: var(--ink); }
  .mobile-nav-cta { width: 100%; min-height: 48px; justify-content: center; margin-top: 14px; }
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 55px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 20px; }
  .slavia-proof { grid-template-columns: 1fr; text-align: center; }
  .slavia-proof .eyebrow { justify-content: center; }
  .slavia-proof > img { max-width: 360px; justify-self: center; }
  .audience-panel { grid-template-columns: 1fr; text-align: center; }
  .audience-panel .eyebrow { justify-content: center; }
  .faq { grid-template-columns: 1fr; gap: 55px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .benefit-grid article:nth-child(2) { border: 0; }
  .guide-grid { grid-template-columns: 1fr 1fr; }
  .guide-grid .guide-featured { grid-column: 1 / 3; grid-row: auto; }
  footer { grid-template-columns: 1fr; text-align: center; }
  .guide-layout { grid-template-columns: 1fr; gap: 50px; }
  .landing-hero { grid-template-columns: 1fr; }
  .guide-layout aside { position: static; grid-template-columns: 1fr 1fr; }
  .guide-layout aside strong { grid-column: 1 / 3; }
  .emergency-strip { flex-wrap: wrap; gap: 18px 30px; }
  .emergency-strip a { margin-left: 0; }
  .footer-brand { margin: auto; }
  .legal { text-align: center; }
}

@media (max-width: 620px) {
  .operator-disclosure { padding: 17px 70px 17px 70px; gap: 4px 8px; }
  .whatsapp-chat { right: 15px; bottom: 18px; width: 54px; padding: 0; justify-content: center; }
  .whatsapp-chat span { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; max-height: calc(100dvh - 16px); overflow-y: auto; padding: 18px; }
  .cookie-settings summary, .cookie-settings label { min-height: 44px; display: flex; align-items: center; }
  .cookie-settings input { width: 20px; height: 20px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions button { min-height: 46px; }
  .site-header, .hero, .section, footer { width: min(100% - 30px, 1180px); }
  .site-header { height: 76px; }
  .brand strong { font-size: 15px; }
  .brand-mark { width: 35px; height: 35px; }
  .mobile-nav-panel { top: 76px; left: 8px; right: 8px; max-height: calc(100dvh - 88px); padding: 14px; }
  h1 { font-size: 46px; }
  .hero { padding: 48px 0 60px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .provider-lockup { justify-content: center; }
  .faq-search { width: min(100% - 30px, 1000px); margin-top: -18px; padding: 26px 20px 22px; }
  .faq-search-heading { align-items: flex-start; }
  .faq-search-heading > span { width: 38px; height: 38px; }
  .faq-search-results { max-height: 310px; }
  .facility-directory { padding: 22px 16px; }
  .directory-controls, .facility-grid { grid-template-columns: 1fr; }
  .button-primary { width: 100%; }
  .hero-card, .hero-card > img { min-height: 390px; height: 390px; }
  .orb { width: 190px; height: 190px; padding-top: 44px; }
  .trust-strip { grid-template-columns: 1fr; padding: 0 15px; }
  .trust-strip p { border-right: 0; border-bottom: 1px solid var(--line); }
  .slavia-proof { width: calc(100% - 30px); margin-top: 55px; padding: 45px 24px; gap: 35px; }
  .footer-provider { justify-content: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-grid article, .benefit-grid article:first-child, .benefit-grid article:last-child { padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .guide-grid { grid-template-columns: 1fr; }
  .seo-paths { grid-template-columns: 1fr; }
  .guide-grid .guide-featured { grid-column: auto; min-height: 390px; }
  .guide-hero, .guide-layout { width: min(100% - 30px, 1180px); }
  .landing-hero, .landing-body { width: min(100% - 30px, 1180px); }
  .faq-hub { width: min(100% - 30px, 1180px); }
  .guide-hero { padding: 62px 0 50px; }
  .guide-hero h1 { font-size: 43px; }
  .emergency-strip { display: grid; }
  .guide-layout { padding: 60px 0 80px; }
  .guide-layout aside { grid-template-columns: 1fr; }
  .guide-layout aside strong { grid-column: auto; }
  .guide-content article { padding-bottom: 58px; margin-bottom: 58px; }
  .compare-grid, .emergency-cards, .check-grid { grid-template-columns: 1fr; }
  .section { padding: 78px 0; }
  .steps { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .step h3 { margin-top: 22px; }
  .audience { padding-top: 0; }
  .audience-panel { padding: 50px 25px; gap: 25px; }
  .audience-panel .button { white-space: normal; }
  .faq { padding-top: 78px; }
  .final-cta { width: 100%; padding-left: 20px; padding-right: 20px; }
  .card-features { grid-template-columns: 1fr; }
  .card-features span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
