/* ═══════════════════════════════════════════
   WEBINAR LANDING — "Mission Control" Design
   Standalone styles (no calculator-base.css)
   ═══════════════════════════════════════════ */

:root {
  --w-navy: #002855;
  --w-navy-deep: #F5F7FA;
  --w-navy-surface: #FFFFFF;
  --w-navy-card: #FFFFFF;
  --w-orange: #F26522;
  --w-orange-hover: #E05A1A;
  --w-orange-glow: rgba(242,101,34,0.12);
  --w-orange-dim: rgba(242,101,34,0.04);
  --w-green: #3ECF8E;
  --w-text: #002855;
  --w-text-secondary: #4A5568;
  --w-text-muted: #718096;
  --w-border: rgba(0,40,85,0.1);
  --w-border-accent: rgba(242,101,34,0.15);
  --w-input-bg: rgba(0,40,85,0.03);
  --w-radius: 0px;
  --w-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
  --w-navy-deep: #001833;
  --w-navy-surface: #0a2540;
  --w-navy-card: #0f2e4f;
  --w-text: #E8ECF1;
  --w-text-secondary: #9FB3C8;
  --w-text-muted: #627D98;
  --w-border: rgba(255,255,255,0.08);
  --w-border-accent: rgba(242,101,34,0.2);
  --w-input-bg: rgba(255,255,255,0.04);
  --w-orange-hover: #ff7a3d;
  --w-orange-glow: rgba(242,101,34,0.25);
  --w-orange-dim: rgba(242,101,34,0.08);
}

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

body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--w-navy-deep);
  color: var(--w-text);
  min-height: 100vh;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

/* ──── HEADER ──── */
.site-header {
  background: var(--w-navy);
  padding: 0 24px;
  z-index: 100;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.header-logo img { height: 32px; width: auto; filter: brightness(0) invert(1); }
.theme-toggle-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: var(--w-transition);
}
.theme-toggle-btn:hover { border-color: rgba(255,255,255,0.4); background: rgba(255,255,255,0.05); }

/* ──── LOADING ──── */
.webinar-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: var(--w-navy-deep);
}
.loading-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid var(--w-border);
  border-top-color: var(--w-orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ──── CONTAINER ──── */
.webinar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* ══════════════════════
   HERO SECTION
   ══════════════════════ */
.webinar-hero {
  text-align: center;
  padding: 56px 0 36px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,101,34,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,101,34,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 30%, black 0%, transparent 70%);
  pointer-events: none;
}

/* Animated badge */
.webinar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--w-orange);
  margin-bottom: 20px;
  position: relative;
  animation: fadeSlideDown 0.6s ease-out both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--w-orange);
  box-shadow: 0 0 12px var(--w-orange-glow), 0 0 4px var(--w-orange);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--w-orange-glow), 0 0 4px var(--w-orange); }
  50% { opacity: 0.5; box-shadow: 0 0 20px var(--w-orange-glow), 0 0 8px var(--w-orange); }
}
.webinar-badge.past .badge-dot { background: var(--w-text-muted); box-shadow: none; animation: none; }
.webinar-badge.past { color: var(--w-text-muted); }
.webinar-badge.live .badge-dot { background: var(--w-green); box-shadow: 0 0 12px rgba(62,207,142,0.4), 0 0 4px var(--w-green); }
.webinar-badge.live { color: var(--w-green); }

/* Title */
.webinar-title {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--w-text);
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  animation: fadeSlideDown 0.6s 0.1s ease-out both;
}

.webinar-subtitle {
  font-size: 15px;
  font-weight: 400;
  color: var(--w-text-secondary);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
  animation: fadeSlideDown 0.6s 0.2s ease-out both;
}

/* Meta info */
.webinar-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--w-text-muted);
  font-size: 13px;
  font-weight: 500;
  animation: fadeSlideDown 0.6s 0.3s ease-out both;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
}
.meta-item svg { color: var(--w-orange); flex-shrink: 0; width: 16px; height: 16px; }

/* Trust strip */
.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--w-text-muted);
  animation: fadeSlideDown 0.6s 0.4s ease-out both;
}
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--w-text-muted);
  opacity: 0.4;
}

/* Entrance animations */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════
   TWO-COLUMN GRID
   ══════════════════════ */
.webinar-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}

/* ══════════════════════
   COUNTDOWN
   ══════════════════════ */
