:root {
  --bg:             #FFFFFF;
  --bg-subtle:      #FAFAFA;
  --bg-card:        #FFFFFF;
  --bg-card-hover:  #F9F8FF;

  --border:         #E8E5F0;
  --border-hover:   rgba(124, 58, 237, 0.3);

  --purple-700:     #6D28D9;
  --purple-600:     #7C3AED;
  --purple-500:     #8B5CF6;
  --purple-400:     #A78BFA;
  --purple-300:     #C4B5FD;
  --purple-100:     #EDE9FE;
  --purple-glow:    rgba(124, 58, 237, 0.07);

  --text:           #111018;
  --text-70:        rgba(17, 16, 24, 0.65);
  --text-45:        rgba(17, 16, 24, 0.42);
  --text-20:        rgba(17, 16, 24, 0.2);

  /* Dark nav/footer palette */
  --dark:           #140F22;
  --dark-border:    rgba(139, 92, 246, 0.15);
  --white:          #F8F8FC;
  --white-60:       rgba(248, 248, 252, 0.6);
  --white-40:       rgba(248, 248, 252, 0.4);
  --white-20:       rgba(248, 248, 252, 0.2);
  --white-08:       rgba(248, 248, 252, 0.08);

  --green:          #059669;
  --font:           'Poppins', -apple-system, sans-serif;
  --font-headline:  'DM Sans', 'Poppins', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV (single row) ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  background: #ffffff;
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
/* Purple gradient bar along the very bottom of the nav */
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #7B38C2, #b08be4 70%, #d6c7f2);
  opacity: 0.85;
}

/* ─── STICKY SECTION BAR ─── */
.section-bar {
  position: fixed;
  top: -48px;
  left: 0; right: 0;
  z-index: 99;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: top 0.35s ease;
}
.section-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  height: 42px;
}
.section-bar-link {
  font-family: var(--font);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-45);
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.section-bar-link:hover {
  color: var(--purple-600);
}
.section-bar-link.is-active {
  color: var(--purple-600);
  border-bottom-color: var(--purple-600);
}

