/* =========================================================
   MY DRONE EXPO — Design System
   Logo-derived palette: deep teal, cyan-blue, charcoal
   B2B aerospace-grade aesthetic
   ========================================================= */

:root {
  /* Brand colors — extracted from logo */
  --brand:        #0E7AA0;   /* deep teal blue (logo "MY") */
  --brand-bright: #1FA9CC;   /* bright cyan (logo "DRONE") */
  --brand-dark:   #062a4a;   /* deepest navy */
  --brand-darker: #04182a;   /* near-black hero bg */

  /* Accents */
  --accent:       #00d4a8;   /* aviation green — CTAs, status */
  --accent-warm:  #ffb84d;   /* signal amber — highlights */
  --china-red:    #DE2910;   /* China flag red — pavilion accent */

  /* Neutrals */
  --ink:          #0b1220;   /* primary text */
  --ink-2:        #475569;   /* secondary text */
  --ink-3:        #94a3b8;   /* muted */
  --line:         #e2e8f0;
  --line-2:       #f1f5f9;
  --surface:      #ffffff;
  --surface-2:    #f8fafc;
  --surface-3:    #f1f5f9;

  --max-w:        1280px;
  --pad-x:        clamp(20px, 5vw, 64px);
  --radius:       10px;
  --radius-lg:    16px;

  --shadow-sm:    0 1px 3px rgba(11, 18, 32, 0.06), 0 1px 2px rgba(11, 18, 32, 0.04);
  --shadow:       0 4px 12px rgba(11, 18, 32, 0.08), 0 2px 4px rgba(11, 18, 32, 0.04);
  --shadow-lg:    0 20px 40px rgba(11, 18, 32, 0.12), 0 8px 16px rgba(11, 18, 32, 0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
section[id] { scroll-margin-top: 96px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
body[lang^="zh"] {
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color 0.18s ease; }
a:hover { color: var(--brand-bright); }
button { font-family: inherit; cursor: pointer; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}
body[lang^="zh"] h1,
body[lang^="zh"] h2,
body[lang^="zh"] h3,
body[lang^="zh"] h4 { font-family: inherit; letter-spacing: 0; }

h1 { font-size: clamp(36px, 5.4vw, 64px); }
h2 { font-size: clamp(28px, 3.6vw, 44px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 24px); margin-bottom: 10px; }
p  { color: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--brand-bright);
}

/* ===== Layout ===== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
section { padding: clamp(56px, 9vw, 120px) 0; }
.section-tight { padding: clamp(36px, 5vw, 72px) 0; }
.dark { background: var(--brand-darker); color: #e2e8f0; }
.dark h1, .dark h2, .dark h3 { color: #fff; }
.dark p { color: #cbd5e1; }
.dark .eyebrow { color: var(--accent); }
.dark .eyebrow::before { background: var(--accent); }
.surface-2 { background: var(--surface-2); }
.surface-3 { background: var(--surface-3); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
}
.btn-primary:hover {
  background: var(--brand-bright);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-accent {
  background: var(--accent);
  color: var(--brand-darker);
}
.btn-accent:hover {
  background: #00bb95;
  color: var(--brand-darker);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--brand);
  background: var(--surface-2);
}
.btn-china {
  background: var(--china-red);
  color: #fff;
}
.btn-china:hover { background: #b71c0d; color: #fff; }
.btn svg { width: 16px; height: 16px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 56px;
  width: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: flex-end;
}
.nav-item {
  position: relative;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.nav-item > a:hover { color: var(--brand); background: var(--surface-2); }
.nav-item > a.active { color: var(--brand); }
.nav-item > a.active::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 14px; right: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.nav-item .caret {
  transition: transform 0.18s ease;
  opacity: 0.7;
}
.nav-item:hover .caret { transform: rotate(180deg); opacity: 1; }

/* Mobile-only expand button (separate from the parent link).
   Hidden on desktop because hover handles the dropdown there. */
.nav-expand {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink-2);
  padding: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.18s ease;
}
.nav-expand:hover { background: var(--surface-2); color: var(--brand); }
.nav-expand svg { transition: transform 0.18s ease; }
.nav-item.expanded .nav-expand svg { transform: rotate(180deg); }

/* Mobile language switcher inside the panel — hidden on desktop */
.nav-lang-mobile {
  display: none;
}

.nav-china {
  color: var(--china-red) !important;
  font-weight: 600 !important;
}
.nav-china:hover { background: rgba(222, 41, 16, 0.06) !important; }

/* ===== Dropdown ===== */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.12), 0 4px 8px rgba(11, 18, 32, 0.05);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}
.dropdown::before {
  /* Invisible bridge between trigger and dropdown so hover doesn't break */
  content: "";
  position: absolute;
  top: -10px; left: 0; right: 0;
  height: 12px;
}
.nav-item.has-dropdown:hover > .dropdown,
.nav-item.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.12s ease;
}
.dropdown-link:hover { background: var(--surface-2); }
.dropdown-title {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.dropdown-link:hover .dropdown-title { color: var(--brand); }
.dropdown-desc {
  display: block;
  color: var(--ink-3);
  font-size: 12px;
  line-height: 1.4;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.lang-switch:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--surface-2);
}
.lang-switch svg { width: 14px; height: 14px; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 20px; height: 20px; color: var(--ink); }
.menu-toggle .icon-close { display: none; }
.menu-toggle.open .icon-menu { display: none; }
.menu-toggle.open .icon-close { display: block; }

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: var(--header-h, 80px);
    left: 0; right: 0;
    height: calc(100vh - var(--header-h, 80px));
    height: calc(100dvh - var(--header-h, 80px));
    flex-direction: column;
    background: var(--surface);
    padding: 8px var(--pad-x) 32px;
    gap: 0;
    align-items: stretch;
    transform: translateX(100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid var(--line);
    box-shadow: -10px 0 40px rgba(11, 18, 32, 0.08);
  }
  .nav.open { transform: translateX(0); }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--line-2);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  .nav-item > a {
    padding: 18px 4px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 0;
    flex: 1 1 auto;
    justify-content: flex-start;
    min-width: 0;
  }
  .nav-item > a.active::after { display: none; }
  .nav-item > a.active { color: var(--brand); }

  /* Hide the caret SVG inside the link — we use the dedicated expand button instead */
  .nav-item .caret { display: none; }
  /* Reveal the dedicated expand button on mobile */
  .nav-item.has-dropdown .nav-expand { display: inline-flex; }

  /* Mobile dropdown becomes accordion */
  .dropdown {
    position: static;
    transform: none;
    min-width: 0;
    width: 100%;
    flex-basis: 100%;
    background: var(--surface-2);
    border: 0;
    box-shadow: none;
    padding: 0 4px;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    margin: 0 -4px;
  }
  .dropdown::before { display: none; }
  .nav-item.expanded .dropdown {
    max-height: 800px;
    padding: 6px 4px 12px;
    margin-bottom: 4px;
  }
  /* Disable hover-triggered dropdown on touch devices to avoid sticky open state */
  .nav-item.has-dropdown:hover > .dropdown {
    transform: none;
  }
  .dropdown-link {
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 2px;
  }
  .dropdown-title { font-size: 15px; }
  .dropdown-desc { font-size: 12px; line-height: 1.4; }

  /* Lang switcher inside mobile panel */
  .nav-lang-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 600;
    background: var(--surface-2);
    transition: all 0.15s ease;
  }
  .nav-lang-mobile:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: #fff;
  }
  .nav-lang-mobile svg { color: var(--brand); }

  /* Hide the desktop lang switcher on mobile (we have the in-panel one) */
  .header-actions .lang-switch { display: none; }

  .menu-toggle { display: inline-flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 60%, #093659 100%);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0 clamp(80px, 10vw, 130px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(31, 169, 204, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 168, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
}
.hero h1 {
  color: #fff;
  font-size: clamp(40px, 6vw, 72px);
  margin-bottom: 24px;
}
.hero h1 .accent { color: var(--brand-bright); }
.hero h1 .green { color: var(--accent); font-style: italic; font-weight: 600; }
.hero-lede {
  font-size: 17px;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 36px;
}
.hero-meta-item .label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-bright);
  font-weight: 600;
  margin-bottom: 4px;
}
.hero-meta-item .val {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Hero visual (drone illustration) */
.hero-visual {
  position: relative;
  height: 460px;
}
@media (max-width: 900px) {
  .hero-visual { height: 320px; }
}

/* ===== Stats / counters ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.stat-cell {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.stat-cell:last-child { border-right: 0; }
.stat-cell .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-cell .lbl {
  margin-top: 8px;
  font-size: 13px;
  color: var(--ink-2);
}

/* ===== Cards / zones grid ===== */
.zone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.zone-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}
.zone-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-bright) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.zone-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--brand-bright); }
.zone-card:hover::before { transform: scaleX(1); }
.zone-icon {
  width: 56px; height: 56px;
  background: var(--surface-3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--brand);
}
.zone-icon svg { width: 30px; height: 30px; }
.zone-num {
  position: absolute;
  top: 24px; right: 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--surface-3);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ===== Pillars / why participate ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.feature {
  text-align: left;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: rgba(31, 169, 204, 0.1);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: var(--brand-bright);
}
.feature h3 { margin-bottom: 8px; font-size: 18px; }
.feature p { font-size: 14px; }

