/* ============================================================
   STARFISH ACADEMY — WEBINARO LANDING PAGE
   Dizainas: premium navy + orange, Manrope font
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1B3A5C;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.02em;
}

p { line-height: 1.7; }

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

ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }

/* ============================================================
   COLORS & VARIABLES
   ============================================================ */
:root {
  --navy:         #12294A;
  --navy-mid:     #193A60;
  --navy-light:   #1E4878;
  --orange:       #FF9A1A;
  --orange-light: #FFB03A;
  --orange-glow:  rgba(255, 154, 26, 0.25);
  --white:        #ffffff;
  --off-white:    #F8FAFC;
  --light-grey:   #EDF2F7;
  --text-muted:   #8FAFC8;
  --text-dark:    #1B3A5C;
  --border:       rgba(255,255,255,0.1);
  --border-light: rgba(27, 58, 92, 0.1);
  --shadow-sm:    0 2px 12px rgba(18, 41, 74, 0.08);
  --shadow-md:    0 8px 32px rgba(18, 41, 74, 0.14);
  --shadow-lg:    0 20px 60px rgba(18, 41, 74, 0.18);
  --radius-sm:    0.5rem;
  --radius-md:    1rem;
  --radius-lg:    1.5rem;
  --radius-pill:  100px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: all 0.25s ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px var(--orange-glow);
}

.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 154, 26, 0.45);
  background: linear-gradient(135deg, var(--orange-light) 0%, #FFC050 100%);
}

.btn-orange:active {
  transform: translateY(0);
}

.btn-sm  { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-lg  { padding: 1rem 2.4rem;   font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ============================================================
   BADGE / LABEL
   ============================================================ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}

.badge-outline {
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
}

.badge-accent {
  background: rgba(255, 154, 26, 0.12);
  border: 1.5px solid rgba(255, 154, 26, 0.4);
  color: var(--orange);
}

.badge-muted {
  background: rgba(27,58,92,0.06);
  border: 1.5px solid rgba(27,58,92,0.18);
  color: #6B8EAA;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.8); }
}

.mb-badge { margin-bottom: 1.5rem; }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(18, 41, 74, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link { display: inline-flex; align-items: center; }

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo-img--footer {
  height: 28px;
  opacity: 0.7;
  filter: brightness(0) invert(1);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 60%, #0D2240 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 7rem 0 5rem;
}

/* Decorative circles */
.hero-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.045);
}

