/* ============================================================
   Pulse Nex Grid Shift — Common Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Barlow:wght@300;400;500;600;700;800&display=swap');

:root {
  --navy:       #1A2C5B;
  --navy-dark:  #0F1B3A;
  --navy-light: #2B4080;
  --cyan:       #00B4D8;
  --cyan-light: #48CAE4;
  --cyan-dark:  #0096C7;
  --gray-bg:    #F5F6F8;
  --gray-light: #E4E8EF;
  --gray-mid:   #A0AEC0;
  --gray-dark:  #4A5568;
  --text:       #2D3748;
  --white:      #FFFFFF;
  --shadow-sm:  0 2px 8px rgba(26,44,91,0.08);
  --shadow-md:  0 8px 30px rgba(26,44,91,0.12);
  --shadow-lg:  0 16px 50px rgba(26,44,91,0.16);
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --transition: 0.25s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Zen Kaku Gothic New', 'ヒラギノ角ゴ ProN W3', 'Meiryo', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.85;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── HEADER ─────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}
#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 22px; height: 22px; fill: #fff; }
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.15; }
.logo-en {
  font-family: 'Barlow', sans-serif;
  font-size: 13.5px; font-weight: 700;
  color: var(--navy); letter-spacing: 0.4px;
}
.logo-jp { font-size: 9.5px; color: var(--gray-mid); letter-spacing: 1px; }

/* Desktop Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.site-nav > a, .nav-dd > .nav-link {
  font-size: 13.5px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 8px 11px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  display: inline-block;
}
.site-nav > a:hover, .nav-dd > .nav-link:hover,
.site-nav > a.active { color: var(--navy); background: var(--gray-bg); }

/* Dropdown */
.nav-dd { position: relative; }
.nav-dd > .nav-link::after { content: ' ▾'; font-size: 9px; }
.dd-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px); left: 0;
  background: #fff;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  padding: 6px 0;
  min-width: 210px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dd:hover .dd-menu { display: block; }
.dd-menu a {
  display: block;
  font-size: 13px; font-weight: 500;
  color: var(--text); text-decoration: none;
  padding: 10px 18px;
  transition: color var(--transition), background var(--transition);
}
.dd-menu a:hover { color: var(--navy); background: var(--gray-bg); }

/* Nav CTA */
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  padding: 10px 22px !important;
  margin-left: 6px;
  font-weight: 600 !important;
  font-size: 13.5px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--cyan-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: #fff;
  overflow-y: auto;
  z-index: 999;
  padding: 12px 28px 40px;
  border-top: 1px solid var(--gray-light);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none;
  border-bottom: 1px solid var(--gray-light);
}
.mobile-menu a.sub { font-size: 13px; padding-left: 16px; color: var(--gray-dark); }
.mobile-menu .m-cta {
  display: block; margin-top: 16px;
  background: var(--navy); color: #fff;
  text-align: center; padding: 14px;
  border-radius: var(--radius-md); font-weight: 600;
  text-decoration: none; border-bottom: none;
}

/* ── HERO (top page) ─────────────────────────────────────── */
.hero {
  padding-top: 70px;
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--navy-dark);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(15,27,58,0.6) 0%, rgba(26,44,91,0.3) 60%, rgba(0,180,216,0.1) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto;
  padding: 80px 28px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,180,216,0.15);
  border: 1px solid rgba(0,180,216,0.4);
  color: var(--cyan-light);
  padding: 6px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-inner h1 {
  font-size: clamp(30px, 5vw, 58px);
  font-weight: 700; color: #fff;
  line-height: 1.3; margin-bottom: 22px;
}
.hero-inner h1 em { font-style: normal; color: var(--cyan); }
.hero-inner p {
  font-size: clamp(15px, 2vw, 17px);
  color: rgba(255,255,255,0.82);
  max-width: 640px; margin-bottom: 40px;
  line-height: 2;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 120px 28px 64px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -60%; right: -8%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(0,180,216,0.18) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero-inner { max-width: 1240px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 6px; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.55);
  margin-bottom: 18px; flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { font-size: clamp(26px, 4vw, 42px); font-weight: 700; margin-bottom: 14px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 580px; line-height: 1.9; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; text-decoration: none;
  cursor: pointer; border: none; transition: all var(--transition);
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--cyan); color: #fff; }
.btn-primary:hover { background: var(--cyan-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,180,216,0.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.45); }
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--cyan-dark); border: 1.5px solid var(--cyan); }
.btn-ghost:hover { background: var(--cyan); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section { padding: 88px 28px; }
.section-sm { padding: 56px 28px; }
.container { max-width: 1240px; margin: 0 auto; }

.sec-label {
  font-family: 'Barlow', sans-serif;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--cyan-dark); margin-bottom: 8px;
}
.sec-title {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700; color: var(--navy);
  line-height: 1.4; margin-bottom: 14px;
}
.sec-desc {
  font-size: 15px; color: var(--gray-dark);
  line-height: 1.95; max-width: 660px;
}
.sec-header { margin-bottom: 52px; }
.sec-header.center { text-align: center; }
.sec-header.center .sec-desc { margin: 0 auto; }