@media (max-width: 868px) {
  .section-bar { display: none; }
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-mark { height: 52px; flex-shrink: 0; display: block; background: transparent; border-radius: 0; padding: 0; }
.nav-mark img { height: 100%; width: auto; display: block; }
.nav-wordmark { display: none; }
.nav-tagline {
  display: none;
}
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* ─── HAMBURGER MENU (Europe-app style dropdown) ─── */
.hamburger-menu { position: relative; }
.hamburger-btn {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 8px;
  background: none; border: none; cursor: pointer;
}
.hamburger-btn span {
  display: block; width: 100%; height: 2.5px;
  background: #2b2f42; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.hamburger-btn.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger-btn.is-open span:nth-child(2) { opacity: 0; }
.hamburger-btn.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
.menu-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 8px 28px rgba(15,18,32,.12);
  min-width: 180px; padding: 8px 0; z-index: 200;
}
.menu-dropdown.is-open { display: block; }
.menu-dropdown a {
  display: block; padding: 10px 18px;
  font-size: 14px; font-weight: 500; color: #2b2f42;
  text-decoration: none; transition: background 0.15s, color 0.15s;
}
.menu-dropdown a:hover { background: rgba(123,56,194,.06); color: var(--purple-600); }
.menu-dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }
.btn-login {
  padding: 8px 20px;
  background: var(--purple-600);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  font-size: 13px; font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-login:hover { background: var(--purple-700, #6d28d9); }
.btn-ghost {
  padding: 8px 20px;
  background: var(--purple-600);
  border: 1px solid var(--purple-600);
  border-radius: 6px;
  color: #fff;
  font-size: 13px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
  font-family: var(--font); cursor: pointer;
}
.btn-ghost:hover { background: var(--purple-700); border-color: var(--purple-700); color: #fff; }
.btn-primary {
  padding: 7px 18px;
  background: var(--purple-600);
  border: 1px solid rgba(139, 92, 246, 0.4);
  border-radius: 6px;
  color: #fff; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  font-family: var(--font); cursor: pointer;
}
.btn-primary:hover {
  background: var(--purple-500);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}

/* ─── HERO (white) ─── */
.hero {
  position: relative;
  padding: 120px 48px 60px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.hero-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(124, 58, 237, 0.1) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
  opacity: 0.45;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px 5px 8px;
  background: var(--purple-100);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 100px;
  font-size: 12.5px; font-weight: 600;
  color: var(--purple-600); margin-bottom: 32px;
  animation: fadeUp 0.7s ease-out;
}
.hero-badge-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(5, 150, 105, 0.12);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge-dot::after {
  content: '';
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
.hero h1 {
  font-family: var(--font-headline);
  font-size: 64px; font-weight: 800;
  line-height: 1.05; letter-spacing: -0.04em;
  color: var(--text); margin-bottom: 24px;
  animation: fadeUp 0.7s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--text-70); max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400; letter-spacing: -0.01em;
  animation: fadeUp 0.7s ease-out 0.2s both;
}
.hero-content-below {
  margin-top: 12px;
}
.hero-content-below .hero-sub {
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex; gap: 12px; justify-content: center;
  animation: fadeUp 0.7s ease-out 0.3s both;
}
.btn-hero {
  padding: 13px 30px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all 0.25s;
  font-family: var(--font); cursor: pointer; letter-spacing: -0.01em;
}
.btn-hero-primary {
  background: var(--purple-600); color: #fff;
  border: 1px solid var(--purple-600);
}
.btn-hero-primary:hover {
  background: var(--purple-700);
  box-shadow: 0 4px 24px rgba(124, 58, 237, 0.3);
  transform: translateY(-1px);
}
.btn-hero-secondary {
  background: #fff; color: var(--text);
  border: 1px solid var(--border);
}
.btn-hero-secondary:hover {
  border-color: rgba(124,58,237,0.3);
  background: var(--purple-100);
  color: var(--purple-600);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO VIZ ─── */
.hero-viz {
  max-width: 900px; margin: 64px auto 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease-out 0.4s both;
}
.viz-window {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03), 0 20px 60px rgba(124,58,237,0.08), 0 0 0 1px rgba(124,58,237,0.04);
}
.viz-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.viz-dots { display: flex; gap: 6px; }
.viz-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.viz-tab { font-size: 12px; color: var(--text-45); font-weight: 500; letter-spacing: 0.02em; }
.viz-tab strong { color: var(--purple-600); font-weight: 700; }
.viz-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--green); font-weight: 600;
}
.viz-status::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); }
.viz-body { padding: 28px 24px; }
.viz-header-row { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 24px; }
.viz-title { font-size: 12px; font-weight: 700; color: var(--text-45); letter-spacing: 0.06em; text-transform: uppercase; }
.viz-filter { font-size: 12px; color: var(--purple-600); font-weight: 600; }
.viz-rows { display: flex; flex-direction: column; gap: 10px; }
.viz-row { display: grid; grid-template-columns: 140px 1fr 64px; align-items: center; gap: 16px; }
.viz-row-label { font-size: 13px; color: var(--text-70); font-weight: 500; text-align: right; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.viz-row-bar { height: 28px; background: var(--purple-100); border-radius: 6px; overflow: hidden; }
.viz-row-fill {
  height: 100%; border-radius: 6px;
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  animation: growBar 1s ease-out 0.8s both;
}
.viz-row-fill.alt { background: linear-gradient(90deg, var(--purple-300), var(--purple-400)); opacity: 0.75; }
.viz-row-val { font-size: 13px; font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
@keyframes growBar { from { width: 0 !important; } }
.viz-footer {
  display: flex; gap: 32px; padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-subtle);
}
.viz-stat { display: flex; flex-direction: column; }
.viz-stat-num { font-size: 20px; font-weight: 800; color: var(--purple-600); letter-spacing: -0.03em; }
.viz-stat-label { font-size: 11px; color: var(--text-45); font-weight: 500; margin-top: 2px; }

/* ─── HERO CHOROPLETH MAP ─── */
.hero-map-section {
  position: relative;
  max-width: 960px;
  margin: 24px auto 0;
  padding: 0 0 20px;
  z-index: 1;
  animation: fadeUp 0.8s ease-out 0.5s both;
}
/* Title block — centred above the map */
.hero-map-title-block {
  text-align: center;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.hero-map-section.visible .hero-map-title-block {
  opacity: 1;
  transform: translateY(0);
}
.hero-map-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 2px;
}
.hero-map-disease-line {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-70);
  letter-spacing: -0.01em;
  transition: opacity 0.3s ease;
  min-height: 1.5em;
  text-align: center;
  margin: 0 auto 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.hero-map-section.visible .hero-map-disease-line {
  opacity: 1;
  transform: translateY(0);
}
.hero-map-disease-line .hero-map-code {
  color: var(--purple-600);
  font-weight: 700;
  margin-right: 6px;
}
.hero-map-disease-line .hero-map-disease {
  color: var(--text);
}

/* Region tabs — Europe / Japan */
.hero-map-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 0 auto 14px;
  padding: 4px;
  background: var(--purple-100);
  border-radius: 999px;
  width: fit-content;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s, transform 0.5s;
}
.hero-map-section.visible .hero-map-tabs {
  opacity: 1;
  transform: translateY(0);
}
.hero-map-tab {
  appearance: none;
  background: transparent;
  border: none;
  padding: 7px 22px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--purple-600);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero-map-tab:hover {
  color: var(--purple-700);
  background: rgba(123, 56, 194, 0.08);
}
.hero-map-tab.active {
  background: var(--purple-600);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.25);
}
.hero-map-tab:focus-visible {
  outline: 2px solid var(--purple-500);
  outline-offset: 2px;
}

