/* =========================================================
   BREEZE WEBINAR — STYLESHEET
   Design language: "Live Route" — a dotted GPS-trail motif with
   a pulsing location pin, echoing Breeze's live field-tracking
   product. Display type is Poppins (confident, geometric), body
   is Inter, and data/time values use Manrope with tabular
   figures to feel like live telemetry — never decorative.
   Blue is dominant; orange is reserved ONLY for primary
   conversion actions (Register, Book Demo, Submit) and small
   highlight accents — never for large surface areas.
   ========================================================= */

.wb-page {
  /* ---- Brand colors (fixed by brand guidelines) ---- */
  --color-primary: #0056D6;
  --color-secondary: #007BFF;
  --color-accent: #00AEEF;
  --color-bg: #F6F9FC;

  /* ---- CTA / highlight (used sparingly — primary actions only) ---- */
  --color-cta: #FF7A00;
  --color-cta-dark: #E56600;

  /* ---- Extended accent palette — used to add visual richness (icon
     gradients, badges, glows, floating shapes) without diluting the
     dominant blue or the orange CTA rule. ---- */
  --color-purple: #7C5CFC;
  --color-cyan: #22D3EE;

  /* ---- Supporting neutrals ---- */
  --color-ink: #0B1F3A;
  --color-ink-soft: #4A5A72;
  --color-ink-faint: #8393AB;
  --color-white: #FFFFFF;
  --color-border: #E1E9F4;
  --color-success: #16A34A;

  /* ---- Gradients ---- */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 55%, var(--color-accent) 100%);
  --gradient-cta: linear-gradient(135deg, #FF9233 0%, var(--color-cta) 100%);
  --gradient-hero: linear-gradient(160deg, #05224F 0%, #06316E 40%, #004FC4 75%, #6A3FE0 100%);
  --gradient-radial-glow: radial-gradient(circle at 30% 20%, rgba(0, 174, 239, 0.35), transparent 55%);
  --gradient-badge: linear-gradient(120deg, #0072FF 0%, #7C5CFC 50%, #FF7A00 100%);
  --gradient-purple-glow: radial-gradient(circle, rgba(124, 92, 252, 0.35), transparent 65%);
  --gradient-cyan-glow: radial-gradient(circle, rgba(34, 211, 238, 0.3), transparent 65%);
  --gradient-section-light: linear-gradient(180deg, #EAF3FF 0%, #F6F9FC 100%);
  --gradient-section-dusk: linear-gradient(160deg, #EEF1FF 0%, #E8F7FC 100%);

  /* ---- Alternating section backgrounds (creates rhythm down the page) ---- */
  --bg-section-light-blue: #EAF3FF;
  --bg-section-dusk: #F1F0FF;

  /* ---- Type ---- */
  --font-display: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
  --font-mono: 'Manrope', ui-monospace, monospace;

  /* ---- Elevation ---- */
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(5, 34, 79, 0.18);
  --shadow-glow: 0 0 0 1px rgba(0, 174, 239, 0.25), 0 20px 45px rgba(0, 86, 214, 0.25);
  --shadow-cta: 0 0 0 1px rgba(255, 122, 0, 0.2), 0 16px 34px rgba(255, 122, 0, 0.32);

  /* ---- Radius / spacing ---- */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --section-pad: clamp(32px, 4.5vw, 64px);

  --container-w: 1240px;
}

/* =============== RESET / BASE =============== */
.wb-page *, .wb-page *::before, .wb-page *::after { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.wb-page {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  /* Offsets the standard site's fixed header, same as every other
     integrated resources page */
  padding-top: 70px;
}

.wb-page img { max-width: 100%; display: block; }

/* ---- Shared motion library (kept subtle; used sparingly) ---- */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}
@keyframes shimmer-badge {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Blurred ambient color blobs — dropped into a section's ::before/::after
   or as standalone absolutely-positioned elements for depth and richness. */
.wb-page .floating-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  animation: float-y 7s ease-in-out infinite;
  z-index: 0;
}
.wb-page .floating-shape--purple { background: var(--gradient-purple-glow); }
.wb-page .floating-shape--cyan { background: var(--gradient-cyan-glow); }
.wb-page .floating-shape--orange { background: radial-gradient(circle, rgba(255,122,0,0.28), transparent 65%); }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 16px; color: var(--color-ink-soft); }

ul { margin: 0; padding: 0; list-style: none; }

.wb-page .container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.wb-page .section { padding: var(--section-pad) 0; }
.wb-page .section--tight { padding: clamp(26px, 3.5vw, 42px) 0; }
.wb-page .section--white { background: var(--color-white); }
.wb-page .section--muted { background: var(--color-bg); }
.wb-page .section--light-blue { background: var(--bg-section-light-blue); }
.wb-page .section--dusk { background: var(--gradient-section-dusk); }

/* Dark-gradient section variant — reused wherever a section needs the same
   premium dark treatment as the hero (currently: Final CTA). Overrides text
   colors for the handful of child elements that appear inside it. */
.wb-page .section--dark-gradient {
  position: relative; overflow: hidden;
  background: var(--gradient-hero); color: #fff;
}
.wb-page .section--dark-gradient::before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-glow); pointer-events: none; }
.wb-page .section--dark-gradient > * { position: relative; z-index: 1; }
.wb-page .section--dark-gradient h2 { color: #fff; }
.wb-page .section--dark-gradient p { color: rgba(255,255,255,0.82); }
.wb-page .section--dark-gradient .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); color: #fff; }

.wb-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0, 86, 214, 0.08);
  border: 1px solid rgba(0, 86, 214, 0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.wb-page .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.22);
}