/* ===== Section header ===== */
.sec-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head p { font-size: 16px; }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(28px, 5vw, 64px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.cta-banner::after {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(31, 169, 204, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 520px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 520px; margin-top: 12px; }

/* ===== Form ===== */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 18px; }
.form-row.split { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row.split { grid-template-columns: 1fr; } }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-row label .req { color: var(--china-red); }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(14, 122, 160, 0.12);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
}
.form-checkbox input { width: auto; margin-top: 3px; }
.form-status { padding: 14px 16px; border-radius: 8px; margin-bottom: 18px; font-size: 14px; }
.form-status.ok  { background: #e6fffb; color: #006e5d; border: 1px solid #00d4a8; }
.form-status.err { background: #fef2f2; color: #b71c1c; border: 1px solid #fecaca; }

/* ===== Tables (agenda, packages) ===== */
.tbl {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 14px;
}
.tbl th, .tbl td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
.tbl th { background: var(--surface-2); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-2); font-weight: 600; }
.tbl tr:last-child td { border-bottom: 0; }
.tbl tr:hover td { background: var(--surface-2); }

/* ===== Pricing / packages ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.pkg {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s ease;
}
.pkg.featured {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(14, 122, 160, 0.12);
  transform: translateY(-8px);
}
.pkg.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
body[lang^="zh"] .pkg.featured::before { content: "最受欢迎"; letter-spacing: 0; }
.pkg-name { font-size: 14px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.08em; text-transform: uppercase; }
.pkg-price { margin: 12px 0 16px; }
.pkg-price .amt { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: var(--brand); letter-spacing: -0.02em; }
.pkg-price .unit { font-size: 14px; color: var(--ink-3); }
.pkg ul { list-style: none; margin: 20px 0; }
.pkg ul li {
  padding: 8px 0 8px 28px;
  font-size: 14px;
  color: var(--ink-2);
  position: relative;
  border-bottom: 1px solid var(--line-2);
}
.pkg ul li:last-child { border-bottom: 0; }
.pkg ul li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
  line-height: 1;
}
.pkg .btn { width: 100%; justify-content: center; }

/* ===== Page header ===== */
.page-header {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(31, 169, 204, 0.2) 0%, transparent 50%);
}
/* Photo-backed page headers: add `style="background-image:url(...)"` on .page-header.photo */
.page-header.photo {
  background-size: cover;
  background-position: center;
}
.page-header.photo::before {
  background:
    linear-gradient(135deg, rgba(4,24,42,0.92) 0%, rgba(6,42,74,0.78) 60%, rgba(14,122,160,0.55) 100%);
}
.page-header-inner { position: relative; z-index: 2; }
.page-header h1 { color: #fff; font-size: clamp(32px, 4vw, 52px); margin-bottom: 12px; }
.page-header p { color: #cbd5e1; font-size: 17px; max-width: 640px; }
.breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ===== Footer ===== */
.site-footer {
  background: var(--brand-darker);
  color: #cbd5e1;
  padding: 72px 0 32px;
}
.site-footer .container { max-width: var(--max-w); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.15s ease;
}
.site-footer a:hover { color: var(--brand-bright); }
.footer-logo { height: 48px; margin-bottom: 16px; }
.site-footer .footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #94a3b8;
}
.site-footer .footer-about p strong { color: #fff; }
.site-footer .footer-about p.footer-org {
  font-size: 12px;
  line-height: 1.55;
  color: #94a3b8;
  margin-top: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #94a3b8;
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
}
.socials a:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
}
.socials svg { width: 14px; height: 14px; }

/* ===== China pavilion accents ===== */
.china-banner {
  background: linear-gradient(90deg, var(--china-red) 0%, #c0392b 100%);
  color: #fff;
  padding: 16px 0;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}
.china-banner a { color: #ffe0a0; font-weight: 700; text-decoration: underline; }
.china-banner a:hover { color: #fff; }
.china-page .hero { background: linear-gradient(135deg, #5c0f06 0%, #8b1a0e 50%, var(--china-red) 100%); }
.china-page .hero h1 .accent { color: #ffe0a0; }
.china-page .btn-primary { background: var(--china-red); }
.china-page .btn-primary:hover { background: #b71c0d; }

/* ===== Misc ===== */
.divider {
  height: 1px;
  background: var(--line);
  margin: 32px 0;
}
.tag-pill {
  display: inline-block;
  padding: 5px 12px;
  background: var(--surface-3);
  border-radius: 99px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}
.gallery .ph {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--surface-3), var(--line));
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.gallery .ph svg {
  position: absolute; inset: 0; margin: auto;
  width: 60px; height: 60px;
  opacity: 0.25;
  color: var(--ink-3);
}

/* Animation */
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.rise { animation: rise 0.7s ease-out forwards; }
.rise-d1 { animation: rise 0.7s 0.1s ease-out backwards; }
.rise-d2 { animation: rise 0.7s 0.2s ease-out backwards; }
.rise-d3 { animation: rise 0.7s 0.3s ease-out backwards; }

/* Drone hover animation */
@keyframes hover { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.drone-hover { animation: hover 4s ease-in-out infinite; transform-origin: center; }
@keyframes spin { to { transform: rotate(360deg); } }
.prop { transform-origin: center; animation: spin 0.18s linear infinite; }

/* ===== QR registration cards ===== */
.qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}
.qr-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}
.qr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.qr-card .qr-label {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--brand-darker);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.qr-card.exhibitor .qr-label { background: var(--brand-bright); color: #fff; }
.qr-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.qr-card h3 { font-size: 18px; margin-bottom: 6px; }
.qr-card p { font-size: 13px; color: var(--ink-2); margin-bottom: 14px; }
.qr-card .btn { width: 100%; justify-content: center; }

/* Activities chips (from official catalogue) */
.activity-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}
.activity-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.activity-list li::before {
  content: "";
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

/* ===== Hero photo composition ===== */
.hero-photo-stack {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
}
.hero-photo-stack .ph-card {
  position: absolute;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06) inset;
  background: #04182a;
}
.hero-photo-stack .ph-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-photo-stack .ph-main   { left: 0;   top: 8%;  width: 70%; height: 78%; transform: rotate(-2deg); }
.hero-photo-stack .ph-accent { right: 0;  top: 0;   width: 46%; height: 42%; transform: rotate(3deg);  border: 3px solid var(--accent); }
.hero-photo-stack .ph-poster { right: 4%; bottom: 4%; width: 50%; height: 44%; transform: rotate(2deg); border: 3px solid var(--brand-bright); }
.hero-photo-stack .ph-poster img { object-fit: cover; object-position: top; }
@media (max-width: 900px) {
  .hero-photo-stack { min-height: 320px; }
  .hero-photo-stack .ph-main   { width: 78%; }
  .hero-photo-stack .ph-accent { width: 50%; }
  .hero-photo-stack .ph-poster { width: 56%; }
}

/* ===== Photo zone cards (gradient placeholders → real images) ===== */
.zone-card.with-photo { padding: 0; overflow: hidden; }
.zone-card.with-photo .zone-photo {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.zone-card.with-photo .zone-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s ease;
}
.zone-card.with-photo:hover .zone-photo img { transform: scale(1.06); }
.zone-card.with-photo .zone-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,24,42,0) 30%, rgba(4,24,42,0.85) 100%);
}
.zone-card.with-photo .zone-photo .zone-num {
  position: absolute; top: 16px; left: 16px;
  background: rgba(255,255,255,0.92); color: var(--brand);
  font-size: 12px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  z-index: 2;
}
.zone-card.with-photo .zone-body { padding: 22px 24px 26px; }

/* ===== Photo feature row (two-up split) ===== */
.photo-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.photo-split .ph {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.photo-split .ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-split .ph .badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(4,24,42,0.85); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
@media (max-width: 900px) { .photo-split { grid-template-columns: 1fr; gap: 28px; } }

/* ===== Drone World Congress Agenda CTA strip (home page) ===== */
.agenda-cta-strip {
  padding: clamp(36px, 5vw, 60px) 0;
  background:
    linear-gradient(135deg, #0a2540 0%, #0E7AA0 50%, #00d4a8 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.agenda-cta-strip::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(255,184,77,.22) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.12) 0%, transparent 45%);
}
.agenda-cta-strip .container { position: relative; z-index: 1; }
.agenda-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}
.agenda-cta-text .eyebrow {
  color: #ffb84d;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.agenda-cta-text h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 8px;
  line-height: 1.2;
}
.agenda-cta-text p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  margin: 0;
  max-width: 560px;
  line-height: 1.5;
}
.agenda-cta-btn {
  background: #fff;
  color: #04182a !important;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all .2s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.agenda-cta-btn:hover {
  transform: translateY(-2px);
  background: #ffb84d;
  box-shadow: 0 18px 42px rgba(255,184,77,0.45);
}
.agenda-cta-btn svg { width: 18px; height: 18px; }
@media (max-width: 800px) {
  .agenda-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .agenda-cta-text p { margin-left: auto; margin-right: auto; }
  .agenda-cta-btn { justify-self: center; }
}

/* ===== Opening Ceremony promo (home page) ===== */
.opening-promo {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    linear-gradient(135deg, #2d0710 0%, #5c0a1a 40%, #8b1538 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.opening-promo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,184,77,.22) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(255,184,77,.14) 0%, transparent 50%);
}
.opening-promo .container { position: relative; z-index: 1; }

.opening-promo-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.opening-promo-text .eyebrow { color: #ffb84d; }
.opening-promo-text .eyebrow::before { background: #ffb84d; }
.opening-promo-text h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  line-height: 1.2;
}
.opening-promo-text .lede {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}

.opening-promo-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,184,77,0.2);
  border-bottom: 1px solid rgba(255,184,77,0.2);
}
.opening-promo-meta .item { display: flex; flex-direction: column; gap: 4px; }
.opening-promo-meta .lbl {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,184,77,0.8); font-weight: 700;
}
.opening-promo-meta .val { font-size: 14px; font-weight: 700; color: #fff; }

.opening-promo-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.opening-btn-primary {
  background: linear-gradient(135deg, #c9962b 0%, #ffb84d 100%);
  color: #2d0710 !important;
  font-weight: 700;
  padding: 16px 30px;
  font-size: 15px;
  box-shadow: 0 12px 32px rgba(31,169,204,0.4);
  transition: all .2s ease;
}
.opening-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255,184,77,0.45);
  background: linear-gradient(135deg, #ffb84d 0%, #ffd06b 100%);
  color: #2d0710 !important;
}
.opening-promo-note {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  max-width: 520px;
}

/* PM Anwar banner poster on the right */
.opening-promo-visual { display: flex; justify-content: center; align-items: center; }
.opening-poster-card {
  position: relative;
  width: 340px;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: #04182a;
  border: 1px solid rgba(255,184,77,0.4);
  box-shadow:
    0 40px 80px rgba(0,0,0,0.55),
    0 0 0 4px rgba(255,184,77,0.08);
  transform: rotate(-1.5deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.opening-poster-card:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow:
    0 50px 100px rgba(0,0,0,0.65),
    0 0 0 4px rgba(255,184,77,0.15);
}
.opening-poster-card img {
  display: block;
  width: 100%;
  height: auto;
}
.opening-poster-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(4,24,42,0.85);
  border: 1px solid rgba(255,184,77,0.5);
  color: #ffb84d;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 700;
  backdrop-filter: blur(6px);
  z-index: 2;
}

@media (max-width: 900px) {
  .opening-promo-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .opening-promo-text .lede { margin-left: auto; margin-right: auto; }
  .opening-promo-meta { grid-template-columns: 1fr; gap: 14px; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
  .opening-promo-cta { justify-content: center; }
  .opening-promo-note { margin-left: auto; margin-right: auto; }
}
@media (max-width: 480px) {
  .opening-promo-cta .btn { width: 100%; justify-content: center; }
  .opening-poster-card { width: 280px; }
}

/* ===== Gala Dinner promo (home page) ===== */
.gala-promo {
  padding: clamp(64px, 9vw, 110px) 0;
  background:
    linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gala-promo::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(255,184,77,.25) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(0,212,168,.18) 0%, transparent 50%);
}
.gala-promo::after {
  /* subtle gold sparkle texture using radial gradients */
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .4;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,184,77,0.4) 0, transparent 1px),
    radial-gradient(circle at 75% 60%, rgba(255,184,77,0.3) 0, transparent 1px),
    radial-gradient(circle at 50% 85%, rgba(255,184,77,0.4) 0, transparent 1px),
    radial-gradient(circle at 10% 70%, rgba(255,184,77,0.3) 0, transparent 1px),
    radial-gradient(circle at 90% 15%, rgba(255,184,77,0.4) 0, transparent 1px);
}
.gala-promo .container { position: relative; z-index: 1; }

.gala-promo-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.gala-promo-text .eyebrow {
  color: #ffb84d;
}
.gala-promo-text .eyebrow::before { background: #ffb84d; }
.gala-promo-text h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 52px);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px rgba(255,184,77,0.2);
}
.gala-promo-text .lede {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
}

