:root {
  --gold: #d4af37;
  --red: #c8102e;
  --white: #ffffff;
  --navy: #0f172a;
  --ink: #172033;
  --muted: #667085;
  --line: rgba(15, 23, 42, .12);
  --surface: rgba(255, 255, 255, .78);
  --soft: #f6f7fb;
  --shadow: 0 24px 70px rgba(15, 23, 42, .12);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
body.dark {
  --white: #0f172a;
  --ink: #f8fafc;
  --muted: #b7c0d1;
  --line: rgba(255, 255, 255, .14);
  --surface: rgba(17, 24, 39, .78);
  --soft: #141c2f;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
  color-scheme: dark;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 54px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
body.dark .site-header { background: rgba(15, 23, 42, .82); }
.brand { display: flex; align-items: center; gap: 10px; min-width: 190px; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand strong { display: block; color: var(--red); font-weight: 900; }
.brand small { color: var(--muted); font-size: 11px; font-weight: 700; }
.main-nav { display: flex; align-items: center; gap: 18px; font-size: 13px; font-weight: 800; color: var(--navy); }
body.dark .main-nav { color: var(--ink); }
.main-nav a { white-space: nowrap; opacity: .84; }
.main-nav a:hover { color: var(--red); opacity: 1; }
.header-actions { display: flex; align-items: center; gap: 9px; }
.language-select, .icon-btn, .menu-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 8px;
  height: 38px;
}
.language-select { width: 56px; padding: 0 6px; }
.icon-btn { width: 38px; cursor: pointer; }
.menu-toggle { display: none; width: 42px; flex-direction: column; justify-content: center; gap: 4px; padding: 0 10px; }
.menu-toggle span { height: 2px; background: var(--ink); width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(15, 23, 42, .12);
}
.btn-small { min-height: 38px; padding-inline: 14px; font-size: 13px; }
.btn-gold { background: linear-gradient(135deg, #f7d773, var(--gold)); color: #2c2105; }
.btn-red { background: linear-gradient(135deg, #e32645, var(--red)); color: white; }
.btn-ghost { background: rgba(255,255,255,.12); color: white; border: 1px solid rgba(255,255,255,.3); }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px clamp(18px, 5vw, 76px) 38px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .55fr);
  align-items: center;
  gap: 30px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 77% 16%, rgba(212, 175, 55, .32), transparent 24%),
    radial-gradient(circle at 18% 68%, rgba(200, 16, 46, .34), transparent 26%),
    linear-gradient(130deg, #0f172a 0%, #192038 44%, #5d0f21 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 15vh;
  background: linear-gradient(transparent, rgba(0,0,0,.18));
}
.hero-content, .hero-panel, .stats-bar { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
}
.hero h1, .section-heading h2, .assessment-intro h2, .global-copy h2, .contact-info h2, .dashboard-main h2 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
}
.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(48px, 8vw, 112px);
  line-height: .92;
}
.hero-copy { max-width: 760px; color: rgba(255,255,255,.82); font-size: clamp(17px, 2vw, 22px); line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-map { position: absolute; inset: 8% 3% 4% auto; width: min(70vw, 900px); opacity: .15; z-index: 1; }
.hero-map svg { width: 100%; fill: none; stroke: var(--gold); stroke-width: 2; }
.network-bg { position: absolute; inset: 0; z-index: 1; }
.node { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 28px var(--gold); animation: pulse 3s infinite; }
.n1 { left: 18%; top: 26%; } .n2 { left: 60%; top: 21%; animation-delay: .6s; } .n3 { left: 78%; top: 61%; animation-delay: 1.2s; } .n4 { left: 32%; top: 72%; animation-delay: 1.8s; }
.line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, rgba(212,175,55,.75), transparent); transform-origin: left; animation: scan 4s infinite; }
.l1 { left: 18%; top: 27%; width: 45%; transform: rotate(-5deg); } .l2 { left: 32%; top: 72%; width: 49%; transform: rotate(-15deg); } .l3 { left: 60%; top: 22%; width: 24%; transform: rotate(58deg); }
@keyframes pulse { 50% { transform: scale(1.7); opacity: .35; } }
@keyframes scan { 50% { opacity: .25; } }
.glass {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.hero-panel { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 18px; border-radius: 8px; align-self: end; }
.hero-panel img { background: white; border-radius: 8px; padding: 8px; }
.hero-panel strong { font-size: 20px; line-height: 1.25; }
.hero-panel p { color: rgba(255,255,255,.76); line-height: 1.6; }
.stats-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: 8px;
  overflow: hidden;
}
.stats-bar div { padding: 20px; background: rgba(255,255,255,.08); }
.stats-bar strong { display: block; font-size: clamp(26px, 4vw, 42px); }
.stats-bar span { color: rgba(255,255,255,.75); font-weight: 700; }

.section { padding: 92px clamp(18px, 5vw, 76px); background: var(--white); }
.section:nth-of-type(even) { background: var(--soft); }
.page-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: end start;
  padding: 148px clamp(18px, 5vw, 76px) 64px;
  color: white;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(212, 175, 55, .34), transparent 24%),
    radial-gradient(circle at 18% 74%, rgba(200, 16, 46, .32), transparent 27%),
    linear-gradient(135deg, #0f172a 0%, #202944 52%, #651326 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(212, 175, 55, .44) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, .44) 1px, transparent 1px);
  background-size: 74px 74px;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.page-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}