/* Map + Europe side by side */
.hero-map-body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  max-width: 1060px;
  margin: 0 auto;
}
.hero-map-wrapper {
  position: relative;
  width: 100%;
  max-width: 780px;
  flex-shrink: 1;
}

/* Europe summary — right of map, vertically centred */
.hero-map-europe {
  flex-shrink: 0;
  text-align: right;
  padding-top: 60px;
  opacity: 0;
  transition: opacity 0.5s 0.8s;
}
.hero-map-section.visible .hero-map-europe {
  opacity: 1;
}
.hero-map-europe-title {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--purple-400);
  margin-bottom: 10px;
}
.hero-map-europe-stat {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 6px;
  margin-bottom: 4px;
}
.europe-stat-num {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 800;
  color: var(--purple-600);
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  min-width: 5.5ch;
  display: inline-block;
  text-align: right;
}
.europe-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-45);
}

.hero-map-section.region-japan .hero-map-europe {
  padding-top: 0;
  align-self: center;
}

@media (max-width: 768px) {
  .hero-map-body { flex-direction: column; align-items: center; }
  .hero-map-europe { padding-top: 0; text-align: center; }
  .hero-map-europe-stat { justify-content: center; }
}
#heroMap {
  width: 100%;
  height: 380px;
  background: transparent;
  border-radius: 12px;
  z-index: 1;
  transition: height 0.35s ease;
}
.hero-map-section.region-japan #heroMap {
  height: 450px;
}
/* Remove Leaflet's default styling artifacts */
#heroMap .leaflet-container { background: transparent; }
.leaflet-container { background: transparent !important; }

/* Country path animations */
.hero-pulse-glow {
  animation: heroPulseGlow 2.5s ease-in-out infinite;
}
@keyframes heroPulseGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.15) drop-shadow(0 0 8px rgba(124,58,237,0.4)); }
}

/* Tooltip */
.hero-map-tooltip {
  position: absolute;
  pointer-events: none;
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
  border: 1px solid rgba(124,58,237,0.2);
}
.hero-map-tooltip .tt-country {
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.hero-map-tooltip .tt-value {
  color: var(--purple-400);
  font-weight: 600;
  font-size: 18px;
  font-family: var(--font);
}
.hero-map-tooltip .tt-label {
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  margin-bottom: 4px;
}
.hero-map-tooltip .tt-hospitals {
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.hero-map-tooltip .tt-hospitals::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
}
.hero-map-tooltip .tt-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.hero-map-tooltip .tt-row span:not(.tt-dot) {
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.hero-map-tooltip .tt-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-map-tooltip .tt-dot-hosp { background: var(--green); }
.hero-map-tooltip .tt-dot-tier { background: var(--purple-400); }

/* Disease label in map header */
.hero-map-disease {
  color: #fff;
  font-weight: 700;
}
.hero-map-code {
  color: var(--purple-300);
  font-weight: 600;
  margin-left: 2px;
}

/* Legend */
.hero-map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-45);
  opacity: 0;
  transition: opacity 0.6s 1.2s;
}
.hero-map-section.visible .hero-map-legend {
  opacity: 1;
}
.hero-map-legend-bar {
  display: flex;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
  width: 180px;
}
.hero-map-legend-bar span { flex: 1; }

/* Insight line below legend */
.hero-map-insight {
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-45);
  margin-top: 14px;
  font-style: italic;
  letter-spacing: -0.01em;
  opacity: 0;
  transition: opacity 0.6s 1.5s;
}
.hero-map-section.visible .hero-map-insight {
  opacity: 1;
}