.gala-promo-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin-bottom: 32px;
  padding: 22px 0;
  border-top: 1px solid rgba(255,184,77,0.2);
  border-bottom: 1px solid rgba(255,184,77,0.2);
}
.gala-promo-meta .item { display: flex; flex-direction: column; gap: 4px; }
.gala-promo-meta .lbl {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,184,77,0.8);
  font-weight: 700;
}
.gala-promo-meta .val {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.gala-promo-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.gala-btn-primary {
  background: linear-gradient(135deg, #ffb84d 0%, #ff9a1f 100%);
  color: #1a0a2e !important;
  font-weight: 700;
  padding: 14px 28px;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(255,184,77,0.3);
  transition: all .2s ease;
}
.gala-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(255,184,77,0.45);
  background: linear-gradient(135deg, #ffd07a 0%, #ffb84d 100%);
  color: #1a0a2e !important;
}
.gala-btn-ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff !important;
  font-weight: 600;
  padding: 13px 26px;
  font-size: 14px;
  transition: all .18s ease;
}
.gala-btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}
.gala-promo-note {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  max-width: 480px;
}

/* Decorative card on the right */
.gala-promo-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gala-card-stack {
  position: relative;
  width: 340px;
  height: 460px;
}
.gala-card {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%),
    linear-gradient(135deg, #2d1b4e 0%, #1a0a2e 100%);
  border: 1px solid rgba(255,184,77,0.3);
  border-radius: 24px;
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.gala-card:hover { transform: rotate(0deg) scale(1.02); }
.gala-card::before {
  /* gold corner accents */
  content: ""; position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(255,184,77,0.25);
  border-radius: 16px;
  pointer-events: none;
}
.gala-card .glass { font-size: 96px; line-height: 1; margin-bottom: 24px; filter: drop-shadow(0 6px 18px rgba(255,184,77,0.4)); }
.gala-card .label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffb84d;
  margin-bottom: 8px;
}
.gala-card .sub {
  font-size: 14px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  margin-bottom: 24px;
}
.gala-card .badge {
  background: rgba(255,184,77,0.15);
  border: 1px solid rgba(255,184,77,0.4);
  color: #ffb84d;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 700;
}