.page-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.section-heading { max-width: 840px; margin: 0 auto 42px; text-align: center; }
.section-heading.compact { max-width: 760px; }
.section-heading h2, .assessment-intro h2, .global-copy h2, .contact-info h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}
.section-heading p:not(.eyebrow), .assessment-intro p, .global-copy p, .contact-info p { color: var(--muted); line-height: 1.75; }

.logo-meaning {
  display: grid;
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(212, 175, 55, .12), transparent 34%),
    linear-gradient(315deg, rgba(200, 16, 46, .1), transparent 38%),
    var(--surface);
  box-shadow: var(--shadow);
}
.logo-meaning-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(212, 175, 55, .28);
}
.logo-meaning-visual img {
  width: min(330px, 88%);
  filter: drop-shadow(0 22px 36px rgba(15, 23, 42, .16));
}
.logo-meaning-copy h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}
.logo-meaning-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .58);
  color: var(--red);
  font-weight: 900;
}
body.dark .logo-meaning-badge { background: rgba(255, 255, 255, .06); }
.logo-meaning-badge img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.logo-meaning-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.symbol-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.symbol-grid span {
  display: grid;
  gap: 7px;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .44);
  color: var(--muted);
  line-height: 1.45;
}
body.dark .symbol-grid span { background: rgba(255, 255, 255, .06); }
.symbol-grid strong {
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
}

.feature-grid, .program-grid, .cert-grid, .event-grid, .resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card, .program-card, .cert-grid article, .resource-card, .event-card, .masonry article, .assessment-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}
.feature-card { padding: 26px; min-height: 210px; }
.feature-card span { color: var(--gold); font-weight: 900; }
.feature-card h3, .program-card h3, .cert-grid h3 { margin: 26px 0 10px; font-size: 22px; }
.feature-card p, .program-card p, .program-card li, .cert-grid p { color: var(--muted); line-height: 1.65; }

.goal-grid, .journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.goal-grid article, .journey-grid article, .pdf-note-panel, .strengths-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08);
}
.goal-grid article, .journey-grid article {
  padding: 24px;
}
.goal-grid span, .journey-grid span {
  color: var(--gold);
  font-weight: 900;
}
.goal-grid h3, .journey-grid h3 {
  margin: 22px 0 10px;
  font-size: 22px;
}
.goal-grid p, .journey-grid p, .pdf-note-panel p, .strengths-list span {
  color: var(--muted);
  line-height: 1.65;
}
.pdf-note-panel {
  max-width: 980px;
  margin: 34px auto 0;
  padding: 26px;
}
.pdf-note-panel h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}
.strengths-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: center;
}
.strengths-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}
.strengths-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.75;
}
.strengths-list {
  display: grid;
  gap: 14px;
}
.strengths-list article {
  display: grid;
  gap: 8px;
  padding: 22px;
}
.strengths-list strong {
  color: var(--red);
  font-size: 18px;
}

.split-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: center; }
.assessment-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.assessment-grid article { padding: 22px; }
.assessment-grid h3 { margin: 0 0 10px; }
.assessment-grid p { margin: 0; color: var(--muted); }