/* Responsive map */
@media (max-width: 768px) {
  .hero-map-total-number { font-size: 26px; }
  .hero-map-total { bottom: 8px; right: 8px; }
  .hero-map-legend { flex-wrap: wrap; }
}
@media (max-width: 640px) {
  .hero-map-section { margin-top: 32px; }
}

/* ─── PROOF STRIP ─── */
.proof-strip {
  padding: 64px 48px; text-align: center;
  border-top: none;
  border-bottom: none;
  background: linear-gradient(180deg, var(--purple-100) 0%, rgba(237,233,254,0.4) 100%);
}
.proof-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-45); margin-bottom: 40px; }
.proof-stats { display: flex; justify-content: center; gap: 72px; max-width: 900px; margin: 0 auto; }
.proof-item { text-align: center; }
.proof-num { font-family: var(--font-headline); font-size: 42px; font-weight: 800; letter-spacing: -0.04em; color: var(--purple-600); }
.proof-desc { font-size: 13px; color: var(--text-45); font-weight: 400; margin-top: 6px; }

/* ─── SECTION UTILITY ─── */
.section { padding: 100px 48px; background: var(--bg); }
.section-header { max-width: 600px; margin-bottom: 56px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-tag { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 14px; }
.section-title { font-family: var(--font-headline); font-size: 40px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; color: var(--text); margin-bottom: 14px; }
.section-desc { font-size: 16px; line-height: 1.65; color: var(--text-70); font-weight: 400; }
.section-grey { background: var(--bg-subtle); }
.section-tight { padding-bottom: 0; }

/* ─── DIFFERENTIATORS ─── */
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; max-width: 1080px; margin: 0 auto;
}
.diff-card { padding: 40px; background: var(--bg-card); transition: background 0.25s; }
.diff-card:hover { background: var(--bg-card-hover); }
.diff-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--purple-600);
}
.diff-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.02em; }
.diff-card p { font-size: 14px; line-height: 1.65; color: var(--text-70); }
.diff-card .pill {
  display: inline-block; margin-top: 18px;
  padding: 4px 12px; background: var(--purple-100);
  color: var(--purple-700); font-size: 11px; font-weight: 700;
  border-radius: 100px; letter-spacing: 0.04em;
}

/* ─── SOLUTIONS ─── */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.sol-card {
  padding: 36px 32px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px; transition: all 0.25s;
}
.sol-card:hover { border-color: rgba(124,58,237,0.25); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.1); }
.sol-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--purple-600);
}
.sol-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.02em; }
.sol-card p { font-size: 14px; line-height: 1.6; color: var(--text-70); margin-bottom: 20px; }
.sol-link { font-size: 13px; font-weight: 700; color: var(--purple-600); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s, color 0.2s; }
.sol-link:hover { gap: 8px; color: var(--purple-700); }

/* ─── ASK PX ─── */
.bobbot-section { padding: 100px 48px; border-top: 1px solid var(--border); background: var(--bg); }
.bobbot-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1080px; margin: 0 auto; }
.bobbot-terminal {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03), 0 16px 48px rgba(124,58,237,0.08);
}
.bobbot-terminal-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.bobbot-terminal-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
}
.bobbot-terminal-name { font-size: 13px; font-weight: 600; color: var(--text-70); }
.bobbot-chat { padding: 24px 20px; display: flex; flex-direction: column; gap: 16px; }
.msg { max-width: 88%; padding: 12px 16px; border-radius: 10px; font-size: 13px; line-height: 1.55; }
.msg-user {
  background: var(--purple-100);
  border: 1px solid rgba(124,58,237,0.15);
  color: var(--text); align-self: flex-end; border-bottom-right-radius: 4px;
}
.msg-bot {
  background: var(--bg-subtle); border: 1px solid var(--border);
  color: var(--text-70); border-bottom-left-radius: 4px;
}
.msg-bot .hl { color: var(--purple-600); font-weight: 700; }
.bobbot-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.bobbot-feat { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-70); }
.bobbot-feat-check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.bobbot-feat-check svg { width: 11px; height: 11px; stroke: var(--green); stroke-width: 2.5; fill: none; }