@media (max-width: 900px) {
  .gala-promo-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .gala-promo-text .lede { margin-left: auto; margin-right: auto; }
  .gala-promo-meta { grid-template-columns: 1fr; gap: 16px; text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
  .gala-promo-cta { justify-content: center; }
  .gala-promo-note { margin-left: auto; margin-right: auto; }
  .gala-card-stack { width: 280px; height: 380px; }
}
@media (max-width: 480px) {
  .gala-promo-cta .btn { width: 100%; justify-content: center; }
}

/* ===== Shorts / vertical highlight video ===== */
.shorts-section {
  background: linear-gradient(180deg, var(--brand-darker) 0%, #062a4a 60%, var(--brand) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.shorts-section::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(31,169,204,.25) 0%, transparent 50%),
    radial-gradient(circle at 15% 85%, rgba(0,212,168,.18) 0%, transparent 50%);
  pointer-events: none;
}
.shorts-section .container { position: relative; z-index: 1; }
.shorts-section h2 { color: #fff; }
.shorts-section p { color: rgba(255,255,255,0.85); font-size: 17px; line-height: 1.6; }
.shorts-section .eyebrow { color: var(--accent); }
.shorts-section .eyebrow::before { background: var(--accent); }

.shorts-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
.shorts-videos {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.shorts-stat-row {
  display: flex;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.shorts-stat-row .item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 600;
}
.shorts-stat-row .item::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}

.shorts-card {
  position: relative;
  width: 320px;
  aspect-ratio: 9/16;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06) inset;
  background: #000;
  border: 6px solid #0a1f30;
  flex-shrink: 0;
}
.shorts-card::before {
  /* phone notch */
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 16px;
  background: #04182a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.shorts-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shorts-card .unmute-hint {
  position: absolute;
  top: 24px; right: 12px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  transition: background .18s ease;
}
.shorts-card .unmute-hint:hover { background: rgba(0,0,0,0.85); }
.shorts-card .unmute-hint svg { width: 18px; height: 18px; }
.shorts-card.is-unmuted .unmute-hint .ico-muted { display: none; }
.shorts-card:not(.is-unmuted) .unmute-hint .ico-unmuted { display: none; }

@media (max-width: 480px) {
  .shorts-card { width: 280px; }
}

/* ===== Intro video — poster + modal player ===== */
.intro-video {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
}
.video-poster {
  position: relative;
  cursor: pointer;
  border-radius: 18px;
  overflow: hidden;
  max-width: 1080px;
  margin: 28px auto 0;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(4, 24, 42, 0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
  transition: transform .3s ease, box-shadow .3s ease;
  border: 0;
  padding: 0;
  background: var(--brand-darker);
  width: 100%;
  display: block;
}
.video-poster:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(4, 24, 42, 0.45), 0 0 0 1px rgba(31,169,204,0.2) inset;
}
.video-poster img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s ease;
}
.video-poster:hover img { transform: scale(1.04); }
.video-poster::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(4,24,42,0.45) 0%, rgba(14,122,160,0.22) 50%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}
.video-play-btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
  box-shadow: 0 14px 42px rgba(4,24,42,0.55);
  z-index: 2;
  transition: all .25s ease;
  pointer-events: none;
}
.video-poster:hover .video-play-btn {
  background: var(--accent);
  color: var(--brand-darker);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 18px 50px rgba(0,212,168,0.5);
}
.video-play-btn svg { width: 40px; height: 40px; margin-left: 5px; }
.video-poster-meta {
  position: absolute; bottom: 22px; left: 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-poster-meta::before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
}
@media (max-width: 600px) {
  .video-play-btn { width: 72px; height: 72px; }
  .video-play-btn svg { width: 30px; height: 30px; }
  .video-poster-meta { bottom: 14px; left: 16px; font-size: 12px; }
}