.countdown-section {
  text-align: center;
  margin-bottom: 36px;
  padding: 28px;
  background: var(--w-navy-surface);
  border: 1px solid var(--w-border);
  position: relative;
  animation: fadeSlideUp 0.5s 0.3s ease-out both;
}
.countdown-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--w-orange), transparent);
  opacity: 0.6;
}
.countdown-label {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--w-text-muted);
  margin-bottom: 16px;
}
.countdown-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cd-box {
  background: var(--w-navy-deep);
  border: 1px solid var(--w-border);
  padding: 14px 16px 10px;
  min-width: 72px;
  text-align: center;
  position: relative;
}
.cd-num {
  display: block;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--w-text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.cd-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--w-text-muted);
  margin-top: 6px;
}
.cd-sep {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--w-orange);
  line-height: 1;
  opacity: 0.6;
  animation: blink-sep 1s ease-in-out infinite;
}
@keyframes blink-sep {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.15; }
}
.countdown-starting {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--w-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 16px 0;
}

/* ══════════════════════
   TOPICS
   ══════════════════════ */
.topics-section {
  margin-bottom: 36px;
  animation: fadeSlideUp 0.5s 0.4s ease-out both;
}
.topics-section h2, .speakers-section h2 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--w-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--w-border);
}
.topics-list {
  list-style: none;
  padding: 0;
}
.topics-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--w-border);
  font-size: 14px;
  font-weight: 500;
  color: var(--w-text-secondary);
  line-height: 1.5;
  transition: color 0.2s;
}
.topics-list li:hover { color: var(--w-text); }
.topics-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--w-orange);
  flex-shrink: 0;
  margin-top: 7px;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* ══════════════════════
   SPEAKERS
   ══════════════════════ */
.speakers-section {
  animation: fadeSlideUp 0.5s 0.5s ease-out both;
}
.speakers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.speaker-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--w-navy-surface);
  border: 1px solid var(--w-border);
  padding: 16px 20px;
  flex: 1;
  min-width: 240px;
  transition: var(--w-transition);
}
.speaker-card:hover { border-color: var(--w-border-accent); }
.speaker-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--w-navy-deep);
  border: 2px solid var(--w-border);
}
.speaker-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--w-text);
}
.speaker-role {
  font-size: 12px;
  color: var(--w-text-muted);
}

/* ══════════════════════
   SLIDES CAROUSEL
   ══════════════════════ */
.slides-section {
  margin-bottom: 36px;
  animation: fadeSlideUp 0.5s 0.45s ease-out both;
}
.slides-section h2 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--w-text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--w-border);
}
.slides-carousel {
  position: relative;
  background: var(--w-navy-surface);
  border: 1px solid var(--w-border);
  overflow: hidden;
}
.slides-track {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.slide.active {
  opacity: 1;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.slides-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 5;
}
.slides-arrow:hover {
  background: rgba(0,0,0,0.75);
}
.slides-prev { left: 8px; }
.slides-next { right: 8px; }
.slides-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding: 10px 0;
  background: var(--w-navy-surface);
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--w-text-muted);
  opacity: 0.3;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s, background 0.2s;
}
.slide-dot.active {
  opacity: 1;
  background: var(--w-orange);
  margin-top: 2px;
}

/* ══════════════════════
   FORM CARD — "Priority Terminal"
   ══════════════════════ */
.webinar-form-wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 16px;
}
.form-card {
  background: var(--w-navy-card);
  border: 1px solid var(--w-border-accent);
  padding: 32px 28px;
  overflow: visible;
  box-shadow:
    0 0 0 1px var(--w-border),
    0 8px 32px rgba(0,0,0,0.08),
    0 0 60px var(--w-orange-dim);
  animation: fadeSlideUp 0.5s 0.2s ease-out both;
}
[data-theme="dark"] .form-card {
  box-shadow:
    0 0 0 1px var(--w-border),
    0 8px 32px rgba(0,0,0,0.3),
    0 0 60px var(--w-orange-dim);
}
.form-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 3px;
  background: var(--w-orange);
}
.form-title {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--w-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.form-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--w-text-secondary);
  margin-bottom: 8px;
}
.form-meta-sep {
  color: var(--w-text-muted);
}
.form-meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--w-text-secondary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--w-border);
}
.form-meta-date svg {
  color: var(--w-orange);
  flex-shrink: 0;
}
.form-spots {
  font-size: 12px;
  font-weight: 700;
  color: var(--w-orange);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-spots::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--w-orange);
  animation: pulse-dot 1.5s ease-in-out infinite;
}