.timeline { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.timeline::before { content: ""; position: absolute; left: 8%; right: 8%; top: 36px; height: 2px; background: linear-gradient(90deg, var(--red), var(--gold)); }
.timeline div { position: relative; z-index: 1; padding: 70px 16px 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-align: center; }
.timeline div::before { content: ""; position: absolute; width: 26px; height: 26px; top: 24px; left: calc(50% - 13px); border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 8px rgba(212,175,55,.16); }
.timeline strong, .timeline span { display: block; }
.timeline span { color: var(--muted); margin-top: 8px; }

.program-card { padding: 24px; display: flex; flex-direction: column; }
.program-card ul { padding-left: 18px; margin: 10px 0 22px; }
.program-card button { margin-top: auto; border: 0; border-radius: 8px; background: var(--navy); color: white; padding: 13px; font-weight: 900; cursor: pointer; }
.luxury-section { color: white; background: linear-gradient(135deg, #0f172a, #55111e) !important; }
.cert-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.cert-grid article { padding: 22px; background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.16); }
.cert-grid span {
  display: inline-flex;
  margin: 8px 0 18px;
  color: var(--gold);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 900;
  line-height: 1.2;
}
.cert-grid p { color: rgba(255,255,255,.75); }
.verify-box { margin: 28px auto 0; max-width: 820px; display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 12px; align-items: center; }
.verify-box input, .resource-tools input, .contact-form input, .contact-form textarea, .modal select, .chat-widget input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 14px;
}
.verify-box p { grid-column: 1 / -1; margin: 0; color: var(--gold); font-weight: 800; }

.global-section { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.network-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 24px; }
.network-stats span { padding: 18px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); }
.network-stats strong { display: block; color: var(--red); font-size: 30px; }
.world-card {
  min-height: 420px;
  border-radius: 8px;
  border: 1px solid var(--line);
  position: relative;
  background:
    radial-gradient(circle at 30% 28%, rgba(212,175,55,.22), transparent 24%),
    radial-gradient(circle at 70% 55%, rgba(200,16,46,.18), transparent 24%),
    linear-gradient(135deg, rgba(15,23,42,.96), rgba(22,31,55,.86)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 420'%3E%3Cpath d='M90 170c70-65 170-78 245-43 38 18 62 47 113 35 41-10 72-46 126-34 77 17 119 91 113 157-5 62-58 110-124 112-70 3-95-47-151-48-72-1-115 70-199 30-79-38-100-147-123-209Z' fill='none' stroke='%23D4AF37' stroke-width='7' opacity='.42'/%3E%3Cpath d='M195 230c38-22 84-16 104 22 21 41-22 89-68 77-45-11-70-70-36-99Zm333-32c47-26 110 2 117 56 8 58-47 102-99 78-57-27-67-107-18-134Z' fill='none' stroke='%23fff' stroke-width='5' opacity='.20'/%3E%3C/svg%3E");
  background-size: cover;
}
.pin { position: absolute; width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 10px rgba(212,175,55,.18), 0 0 30px var(--gold); }
.p1 { left: 25%; top: 38%; } .p2 { left: 48%; top: 35%; } .p3 { left: 61%; top: 45%; } .p4 { left: 74%; top: 62%; } .p5 { left: 34%; top: 66%; } .p6 { left: 55%; top: 72%; }

.carousel { display: grid; grid-template-columns: 44px 1fr 44px; gap: 14px; align-items: center; }
.carousel-btn { height: 44px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); color: var(--ink); font-size: 28px; cursor: pointer; }
.testimonial-track { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.testimonial { padding: 20px; border-radius: 8px; border: 1px solid var(--line); background: var(--surface); min-height: 250px; }
.avatar { width: 58px; height: 58px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--red), var(--gold)); color: white; font-weight: 900; margin-bottom: 14px; }
.testimonial p { color: var(--muted); line-height: 1.6; }
.stars { color: var(--gold); }

.event-card, .resource-card { padding: 22px; }
.event-card time, .resource-card span, .masonry span { color: var(--red); font-weight: 900; font-size: 12px; text-transform: uppercase; }
.event-card p, .resource-card p, .masonry p { color: var(--muted); line-height: 1.6; }
.event-card button { border: 0; padding: 12px 16px; border-radius: 8px; color: white; background: var(--red); font-weight: 900; cursor: pointer; }
.resource-tools { display: flex; gap: 12px; margin-bottom: 22px; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tabs button { border: 1px solid var(--line); border-radius: 8px; padding: 11px 13px; background: var(--surface); color: var(--ink); cursor: pointer; }
.filter-tabs button.active { background: var(--navy); color: white; }

.masonry { columns: 3 260px; column-gap: 18px; }
.masonry article { display: inline-block; width: 100%; padding: 24px; margin: 0 0 18px; }
.masonry .tall { min-height: 320px; background: linear-gradient(135deg, rgba(200,16,46,.1), rgba(212,175,55,.16)); }
.masonry .wide { min-height: 220px; }
.logo-slider { display: flex; gap: 18px; overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.logo-slider span { flex: 0 0 auto; min-width: 230px; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); text-align: center; font-weight: 900; animation: slide 22s linear infinite; }
@keyframes slide { to { transform: translateX(-1240px); } }

.faq-list { max-width: 900px; margin: auto; display: grid; gap: 10px; }
.faq-item { border: 1px solid var(--line); border-radius: 8px; background: var(--surface); overflow: hidden; }
.faq-item button { width: 100%; padding: 18px; text-align: left; border: 0; background: transparent; color: var(--ink); font-weight: 900; cursor: pointer; }
.faq-item p { display: none; margin: 0; padding: 0 18px 18px; color: var(--muted); line-height: 1.6; }
.faq-item.open p { display: block; }

.dashboard-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 430px; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); }
.dashboard-shell aside { background: var(--navy); color: white; padding: 24px; display: grid; gap: 16px; align-content: start; }
.dashboard-shell aside img { width: 88px; background: white; border-radius: 8px; padding: 6px; }
.dashboard-shell aside span { color: rgba(255,255,255,.76); }
.dashboard-main { padding: 28px; background: var(--surface); }
.dash-top { display: flex; justify-content: space-between; gap: 14px; align-items: center; }
.dash-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
.dash-cards article { padding: 22px; border: 1px solid var(--line); border-radius: 8px; }
.dash-cards strong { display: block; color: var(--red); font-size: 38px; }
.dash-cards span { color: var(--muted); }