/* ─── USE CASES ─── */
.uc-section { padding: 100px 48px; border-top: none; background: var(--bg-subtle); }
.uc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.uc-card {
  position: relative;
  padding: 32px 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 12px; transition: all 0.25s;
  overflow: hidden;
}
/* Accent bar — echoes the three Insight-thumb gradients for visual continuity */
.uc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  transition: height 0.25s;
}
.uc-card:nth-child(3n+2)::before {
  background: linear-gradient(135deg, #1E1A30, var(--purple-600));
}
.uc-card:nth-child(3n)::before {
  background: linear-gradient(135deg, var(--purple-600), #059669);
}
.uc-card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 4px 20px rgba(124,58,237,0.07);
  transform: translateY(-2px);
}
.uc-card:hover::before { height: 6px; }
.uc-persona { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 10px; }
.uc-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.3; }
.uc-card p { font-size: 13.5px; line-height: 1.6; color: var(--text-45); }

/* ─── TESTIMONIAL ─── */
.quote-section {
  padding: 80px 48px; background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.quote-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 56px; color: var(--purple-300); line-height: 1; margin-bottom: 12px; }
.quote-text { font-size: 22px; font-weight: 500; line-height: 1.55; color: var(--text); letter-spacing: -0.02em; font-style: italic; margin-bottom: 24px; }
.quote-attr { font-size: 14px; color: var(--text-45); }
.quote-attr strong { color: var(--text-70); font-weight: 600; }
.logos-row { display: flex; align-items: center; justify-content: center; gap: 32px; margin-top: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.logo-ph { padding: 8px 20px; border: 1px solid var(--border); border-radius: 6px; font-size: 12px; color: var(--text-20); font-weight: 500; }

/* ─── INSIGHTS ─── */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1080px; margin: 0 auto; }
.insight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: all 0.25s;
}
.insight-card:hover { border-color: rgba(124,58,237,0.25); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.09); }
.insight-thumb { height: 180px; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); display: flex; flex-direction: column; padding: 12px 12px 0; overflow: hidden; position: relative; }
.insight-thumb.v2 { background: linear-gradient(135deg, #1E1A30, var(--purple-600)); }
.insight-thumb.v3 { background: linear-gradient(135deg, var(--purple-600), #059669); }
.insight-type { padding: 3px 8px; background: rgba(0,0,0,0.3); backdrop-filter: blur(8px); border-radius: 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: #fff; align-self: flex-start; flex-shrink: 0; position: relative; z-index: 2; }
.card-header-svg { display: block; width: 100%; height: 140px; flex-shrink: 0; overflow: visible; }
.insight-body { padding: 24px; }
.insight-body h3 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; line-height: 1.35; }
.insight-body p { font-size: 13px; color: var(--text-45); line-height: 1.5; margin-bottom: 14px; }
.insight-link { font-size: 12.5px; font-weight: 700; color: var(--purple-600); text-decoration: none; transition: color 0.2s; }
.insight-link:hover { color: var(--purple-700); }

/* ─── FINAL CTA (solid purple band) ─── */
.cta-section {
  padding: 100px 48px; text-align: center;
  position: relative; overflow: hidden;
  background: var(--purple-600);
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.035em; line-height: 1.1; color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 36px; line-height: 1.6; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; }
.cta-section .btn-hero-primary { background: #fff; color: var(--purple-600); border: 1px solid #fff; }
.cta-section .btn-hero-primary:hover { background: var(--purple-100); box-shadow: 0 4px 24px rgba(0,0,0,0.15); transform: translateY(-1px); }
.cta-section .btn-hero-secondary { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.cta-section .btn-hero-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ─── FOOTER (dark) ─── */
footer { background: var(--dark); border-top: 1px solid var(--dark-border); padding: 56px 48px 32px; }
.footer-inner { max-width: 1080px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid var(--dark-border); }
.footer-about { font-size: 13px; line-height: 1.6; color: var(--white-40); margin-top: 14px; max-width: 280px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-60); margin-bottom: 14px; }
.footer-col a { display: block; padding: 3px 0; font-size: 13px; color: var(--white-40); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: var(--white-20); }
.footer-legal a { font-size: 12px; color: var(--white-20); text-decoration: none; margin-left: 20px; }
.footer-legal a:hover { color: var(--white-40); }

/* ─── HAMBURGER (now handled by .hamburger-menu / .hamburger-btn above) ─── */

/* ─── MOBILE MENU ─── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 90; background: rgba(20,15,34,0.98); backdrop-filter: blur(24px); opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.mobile-menu.is-open { opacity: 1; pointer-events: auto; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 0; padding: 80px 32px 48px; }
.mobile-menu-link { display: block; padding: 18px 0; font-size: 24px; font-weight: 700; color: var(--white); text-decoration: none; letter-spacing: -0.02em; transition: color 0.2s; text-align: center; }
.mobile-menu-link:hover { color: var(--purple-400); }
.mobile-menu-divider { width: 48px; height: 1px; background: var(--dark-border); margin: 16px 0 24px; }
.mobile-menu-btn { width: 200px; text-align: center; margin-top: 8px; padding: 12px 24px; font-size: 15px; }

/* ─── TEAM ─── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; }
.team-grid-founders { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin-bottom: 24px; }
.team-card { padding: 36px 28px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; text-align: center; transition: all 0.25s; }
.team-card:hover { border-color: rgba(124,58,237,0.25); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.09); }
.team-card-placeholder { opacity: 0.35; pointer-events: none; }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--purple-600), var(--purple-400)); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; overflow: hidden; flex-shrink: 0; box-shadow: 0 4px 16px rgba(124,58,237,0.2); }
.team-avatar-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.team-avatar-2 { background: linear-gradient(135deg, var(--purple-400), #059669); }
.team-avatar-3 { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.team-avatar-4 { background: linear-gradient(135deg, #065f46, #10b981); }
.team-avatar-5 { background: linear-gradient(135deg, #7c2d12, #f97316); }
.team-avatar-6 { background: linear-gradient(135deg, #4c1d95, var(--purple-300)); }
.team-initials { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: 0.02em; }
.team-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; letter-spacing: -0.01em; }
.placeholder-name { color: var(--text-20) !important; }
.team-role { font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--purple-600); margin-bottom: 14px; }
.team-bio { font-size: 13px; line-height: 1.65; color: var(--text-45); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero h1 { font-size: 48px; }
  .diff-grid, .sol-grid, .uc-grid, .insights-grid { grid-template-columns: 1fr; }
  .bobbot-layout { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .proof-stats { flex-wrap: wrap; gap: 40px; }
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); max-width: 640px; }
}
@media (max-width: 868px) {
  .btn-login, .nav-right .btn-primary { display: none; }
  .mobile-menu { display: block; }
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
  .team-grid-founders { grid-template-columns: 1fr; max-width: 360px; }
}
@media (max-width: 640px) {
  nav { padding: 0 16px; }
  .hero { padding: 100px 20px 60px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .section, .bobbot-section, .uc-section, .cta-section { padding: 72px 20px; }
  .proof-strip, .quote-section { padding-left: 20px; padding-right: 20px; }
  .proof-strip { padding-top: 48px; padding-bottom: 48px; }
  .proof-stats { gap: 28px; }
  .hero-ctas, .cta-buttons { flex-direction: column; align-items: center; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
}
/* ═══════════════════════════════════════════════
   NEW SECTIONS — Products, Videos, Quotes, Downloads
   ═══════════════════════════════════════════════ */

/* ─── HERO PRODUCT CARDS ─── */
.hero-products {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; max-width: 700px; margin: 56px auto 0;
  position: relative; z-index: 1;
  animation: fadeUp 0.8s ease-out 0.5s both;
}
.hero-prod-card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 28px 24px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 14px;
  text-decoration: none; color: inherit; transition: all 0.25s;
}
.hero-prod-card:hover {
  border-color: rgba(124,58,237,0.35);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(124,58,237,0.12);
}
.hero-prod-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple-100); color: var(--purple-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.hero-prod-card h3 {
  font-size: 18px; font-weight: 800; color: var(--text);
  margin-bottom: 6px; letter-spacing: -0.02em;
}
.hero-prod-card p {
  font-size: 13.5px; line-height: 1.55; color: var(--text-45);
}

/* ─── PRODUCT SECTIONS ─── */
.product-section {
  padding: 80px 48px; border-top: none; background: var(--bg);
}
.product-section-alt { background: var(--bg-subtle); }
.product-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  max-width: 1120px; margin: 0 auto;
}
.product-layout-reverse { direction: rtl; }
.product-layout-reverse > * { direction: ltr; }
.product-tagline {
  font-size: 18px; line-height: 1.5; color: var(--text-70);
  margin-bottom: 24px; font-weight: 400;
}
.product-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.product-feat {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px; color: var(--text-70); font-weight: 500;
}
.feat-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.25);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feat-check svg { width: 12px; height: 12px; stroke: var(--green); stroke-width: 2.5; fill: none; }

/* ─── VIDEO WINDOW ─── */
.product-video { position: relative; }
.video-window {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.03), 0 20px 60px rgba(124,58,237,0.1);
}
.video-toolbar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px; border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
}
.video-dots { display: flex; gap: 5px; }
.video-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.video-label { font-size: 12px; color: var(--text-45); font-weight: 500; }
.video-window video {
  display: block; width: 100%; height: auto;
}