.wb-page .section-head { max-width: 680px; margin: 0 auto 36px; text-align: center; }
.wb-page .section-head h2 { font-size: clamp(28px, 3.4vw, 40px); }
.wb-page .section-head h2::after {
  content: '';
  display: block;
  width: 56px; height: 4px; border-radius: 2px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cta));
}
.wb-page .section-head p { font-size: 17px; }

/* skip link — handled by the standard inline .ent-skip-link pattern
   outside .wb-page, since the link must sit before the header in DOM
   order for accessibility, which is outside this stylesheet's scope */

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Curved wave divider — sits at the bottom edge of a dark section so the
   transition into the next section reads as a deliberate shape, not a
   hard cut. Fill color matches the section that follows it. */
.wb-page .section-wave {
  position: absolute; left: 0; bottom: -1px; width: 100%;
  height: clamp(36px, 5vw, 64px);
  z-index: 1; pointer-events: none;
  display: block;
}
.wb-page .section-wave path { fill: currentColor; }
.wb-page .section-wave--white { color: var(--color-white); }
.wb-page .section-wave--dark { color: #05142D; }

/* =============== BUTTONS =============== */
.wb-page .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 28px;
  min-height: 48px; /* guaranteed touch target on every breakpoint */
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.wb-page .btn:hover { transform: translateY(-2px); }

/* Primary = orange. Reserved for the important conversion actions only
   (Register, Submit, Book Demo) per brand guidance: "orange only for
   important CTA buttons and highlights." */
.wb-page .btn-primary {
  color: #fff;
  background: var(--gradient-cta);
  box-shadow: var(--shadow-cta);
}
.wb-page .btn-primary:hover { box-shadow: 0 22px 44px rgba(255, 122, 0, 0.38); }

/* Secondary = blue. Used for supporting actions (View Agenda, Visit Website). */
.wb-page .btn-secondary {
  color: #fff;
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}
.wb-page .btn-secondary:hover { box-shadow: 0 26px 50px rgba(0, 86, 214, 0.32); }

.wb-page .btn-outline {
  color: var(--color-primary);
  background: #fff;
  border: 1.5px solid var(--color-border);
}
.wb-page .btn-outline:hover { border-color: var(--color-primary); box-shadow: 0 12px 28px rgba(0, 86, 214, 0.18); }

.wb-page .btn-ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}
.wb-page .btn-ghost-light:hover { background: rgba(255, 255, 255, 0.16); }

.wb-page .btn-block { width: 100%; }
.wb-page .btn[disabled] { opacity: 0.65; cursor: not-allowed; transform: none; }

/* =============== HERO =============== */
.wb-page .hero {
  position: relative;
  background: var(--gradient-hero);
  color: #fff;
  overflow: hidden;
  /* Minimal top space — hero starts right under the sticky header */
  padding: clamp(26px, 4vw, 44px) 0 clamp(56px, 7vw, 96px);
}
.wb-page .hero::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--gradient-radial-glow);
  pointer-events: none;
}
/* Subtle dot-grid pattern for premium SaaS texture */
.wb-page .hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}
.wb-page .hero-route {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0.5; pointer-events: none;
}
/* Ambient floating color blobs for visual richness (purple + cyan + orange) */
.wb-page .hero .floating-shape--purple { width: 340px; height: 340px; top: -80px; right: 8%; animation-duration: 9s; }
.wb-page .hero .floating-shape--cyan { width: 260px; height: 260px; bottom: -60px; left: 4%; animation-duration: 7.5s; animation-delay: -2s; }
.wb-page .hero .floating-shape--orange { width: 200px; height: 200px; top: 40%; right: 34%; animation-duration: 8.5s; animation-delay: -4s; opacity: 0.6; }