/* Form fields */
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--w-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
}
/* Industry icon buttons */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}
.ind-btn {
  padding: 10px 8px;
  background: var(--w-input-bg);
  border: 1.5px solid var(--w-border);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  color: var(--w-text-secondary);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.ind-btn-icon {
  width: 22px;
  height: 22px;
  filter: invert(12%) sepia(60%) saturate(3000%) hue-rotate(200deg) brightness(40%) contrast(110%);
}
[data-theme="dark"] .ind-btn-icon {
  filter: invert(80%) sepia(10%) saturate(200%) hue-rotate(180deg) brightness(110%);
}
.ind-btn:hover { border-color: var(--w-orange); color: var(--w-text); }
.ind-btn:focus { outline: none; }
.ind-btn.selected {
  border-color: var(--w-orange);
  background: var(--w-orange-dim);
  color: var(--w-orange);
  font-weight: 600;
}
.ind-btn.selected .ind-btn-icon,
[data-theme="dark"] .ind-btn.selected .ind-btn-icon {
  filter: invert(42%) sepia(93%) saturate(1500%) hue-rotate(3deg) brightness(97%) contrast(96%);
}

.quiz-input, .quiz-select {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--w-text);
  background: var(--w-input-bg);
  border: 1px solid var(--w-border);
  outline: none;
  transition: var(--w-transition);
}
.quiz-input::placeholder { color: var(--w-text-muted); font-weight: 400; }
.quiz-input:focus, .quiz-select:focus {
  border-color: var(--w-orange);
  box-shadow: 0 0 0 2px var(--w-orange-dim);
  background: rgba(255,255,255,0.06);
}
.quiz-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23627D98' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.quiz-select option { background: var(--w-navy-card); color: var(--w-text); }

.form-consent { margin-bottom: 18px; }
.quiz-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 11px;
  color: var(--w-text-muted);
  cursor: pointer;
  line-height: 1.4;
}
.quiz-checkbox input[type="checkbox"] {
  margin-top: 1px;
  accent-color: var(--w-orange);
}

/* Submit button */
.form-submit {
  width: 100%;
  padding: 15px 24px;
  background: var(--w-orange);
  color: #fff;
  border: none;
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: var(--w-transition);
  position: relative;
  overflow: hidden;
}
.form-submit::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s;
}
.form-submit:hover {
  background: var(--w-orange-hover);
  box-shadow: 0 4px 24px var(--w-orange-glow);
  transform: translateY(-1px);
}
.form-submit:hover::after {
  transform: translateX(100%);
}
.form-submit:active {
  transform: translateY(0);
}
.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ══════════════════════
   SUCCESS STATE
   ══════════════════════ */
.form-success {
  text-align: center;
  animation: fadeSlideUp 0.4s ease-out;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: var(--w-green);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.form-success h3 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--w-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-success p {
  font-size: 14px;
  color: var(--w-text-secondary);
  line-height: 1.6;
}
.success-email-note {
  font-size: 13px;
  color: var(--w-text-muted);
  margin-top: 8px;
}
.success-summary {
  font-size: 13px;
  color: var(--w-text-muted);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--w-border);
}

/* ══════════════════════
   ENDED STATE
   ══════════════════════ */
.form-ended {
  text-align: center;
  animation: fadeSlideUp 0.4s ease-out;
}
.form-ended h3 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--w-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.form-ended p {
  font-size: 14px;
  color: var(--w-text-muted);
}

/* ══════════════════════
   LISTING PAGE
   ══════════════════════ */
.listing-title {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--w-text);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 56px;
  margin-bottom: 8px;
  animation: fadeSlideDown 0.5s ease-out both;
}
.listing-subtitle {
  font-size: 15px;
  color: var(--w-text-secondary);
  text-align: center;
  margin-bottom: 40px;
  animation: fadeSlideDown 0.5s 0.1s ease-out both;
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 20px;
}
.listing-card {
  background: var(--w-navy-surface);
  border: 1px solid var(--w-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: var(--w-transition);
  position: relative;
  overflow: hidden;
  animation: fadeSlideUp 0.5s 0.2s ease-out both;
}
.listing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--w-orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.listing-card:hover { border-color: var(--w-border-accent); }
.listing-card:hover::before { opacity: 1; }
.listing-card-badge {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--w-orange);
  margin-bottom: 10px;
}
.listing-card h3 {
  font-family: 'Montserrat', -apple-system, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 8px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.listing-card-meta {
  font-size: 12px;
  color: var(--w-text-muted);
  margin-bottom: 14px;
}
.listing-card-topics {
  font-size: 13px;
  color: var(--w-text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}
.listing-card .form-submit { margin-top: auto; }
.listing-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--w-text-muted);
  font-size: 15px;
}