.contact-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.contact-form textarea { grid-column: 1 / -1; min-height: 150px; resize: vertical; }
.contact-form button, .contact-form p { grid-column: 1 / -1; }

.site-footer { padding: 54px clamp(18px, 5vw, 76px) 26px; display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 24px; color: white; background: #0b1020; }
.site-footer img { width: 88px; background: white; border-radius: 8px; padding: 6px; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.7); line-height: 1.7; }
.site-footer a { display: block; margin: 8px 0; }
.newsletter input { width: 100%; border: 0; border-radius: 8px; padding: 12px; }
.newsletter button { margin-top: 8px; width: 100%; border: 0; border-radius: 8px; padding: 12px; background: var(--gold); font-weight: 900; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.16); padding-top: 18px; margin: 0; }

.modal { border: 0; border-radius: 8px; padding: 0; max-width: 660px; width: calc(100% - 28px); background: var(--white); color: var(--ink); box-shadow: var(--shadow); }
.modal::backdrop { background: rgba(15, 23, 42, .72); backdrop-filter: blur(6px); }
.modal-content { padding: 28px; display: grid; gap: 16px; }
.modal-content label { display: grid; gap: 8px; font-weight: 800; }
.close-btn { justify-self: end; border: 1px solid var(--line); background: var(--surface); color: var(--ink); width: 36px; height: 36px; border-radius: 8px; font-size: 22px; cursor: pointer; }
.assessment-result { padding: 18px; border-radius: 8px; background: var(--soft); display: none; line-height: 1.6; }

.chat-widget { position: fixed; right: 18px; bottom: 18px; z-index: 60; width: min(360px, calc(100vw - 36px)); background: var(--white); color: var(--ink); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); overflow: hidden; display: none; }
.chat-widget.open { display: block; }
.chat-head { display: flex; justify-content: space-between; padding: 14px; background: var(--navy); color: white; }
.chat-head button { border: 0; background: transparent; color: white; font-size: 22px; cursor: pointer; }
.chat-body { padding: 14px; max-height: 240px; overflow: auto; }
.chat-body p { margin: 0 0 10px; line-height: 1.55; }
.chat-widget form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 12px; border-top: 1px solid var(--line); }
.chat-widget button[type="submit"] { border: 0; border-radius: 8px; padding: 0 14px; background: var(--red); color: white; font-weight: 900; }

@media (max-width: 1180px) {
  .main-nav {
    position: fixed;
    top: 73px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: repeat(2, 1fr);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: grid; }
  .menu-toggle { display: flex; }
}
@media (max-width: 900px) {
  .hero, .split-section, .global-section, .contact-section, .strengths-section { grid-template-columns: 1fr; }
  .logo-meaning { grid-template-columns: 1fr; }
  .logo-meaning-visual { min-height: 280px; }
  .stats-bar, .feature-grid, .program-grid, .cert-grid, .event-grid, .resource-grid, .dash-cards, .goal-grid, .journey-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .testimonial-track { grid-template-columns: repeat(2, 1fr); }
  .dashboard-shell { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .site-header { padding: 10px 12px; }
  .brand small, .header-actions .btn-small { display: none; }
  .hero { padding-top: 120px; }
  .hero h1 { font-size: 46px; }
  .hero-panel { grid-template-columns: 70px 1fr; }
  .symbol-grid { grid-template-columns: 1fr; }
  .stats-bar, .feature-grid, .program-grid, .cert-grid, .event-grid, .resource-grid, .assessment-grid, .network-stats, .testimonial-track, .dash-cards, .contact-form, .site-footer, .goal-grid, .journey-grid { grid-template-columns: 1fr; }
  .verify-box, .resource-tools { grid-template-columns: 1fr; display: grid; }
  .carousel { grid-template-columns: 1fr; }
  .carousel-btn { display: none; }
  .contact-form textarea, .contact-form button, .contact-form p { grid-column: auto; }
}