/* Video modal */
.video-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 99998;
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.video-modal.show { display: flex; animation: vmFade .3s ease; }
@keyframes vmFade { from { opacity: 0; } to { opacity: 1; } }
.video-modal-close {
  position: absolute; top: 18px; right: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  z-index: 100002;
  transition: background .18s ease, transform .18s ease;
}
.video-modal-close:hover { background: rgba(255,255,255,0.32); transform: scale(1.08); }
.video-modal-frame {
  position: relative;
  width: 100%;
  max-width: 1280px;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  background: #000;
  animation: vmRise .4s cubic-bezier(.16,.84,.44,1);
}
@keyframes vmRise {
  from { opacity: 0; transform: translateY(20px) scale(.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.video-modal-frame iframe,
.video-modal-frame video {
  width: 100%; height: 100%;
  border: 0;
  display: block;
  background: #000;
  object-fit: contain;
}

/* ===== Registration popup modal ===== */
.reg-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  background: rgba(4, 24, 42, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: regPopupFade 0.25s ease;
}
.reg-popup.show { display: flex; }
@keyframes regPopupFade { from { opacity: 0; } to { opacity: 1; } }

.reg-popup-inner {
  position: relative;
  background: #fff;
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: regPopupRise 0.35s cubic-bezier(.16,.84,.44,1);
}
@keyframes regPopupRise {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.reg-popup-head {
  background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand) 100%);
  padding: 28px 32px 24px;
  color: #fff;
  text-align: center;
  position: relative;
}
.reg-popup-logo {
  display: block;
  margin: 0 auto 16px;
  height: 64px;
  width: auto;
  filter: brightness(0) invert(1);
}
@media (max-width: 480px) {
  .reg-popup-logo { height: 50px; }
}
.reg-popup-head::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(31,169,204,0.35) 0%, transparent 60%);
}
.reg-popup-head > * { position: relative; z-index: 1; }
.reg-popup-head .eyebrow {
  color: var(--accent);
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.reg-popup-head h2 {
  color: #fff;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0;
  line-height: 1.2;
}
.reg-popup-head p {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  margin-top: 8px;
}
.reg-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.18s ease;
}
.reg-popup-close:hover { background: rgba(255,255,255,0.3); }