.wb-page .hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media (min-width: 992px) {
  /* Equal 50/50 split so the hero image occupies ~half the hero width */
  .wb-page .hero-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: flex-start; }
}
/* Mobile/tablet stacking order: image, countdown, then text + buttons */
@media (max-width: 991px) {
  .wb-page .hero-visual-col { order: 1; }
  .wb-page .hero-copy { order: 2; }
}

.wb-page .hero-title { font-size: clamp(30px, 4.4vw, 52px); color: #fff; letter-spacing: -0.02em; margin-bottom: 20px; }
.wb-page .hero-sub { font-size: 17.5px; line-height: 1.6; color: rgba(255,255,255,0.85); max-width: 540px; margin-bottom: 26px; }

.wb-page .hero-meta-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin: 0 0 34px;
}
.wb-page .meta-chip {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 13.5px;
  /* "Blue glass" — translucent white over the hero's blue gradient reads
     as a frosted blue pane rather than plain white. */
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px 8px 8px; border-radius: 999px;
  color: #fff;
  backdrop-filter: blur(6px);
}
/* Hierarchy: Speaker & Category stand out from Date/Time/Duration via a
   warmer orange-tinted border/glow — still restrained, still an accent. */
.wb-page .meta-chip--highlight { border-color: rgba(255, 154, 61, 0.45); box-shadow: 0 6px 18px rgba(255, 122, 0, 0.18); }

.wb-page .meta-chip .icon-wrap {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-cta), #FF9233);
  color: #fff; font-size: 12px; flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.35);
}
.wb-page .meta-chip:not(.meta-chip--highlight) .icon-wrap { background: linear-gradient(135deg, var(--color-secondary), var(--color-accent)); box-shadow: 0 4px 10px rgba(0, 123, 255, 0.35); }

.wb-page .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 480px) {
  .wb-page .hero-actions { flex-direction: column; align-items: stretch; }
  .wb-page .hero-actions .btn { width: 100%; }
}

/* ---- Live badge: the "grab attention in 5 seconds" element ---- */
.wb-page .live-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  padding: 10px 20px 10px 15px;
  border-radius: 999px;
  margin-bottom: 24px;
  background: linear-gradient(120deg, #FF9233 0%, var(--color-cta) 50%, #FF9233 100%);
  background-size: 220% 100%;
  animation: shimmer-badge 4s linear infinite;
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 14px 32px rgba(255, 122, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-page .live-badge:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,0.25), 0 18px 40px rgba(255, 122, 0, 0.55); }
.wb-page .live-badge .live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse-ring-white 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-ring-white {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.65); }
  70% { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---- Right column: image, then countdown directly beneath it ---- */
.wb-page .hero-visual-col {
  display: flex; flex-direction: column; align-items: center;
  gap: 28px; /* 24-32px spacing between image and countdown */
  width: 100%;
}
@media (min-width: 992px) {
  /* Top-align the image frame with the first line of the H1 — offset
     roughly matches the live badge's height + margin above the heading. */
  .wb-page .hero-visual-col { margin-top: 62px; }
}

/* ---- Countdown: glass cards, blue gradient, orange glow, hover lift ---- */
.wb-page .countdown {
  display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap;
  justify-content: center;
}
.wb-page .countdown-unit {
  font-family: var(--font-mono);
  position: relative;
  background: linear-gradient(160deg, rgba(0,86,214,0.55), rgba(8,22,48,0.6));
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 14px 18px;
  min-width: 78px;
  text-align: center;
  /* Gradient border via padding-box/border-box layering */
  border: 1px solid transparent;
  background-clip: padding-box, border-box;
  background-image: linear-gradient(160deg, rgba(0,86,214,0.55), rgba(8,22,48,0.6)), var(--gradient-badge);
  background-origin: padding-box, border-box;
  box-shadow: 0 10px 26px rgba(5, 15, 40, 0.35), 0 0 24px rgba(255, 122, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-page .countdown-unit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(5, 15, 40, 0.4), 0 0 32px rgba(255, 122, 0, 0.3); }
.wb-page .countdown-unit .num {
  display: block; font-size: 30px; font-weight: 700; color: #fff;
  text-shadow: 0 0 18px rgba(0, 174, 239, 0.65);
}
.wb-page .countdown-unit .lbl { display: block; font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 3px; }
.wb-page .countdown-sep {
  font-family: var(--font-mono); font-size: 26px; font-weight: 700;
  color: rgba(255, 154, 61, 0.75); padding: 0 2px;
  animation: glow-pulse 1.4s ease-in-out infinite;
}
@media (max-width: 400px) {
  .wb-page .countdown-unit { min-width: 62px; padding: 10px 10px; border-radius: 12px; }
  .wb-page .countdown-unit .num { font-size: 24px; }
  .wb-page .countdown-unit .lbl { font-size: 9px; }
  .wb-page .countdown-sep { font-size: 20px; }
}

/* No frame, no device mockup, no bezel — the artwork itself IS the hero
   visual. width:100% + height:auto preserves the original aspect ratio
   exactly, so the complete image is always visible with zero cropping. */
.wb-page .hero-visual {
  position: relative;
  width: 100%;
}
.wb-page .hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18); /* thin glass border */
  background: transparent;
  /* Soft blue shadow + soft orange rim glow — subtle, not a frame */
  box-shadow:
    0 24px 60px rgba(3, 12, 32, 0.35),
    0 0 50px rgba(255, 122, 0, 0.16),
    0 0 80px rgba(0, 86, 214, 0.20);
  animation: float-y-soft 7s ease-in-out infinite;
}
/* A gentler, smaller-amplitude float than the ambient background blobs —
   "very subtle floating animation" rather than an obvious bob. */
