:root {
  --green: #28a928;
  --green-dark: #137a24;
  --green-deep: #0f5c25;
  --green-soft: #eaf8ec;
  --green-pale: #f3fbf4;
  --page: #f7faf8;
  --card: #ffffff;
  --text: #1f2933;
  --muted: #607080;
  --line: #dde8e1;
  --lime: #c8f04a;
  --shadow: 0 14px 35px rgba(22, 94, 38, 0.08);
  --shadow-soft: 0 8px 24px rgba(31, 41, 51, 0.07);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 76px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,232,225,.82);
  box-shadow: 0 4px 20px rgba(0,0,0,.045);
}
.nav-shell {
  width: min(var(--max), calc(100% - 42px));
  height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 210px) minmax(0, 1fr) minmax(255px, auto);
  align-items: center;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; justify-self: start; }
.brand img { width: 146px; height: auto; }
.main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14.5px;
  font-weight: 750;
  white-space: nowrap;
}
.main-nav a {
  padding: 27px 0 24px;
  border-bottom: 3px solid transparent;
  color: #17212b;
}
.main-nav a.active, .main-nav a:hover { color: var(--green); border-color: var(--green); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 12px; flex-shrink: 0; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 13px;
  background: #fff;
  font-size: 14px;
  font-weight: 700;
}
.help-link { color: #1f2933; }
.age-pill {
  color: var(--green-dark);
  border: 2px solid var(--green);
  border-radius: 14px;
  font-size: 18px;
  font-weight: 900;
  padding: 5px 10px;
  line-height: 1;
  background: #fff;
}
.platform-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 13px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 18px rgba(40,169,40,.18);
  white-space: nowrap;
}
.platform-cta:hover { background: var(--green-dark); }
.platform-modal[hidden] { display: none; }
.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  padding: 22px;
}
.platform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 28, .46);
  backdrop-filter: blur(4px);
}
.platform-modal__card {
  position: relative;
  width: min(460px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: 0 28px 70px rgba(8, 43, 20, .24);
  padding: 28px;
}
.platform-modal__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 950;
  font-size: 20px;
  margin-bottom: 14px;
}
.platform-modal h2 { margin: 0 0 10px; font-size: 24px; color: var(--green-dark); }
.platform-modal p { margin: 0 0 18px; color: var(--muted); }
.platform-modal__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.platform-modal__actions .btn { min-height: 44px; box-shadow: none; }
.flag { width: 22px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }
.mobile-toggle { display: none; }