/* ── CARDS ───────────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-img { width: 100%; height: 210px; object-fit: cover; }
.card-body { padding: 26px; }
.card-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan-dark);
  margin-bottom: 8px;
}
.card-title {
  font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.4; margin-bottom: 10px;
}
.card-text {
  font-size: 13.5px; color: var(--gray-dark); line-height: 1.85;
}
.card-link {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--cyan-dark); text-decoration: none;
  font-size: 13px; font-weight: 600;
  margin-top: 16px; letter-spacing: 0.3px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.svc-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--gray-light);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex; flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--cyan-light);
}
.svc-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 100%);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; flex-shrink: 0;
}
.svc-icon svg { width: 26px; height: 26px; fill: #fff; }
.svc-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.svc-card p {
  font-size: 13.5px; color: var(--gray-dark);
  line-height: 1.85; flex: 1;
}
.svc-more {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--cyan-dark); text-decoration: none;
  font-size: 13px; font-weight: 600; margin-top: 18px;
  transition: gap var(--transition);
}
.svc-more:hover { gap: 10px; }

/* ── TWO COLUMN ──────────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.two-col.rev { direction: rtl; }
.two-col.rev > * { direction: ltr; }
.col-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--radius-lg);
}

/* ── STATS ───────────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gray-light);
  border-radius: var(--radius-lg); overflow: hidden;
}
.stat-box {
  background: #fff; padding: 40px 24px;
  text-align: center;
}
.stat-num {
  font-family: 'Barlow', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--navy); line-height: 1;
  margin-bottom: 8px;
}
.stat-num sup { font-size: 22px; color: var(--cyan); }
.stat-num sub { font-size: 22px; color: var(--cyan); }
.stat-label { font-size: 13px; color: var(--gray-dark); }

/* ── FLOW STEPS ──────────────────────────────────────────── */
.flow-list { list-style: none; }
.flow-item {
  display: flex; gap: 28px;
  padding: 36px 0;
  border-bottom: 1px dashed var(--gray-light);
}
.flow-item:last-child { border-bottom: none; }
.flow-num {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 20px; font-weight: 700; color: #fff;
}
.flow-content h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.flow-content p {
  font-size: 13.5px; color: var(--gray-dark); line-height: 1.85;
}

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  background: #fff; padding: 20px 24px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--navy);
  transition: background var(--transition);
  user-select: none;
}
.faq-q:hover { background: var(--gray-bg); }
.faq-icon {
  font-size: 22px; color: var(--cyan);
  transition: transform 0.3s; flex-shrink: 0; margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; background: #fff;
  padding: 0 24px 20px;
  font-size: 14px; color: var(--gray-dark); line-height: 1.9;
  border-top: 1px solid var(--gray-light);
}
.faq-a.open { display: block; }

/* ── NEWS ────────────────────────────────────────────────── */
.news-row {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 22px 0; border-bottom: 1px solid var(--gray-light);
}
.news-row:last-child { border-bottom: none; }
.news-date {
  flex-shrink: 0; min-width: 92px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px; color: var(--gray-mid); padding-top: 3px;
}
.news-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 2px 10px; border-radius: 100px;
  font-size: 11px; font-weight: 600;
  background: rgba(0,180,216,0.1); color: var(--cyan-dark);
  margin-top: 3px;
}
.news-title-wrap { flex: 1; }
.news-title-wrap h3 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.news-title-wrap h3 a { text-decoration: none; color: inherit; }
.news-title-wrap h3 a:hover { color: var(--cyan-dark); }
.news-title-wrap p { font-size: 13px; color: var(--gray-dark); line-height: 1.75; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form-group { margin-bottom: 22px; }
.form-label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.form-label .req {
  display: inline-block;
  background: #E53E3E; color: #fff;
  font-size: 10px; padding: 1px 6px;
  border-radius: 3px; margin-left: 6px;
  vertical-align: middle; font-weight: 700;
}
.form-label .opt {
  display: inline-block;
  background: var(--gray-light); color: var(--gray-dark);
  font-size: 10px; padding: 1px 6px;
  border-radius: 3px; margin-left: 6px;
  vertical-align: middle;
}
.form-ctrl {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-size: 15px; font-family: inherit;
  color: var(--text); background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none; appearance: none;
}
.form-ctrl:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
textarea.form-ctrl { resize: vertical; min-height: 160px; }
select.form-ctrl { cursor: pointer; }

/* ── TABLE ───────────────────────────────────────────────── */
.info-table { width: 100%; border-collapse: collapse; }
.info-table tr { border-bottom: 1px solid var(--gray-light); }
.info-table th {
  background: var(--gray-bg); color: var(--navy);
  font-weight: 600; font-size: 13.5px;
  padding: 16px 20px; text-align: left;
  width: 200px; vertical-align: top; white-space: nowrap;
}
.info-table td {
  padding: 16px 20px; font-size: 14px;
  color: var(--text); line-height: 1.85;
}

/* ── CHECK LIST ──────────────────────────────────────────── */
.check-list { list-style: none; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 7px 0; font-size: 14px; color: var(--text); line-height: 1.7;
}
.check-list li::before {
  content: '✓';
  display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--cyan); color: #fff;
  border-radius: 50%; font-size: 10px; font-weight: 700;
  margin-top: 2px;
}

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: #fff; text-align: center;
  padding: 88px 28px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; top: -40%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(22px, 4vw, 34px); font-weight: 700; margin-bottom: 14px; }