.reg-popup-body {
  padding: 28px 32px;
}
.reg-popup-cta {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}
.reg-popup-cta .btn {
  font-size: 16px;
  padding: 14px 32px;
  width: 100%;
  max-width: 320px;
  justify-content: center;
}
.reg-popup-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}
.reg-popup-divider::before,
.reg-popup-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.reg-popup-qrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.reg-popup-qrs .qr-block {
  text-align: center;
}
.reg-popup-qrs .qr-block .badge {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--brand-darker);
  font-weight: 700;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.reg-popup-qrs .qr-block.exh .badge { background: var(--brand-bright); color: #fff; }
.reg-popup-qrs .qr-block img {
  width: 100%;
  max-width: 180px;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0 auto;
}
.reg-popup-qrs .qr-block .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 8px;
}

.reg-popup-footer {
  background: var(--surface-2);
  padding: 14px 24px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-2);
  border-top: 1px solid var(--line);
}
.reg-popup-footer strong { color: var(--brand); }

@media (max-width: 480px) {
  .reg-popup-head { padding: 26px 22px 22px; }
  .reg-popup-body { padding: 22px 22px; }
  .reg-popup-qrs .qr-block img { max-width: 140px; }
}

/* ===== Ministry approval cards ===== */
.ministry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 28px auto 0;
  max-width: 1100px;
  justify-content: center;
}
@media (max-width: 900px) { .ministry-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 560px) { .ministry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.ministry-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ministry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--brand-bright);
}
.ministry-card .jata {
  width: 56px; height: 56px;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
}
.ministry-card .abbr {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--brand);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.ministry-card .full {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.35;
  min-height: 30px;
}