@keyframes float-y-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* =============== TRUST STRIP =============== */
.wb-page .trust-strip { padding: 28px 0; background: var(--color-white); border-bottom: 1px solid var(--color-border); }
.wb-page .trust-label { text-align: center; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--color-ink-faint); margin-bottom: 22px; }

/* =============== FEATURE CARDS (Why Attend) =============== */
.wb-page .feature-grid {
  display: grid;
  grid-template-columns: 1fr; /* mobile: 1 per row */
  gap: 24px;
}
@media (min-width: 640px) {
  .wb-page .feature-grid { grid-template-columns: repeat(2, 1fr); } /* tablet: 2 per row */
}
@media (min-width: 1080px) {
  .wb-page .feature-grid { grid-template-columns: repeat(4, 1fr); } /* desktop: 4 per row */
}
.wb-page .feature-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}
.wb-page .feature-card::before {
  /* Animated gradient border glow on hover */
  content: '';
  position: absolute; inset: 0; border-radius: inherit; padding: 1.5px;
  background: var(--gradient-badge);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.wb-page .feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.wb-page .feature-card:hover::before { opacity: 1; }
.wb-page .feature-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-primary); color: #fff; font-size: 20px;
  margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(0, 86, 214, 0.28);
}
/* Colorful icon variants — cycled across cards so no two sit side by side
   in the same flat blue (the "colourful icons" requirement). */
.wb-page .feature-icon--purple { background: linear-gradient(135deg, var(--color-purple), #A78BFA); box-shadow: 0 10px 22px rgba(124, 92, 252, 0.32); }
.wb-page .feature-icon--orange { background: var(--gradient-cta); box-shadow: 0 10px 22px rgba(255, 122, 0, 0.3); }
.wb-page .feature-icon--cyan { background: linear-gradient(135deg, var(--color-accent), var(--color-cyan)); box-shadow: 0 10px 22px rgba(34, 211, 238, 0.3); }
.wb-page .feature-card h3 { font-size: 18.5px; margin-bottom: 8px; }
.wb-page .feature-card p { font-size: 15px; margin-bottom: 0; }

/* =============== ABOUT WEBINAR =============== */
.wb-page .about-grid { display: grid; grid-template-columns: 1fr; gap: 44px; }
@media (min-width: 960px) { .wb-page .about-grid { grid-template-columns: 1.1fr 0.9fr; } }

.wb-page .about-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.wb-page .about-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15.5px; color: var(--color-ink-soft);
}
.wb-page .about-list i { color: var(--color-cta); margin-top: 4px; }

.wb-page .detail-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.wb-page .detail-card h3 { font-size: 17px; margin-bottom: 18px; }
.wb-page .detail-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; border-bottom: 1px dashed var(--color-border);
  font-size: 14.5px;
}
.wb-page .detail-row:last-child { border-bottom: none; }
.wb-page .detail-row .k { color: var(--color-ink-faint); font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; }
.wb-page .detail-row .v { font-weight: 600; color: var(--color-ink); text-align: right; }