.cta-section p { font-size: 15px; color: rgba(255,255,255,0.78); margin-bottom: 34px; max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.9; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
#site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 28px 0;
}
.footer-grid {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-logo .logo-en { color: #fff; }
.footer-logo .logo-jp { color: rgba(255,255,255,0.38); }
.footer-desc {
  font-size: 13px; color: rgba(255,255,255,0.55);
  line-height: 1.85; margin-top: 16px;
}
.footer-info { margin-top: 20px; }
.footer-info p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.9; }
.footer-info a { color: var(--cyan-light); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 13px; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cyan-light); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── TOAST NOTIFICATION ──────────────────────────────────── */
.toast-wrap {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9999; display: flex; flex-direction: column; gap: 12px;
}
.toast {
  display: flex; align-items: center; gap: 12px;
  background: var(--navy-dark); color: #fff;
  padding: 14px 20px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); min-width: 280px; max-width: 360px;
  border-left: 4px solid var(--cyan);
  animation: toastIn 0.35s ease;
}
.toast.error { border-left-color: #E53E3E; }
.toast-icon { font-size: 18px; flex-shrink: 0; }
.toast-msg { font-size: 14px; line-height: 1.5; }
@keyframes toastIn {
  from { transform: translateX(110%); opacity: 0; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* ── FADE IN ANIMATION ───────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ── MAP ─────────────────────────────────────────────────── */
.map-wrap {
  width: 100%; height: 420px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-light);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ── BADGE ───────────────────────────────────────────────── */
.badge {
  display: inline-block; padding: 3px 12px;
  border-radius: 100px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.5px;
}
.badge-cyan { background: rgba(0,180,216,0.12); color: var(--cyan-dark); }
.badge-navy { background: rgba(26,44,91,0.1); color: var(--navy); }
.badge-gray { background: var(--gray-bg); color: var(--gray-dark); }

/* ── UTILITIES ───────────────────────────────────────────── */
.bg-gray    { background: var(--gray-bg); }
.bg-white   { background: #fff; }
.bg-navy    { background: var(--navy-dark); }
.text-center { text-align: center; }
.text-navy  { color: var(--navy); }
.text-cyan  { color: var(--cyan); }
.text-gray  { color: var(--gray-dark); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3  { grid-template-columns: repeat(2, 1fr); }
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 20px; }
  .section-sm { padding: 44px 20px; }
  .two-col, .two-col.rev { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .page-hero { padding: 100px 20px 50px; }
  .info-table th { width: 110px; font-size: 12px; }
  .hero-inner { padding: 60px 20px; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .btn { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .toast-wrap { left: 16px; right: 16px; bottom: 16px; }
  .toast { min-width: unset; }
  .news-row { flex-wrap: wrap; }
  .flow-item { flex-direction: column; gap: 14px; }
}

/* ── LEGAL PAGES ─────────────────────────────────────────── */
.legal-body { max-width: 820px; margin: 0 auto; }
.legal-body h2 {
  font-size: 20px; font-weight: 700;
  color: var(--navy); margin: 40px 0 12px;
  padding-bottom: 8px; border-bottom: 2px solid var(--gray-light);
}
.legal-body h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin: 24px 0 8px; }
.legal-body p  { font-size: 14px; color: var(--text); line-height: 1.95; margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.legal-body ul li { font-size: 14px; color: var(--text); line-height: 1.85; margin-bottom: 5px; }
.legal-body .updated { font-size: 13px; color: var(--gray-mid); margin-bottom: 32px; }