/* ─── TESTIMONIALS (multi-card) ─── */
.quotes-section {
  padding: 100px 48px;
  background: linear-gradient(180deg, rgba(237,233,254,0.35) 0%, rgba(237,233,254,0.15) 100%);
  border-top: none;
  border-bottom: none;
}
.quotes-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1080px; margin: 0 auto;
}
.quote-card {
  padding: 32px 28px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 14px;
  display: flex; flex-direction: column;
  transition: all 0.25s;
}
.quote-card:hover {
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 8px 32px rgba(124,58,237,0.07);
}
.quote-card .quote-mark {
  font-size: 48px; color: var(--purple-300); line-height: 1;
  margin-bottom: 8px;
}
.quote-card .quote-text {
  font-size: 14.5px; font-weight: 500; line-height: 1.6;
  color: var(--text-70); font-style: italic; flex: 1;
  margin-bottom: 20px;
}
.quote-card .quote-attr {
  font-size: 13px; display: flex; flex-direction: column; gap: 2px;
}
.quote-card .quote-attr strong { color: var(--text); font-weight: 700; }
.quote-card .quote-attr span { color: var(--text-45); font-weight: 400; }

/* ─── GATED DOWNLOAD ─── */
.download-section {
  padding: 100px 48px;
  background: var(--dark);
  position: relative;
}
.download-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
  max-width: 1080px; margin: 0 auto;
}
.download-info h2 {
  font-family: var(--font-headline);
  font-size: 36px; font-weight: 800; color: var(--white);
  letter-spacing: -0.03em; margin-bottom: 14px; line-height: 1.1;
}
.download-info p {
  font-size: 15px; line-height: 1.65; color: var(--white-60); margin-bottom: 32px;
}
.download-info p strong { color: var(--white); }
.download-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.download-pack {
  padding: 20px; border: 1px solid var(--dark-border);
  border-radius: 12px; background: rgba(255,255,255,0.03);
}
.download-pack h4 {
  font-size: 14px; font-weight: 700; color: var(--white);
  margin-bottom: 10px;
}
.download-pack ul {
  list-style: none; display: flex; flex-direction: column; gap: 6px;
}
.download-pack li {
  font-size: 13px; color: var(--white-40); padding-left: 16px; position: relative;
}
.download-pack li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--green); font-weight: 700; font-size: 12px;
}
.download-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-border);
  border-radius: 16px; padding: 36px 32px;
}
.download-form h3 {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--white-60); margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-field input {
  width: 100%; padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--dark-border);
  border-radius: 8px; color: var(--white);
  font-size: 14px; font-family: var(--font);
  transition: border-color 0.2s;
}
.form-field input::placeholder { color: var(--white-20); }
.form-field input:focus {
  outline: none; border-color: var(--purple-500);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.form-checks { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.form-check {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: var(--white-60); cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--purple-600);
}
.form-note {
  font-size: 12px; color: var(--white-20); text-align: center;
  margin-top: 12px;
}

/* ─── LOGIN MODAL ─── */
.login-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 15, 34, 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.login-overlay.is-open { opacity: 1; visibility: visible; }
.login-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  width: 90%; max-width: 420px;
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.15), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.login-overlay.is-open .login-modal { transform: translateY(0); }
.login-modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--text-45); line-height: 1;
  transition: color 0.2s;
}
.login-modal-close:hover { color: var(--text); }
.login-modal-title {
  font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.login-modal-sub {
  font-size: 14px; color: var(--text-70); margin-bottom: 28px; line-height: 1.5;
}

/* Form fields */
.login-field { margin-bottom: 18px; }
.login-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.login-field input {
  width: 100%; padding: 11px 14px; font-size: 14px;
  font-family: var(--font); color: var(--text);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; outline: none;
  transition: border-color 0.2s;
}
.login-field input::placeholder { color: var(--text-45); }
.login-field input:focus { border-color: var(--purple-500); }

/* Password wrapper */
.login-pw-wrap {
  position: relative; display: flex; align-items: center;
}
.login-pw-wrap input { padding-right: 44px; }
.login-pw-toggle {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; padding: 4px;
  color: var(--text-45); display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.login-pw-toggle:hover { color: var(--purple-600); }

/* Error message */
.login-error {
  background: rgba(220, 38, 38, 0.06); border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 18px;
  font-size: 13px; color: #b91c1c; line-height: 1.5;
}

/* Submit button */
.login-submit {
  width: 100%; padding: 13px 20px;
  background: var(--purple-600); color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.login-submit:hover { background: var(--purple-700); transform: translateY(-1px); }
.login-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.login-submit-loader {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: loginSpin 0.6s linear infinite;
}
@keyframes loginSpin { to { transform: rotate(360deg); } }

/* Help text */
.login-help {
  margin-top: 24px; text-align: center;
  font-size: 12.5px; color: var(--text-45);
}
.login-help a { color: var(--purple-600); text-decoration: none; }
.login-help a:hover { text-decoration: underline; }

/* Destination buttons */
.login-dest-grid {
  display: flex; flex-direction: column; gap: 14px; margin-top: 4px;
}
.login-dest {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 22px;
  border: none; border-radius: 14px;
  cursor: pointer; font-family: var(--font); font-size: 16px;
  font-weight: 700; color: #fff;
  transition: transform 0.15s, box-shadow 0.2s;
}
.login-dest:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}
.login-dest-flag { font-size: 20px; font-weight: 800; }

/* European — blue gradient */
.login-dest-europe {
  background: linear-gradient(135deg, #1e3a8a, #2563eb, #3b82f6);
}
/* Japanese — red/crimson gradient */
.login-dest-japan {
  background: linear-gradient(135deg, #9f1239, #dc2626, #e11d48);
}
/* Ask PX — purple gradient */
.login-dest-askpx {
  background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
}

/* ─── RESPONSIVE ADDITIONS ─── */
@media (max-width: 1024px) {
  .product-layout, .product-layout-reverse { grid-template-columns: 1fr; }
  .product-layout-reverse { direction: ltr; }
  .download-inner { grid-template-columns: 1fr; }
  .hero-products { grid-template-columns: 1fr; max-width: 400px; }
  .quotes-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
}
@media (max-width: 640px) {
  .product-section { padding: 60px 20px; }
  .download-section { padding: 60px 20px; }
  .quotes-section { padding: 60px 20px; }
  .download-packs { grid-template-columns: 1fr; }
  .download-form-wrap { padding: 28px 20px; }
}
.card-country-img {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  box-sizing: border-box;
  gap: 12px;
}

.card-country-stat {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 0 0 auto;
  gap: 2px;
}

.card-country-number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: -1px;
  line-height: 1;
}

.card-country-label {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
}

.card-country-name {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}

.card-country-map {
  flex: 0 0 auto;
  width: 130px;
  height: 100%;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6px;
  box-sizing: border-box;
}

.card-country-map img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}
/* ─── CONTACT MODAL ─── */
.contact-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 15, 34, 0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.contact-overlay.is-open { opacity: 1; visibility: visible; }
.contact-modal {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  width: 90%; max-width: 480px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(124, 58, 237, 0.15), 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.contact-overlay.is-open .contact-modal { transform: translateY(0); }
.contact-modal-close {
  position: absolute; top: 16px; right: 18px;
  background: none; border: none; cursor: pointer;
  font-size: 26px; color: var(--text-45); line-height: 1;
  transition: color 0.2s;
}
.contact-modal-close:hover { color: var(--text); }
.contact-modal-title {
  font-size: 24px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.contact-modal-sub {
  font-size: 14px; color: var(--text-70); margin-bottom: 24px; line-height: 1.5;
}

.contact-field { margin-bottom: 14px; }
.contact-field label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}
.contact-field input,
.contact-field textarea {
  width: 100%; padding: 11px 14px; font-size: 14px;
  font-family: var(--font); color: var(--text);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-field textarea {
  resize: vertical; min-height: 96px; line-height: 1.5;
}
.contact-field input:focus,
.contact-field textarea:focus { border-color: var(--purple-500); }

/* Honeypot — visually hidden but still accessible to browser autofill */
.contact-honeypot {
  position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden;
}

.contact-error {
  background: rgba(220, 38, 38, 0.06); border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 10px; padding: 12px 14px; margin-bottom: 14px;
  font-size: 13px; color: #b91c1c; line-height: 1.5;
}

.contact-submit {
  width: 100%; padding: 13px 20px;
  background: var(--purple-600); color: #fff;
  border: none; border-radius: 10px; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 4px;
}
.contact-submit:hover { background: var(--purple-700); transform: translateY(-1px); }
.contact-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.contact-submit-loader {
  width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff; border-radius: 50%;
  animation: loginSpin 0.6s linear infinite;
}

.contact-small {
  margin-top: 16px; font-size: 11.5px; color: var(--text-45); line-height: 1.5;
}