.wb-page .tag-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.wb-page .tag {
  font-size: 12.5px; font-family: var(--font-mono);
  background: rgba(0, 123, 255, 0.08); color: var(--color-primary);
  border: 1px solid rgba(0, 123, 255, 0.18);
  padding: 6px 12px; border-radius: 999px;
}

/* =============== SPEAKER =============== */
.wb-page .speaker-card {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  align-items: center;
}
@media (min-width: 760px) { .wb-page .speaker-card { grid-template-columns: 220px 1fr; } }
.wb-page .speaker-photo-wrap { position: relative; }
.wb-page .speaker-photo {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}
.wb-page .speaker-linkedin {
  position: absolute; bottom: -10px; right: -10px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); font-size: 18px;
}
.wb-page .speaker-info .role { font-family: var(--font-mono); font-size: 13px; color: var(--color-secondary); margin-bottom: 6px; }
.wb-page .speaker-info h3 { font-size: 24px; margin-bottom: 4px; }
.wb-page .speaker-info .company-exp { color: var(--color-ink-faint); font-size: 14.5px; margin-bottom: 14px; }

/* =============== AGENDA =============== */
.wb-page .agenda-timeline { position: relative; max-width: 760px; margin: 0 auto; }

/* ---- Desktop: vertical line + time column + circular node ---- */
.wb-page .agenda-timeline::before {
  content: ''; position: absolute; left: 84px; top: 6px; bottom: 6px; width: 2px;
  background: repeating-linear-gradient(to bottom, var(--color-border) 0 6px, transparent 6px 12px);
}
.wb-page .agenda-item { position: relative; display: grid; grid-template-columns: 74px 1fr; gap: 20px; padding-bottom: 30px; }
.wb-page .agenda-item:last-child { padding-bottom: 0; }
.wb-page .agenda-time { font-family: var(--font-mono); font-size: 13px; color: var(--color-ink-faint); text-align: right; padding-top: 14px; }
.wb-page .agenda-node {
  position: absolute; left: 78px; top: 14px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--color-white); border: 3px solid var(--color-cta);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.14);
}
.wb-page .agenda-content {
  background: var(--color-white); border: 1px solid var(--color-border);
  border-radius: var(--radius-md); padding: 16px 20px; box-shadow: var(--shadow-sm);
  min-width: 0; /* allow long titles to wrap inside the grid track instead of overflowing it */
}
.wb-page .agenda-content .agenda-time-mobile { display: none; }
.wb-page .agenda-content h4 { font-size: 16px; margin-bottom: 4px; line-height: 1.4; overflow-wrap: break-word; }
.wb-page .agenda-content .presenter { font-size: 13.5px; color: var(--color-ink-faint); margin: 0; }

/* ---- Tablet: same vertical timeline, tighter spacing ---- */
@media (max-width: 991px) and (min-width: 621px) {
  .wb-page .agenda-timeline::before { left: 68px; }
  .wb-page .agenda-item { grid-template-columns: 58px 1fr; gap: 14px; padding-bottom: 22px; }
  .wb-page .agenda-node { left: 62px; }
  .wb-page .agenda-content { padding: 14px 18px; }
}

/* ---- Mobile: full redesign — simple full-width cards, no absolute
   positioning, no phantom grid columns. Each card carries its own time
   badge, title, and presenter, so nothing can overlap or get clipped
   regardless of content length. ---- */
@media (max-width: 620px) {
  .wb-page .agenda-timeline::before { display: none; }
  .wb-page .agenda-item {
    display: block;
    padding-bottom: 16px;
  }
  .wb-page .agenda-time { display: none; }
  .wb-page .agenda-node { display: none; }
  .wb-page .agenda-content {
    width: 100%;
    padding: 16px 18px;
    border-left: 4px solid var(--color-cta);
    border-radius: 10px;
  }
  .wb-page .agenda-content .agenda-time-mobile {
    display: inline-block;
    font-family: var(--font-mono); font-weight: 700; font-size: 12.5px;
    color: var(--color-cta);
    background: rgba(255, 122, 0, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    margin-bottom: 8px;
  }
  .wb-page .agenda-content h4 { font-size: 15.5px; }
  .wb-page .agenda-content .presenter { font-size: 13px; }
}

/* =============== REGISTRATION =============== */
.wb-page .register-section {
  background: var(--gradient-hero);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.wb-page .register-section::before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-glow); }