/* ══════════════════════
   COUNTRY DROPDOWN
   ══════════════════════ */
.country-search-wrap { position: relative; }
.country-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--w-navy-card);
  border: 1px solid var(--w-border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}
.country-dropdown.open { display: block; }
.country-option {
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  color: var(--w-text);
  transition: background 0.15s;
}
.country-option:hover { background: rgba(242,101,34,0.08); }
.country-option strong { color: var(--w-orange); }

/* ══════════════════════
   HOW IT WORKS
   ══════════════════════ */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 40px;
}
.hiw-card {
  background: var(--w-navy-surface);
  border: 1px solid var(--w-border);
  padding: 28px 24px;
  text-align: center;
}
.hiw-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-mask {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--w-orange);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.hiw-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--w-text);
  margin-bottom: 8px;
}
.hiw-card p {
  font-size: 13px;
  color: var(--w-text-secondary);
  line-height: 1.55;
}

/* ══════════════════════
   ABOUT OMNICOMM
   ══════════════════════ */
.about-section {
  margin-bottom: 0;
  padding: 48px 40px;
  background: var(--w-navy);
  border: 1px solid var(--w-border);
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.about-logo {
  height: 36px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  filter: brightness(0) invert(1);
}
.about-header { margin-bottom: 36px; }
.about-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--w-orange);
  background: rgba(242,101,34,0.15);
  padding: 5px 12px;
  margin-bottom: 16px;
}
.about-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}
.about-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.about-stat {
  padding: 20px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.about-stat-value {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.about-hl {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-hl-icon {
  color: var(--w-orange);
  font-size: 8px;
}

/* ══════════════════════
   FEATURED CLIENT LOGOS
   ══════════════════════ */
.validated-section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--w-border);
}
.validated-title {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--w-text-muted);
  margin-bottom: 16px;
  text-align: center;
}
.validated-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.logo-item {
  padding: 10px 16px;
  background: var(--w-input-bg);
  border: 1px solid var(--w-border);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}
.logo-item img {
  height: 28px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 1;
}

/* ══════════════════════
   OBJECTS BANNER
   ══════════════════════ */
.objects-banner {
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--w-navy-deep);
  overflow: hidden;
}
.objects-banner img {
  max-width: 1000px;
  width: 90%;
  height: auto;
  object-fit: contain;
}

/* ══════════════════════
   FOOTER
   ══════════════════════ */
.site-footer {
  background: var(--w-navy);
  padding: 0;
  border-top: 1px solid var(--w-border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.footer-inner a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-inner a:hover { color: #fff; }
.footer-sep { color: rgba(255,255,255,0.3); margin: 0 4px; }

/* ══════════════════════
   RESPONSIVE
   ══════════════════════ */
@media (max-width: 820px) {
  .webinar-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .webinar-form-wrap {
    position: static !important;
    /* On mobile, move form to top for conversion */
    order: -1;
  }
  .webinar-content { order: 1; }
  .webinar-title { font-size: clamp(20px, 5vw, 28px); }
  .webinar-hero { padding: 36px 0 28px; }
  .cd-box { min-width: 58px; padding: 12px 12px 8px; }
  .cd-num { font-size: 28px; }
  .listing-grid { grid-template-columns: 1fr; }
  .how-it-works { grid-template-columns: 1fr; margin-top: 40px; }
  .about-section { padding: 24px 16px; }
  .about-title { font-size: 20px; }
  .about-sub { font-size: 13px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .about-stat-value { font-size: 22px; }
  .about-highlights { flex-direction: column; align-items: flex-start; gap: 8px; }
  .about-hl { font-size: 12px; text-align: left; }
  .validated-logos { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .logo-item { padding: 10px 8px; }
  .logo-item img { height: 22px; opacity: 1; }
}

@media (max-width: 480px) {
  .webinar-meta { flex-direction: column; gap: 8px; }
  .trust-strip { flex-direction: column; gap: 6px; }
  .trust-sep { display: none; }
  .speakers-grid { flex-direction: column; }
  .speaker-card { min-width: 0; }
  .countdown-section { padding: 20px 16px; }
  .cd-box { min-width: 50px; padding: 10px 8px 6px; }
  .cd-num { font-size: 24px; }
  .form-card { padding: 24px 18px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