/* ===== Partner logo bands ===== */
.partner-band {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 20px;
}
.partner-band-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: center;
  margin-bottom: 18px;
  font-weight: 700;
}
.partner-band img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.partner-band.platinum img { max-height: 90px; }
.partner-band.strategic img { max-height: 380px; }
.partner-band.conference img { max-height: 60px; }
.partner-band.ministry img { max-height: 110px; }

/* ===== Exhibition photo strip (above stats) ===== */
.expo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 460px;
  margin-bottom: 24px;
}
.expo-strip .es {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: var(--shadow);
}
.expo-strip .es img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.expo-strip .es:hover img { transform: scale(1.06); }
.expo-strip .es::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,24,42,0) 45%, rgba(4,24,42,0.78) 100%);
}
.expo-strip .es .tag {
  position: absolute; left: 14px; bottom: 12px;
  color: #fff; font-weight: 700; font-size: 13px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  z-index: 1;
  letter-spacing: 0.01em;
}
.expo-strip .es-big { grid-row: span 2; }
@media (max-width: 1100px) {
  .expo-strip {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
    height: auto;
  }
  .expo-strip .es-big { grid-column: span 2; grid-row: span 2; }
}
@media (max-width: 700px) {
  .expo-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 180px);
  }
  .expo-strip .es-big { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .expo-strip {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .expo-strip .es { aspect-ratio: 4/3; }
  .expo-strip .es-big { grid-column: auto; }
}

/* Secondary photo row */
.expo-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.expo-row .es {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
}
.expo-row .es img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s ease;
}
.expo-row .es:hover img { transform: scale(1.06); }
.expo-row .es::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,24,42,0) 50%, rgba(4,24,42,0.75) 100%);
}
.expo-row .es .tag {
  position: absolute; left: 12px; bottom: 10px;
  color: #fff; font-weight: 700; font-size: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7);
  z-index: 1;
}
@media (max-width: 900px) { .expo-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .expo-row { grid-template-columns: 1fr; } }