.wb-page .register-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 960px) { .wb-page .register-grid { grid-template-columns: 1fr 1fr; align-items: start; } }

.wb-page .register-copy h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); }
.wb-page .register-copy p { color: rgba(255,255,255,0.8); }
.wb-page .register-benefits { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.wb-page .register-benefits li { display: flex; gap: 12px; align-items: flex-start; color: rgba(255,255,255,0.92); font-size: 15.5px; }
.wb-page .register-benefits i { color: #FFA85C; margin-top: 3px; }

.wb-page .register-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(20px, 3vw, 28px);
  color: var(--color-ink);
}
.wb-page .register-form-card .form-head { padding: 6px 10px 18px; border-bottom: 1px solid var(--color-border); margin-bottom: 6px; }
.wb-page .register-form-card .form-head h3 { font-size: 19px; margin-bottom: 4px; }
.wb-page .register-form-card .form-head p { font-size: 13.5px; margin-bottom: 0; color: var(--color-ink-faint); }
.wb-page .form-status { display: none; align-items: center; gap: 10px; font-size: 14px; padding: 12px 14px; border-radius: 10px; margin: 10px; }
.wb-page .form-status.error { display: flex; background: #FDECEC; color: #B3261E; border: 1px solid #F5C2C0; }
.wb-page .form-status.loading { display: flex; background: #EAF3FF; color: var(--color-primary); border: 1px solid #CFE3FF; }

/* =============== WHY BREEZE (stats / differentiators) =============== */
.wb-page .why-grid { display: grid; grid-template-columns: 1fr; gap: 44px; align-items: center; }
@media (min-width: 960px) { .wb-page .why-grid { grid-template-columns: 0.95fr 1.05fr; } }

.wb-page .why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.wb-page .why-point { display: flex; gap: 16px; align-items: flex-start; }
.wb-page .why-point .feature-icon { flex-shrink: 0; width: 46px; height: 46px; margin-bottom: 0; }
.wb-page .why-point h4 { font-size: 16.5px; margin-bottom: 4px; }
.wb-page .why-point p { font-size: 14.5px; margin-bottom: 0; }

.wb-page .stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.wb-page .stat-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.wb-page .stat-card .num {
  display: block; font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: clamp(30px, 4vw, 40px);
  background: var(--gradient-primary); -webkit-background-clip: text; background-clip: text; color: transparent;
}
/* Alternate blue/orange across the stat grid so orange reads as a highlight, not the default */
.wb-page .stat-card:nth-child(2n) .num { background: var(--gradient-cta); -webkit-background-clip: text; background-clip: text; }
.wb-page .stat-card .lbl { display: block; font-size: 13.5px; color: var(--color-ink-faint); margin-top: 6px; }

/* =============== PRODUCT SHOWCASE =============== */
.wb-page .product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.wb-page .product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wb-page .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.wb-page .product-card-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--color-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
/* object-fit: contain — these are designed product mockups with their own
   embedded text/UI, so cropping (cover) would hide real content. The full
   artwork is always shown, letterboxed by the card's neutral background. */
.wb-page .product-card-media img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s ease; }
.wb-page .product-card:hover .product-card-media img { transform: scale(1.03); }
.wb-page .product-card-icon {
  position: absolute; left: 16px; bottom: -20px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gradient-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: var(--shadow-md);
  border: 3px solid var(--color-white);
}
.wb-page .product-card-badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.04em; color: #fff;
  padding: 6px 13px; border-radius: 999px;
  background: linear-gradient(120deg, #FF9233 0%, var(--color-cta) 100%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-page .product-card:hover .product-card-badge { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(255, 122, 0, 0.5); }
/* One accent color per product — FSM blue, DMS orange, CRM purple, MRM cyan */
.wb-page .product-card:nth-of-type(1) .product-card-icon { background: var(--gradient-primary); box-shadow: 0 10px 24px rgba(0, 86, 214, 0.35); }
.wb-page .product-card:nth-of-type(2) .product-card-icon { background: var(--gradient-cta); box-shadow: 0 10px 24px rgba(255, 122, 0, 0.35); }
.wb-page .product-card:nth-of-type(3) .product-card-icon { background: linear-gradient(135deg, var(--color-purple), #A78BFA); box-shadow: 0 10px 24px rgba(124, 92, 252, 0.35); }
.wb-page .product-card:nth-of-type(4) .product-card-icon { background: linear-gradient(135deg, var(--color-accent), var(--color-cyan)); box-shadow: 0 10px 24px rgba(34, 211, 238, 0.35); }

.wb-page .product-card-body { padding: 30px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.wb-page .product-card h3 { font-size: 18px; margin-bottom: 0; }
.wb-page .product-card .product-tagline { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-secondary); margin: 0; }
.wb-page .product-card > .product-card-body > p.product-desc { font-size: 14.5px; margin-bottom: 0; }

/* Compact icon used on lighter/secondary product mentions (e.g. thank-you page) */
.wb-page .product-icon { width: 48px; height: 48px; border-radius: 12px; object-fit: contain; background: var(--color-bg); padding: 8px; }

.wb-page .product-benefits { display: flex; flex-direction: column; gap: 7px; margin: 4px 0 6px; flex-grow: 1; }
.wb-page .product-benefits li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--color-ink-soft); }
.wb-page .product-benefits i { color: var(--color-secondary); margin-top: 3px; font-size: 12px; }

.wb-page .product-card a.card-link {
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  color: var(--color-primary); display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
}
.wb-page .product-card a.card-link i { transition: transform 0.2s ease; }
.wb-page .product-card a.card-link:hover i { transform: translateX(3px); }

/* Compact variant: simple icon + text card, no media header (used on thank-you.html) */
.wb-page .product-card--compact { padding: 28px; gap: 14px; }
.wb-page .product-card--compact .product-icon { margin-bottom: 4px; }
.wb-page .product-card--compact p { font-size: 14.5px; margin-bottom: 4px; flex-grow: 1; }

/* =============== LOGO SLIDER =============== */
.wb-page .logo-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.wb-page .logo-track { display: flex; align-items: center; gap: 56px; width: max-content; animation: marquee 42s linear infinite; }
.wb-page .logo-track img {
  height: 38px; width: auto; max-width: 140px; object-fit: contain;
  opacity: 1; /* fully visible, no dimming */
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
/* Pause scrolling on hover so visitors can read a logo; a subtle per-logo
   lift on hover adds polish without ever dimming anything. */
.wb-page .logo-marquee:hover .logo-track { animation-play-state: paused; }
.wb-page .logo-track img:hover { transform: translateY(-3px); }
@media (max-width: 620px) {
  .wb-page .logo-track img { height: 30px; max-width: 110px; }
  .wb-page .logo-track { gap: 40px; }
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =============== FAQ =============== */
.wb-page .faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wb-page .faq-item { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow 0.2s ease, border-color 0.2s ease; }
.wb-page .faq-item:hover { box-shadow: var(--shadow-sm); border-color: rgba(0, 86, 214, 0.2); }
.wb-page .faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--color-ink);
}
.wb-page .faq-question .chev { transition: transform 0.25s ease; color: var(--color-secondary); flex-shrink: 0; }
.wb-page .faq-item.open .faq-question .chev { transform: rotate(180deg); }
.wb-page .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.wb-page .faq-answer p { padding: 0 22px 20px; margin: 0; font-size: 14.5px; }

/* =============== FINAL CTA =============== */
.wb-page .final-cta { text-align: center; }
.wb-page .final-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 8px; }
@media (max-width: 480px) {
  .wb-page .final-cta-actions { flex-direction: column; align-items: stretch; }
  .wb-page .final-cta-actions .btn { width: 100%; }
}

/* =============== FLOATING WHATSAPP BUTTON =============== */
.wb-page .whatsapp-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 500;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff; font-size: 28px;
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.45), 0 0 0 1px rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: float-y-soft 5s ease-in-out infinite;
}
.wb-page .whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 40px rgba(18, 140, 126, 0.55), 0 0 0 1px rgba(255,255,255,0.2);
  color: #fff;
}
.wb-page .whatsapp-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.45);
  animation: pulse-ring-whatsapp 2.2s ease-out infinite;
  pointer-events: none;
}
@keyframes pulse-ring-whatsapp {
  0% { transform: scale(0.85); opacity: 0.9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}
@media (max-width: 560px) {
  .wb-page .whatsapp-float { width: 52px; height: 52px; font-size: 25px; right: 16px; bottom: 16px; }
}

/* =============== THANK YOU PAGE =============== */
.wb-page .ty-hero { background: var(--gradient-hero); color: #fff; padding: clamp(64px, 10vw, 120px) 0 90px; text-align: center; position: relative; overflow: hidden; }
.wb-page .ty-hero::before { content: ''; position: absolute; inset: 0; background: var(--gradient-radial-glow); }
.wb-page .ty-icon {
  position: relative; z-index: 1;
  width: 92px; height: 92px; border-radius: 50%;
  background: linear-gradient(135deg, #FF9233 0%, var(--color-cta) 100%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15), 0 18px 40px rgba(255, 122, 0, 0.45);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 26px; font-size: 40px; color: #fff;
  animation: pop-in 0.5s cubic-bezier(.2,1.4,.4,1) both;
}
@keyframes pop-in { from { transform: scale(0.6); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.wb-page .ty-hero h1 { position: relative; z-index: 1; color: #fff; font-size: clamp(28px, 4vw, 42px); }
.wb-page .ty-hero p { position: relative; z-index: 1; color: rgba(255,255,255,0.82); max-width: 560px; margin: 0 auto 8px; }
.wb-page .ty-hero .ty-actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 28px; }

.wb-page .ty-next-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 22px; }
.wb-page .ty-next-card { background: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); }
.wb-page .ty-next-card .feature-icon { margin-bottom: 14px; }
.wb-page .ty-next-card h3 { font-size: 16.5px; margin-bottom: 6px; }
.wb-page .ty-next-card p { font-size: 14px; margin-bottom: 0; }

/* =============== ZOHO FORM OVERRIDES =============== */
/* Restyle the embedded Zoho form to match Breeze UI without touching its required logic */
.wb-page #crmWebToEntityForm.zcwf_lblLeft {
  padding: 10px !important;
  font-family: var(--font-body) !important;
}
.wb-page #crmWebToEntityForm .zcwf_title { display: none !important; }
.wb-page #crmWebToEntityForm .zcwf_row { margin: 0 0 16px !important; display: block !important; }
.wb-page #crmWebToEntityForm .zcwf_col_lab { display: none !important; }
.wb-page #crmWebToEntityForm .zcwf_col_fld { width: 100% !important; float: none !important; padding: 0 !important; margin-top: 0 !important; }
.wb-page #crmWebToEntityForm .zcwf_col_fld input[type="text"] {
  width: 100% !important; float: none !important;
  padding: 13px 16px !important; font-size: 15px !important;
  min-height: 48px !important;
  border: 1.5px solid var(--color-border) !important;
  border-radius: 10px !important; font-family: var(--font-body) !important;
  color: var(--color-ink) !important;
}
.wb-page #crmWebToEntityForm .zcwf_col_fld input[type="text"]:focus {
  outline: none !important; border-color: var(--color-secondary) !important;
  box-shadow: 0 0 0 3px rgba(0,123,255,0.15) !important;
}
.wb-page #crmWebToEntityForm .zcwf_col_fld_slt { width: 100% !important; float: none !important; padding: 12px 14px !important; border-radius: 10px !important; }
/* Hide Status & Case Origin rows completely (kept in DOM for the form logic, visually hidden) */
#crmWebToEntityForm .zcwf_row:has(#Status),
.wb-page #crmWebToEntityForm .zcwf_row:has(#Case_Origin) { display: none !important; }
.wb-page #crmWebToEntityForm input[type="submit"] {
  width: 100%; border: none !important; border-radius: 999px !important;
  padding: 15px !important; font-size: 15.5px !important; font-weight: 600 !important;
  font-family: var(--font-body) !important; cursor: pointer;
  /* Registration submit is the page's most important CTA — orange per brand rule */
  background: var(--gradient-cta) !important;
  box-shadow: var(--shadow-cta) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wb-page #crmWebToEntityForm input[type="submit"]:hover { transform: translateY(-2px); }
.wb-page #crmWebToEntityForm input[type="submit"][disabled] { opacity: 0.7; transform: none; cursor: not-allowed; }
.wb-page #crmWebToEntityForm input[type="reset"] { display: none !important; }
.wb-page #crmWebToEntityForm .zcwf_col_help { display: none !important; }

/* AOS-safe fallback (content visible even if AOS fails to load) */
[data-aos] { opacity: 1; }

/* Utility */
.wb-page .text-center { text-align: center; }
.wb-page .mt-0 { margin-top: 0; }