.container { width: min(var(--max), calc(100% - 42px)); margin: 0 auto; }
.hero {
  position: relative;
  overflow: hidden;
  min-height: 335px;
  background:
    radial-gradient(circle at 72% 36%, rgba(40,169,40,.14), transparent 34%),
    linear-gradient(90deg, #f8fff9 0%, #edf9ef 48%, #fbfffb 100%);
  border-bottom: 1px solid #e3efe7;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(40,169,40,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40,169,40,.06) 1px, transparent 1px);
  background-size: 22px 22px, 90px 90px;
  opacity: .24;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 28px;
  padding: 58px 0 44px;
}
.hero-copy h1 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(44px, 5.2vw, 70px);
  line-height: .98;
  letter-spacing: -2.5px;
  font-weight: 900;
}
.hero-copy .lead {
  max-width: 590px;
  margin: 0 0 18px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.22;
  color: #1f2933;
  font-weight: 850;
}
.hero-copy p {
  max-width: 540px;
  margin: 0 0 24px;
  color: #42515f;
  font-size: 15.5px;
}
.actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1.5px solid transparent;
  font-weight: 850;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(40,169,40,.14);
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); }
.btn-secondary { background: #fff; color: var(--green-dark); border-color: var(--green-dark); box-shadow: none; }
.btn-secondary:hover { background: var(--green-soft); }
.hero-art {
  min-height: 286px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.city-art {
  width: 100%;
  height: 280px;
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(234,248,236,.92));
  border-radius: 32px;
  overflow: hidden;
}
.city-art svg { width: 100%; height: 100%; }
.security-device {
  position: absolute;
  right: 3%;
  bottom: 12px;
  width: min(330px, 48%);
  aspect-ratio: 1.1;
  filter: drop-shadow(0 18px 22px rgba(35,87,45,.18));
}
.float-badge {
  position: absolute;
  left: 47%;
  bottom: 26px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}
.float-badge img { width: 50px; }

.feature-row {
  transform: translateY(18px);
  margin-bottom: 36px;
  position: relative;
  z-index: 3;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.feature-card {
  min-height: 132px;
  padding: 20px 20px 18px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  align-items: start;
}
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #e7f8e8, #ffffff);
  color: var(--green);
  flex-shrink: 0;
}
.icon-box svg { width: 34px; height: 34px; stroke-width: 2.4; }
.feature-card h3 { margin: 0 0 5px; font-size: 17px; line-height: 1.2; color: #163c22; }
.feature-card p { margin: 0 0 8px; font-size: 13px; color: #526271; }
.more { color: var(--green); font-size: 13px; font-weight: 850; }

.section { padding: 16px 0; }
.two-col {
  display: grid;
  grid-template-columns: 1.28fr .92fr;
  gap: 18px;
  align-items: stretch;
}
.security-panel {
  background: linear-gradient(110deg, #effaf0, #ffffff 56%);
  padding: 28px;
  overflow: hidden;
}
.section-title { margin: 0 0 8px; color: var(--green-dark); font-size: 28px; line-height: 1.1; letter-spacing: -.4px; }
.section-copy { margin: 0 0 20px; color: #42515f; max-width: 560px; }
.check-list { display: grid; gap: 16px; }
.check-item { display: grid; grid-template-columns: 40px 1fr; gap: 12px; align-items: start; }
.check-icon { width: 36px; height: 36px; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid #bde7c1; color: var(--green); }
.check-icon svg { width: 22px; height: 22px; }
.check-item strong { display: block; font-size: 15px; color: #21312b; margin-bottom: 2px; }
.check-item span { font-size: 13px; color: #526271; }
.panel-art { min-height: 222px; position: relative; display: grid; place-items: center; background: radial-gradient(circle at 50% 50%, rgba(40,169,40,.12), transparent 62%); }
.panel-art svg { width: min(370px, 94%); height: auto; }
.help-card { padding: 26px; }
.help-card h2 { margin: 0 0 8px; color: var(--green-dark); font-size: 28px; line-height: 1.1; }
.help-card p { margin: 0 0 16px; color: #42515f; }
.help-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.help-option { min-height: 112px; padding: 16px 10px; border: 1px solid var(--line); border-radius: 16px; display: grid; place-items: center; text-align: center; background: #fff; }
.help-option .mini-icon { color: var(--green); margin-bottom: 8px; }
.help-option strong { display: block; font-size: 14px; }
.help-option span { font-size: 12px; color: #607080; line-height: 1.35; }

.faq-section { padding: 14px 0 8px; }
.faq-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin: 0 0 14px; }
.faq-head h2 { margin: 0; color: var(--green-dark); font-size: 27px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
details.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 5px 14px rgba(31,41,51,.04);
}
details.faq-item summary {
  cursor: pointer;
  padding: 14px 18px;
  list-style: none;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "⌄"; color: #17212b; font-size: 18px; }
details.faq-item[open] summary::after { content: "⌃"; }
details.faq-item p { margin: 0; padding: 0 18px 16px; color: #526271; font-size: 14px; }

.notice { margin: 12px 0 0; }
.notice-card {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 16px 26px;
  background: linear-gradient(90deg, #f1fbf2, #fff 70%);
  border: 1px solid #cbe9d0;
  border-radius: 18px;
}
.notice-badge { width: 55px; height: 55px; border: 3px solid var(--green); color: var(--green-dark); border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: 20px; background: #fff; }
.notice-card strong { display: block; font-size: 18px; color: #173920; }
.notice-card span { display: block; color: #526271; font-size: 14px; }

.site-footer {
  margin-top: 22px;
  background: linear-gradient(135deg, #0c6226, #034516);
  color: #fff;
}
.footer-grid {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 34px 0 18px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
}
.footer-logo { width: 142px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-about p { max-width: 330px; margin: 0 0 16px; color: rgba(255,255,255,.86); }
.socials { display: flex; gap: 10px; }
.socials a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.14); }
.footer-col h3 { margin: 0 0 12px; font-size: 15px; }
.footer-col a { display: block; color: rgba(255,255,255,.82); margin: 7px 0; font-size: 14px; }
.region-link { display: flex !important; align-items: center; justify-content: space-between; border: 1px solid rgba(255,255,255,.24); border-radius: 10px; padding: 8px 12px; min-width: 240px; }
.region-link span { display: inline-flex; align-items: center; gap: 10px; }
.footer-bottom {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
  padding: 15px 0 22px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.footer-trust { display: flex; gap: 18px; align-items: center; }
.footer-trust span { display: inline-flex; align-items: center; gap: 6px; }

@media (max-width: 1100px) {
  .nav-shell { grid-template-columns: minmax(130px, 168px) minmax(0, 1fr) minmax(230px, auto); gap: 14px; }
  .brand img { width: 132px; }
  .main-nav { gap: 16px; font-size: 13.5px; }
  .platform-cta { padding: 0 12px; }
}
@media (max-width: 980px) {
  .site-header, .nav-shell { height: auto; }
  .nav-shell {
    padding: 12px 0 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
  }
  .brand { grid-column: 1; }
  .header-actions { grid-column: 2; justify-self: end; }
  .main-nav {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 22px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }
  .main-nav::-webkit-scrollbar { display: none; }
  .main-nav a { padding: 8px 0 10px; }
  .hero-grid, .two-col { grid-template-columns: 1fr; }
  .hero-art { min-height: 250px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .container, .nav-shell, .footer-grid, .footer-bottom { width: min(100% - 28px, var(--max)); }
  .brand img { width: 124px; }
  .header-actions { gap: 7px; }
  .help-link { display: none; }
  .pill { height: 34px; padding: 0 10px; font-size: 13px; }
  .platform-cta { min-height: 34px; padding: 0 11px; font-size: 13px; }
  .age-pill { font-size: 15px; padding: 5px 8px; border-radius: 12px; }
  .main-nav { font-size: 13px; }
  .hero-grid { padding-top: 38px; }
  .hero-copy h1 { font-size: 42px; }
  .feature-grid, .faq-grid, .help-options, .footer-grid { grid-template-columns: 1fr; }
  .feature-card { grid-template-columns: 52px 1fr; }
  .security-panel, .help-card { padding: 20px; }
  .notice-card { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .notice-card .more { justify-self: center; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .platform-modal__card { padding: 22px; border-radius: 22px; }
}

/* Brazil homepage additions */
body.region-br {
  --accent-gold: #d9b547;
  --gold-soft: #fff8df;
}
.region-br .hero {
  background:
    radial-gradient(circle at 74% 28%, rgba(217,181,71,.18), transparent 24%),
    radial-gradient(circle at 72% 42%, rgba(40,169,40,.16), transparent 36%),
    linear-gradient(90deg, #fbfffb 0%, #eff9f1 50%, #fffdf3 100%);
}
.br-hero-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 46px;
  background: linear-gradient(100deg, transparent 0 45%, rgba(40,169,40,.72) 46% 73%, rgba(217,181,71,.84) 74% 100%);
  opacity: .78;
  clip-path: polygon(0 55%, 45% 55%, 60% 20%, 100% 0, 100% 100%, 0 100%);
}
.trust-grid-br {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.trust-card-br {
  padding: 28px 18px 24px;
  min-height: 206px;
  text-align: center;
  display: grid;
  justify-items: center;
  align-content: start;
}
.trust-card-br .icon-box {
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border-radius: 22px;
}
.trust-card-br h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-size: 19px;
}
.trust-card-br p {
  margin: 0 0 14px;
  color: #526271;
  font-size: 14px;
}
.responsible-panel {
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(115deg, #f2fbf3, #fff 46%, #eef9ef);
  overflow: hidden;
}
.responsible-panel h2 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 36px;
  letter-spacing: -.8px;
}
.responsible-panel p { color: #42515f; margin: 0 0 22px; max-width: 560px; }
.responsible-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}
.responsible-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: start;
}
.responsible-point svg { width: 36px; height: 36px; color: var(--green); }
.responsible-point strong { display: block; font-size: 14px; color: #173920; margin-bottom: 2px; }
.responsible-point span { display: block; font-size: 12.5px; color: #607080; }
.br-info-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr .95fr;
  gap: 18px;
}
.br-info-card {
  padding: 26px;
  min-height: 156px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 18px;
  align-items: center;
}
.br-info-card.gold { background: linear-gradient(135deg, #fff9e6, #fff); border-color: #f1dfac; }
.br-info-card.blue { background: linear-gradient(135deg, #f1f8ff, #fff); border-color: #cfe2f5; }
.br-info-card.green { background: linear-gradient(135deg, #f0fbf1, #fff); border-color: #cbe9d0; }
.br-info-card h3 { margin: 0 0 8px; color: #173920; font-size: 20px; }
.br-info-card p { margin: 0 0 8px; color: #526271; font-size: 13.5px; }
.br-info-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 5px; }
.br-info-card li { font-size: 13px; color: #345; }
.br-info-card li::before { content: "◉"; color: var(--green); font-size: 10px; margin-right: 8px; }
.br-alert-notice .notice-card {
  background: linear-gradient(90deg, #fff9e3, #fff 72%);
  border-color: #f0d99a;
}
.br-alert-notice .notice-badge { border-color: var(--accent-gold); color: #b18612; }
.br-art svg { width: min(475px, 100%); }
@media (max-width: 980px) {
  .trust-grid-br, .responsible-panel, .br-info-grid { grid-template-columns: 1fr 1fr; }
  .responsible-art { order: -1; }
  .responsible-points { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .trust-grid-br, .responsible-panel, .br-info-grid { grid-template-columns: 1fr; }
  .br-info-card { grid-template-columns: 70px 1fr; padding: 20px; }
}


/* Vietnam V2 homepage */
.region-vn .vn-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(115deg, #fbfffb 0%, #eef9f1 58%, #fff 100%);
  border-bottom: 1px solid #e3efe7;
}
.vn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(40,169,40,.12) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .24;
}
.vn-hero-grid { position: relative; display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; padding: 64px 0 52px; }
.vn-art { min-height: 320px; position: relative; display: grid; place-items: center; }
.vn-card-browser { width: min(460px, 92%); min-height: 245px; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow); padding: 20px; position: relative; z-index: 2; }
.browser-dots { display: flex; gap: 8px; margin-bottom: 18px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: #bfe8c4; }
.domain { border: 1px solid #d8eadc; background: #f4fbf5; color: var(--green-dark); border-radius: 14px; padding: 12px 16px; font-weight: 850; }
.shield-big { position: absolute; right: 38px; bottom: 34px; width: 96px; height: 112px; background: linear-gradient(180deg, #28a928, #137a24); color: #fff; border-radius: 48px 48px 34px 34px; display: grid; place-items: center; font-size: 42px; font-weight: 900; box-shadow: 0 18px 30px rgba(19,122,36,.2); }
.vn-landmark { position: absolute; left: 12%; bottom: 16px; width: 72%; height: 120px; border-radius: 30px; background: linear-gradient(180deg, rgba(40,169,40,.14), rgba(40,169,40,.03)); clip-path: polygon(0 70%,8% 65%,15% 72%,22% 50%,30% 70%,42% 56%,54% 72%,62% 44%,74% 70%,84% 60%,100% 72%,100% 100%,0 100%); }
.official-strip { transform: translateY(-22px); position: relative; z-index: 4; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); padding: 14px; }
.official-item { padding: 12px 16px; border-radius: 16px; background: #f4fbf5; }
.official-item strong { display: block; color: var(--green-dark); font-size: 15px; }
.official-item span { color: #607080; font-size: 13px; }
.section-heading { text-align: center; max-width: 660px; margin: 0 auto 20px; }
.section-heading h2 { margin: 0 0 8px; color: var(--green-dark); font-size: 32px; }
.section-heading p { margin: 0; color: #607080; }
.vn-steps, .vn-updates { padding: 18px 0; }
.step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 24px; box-shadow: var(--shadow-soft); }
.step-card span { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 15px; background: #eaf8ec; color: var(--green-dark); font-weight: 900; margin-bottom: 16px; }
.step-card h3 { margin: 0 0 8px; color: #173920; }
.step-card p { margin: 0; color: #526271; }
.vn-security-row { display: grid; grid-template-columns: 1.12fr .88fr; gap: 18px; padding: 18px 0; }
.vn-security-card, .vn-support-card { padding: 30px; }
.vn-security-card { background: linear-gradient(115deg, #effaf0, #fff 58%); }
.vn-security-card h2, .vn-support-card h2 { margin: 0 0 10px; color: var(--green-dark); font-size: 30px; }
.vn-security-card p { color: #42515f; }
.vn-security-card ul { padding: 0; list-style: none; display: grid; gap: 10px; margin: 0 0 22px; }
.vn-security-card li::before { content: "✓"; color: var(--green); font-weight: 900; margin-right: 10px; }
.support-list { display: grid; gap: 12px; }
.support-list a { padding: 14px 16px; border: 1px solid var(--line); border-radius: 14px; background: #f8fcf8; font-weight: 800; color: #173920; }
.timeline-list { display: grid; gap: 14px; max-width: 900px; margin: 0 auto; }
.timeline-card { display: grid; grid-template-columns: 64px 1fr; gap: 16px; padding: 18px 22px; align-items: start; }
.timeline-card > span { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #eaf8ec; color: var(--green-dark); font-weight: 900; }
.timeline-card h2, .timeline-card h3 { margin: 0 0 6px; color: #173920; }
.timeline-card p { margin: 0; color: #526271; }
@media (max-width: 980px) { .vn-hero-grid, .vn-security-row { grid-template-columns: 1fr; } .official-strip, .step-grid { grid-template-columns: 1fr; } }

/* Inner pages */
.inner-hero { background: linear-gradient(110deg, #fbfffb 0%, #edf9ef 65%, #fff 100%); border-bottom: 1px solid #e3efe7; }
.inner-hero-grid { display: grid; grid-template-columns: 1fr 220px; gap: 26px; align-items: center; padding: 52px 0 44px; }
.breadcrumb { display: flex; gap: 10px; align-items: center; color: #607080; font-size: 14px; margin-bottom: 16px; }
.breadcrumb a { color: var(--green-dark); font-weight: 800; }
.inner-hero h1 { margin: 0 0 12px; color: var(--green-dark); font-size: clamp(36px, 5vw, 58px); line-height: 1; letter-spacing: -1.6px; }
.inner-hero p { margin: 0; color: #42515f; font-size: 17px; max-width: 760px; }
.inner-hero-mark { width: 160px; height: 160px; border-radius: 40px; display: grid; place-items: center; color: var(--green); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.inner-hero-mark svg { width: 92px; height: 92px; }
.inner-content { padding: 32px 0 18px; }
.inner-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.inner-card { padding: 26px; min-height: 230px; }
.inner-card .icon-box { margin-bottom: 18px; }
.inner-card h2 { margin: 0 0 10px; color: #173920; font-size: 22px; }
.inner-card p { margin: 0; color: #526271; }
.prose-card { padding: 34px; max-width: 920px; margin: 0 auto; }
.prose-card section { padding: 18px 0; border-bottom: 1px solid var(--line); }
.prose-card section:first-child { padding-top: 0; }
.prose-card section:last-child { border-bottom: 0; padding-bottom: 0; }
.prose-card h2 { margin: 0 0 8px; color: var(--green-dark); }
.prose-card p { margin: 0; color: #526271; }
.inner-faq { max-width: 980px; margin: 0 auto; }
.inner-faq-section { padding-top: 0; }
.related-section { padding: 14px 0; }
.related-card { padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.related-card h2 { margin: 0; color: var(--green-dark); font-size: 22px; }
.related-card div { display: flex; gap: 16px; flex-wrap: wrap; }
.related-card a { color: var(--green-dark); font-weight: 850; }
.sitemap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.sitemap-tile { display: block; padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-soft); }
.sitemap-tile strong { display: block; color: var(--green-dark); margin-bottom: 6px; }
.sitemap-tile span { color: #607080; font-size: 13px; }
@media (max-width: 980px) { .inner-hero-grid, .inner-card-grid, .sitemap-grid { grid-template-columns: 1fr; } .inner-hero-mark { display:none; } .related-card { display:block; } .related-card div { margin-top: 12px; } }
.platform-modal__unavailable {
  padding: 12px 14px;
  border: 1px solid #f0d28a;
  border-radius: 14px;
  background: #fff9e8;
  color: #765100 !important;
  font-size: 14px;
}
body.modal-open { overflow: hidden; }

/* V5 fixes: centered footer and mobile hamburger navigation */
.nav-shell {
  grid-template-columns: 190px minmax(0, 1fr) 360px;
}
.main-nav {
  justify-self: center;
  max-width: 100%;
}
.header-actions { min-width: 0; }
.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  color: var(--green-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.menu-open .mobile-menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .mobile-menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.site-header.is-scrolled { box-shadow: 0 8px 26px rgba(0,0,0,.07); }

.footer-grid,
.footer-bottom {
  width: min(1120px, calc(100% - 42px));
}
.footer-grid {
  grid-template-columns: minmax(250px, 1.1fr) minmax(150px, .8fr) minmax(180px, .9fr) minmax(230px, 1fr);
  justify-content: center;
  align-items: start;
}
.footer-col,
.footer-about { min-width: 0; }
.footer-about { justify-self: start; }
.region-link { width: 100%; max-width: 270px; min-width: 0; }

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 170px minmax(0, 1fr) 330px;
    gap: 14px;
  }
  .main-nav { gap: clamp(12px, 1.3vw, 20px); font-size: 13.5px; }
  .brand img { width: 132px; }
  .platform-cta { padding: 0 12px; }
}

@media (max-width: 980px) {
  .site-header { height: auto; }
  .nav-shell {
    height: auto;
    min-height: 70px;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    align-items: center;
  }
  .brand { grid-area: brand; }
  .header-actions { grid-area: actions; justify-self: end; gap: 8px; }
  .mobile-menu-toggle { display: inline-flex; }
  .main-nav {
    grid-area: nav;
    display: none;
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    overflow: visible;
    white-space: normal;
    justify-content: stretch;
    gap: 6px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-header.menu-open .main-nav { display: grid; }
  .main-nav a {
    padding: 12px 13px;
    border-bottom: 0;
    border-radius: 12px;
    background: var(--green-pale);
  }
  .main-nav a.active, .main-nav a:hover {
    color: var(--green-dark);
    background: var(--green-soft);
    border-color: transparent;
  }
}

@media (max-width: 680px) {
  .nav-shell { width: min(100% - 24px, var(--max)); }
  .brand img { width: 122px; }
  .pill,
  .help-link { display: none; }
  .platform-cta { min-height: 36px; padding: 0 12px; font-size: 13px; }
  .age-pill { font-size: 14px; padding: 5px 8px; }
  .mobile-menu-toggle { width: 38px; height: 36px; }
  .main-nav { grid-template-columns: 1fr; }
  .footer-grid,
  .footer-bottom { width: min(100% - 28px, 1120px); }
  .footer-grid { justify-items: start; }
}

@media (max-width: 390px) {
  .platform-cta { padding: 0 10px; }
  .age-pill { display: none; }
}

/* V6 fix: keep shared container sections centered when section-specific margins apply */
.notice.container,
section.notice.container {
  width: min(var(--max), calc(100% - 42px));
  margin: 12px auto 0 !important;
}

/* Keep the notice card visually aligned with the same content column as cards above */
.notice-card {
  max-width: 100%;
}

@media (max-width: 680px) {
  .notice.container,
  section.notice.container {
    width: min(100% - 28px, var(--max));
    margin: 12px auto 0 !important;
  }
}


/* =========================
   V9 homepage enhancement
   ========================= */
.home-v9 .hero { padding: 56px 0 48px; background: radial-gradient(circle at 72% 20%, rgba(200,240,74,.18), transparent 34%), linear-gradient(120deg,#f6fbf7 0%,#eef9f0 100%); overflow: hidden; }
.home-v9 .hero-grid { min-height: 420px; gap: 44px; }
.home-v9 .hero-copy .eyebrow { display:inline-flex; align-items:center; gap:8px; padding:8px 13px; border-radius:999px; background:#fff; border:1px solid #cfe8d3; color:var(--green-dark); font-weight:850; font-size:13px; box-shadow:var(--shadow-soft); margin-bottom:18px; }
.home-v9 .hero-copy h1 { font-size: clamp(44px, 6vw, 76px); line-height:.98; letter-spacing:-2.4px; margin:0 0 18px; color:#075a23; }
.home-v9 .hero-copy .lead { font-size: clamp(20px,2.1vw,30px); font-weight:850; line-height:1.2; color:#24313d; margin-bottom:16px; max-width: 690px; }
.home-v9 .hero-copy p:not(.lead) { max-width: 660px; font-size:16.5px; color:#394855; }
.home-v9 .actions { margin-top: 26px; display:flex; flex-wrap:wrap; gap:14px; }
.hero-art.v9-art { min-height: 360px; display:grid; place-items:center; position:relative; }
.v9-dashboard { width:min(540px,100%); min-height:330px; position:relative; border-radius:34px; border:1px solid rgba(151,207,160,.7); background:linear-gradient(145deg,#fff 0%,#effaf1 100%); box-shadow:0 32px 70px rgba(21,105,42,.16); padding:24px; overflow:hidden; }
.v9-dashboard:before { content:""; position:absolute; inset:auto -50px -85px -50px; height:180px; background:linear-gradient(90deg,rgba(40,169,40,.12),rgba(200,240,74,.22)); border-radius:50%; }
.browser-dots { display:flex; gap:9px; margin-bottom:18px; }
.browser-dots span { width:11px; height:11px; border-radius:50%; background:#b7e1bf; }
.domain-card { display:flex; align-items:center; justify-content:space-between; gap:18px; min-height:78px; border-radius:20px; border:1px solid #cfe8d3; background:#fff; padding:16px 18px; font-weight:900; color:var(--green-dark); font-size:20px; box-shadow:var(--shadow-soft); position:relative; z-index:2; }
.hero-panel-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px; position:relative; z-index:2; }
.hero-mini-card { background:#fff; border:1px solid #d9eadc; border-radius:19px; padding:16px; min-height:105px; display:flex; flex-direction:column; gap:8px; box-shadow:0 10px 22px rgba(31,41,51,.055); }
.hero-mini-card strong { color:#073f1b; }
.hero-mini-card span { color:var(--muted); font-size:13px; }
.hero-icon { width:44px;height:44px;border-radius:14px;background:#eaf8ec;color:var(--green);display:grid;place-items:center;font-weight:950;font-size:23px; }
.shield-orb { position:absolute; right:25px; bottom:22px; width:116px; height:116px; border-radius:34px; background:linear-gradient(145deg,#54c653,#08711c); display:grid; place-items:center; color:#fff; font-size:58px; font-weight:900; box-shadow:0 22px 46px rgba(40,169,40,.28); z-index:3; }
.region-floating { position:absolute; right:6px; top:88px; display:grid; gap:10px; z-index:3; }
.region-floating span { background:#fff; border:1px solid #d8eadc; border-radius:999px; padding:9px 13px; font-size:13px; font-weight:900; box-shadow:var(--shadow-soft); }
.skyline { position:absolute; left:18px; right:18px; bottom:0; height:145px; opacity:.34; background:linear-gradient(to top,rgba(19,122,36,.22),transparent); clip-path: polygon(0 85%,5% 78%,10% 82%,14% 62%,19% 70%,24% 48%,29% 77%,34% 60%,39% 78%,44% 42%,49% 72%,55% 54%,60% 75%,65% 44%,70% 75%,76% 57%,81% 78%,86% 65%,91% 82%,100% 68%,100% 100%,0 100%); }
.channel-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:-20px; position:relative; z-index:4; background:#fff; border:1px solid #cfe8d3; border-radius:18px; box-shadow:var(--shadow); overflow:hidden; }
.channel-item { display:flex; gap:14px; align-items:center; padding:18px 20px; border-right:1px solid #e3eee6; }
.channel-item:last-child { border-right:0; }
.channel-item .round-icon { width:48px; height:48px; border-radius:16px; background:#eaf8ec; color:var(--green); display:grid; place-items:center; font-size:25px; font-weight:900; flex:none; }
.channel-item strong { display:block; font-size:15px; color:#113d21; }
.channel-item span { display:block; font-size:13px; color:var(--muted); line-height:1.35; }
.v9-section { padding: 48px 0; }
.v9-section-title { font-size: clamp(28px,3vw,42px); line-height:1.1; letter-spacing:-1px; margin:0 0 12px; color:#075a23; }
.v9-section-copy { max-width:740px; color:var(--muted); font-size:16.5px; margin:0 0 26px; }
.enhanced-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.enhanced-grid.four { grid-template-columns:repeat(4,1fr); }
.enhanced-card { background:#fff; border:1px solid var(--line); border-radius:24px; padding:24px; box-shadow:var(--shadow-soft); min-height: 190px; }
.enhanced-card h3 { margin:14px 0 8px; color:#073f1b; font-size:20px; }
.enhanced-card p { margin:0; color:var(--muted); }
.split-feature { display:grid; grid-template-columns:1.05fr .95fr; gap:22px; align-items:stretch; }
.info-panel { background:#fff; border:1px solid var(--line); border-radius:28px; padding:30px; box-shadow:var(--shadow); }
.info-panel.soft { background:linear-gradient(135deg,#ffffff,#f0faef); }
.step-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.step-card { display:flex; gap:16px; align-items:flex-start; position:relative; }
.step-num { width:36px;height:36px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;font-weight:900; flex:none; }
.policy-list { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-top:14px; }
.policy-list a { display:flex; align-items:center; justify-content:space-between; padding:13px 14px; border-radius:14px; background:#f8fcf9; border:1px solid #dcebe0; font-weight:800; color:#0f5c25; }
.timeline { display:grid; gap:0; background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; box-shadow:var(--shadow-soft); }
.timeline-item { display:grid; grid-template-columns:120px 1fr 32px; gap:16px; align-items:center; padding:18px 22px; border-bottom:1px solid #e8f0ea; }
.timeline-item:last-child { border-bottom:0; }
.timeline-date { color:var(--green-dark); font-weight:900; }
.timeline-item strong { display:block; color:#173624; }
.timeline-item span { color:var(--muted); font-size:14px; }
.global-regions { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.region-card { background:#fff; border:1px solid var(--line); border-radius:28px; padding:26px; box-shadow:var(--shadow); position:relative; overflow:hidden; min-height:230px; }
.region-card:after { content:""; position:absolute; width:150px; height:150px; border-radius:50%; background:rgba(40,169,40,.07); right:-50px; top:-40px; }
.region-tag { display:inline-flex; gap:8px; align-items:center; background:#f2faf3; border:1px solid #d5ead9; border-radius:999px; padding:7px 12px; color:#0f5c25; font-weight:900; margin-bottom:15px; }
.region-card h2 { margin:0 0 10px; color:#073f1b; }
.region-card p { color:var(--muted); min-height:72px; }
.region-card .btn { margin-top:12px; }
.trust-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.trust-item { background:#fff; border:1px solid var(--line); border-radius:22px; padding:20px; display:flex; gap:14px; align-items:flex-start; }
.trust-item .round-icon { width:42px;height:42px;border-radius:14px;background:#eaf8ec;color:#28a928;display:grid;place-items:center;font-weight:950;flex:none; }
.br-accent .hero { background:radial-gradient(circle at 72% 20%,rgba(217,181,71,.18),transparent 32%),linear-gradient(120deg,#f8fbf8,#f0faef); }
.br-accent .yellow-wave { position:absolute; right:-50px; bottom:18px; width:420px; height:72px; border-radius:80% 20%; background:linear-gradient(90deg,rgba(40,169,40,.72),rgba(217,181,71,.85)); transform:rotate(-7deg); opacity:.9; }
.notice.container, section.notice.container { width:min(var(--max),calc(100% - 42px)); margin:12px auto 0!important; }
.home-v9 .faq-section { padding-top:40px; }
.home-v9 .notice { padding-bottom: 28px; }
@media (max-width: 980px) {
  .home-v9 .hero-grid, .split-feature { grid-template-columns:1fr; }
  .channel-strip, .enhanced-grid, .enhanced-grid.four, .step-row, .global-regions, .trust-strip { grid-template-columns:1fr 1fr; }
  .channel-item:nth-child(2) { border-right:0; }
  .channel-item { border-bottom:1px solid #e3eee6; }
  .hero-art.v9-art { min-height:300px; }
}
@media (max-width: 620px) {
  .home-v9 .hero { padding:38px 0 30px; }
  .home-v9 .hero-copy h1 { font-size:42px; letter-spacing:-1.2px; }
  .home-v9 .hero-copy .lead { font-size:21px; }
  .channel-strip, .enhanced-grid, .enhanced-grid.four, .step-row, .global-regions, .trust-strip, .policy-list { grid-template-columns:1fr; }
  .channel-item { border-right:0; }
  .timeline-item { grid-template-columns:1fr 28px; }
  .timeline-date { grid-column:1/-1; }
  .region-floating { display:none; }
  .v9-dashboard { min-height:290px; padding:18px; }
  .shield-orb { width:86px; height:86px; font-size:42px; }
  .hero-panel-grid { grid-template-columns:1fr; }
}


/* =========================
   V10 inner page visual upgrade
   ========================= */
.inner-hero-v10 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(200,240,74,.16), transparent 28%),
    linear-gradient(110deg, #fbfffb 0%, #eff9f1 58%, #ffffff 100%);
  border-bottom: 1px solid #e3efe7;
}
.inner-hero-v10:before {
  content:"";
  position:absolute;
  inset:0;
  background-image: radial-gradient(rgba(40,169,40,.12) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity:.32;
  pointer-events:none;
}
.inner-hero-v10.region-br {
  background:
    radial-gradient(circle at 78% 18%, rgba(217,181,71,.16), transparent 30%),
    linear-gradient(110deg, #fbfffb 0%, #f2faf0 60%, #fffef7 100%);
}
.inner-hero-v10.region-vn {
  background:
    radial-gradient(circle at 78% 18%, rgba(40,169,40,.12), transparent 30%),
    linear-gradient(110deg, #fbfffb 0%, #f4faf2 62%, #ffffff 100%);
}
.inner-hero-grid-v10 {
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: minmax(0,1fr) minmax(380px, 520px);
  gap: clamp(28px, 5vw, 70px);
  align-items:center;
  padding: clamp(44px, 7vw, 82px) 0;
}
.inner-hero-content-v10 .breadcrumb {
  margin-bottom: 15px;
}
.inner-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border:1px solid #cfe8d3;
  background:#fff;
  color:#0f5c25;
  font-weight:900;
  border-radius:999px;
  box-shadow: var(--shadow-soft);
  margin-bottom:18px;
}
.inner-hero-v10 h1 {
  margin: 0 0 16px;
  color:#075a23;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .98;
  letter-spacing:-1.8px;
  max-width: 790px;
}
.inner-hero-v10 p {
  margin:0;
  color:#394a58;
  font-size:17px;
  line-height:1.72;
  max-width: 820px;
}
.inner-hero-points {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.inner-hero-points span {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid #d8eadc;
  color:#0f5c25;
  font-weight:850;
  box-shadow:0 8px 20px rgba(31,41,51,.04);
}
.inner-hero-points span:before {
  content:"✓";
  width:20px;
  height:20px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:#eaf8ec;
  color:#28a928;
  font-size:12px;
  font-weight:950;
}
.v10-visual {
  position:relative;
  min-height:360px;
  display:grid;
  place-items:center;
}
.v10-map-dots {
  position:absolute;
  right:0;
  top:10px;
  width:210px;
  height:160px;
  opacity:.26;
  background-image: radial-gradient(#28a928 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  clip-path: polygon(20% 0, 88% 6%, 100% 34%, 78% 100%, 30% 84%, 0 45%);
}
.region-br .v10-map-dots { background-image: radial-gradient(#0f8f31 1.5px, transparent 1.5px); clip-path: polygon(25% 0,80% 8%,100% 38%,85% 72%,52% 100%,20% 82%,0 42%); }
.region-vn .v10-map-dots { clip-path: polygon(55% 0,78% 12%,67% 32%,86% 48%,70% 100%,48% 90%,56% 55%,34% 28%); }
.v10-landmark {
  position:absolute;
  right:0;
  bottom:0;
  width:240px;
  height:135px;
  opacity:.24;
  color:#137a24;
}
.v10-landmark:before {
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:100px;
  background: linear-gradient(to top, rgba(19,122,36,.28), transparent);
  clip-path: polygon(0 90%,8% 72%,15% 78%,23% 50%,30% 76%,39% 38%,46% 82%,55% 48%,63% 77%,72% 35%,82% 78%,92% 58%,100% 82%,100% 100%,0 100%);
}
.v10-landmark span { position:absolute; right:10px; bottom:8px; font-size:12px; font-weight:900; color:#0f5c25; }
.region-br .v10-landmark:after { content:""; position:absolute; right:35px; bottom:45px; width:72px; height:72px; border-radius:50% 50% 38% 38%; border:4px solid rgba(19,122,36,.38); border-bottom:0; transform: rotate(-8deg); }
.region-vn .v10-landmark:after { content:""; position:absolute; right:46px; bottom:40px; width:92px; height:62px; border:3px solid rgba(19,122,36,.32); border-radius:16px 16px 6px 6px; transform: skewX(-8deg); }
.v10-window {
  position:relative;
  width:min(520px, 100%);
  min-height:330px;
  border-radius:34px;
  border:1px solid rgba(151,207,160,.7);
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  box-shadow:0 30px 70px rgba(21,105,42,.15);
  padding:24px;
  z-index:2;
}
.v10-dots { display:flex; gap:9px; margin-bottom:18px; }
.v10-dots span { width:11px; height:11px; border-radius:50%; background:#b7e1bf; }
.v10-domain {
  display:flex;
  align-items:center;
  gap:12px;
  min-height:64px;
  border:1px solid #d6ebda;
  border-radius:18px;
  background:#fff;
  padding:12px 14px;
  box-shadow: var(--shadow-soft);
}
.v10-domain strong { color:#162432; font-size:20px; }
.v10-domain em { margin-left:auto; font-style:normal; font-size:12px; font-weight:900; color:#0f5c25; background:#eef9f0; border-radius:999px; padding:8px 10px; white-space:nowrap; }
.v10-lock { width:36px; height:36px; border-radius:12px; display:grid; place-items:center; background:#eaf8ec; color:#28a928; font-weight:900; }
.v10-window-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:16px; }
.v10-primary-card, .v10-side-cards div, .v10-trust-note {
  background:#fff;
  border:1px solid #dceee0;
  box-shadow:0 10px 24px rgba(31,41,51,.055);
}
.v10-primary-card {
  min-height:190px;
  border-radius:22px;
  padding:20px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
.v10-big-icon {
  width:76px;
  height:76px;
  border-radius:24px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(145deg,#54c653,#08711c);
  font-size:34px;
  font-weight:950;
  box-shadow:0 16px 34px rgba(40,169,40,.22);
}
.v10-primary-card strong { color:#073f1b; font-size:19px; }
.v10-primary-card span, .v10-side-cards span { color:#607080; font-size:13px; line-height:1.35; }
.v10-side-cards { display:grid; gap:12px; }
.v10-side-cards div { border-radius:18px; padding:15px; }
.v10-side-cards b { display:block; color:#0f5c25; margin-bottom:4px; }
.v10-trust-note {
  display:flex;
  align-items:center;
  gap:12px;
  margin:16px auto 0;
  width:86%;
  border-radius:18px;
  padding:14px;
}
.v10-trust-note span {
  width:38px;
  height:38px;
  border-radius:13px;
  display:grid;
  place-items:center;
  background:#eaf8ec;
  color:#28a928;
  font-weight:950;
}
.v10-trust-note b { color:#0f5c25; font-size:14px; }
.inner-hero--policy .v10-big-icon { font-size:24px; }
.inner-hero--support .v10-big-icon { background:linear-gradient(145deg,#35bf51,#0a7225); }
.inner-hero--guide .v10-big-icon { background:linear-gradient(145deg,#8bdc62,#159447); }
.related-section { margin-top: 34px; }
.related-card { background:linear-gradient(135deg,#fff,#f3fbf4); }
.related-card h2 { color:#075a23; }
@media (max-width: 980px) {
  .inner-hero-grid-v10 { grid-template-columns:1fr; padding:44px 0; }
  .v10-visual { min-height:300px; }
  .v10-window { max-width:620px; }
}
@media (max-width: 620px) {
  .inner-hero-v10 h1 { font-size:36px; letter-spacing:-1px; }
  .inner-hero-v10 p { font-size:15.5px; }
  .inner-hero-points { display:grid; grid-template-columns:1fr; }
  .v10-window-grid { grid-template-columns:1fr; }
  .v10-domain { flex-wrap:wrap; }
  .v10-domain em { margin-left:0; }
  .v10-visual { min-height:auto; }
  .v10-window { padding:18px; border-radius:26px; }
  .v10-landmark, .v10-map-dots { opacity:.18; }
}

/* V11: image-based regional hero banners. These replace the earlier CSS-only placeholders. */
.hero-image-layout {
  position: relative;
  min-height: 650px;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 72% 20%, rgba(200, 240, 74, .22), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(40,169,40,.08), transparent 32%),
    linear-gradient(120deg,#fbfffb 0%,#eef9f0 100%);
  overflow: hidden;
}
.hero-image-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(rgba(15,92,37,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,92,37,.045) 1px, transparent 1px);
  background-size: 28px 28px;
}
.hero-image-layout .hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(520px, 1.12fr);
  gap: 54px;
  align-items: center;
  min-height: 560px;
  padding-top: 0;
  padding-bottom: 0;
}
.hero-image-layout .hero-copy h1 {
  font-size: clamp(62px, 7vw, 112px);
  line-height: .9;
  letter-spacing: -4px;
  color: #075a23;
  margin-bottom: 24px;
}
.hero-image-layout .hero-copy .lead {
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.18;
  max-width: 720px;
}
.hero-image-layout .hero-copy p:not(.lead) {
  font-size: 18px;
  line-height: 1.72;
  max-width: 700px;
}
.hero-art-image-wrap {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}
.hero-banner-image {
  display: block;
  width: min(100%, 910px);
  height: auto;
  border-radius: 34px;
  filter: drop-shadow(0 28px 45px rgba(15,92,37,.14));
  transform: translateX(12px);
}
.hero-image-layout .eyebrow {
  box-shadow: 0 8px 22px rgba(15,92,37,.08);
}
.hero-image-layout .actions {
  margin-top: 28px;
}
.hero-image-layout .btn {
  min-height: 56px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
}
@media (max-width: 1180px) {
  .hero-image-layout { min-height: auto; padding: 54px 0 46px; }
  .hero-image-layout .hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 28px; }
  .hero-art-image-wrap { min-height: 360px; }
  .hero-banner-image { width: min(100%, 780px); transform:none; }
}
@media (max-width: 680px) {
  .hero-image-layout { padding: 38px 0 34px; }
  .hero-image-layout .hero-copy h1 { font-size: clamp(46px, 15vw, 70px); letter-spacing: -2.2px; }
  .hero-image-layout .hero-copy .lead { font-size: 21px; }
  .hero-image-layout .hero-copy p:not(.lead) { font-size: 16px; line-height: 1.65; }
  .hero-art-image-wrap { min-height: 250px; }
  .hero-banner-image { border-radius: 22px; width: 118%; max-width: none; }
}


/* V12 content depth enhancements */
.depth-section,
.usage-section,
.v12-faq-section,
.v12-related-section{
  margin-top: 28px;
}
.depth-panel,
.usage-panel,
.v12-faq-panel,
.v12-related-panel{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}
.depth-panel.depth-accent{
  background: linear-gradient(135deg, #ffffff 0%, #f2fbf4 100%);
}
.depth-panel h2,
.usage-panel h2,
.v12-faq-panel h2,
.v12-related-panel h2{
  margin: 0 0 12px;
  color: var(--deep);
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.03em;
}
.depth-panel > p,
.usage-panel > p,
.v12-faq-panel > p{
  margin: 0;
  color: var(--muted);
  max-width: 920px;
  font-size: 16px;
  line-height: 1.75;
}
.depth-grid-v12{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.depth-item-v12{
  border: 1px solid var(--border);
  background: rgba(255,255,255,.92);
  border-radius: 22px;
  padding: 20px;
  min-height: 150px;
}
.depth-item-v12 .mini-icon,
.v12-step .mini-icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  background: #e9f8ec;
  font-weight: 900;
  margin-bottom: 12px;
}
.depth-item-v12 h3{
  margin: 0 0 8px;
  color: var(--deep);
  font-size: 18px;
}
.depth-item-v12 p{
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.usage-layout-v12{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items: start;
  margin-top: 18px;
}
.v12-checklist{
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.v12-checklist li{
  display: flex;
  gap: 12px;
  color: var(--text);
  line-height: 1.6;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fbfdfb;
}
.v12-checklist li::before{
  content: '✓';
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e6f8e9;
  color: var(--green);
  font-weight: 900;
}
.v12-steps{
  display: grid;
  gap: 14px;
}
.v12-step{
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg,#ffffff,#f7fcf8);
  padding: 16px;
}
.v12-step strong{
  display: block;
  color: var(--deep);
  margin-bottom: 4px;
}
.v12-step span{
  color: var(--muted);
  line-height: 1.55;
}
.v12-faq-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.v12-faq-grid details{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
}
.v12-faq-grid summary{
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
  list-style: none;
}
.v12-faq-grid summary::-webkit-details-marker{ display:none; }
.v12-faq-grid summary::after{
  content: '+';
  float: right;
  color: var(--green);
  font-weight: 900;
}
.v12-faq-grid details[open] summary::after{ content: '−'; }
.v12-faq-grid p{
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.65;
}
.v12-related-links{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.v12-related-links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--deep);
  background: #fff;
  font-weight: 800;
}
.v12-related-links a:hover{
  border-color: rgba(40,169,40,.45);
  box-shadow: 0 14px 28px rgba(23, 122, 36, .08);
  transform: translateY(-1px);
}
@media (max-width: 920px){
  .depth-grid-v12,
  .usage-layout-v12,
  .v12-related-links{
    grid-template-columns: 1fr;
  }
  .v12-faq-grid{
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px){
  .depth-panel,
  .usage-panel,
  .v12-faq-panel,
  .v12-related-panel{
    padding: 22px;
    border-radius: 22px;
  }
}


/* V13 locale switcher: header-level region/language switch */
.locale-switch {
  position: relative;
  display: inline-flex;
  z-index: 30;
}
.locale-switch summary { list-style: none; }
.locale-switch summary::-webkit-details-marker { display: none; }
.locale-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 13px;
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  color: #17212b;
  box-shadow: 0 8px 22px rgba(15,92,37,.06);
}
.locale-current:hover,
.locale-switch[open] .locale-current {
  border-color: rgba(40,169,40,.42);
  box-shadow: 0 12px 28px rgba(15,92,37,.12);
}
.locale-caret { color: var(--green-dark); font-size: 13px; }
.globe-mark { width: 20px; height: 20px; display: inline-flex; align-items: center; justify-content: center; font-size: 15px; }
.locale-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(16, 67, 31, .16);
}
.locale-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 11px;
  border-radius: 12px;
  color: #17212b;
  font-weight: 800;
  font-size: 14px;
}
.locale-option:hover,
.locale-option.active {
  background: var(--green-pale);
  color: var(--green-dark);
}
.locale-option.active::after {
  content: "✓";
  margin-left: auto;
  color: var(--green);
  font-weight: 900;
}
@media (max-width: 680px) {
  .locale-current { height: 36px; padding: 0 10px; font-size: 13px; }
  .locale-menu { right: -64px; width: 190px; }
}
@media (max-width: 460px) {
  .locale-label { display: none; }
  .locale-current { padding: 0 9px; }
  .locale-menu { right: -96px; }
}


/* V14 header cleanup: remove help-link spacing and stabilize global locale switch */
.header-actions{gap:14px;}
.header-actions .help-link{display:none!important;}
.locale-switch{position:relative;}
.locale-current{min-width:112px;justify-content:center;}
.locale-menu{min-width:190px;}
.locale-option{white-space:nowrap;}
@media (max-width: 760px){
  .header-actions{gap:8px;}
  .locale-current{min-width:auto;padding:9px 10px;}
  .locale-label{font-size:13px;}
  .locale-menu{right:-8px;}
}