/* ===== News / media gallery ===== */
.media-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.media-gallery .gph {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-3);
  transition: transform .25s ease;
}
.media-gallery .gph img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s ease;
}
.media-gallery .gph:hover { transform: translateY(-4px); }
.media-gallery .gph:hover img { transform: scale(1.06); }
.media-gallery .gph .cap {
  position: absolute; left: 12px; bottom: 12px; right: 12px;
  color: #fff; font-size: 12px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

/* =========================================================
   STANDARDIZED RESPONSIVE LAYOUTS
   Use these classes instead of inline `display:grid` styles.
   ========================================================= */

/* Info column + form column (or photo + text). Stacks at 900px,
   form-card (which is usually on the right) ends up below info on mobile. */
.split-2col {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.split-2col.tight { gap: 32px; }
.split-2col.info-heavy { grid-template-columns: 1.3fr 1fr; }
.split-2col.even { grid-template-columns: 1fr 1fr; align-items: center; }
.split-2col.even-tight { grid-template-columns: 1fr 1fr; align-items: center; gap: 32px; }
@media (max-width: 900px) {
  .split-2col,
  .split-2col.tight,
  .split-2col.info-heavy,
  .split-2col.even,
  .split-2col.even-tight {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  /* The form-card naturally appears at the bottom because it's the 2nd child */
}

/* Standardized 3-up photo gallery (responsive 3 → 2 → 1) */
.photo-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .photo-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 600px) { .photo-grid-3 { grid-template-columns: 1fr; } }

/* News press cards (3 → 2 → 1) */
.news-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 900px) { .news-grid-3 { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 600px) { .news-grid-3 { grid-template-columns: 1fr; } }

/* =========================================================
   MOBILE RESPONSIVE OVERRIDES (legacy inline-style fallbacks)
   Many sections use inline `grid-template-columns` styles
   that don't collapse on mobile. These rules force them
   to stack at the right breakpoints.
   ========================================================= */

/* Belt-and-suspenders: never allow horizontal scroll */
html, body { overflow-x: hidden; }

/* Make every <img> respect its container width */
img { max-width: 100%; height: auto; }

/* ---- TABLET BREAKPOINT (≤ 900px) ---- */
@media (max-width: 900px) {
  /* Stack all 2-column section grids (info+form, venue split, etc.) */
  section [style*="grid-template-columns: 1fr 1.3fr"],
  section [style*="grid-template-columns: 1fr 1.5fr"],
  section [style*="grid-template-columns: 1fr 1.2fr"],
  section [style*="grid-template-columns: 1.1fr 1fr"],
  section [style*="grid-template-columns: 1.2fr 1fr"],
  section [style*="grid-template-columns: 1.3fr 1fr"],
  section [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  /* News press release cards: 3 → 2 on tablet */
  section [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }
  /* 3-column inline media-galleries → 2 cols on tablet */
  .media-gallery[style*="repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  /* QR grid forced 2-col → keep 2 but ensure each fits */
  .qr-grid[style*="1fr 1fr"] {
    gap: 14px !important;
  }
}

/* ---- MOBILE BREAKPOINT (≤ 600px) ---- */
@media (max-width: 600px) {
  /* News press release cards: → 1 column on mobile */
  section [style*="grid-template-columns: 1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* ALL inline-gridded photo galleries → 1 column on mobile */
  .media-gallery[style*="repeat(3"],
  .media-gallery[style*="repeat(2"],
  .media-gallery[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* QR grid → stack on small mobile */
  .qr-grid[style*="1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  /* Photo strips: forced 3-col + 2-col layouts on home page → 1 col */
  .expo-strip {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    height: auto !important;
  }
  .expo-strip .es { aspect-ratio: 16/10; }
  .expo-strip .es-big { aspect-ratio: 16/9; }
  /* Hero photo stack: simpler on mobile (just main image) */
  .hero-photo-stack { min-height: 240px; }
  .hero-photo-stack .ph-accent,
  .hero-photo-stack .ph-poster { display: none; }
  .hero-photo-stack .ph-main { width: 100%; height: 100%; top: 0; left: 0; transform: none; }
  /* Hero meta items wrap nicely */
  .hero-meta { gap: 14px; }
  .hero-cta { flex-wrap: wrap; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  /* Stats cells: full-width on mobile */
  .stats { grid-template-columns: 1fr 1fr !important; }
  .stat-cell { border-right: 0; border-bottom: 1px solid var(--line); }
  .stat-cell:nth-last-child(-n+2) { border-bottom: 0; }
  /* Hero meta data wrap */
  .hero h1 { font-size: clamp(32px, 8vw, 44px); }
  /* Page header padding tighter */
  .page-header { padding: 48px 0; }
  .page-header h1 { font-size: clamp(28px, 7vw, 36px); }
  /* Container padding for mobile */
  .container { padding: 0 18px; }
  /* Section padding tighter on mobile */
  section { padding: 48px 0; }
  /* Sponsor / partner bands: less padding */
  .partner-band { padding: 18px 16px; }
  .partner-band.strategic img { max-height: none; }
  /* Footer grid: ensure single column */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
}

/* ---- EXTRA SMALL (≤ 400px) - phones in portrait ---- */
@media (max-width: 400px) {
  .ministry-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .ministry-card { padding: 14px 10px; }
  .ministry-card .jata { width: 44px; height: 44px; }
  .ministry-card .abbr { font-size: 16px; }
  .ministry-card .full { font-size: 10px; }
  .activity-list { grid-template-columns: 1fr !important; }
  /* Form card padding even tighter */
  .form-card { padding: 22px 18px; }
}