.circle-1 {
  width: 600px; height: 600px;
  right: -80px; top: 50%;
  transform: translateY(-50%);
}
.circle-2 {
  width: 860px; height: 860px;
  right: -240px; top: 50%;
  transform: translateY(-50%);
}
.circle-3 {
  width: 1100px; height: 1100px;
  right: -400px; top: 50%;
  transform: translateY(-50%);
}
.circle-4 {
  width: 480px; height: 480px;
  left: -160px; bottom: -120px;
  border-color: rgba(255,154,26,0.06);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.hero-headline {
  font-size: clamp(1.85rem, 4.2vw, 3.1rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.accent {
  color: var(--orange);
}

.accent-block {
  display: block;
  color: var(--orange);
  font-size: 0.85em;
  margin-top: 0.25em;
}

.hero-subheadline {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 620px;
  margin: 0 auto 2rem;
  font-weight: 400;
  line-height: 1.75;
}

/* Bullets */
.hero-bullets {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  margin-bottom: 2.25rem;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.bullets-intro {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.bullet-list { display: flex; flex-direction: column; gap: 0.85rem; }

.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
}

.bullet-list li .fa-circle-check {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.hero-cta { margin-bottom: 1.5rem; }

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}

.meta-item i { color: var(--orange); font-size: 0.8rem; }

.meta-divider { color: rgba(255,255,255,0.25); }

.meta-item--light {
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   SECTIONS — BASE
   ============================================================ */
.section { padding: 5rem 0; }

.section-inner { position: relative; }

.section-light  { background: var(--off-white); }
.section-dark   { background: var(--navy); }
.section-navy-mid { background: var(--navy-mid); }
.section-hero-dark {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.register-circles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.register-circles .circle-1 {
  width: 500px; height: 500px;
  right: -60px; top: 50%;
  transform: translateY(-50%);
}
.register-circles .circle-2 {
  width: 320px; height: 320px;
  left: -60px; bottom: -60px;
  border-color: rgba(255,154,26,0.07);
}

.section-headline {
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  color: var(--text-dark);
  margin-bottom: 2.5rem;
  line-height: 1.22;
}

.section-headline--light {
  color: var(--white);
}

.accent-orange { color: var(--orange); }
.accent-orange-icon { color: var(--orange); }

/* ============================================================
   SECTION CTA BLOCK (po kiekviena sekcija)
   ============================================================ */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(27, 58, 92, 0.1);
}

.section-cta--centered {
  text-align: center;
}

/* Dark background variant — border-top in white */
.section-dark .section-cta,
.section-navy-mid .section-cta,
.section-hero-dark .section-cta {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.section-cta .btn-orange {
  /* slight pulse glow on hover for extra attention */
  animation: none;
}

.section-cta .btn-orange:hover {
  animation: cta-pulse 0.6s ease;
}

@keyframes cta-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 154, 26, 0.5); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 154, 26, 0); }
  100% { box-shadow: 0 8px 32px rgba(255, 154, 26, 0.45); }
}

.section-cta-note {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8FAFC8;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.section-cta-note i {
  color: var(--orange);
  font-size: 0.78rem;
}

.section-cta-note--light {
  color: rgba(255, 255, 255, 0.45);
}

.section-cta-note--light i {
  color: rgba(255, 154, 26, 0.7);
}

/* ============================================================
   SECTION 2 — PROBLEMA
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.problem-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: var(--shadow-sm);
}

.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.problem-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,154,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  color: var(--orange);
}

.problem-card p {
  font-size: 0.95rem;
  color: #4A6B8A;
  font-weight: 500;
  line-height: 1.6;
}

.punchline-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: inline-block;
  max-width: 580px;
  width: 100%;
}

.punchline-line {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.punchline-line.accent-orange {
  color: var(--orange);
  font-size: clamp(1.15rem, 2.8vw, 1.5rem);
  margin-top: 0.4rem;
}

/* ============================================================
   SECTION 3 — INSIGHT
   ============================================================ */
.myth-vs-reality {
  max-width: 600px;
  margin: 0 auto;
}

.myth-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.myth-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.5rem;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 500;
  transition: opacity 0.25s;
}

.myth-x {
  color: #E05050;
  font-size: 1rem;
  flex-shrink: 0;
}

.insight-arrow {
  text-align: center;
  margin: 0.5rem 0 1.5rem;
}

.insight-arrow-icon {
  color: var(--orange);
  font-size: 1.75rem;
  animation: bounce-down 2s ease-in-out infinite;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.reality-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reality-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,154,26,0.08);
  border: 1.5px solid rgba(255,154,26,0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
}

.reality-line strong { color: var(--white); }

.reality-line--accent {
  background: rgba(255,154,26,0.14);
  border-color: rgba(255,154,26,0.35);
}

.reality-line .accent-orange-icon {
  margin-top: 0.1rem;
  flex-shrink: 0;
}

/* ============================================================
   SECTION 4 — VERTĖ
   ============================================================ */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-number {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(27,58,92,0.06);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-check {
  font-size: 1.75rem;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: #4A6B8A;
  font-weight: 600;
  line-height: 1.55;
}

/* ============================================================
   SECTION 5 — AUDITAS TEASER
   ============================================================ */
.teaser-intro {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-weight: 500;
}

.teaser-intro strong { color: var(--white); }

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.teaser-card {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.25s, transform 0.25s;
}

.teaser-card:hover {
  background: rgba(255,255,255,0.09);
  transform: translateY(-3px);
}

.teaser-icon {
  font-size: 1.75rem;
  color: var(--orange);
  display: block;
  margin-bottom: 1rem;
}

.teaser-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
}

.teaser-card p strong { color: var(--white); }

/* ============================================================
   SECTION 6 — QUALIFICATION
   ============================================================ */
.two-col-qualification {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.qual-col {
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.qual-col--yes {
  background: var(--white);
  border: 2px solid rgba(255,154,26,0.2);
  box-shadow: 0 4px 24px rgba(255,154,26,0.08);
}

.qual-col--no {
  background: var(--off-white);
  border: 2px solid var(--border-light);
}

.qual-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.qual-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.qual-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.qual-icon.yes { background: var(--orange); color: var(--white); }
.qual-icon.no  { background: #E8EEF5; color: #8FAFC8; }

/* ============================================================
   SECTION 7 — VEDĖJAS (v2 – su nuotrauka)
   ============================================================ */

/* Pagrindinis layout: dvi kolonos */
.speaker-card-v2 {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  max-width: 980px;
  margin: 0 auto 0;
  align-items: start;
}

/* ---- Kairė: nuotrauka ---- */
.speaker-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.speaker-photo-wrap {
  position: relative;
  width: 100%;
}

.speaker-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255,154,26,0.3);
  box-shadow: 0 16px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  display: block;
}

.speaker-photo-badge {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(255,154,26,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.speaker-name-block { text-align: center; }

.speaker-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.speaker-title {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.5;
}

/* ---- Dešinė: turinys ---- */
.speaker-content-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: left;
}

.speaker-bio {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
  line-height: 1.8;
}

.speaker-bio strong { color: var(--white); font-weight: 700; }

/* Faktų tinklelis */
.speaker-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.speaker-fact {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
  transition: background 0.2s;
}

.speaker-fact:hover {
  background: rgba(255,255,255,0.08);
}

.fact-icon {
  color: var(--orange);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Senasis speaker-card (paliktas atgaliniam suderinamumui) */
.speaker-card {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: left;
}

.speaker-avatar { flex-shrink: 0; }

.speaker-avatar-placeholder {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 2.5px solid rgba(255,154,26,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: rgba(255,255,255,0.4);
}

.speaker-stats { display: flex; flex-direction: column; gap: 1.25rem; }

.speaker-stat {
  display: flex; align-items: flex-start; gap: 0.85rem;
  color: rgba(255,255,255,0.8); font-size: 0.95rem; font-weight: 500;
}

.speaker-stat strong { color: var(--white); }

.stat-icon { color: var(--orange); font-size: 1rem; margin-top: 0.2rem; flex-shrink: 0; }

.placeholder-text {
  color: var(--orange);
  font-weight: 700;
  background: rgba(255,154,26,0.12);
  border: 1px dashed rgba(255,154,26,0.4);
  border-radius: 4px;
  padding: 0 0.3rem;
  font-size: 0.9em;
  cursor: pointer;
}

/* Responsive – vedėjas */
@media (max-width: 860px) {
  .speaker-card-v2 {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .speaker-photo-col {
    max-width: 280px;
    margin: 0 auto;
    width: 100%;
  }
  .speaker-content-col { text-align: center; }
  .speaker-fact { text-align: left; }
}

@media (max-width: 500px) {
  .speaker-facts { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION 8 — REGISTRACIJA
   ============================================================ */
.register-headline { margin-bottom: 1rem; }

.register-meta-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.register-form-wrap {
  max-width: 480px;
  margin: 0 auto;
  background: #F8F9FA;
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ---- Kartra embed – minimalus stilizavimas ---- */
.kartra-wrap {
  padding: 0;
  background: #F8F9FA;
  border-radius: var(--radius-lg);
}

.register-form-note {
  font-size: 0.9rem;
  color: #6B8EAA;
  text-align: center;
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.label-optional {
  font-weight: 400;
  color: #8FAFC8;
  font-size: 0.82rem;
}

.form-input {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--off-white);
  border: 1.5px solid rgba(27,58,92,0.15);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.1rem;
  width: 100%;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder { color: #A5BDD2; font-weight: 400; }

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,154,26,0.15);
  background: var(--white);
}

.form-disclaimer {
  font-size: 0.78rem;
  color: #8FAFC8;
  text-align: center;
  line-height: 1.5;
}

.form-disclaimer i { margin-right: 0.3rem; }

.register-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.register-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

.register-trust .fa-circle-check { color: var(--orange); font-size: 0.8rem; }

/* Success state */
.register-success {
  text-align: center;
  padding: 1rem 0;
}

.success-icon {
  font-size: 3.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.register-success h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.register-success p {
  font-size: 0.95rem;
  color: #6B8EAA;
  margin-bottom: 1.5rem;
}

.success-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.success-details span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(255,154,26,0.1);
  border: 1px solid rgba(255,154,26,0.25);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
}

.success-details span i { color: var(--orange); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   LINE BREAKS (responsive helpers)
   ============================================================ */
.br-md { display: block; }
.br-sm { display: none; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   COUNTDOWN TIMER
   ============================================================ */
.countdown-wrap {
  margin: 0 auto 2rem;
  text-align: center;
  max-width: 520px;
}

.countdown-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,154,26,0.25);
  border-radius: var(--radius-md);
  padding: 1.1rem 2rem;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 52px;
}

.countdown-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-unit-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.2rem;
}

.countdown-sep {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.8rem;
}

/* ============================================================
   HERO MICRO-COPY & SOCIAL PROOF
   ============================================================ */
.hero-micro-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: -0.5rem;
  margin-bottom: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.hero-micro-copy i { color: rgba(255,255,255,0.35); font-size: 0.75rem; }

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.social-proof-avatars {
  display: flex;
}

.avatar-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  border: 2.5px solid var(--navy);
  margin-left: -8px;
  flex-shrink: 0;
}

.avatar-circle:first-child { margin-left: 0; }

.social-proof-text {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.social-proof-text strong { color: var(--white); }

.sp-counter { color: var(--orange); }

/* ============================================================
   MICRO-COPY PO CTA MYGTUKAIS
   ============================================================ */
.micro-copy-note {
  font-size: 0.75rem;
  color: #8FAFC8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: -0.25rem;
}

.micro-copy-note i { font-size: 0.7rem; color: #6B8EAA; }

.micro-copy-note--light {
  color: rgba(255,255,255,0.35);
}

.micro-copy-note--light i { color: rgba(255,255,255,0.25); }

/* ============================================================
   STICKY BOTTOM BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  border-top: 2px solid var(--orange);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0.85rem 1.5rem;
}

.sticky-bar.visible {
  transform: translateY(0);
}

.sticky-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sticky-bar-info {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.sticky-bar-fire { color: var(--orange); font-size: 1rem; }

.sticky-bar-btn { white-space: nowrap; flex-shrink: 0; }

/* ============================================================
   EXIT-INTENT POPUP
   ============================================================ */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 25, 45, 0.85);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.exit-popup-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  position: relative;
  animation: slideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.exit-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F1F5F9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #64748B;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.exit-popup-close:hover { background: #E2E8F0; color: #1B3A5C; }

.exit-popup-icon {
  font-size: 2.5rem;
  color: var(--orange);
  margin-bottom: 1rem;
}

.exit-popup-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.exit-popup-text {
  font-size: 0.97rem;
  color: #4A6B8A;
  line-height: 1.7;
  margin-bottom: 1.75rem;
}

.exit-popup-text strong { color: var(--text-dark); }

.exit-popup-cta { width: 100%; }

.exit-popup-skip {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: #A0AEC0;
  cursor: pointer;
  text-decoration: underline;
  transition: color 0.2s;
}

.exit-popup-skip:hover { color: #64748B; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .two-col-qualification { grid-template-columns: 1fr; }
  .speaker-card { flex-direction: column; align-items: center; text-align: center; }
  .speaker-stats { align-items: center; }
  .speaker-stat { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero-section { padding: 5.5rem 0 3.5rem; }
  .hero-bullets  { padding: 1.25rem 1.25rem; }
  .bullet-list li { font-size: 0.93rem; }
  .hero-headline { font-size: 1.75rem; }
  .btn-lg { padding: 0.9rem 1.75rem; font-size: 0.97rem; }
  .section { padding: 3.5rem 0; }
  .problem-grid,
  .value-grid,
  .teaser-grid { grid-template-columns: 1fr; }
  .register-form-wrap {
    padding: 0.5rem;
    max-width: 100%;
    background: #F8F9FA;
    border-radius: 1.25rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .register-meta-top { flex-direction: column; gap: 0.5rem; }
  .meta-divider { display: none; }
  .register-trust { flex-direction: column; gap: 0.6rem; }
  .punchline-block { padding: 2rem 1.5rem; }
  .br-md { display: none; }
  .br-sm { display: block; }
  .myth-vs-reality { padding: 0 0.5rem; }
  .reality-line { flex-direction: column; }
}

@media (max-width: 400px) {
  .hero-headline { font-size: 1.55rem; }
  .section-headline { font-size: 1.4rem; }
}
