/*
  Webinar Registration Page — Styles
  Created by: lautandigital.id
  Website: https://lautandigital.id
*/

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

:root {
  --primary: #6c63ff;
  --primary-dark: #4f46e5;
  --primary-light: #ede9fe;
  --secondary: #f9a826;
  --accent: #ff6b6b;
  --green: #22c55e;
  --bg: #fafbff;
  --bg-alt: #f0f4ff;
  --text: #1e1b4b;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --white: #ffffff;
  --card-shadow: 0 4px 24px rgba(108, 99, 255, 0.08);
  --card-shadow-hover: 0 12px 40px rgba(108, 99, 255, 0.18);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Plus Jakarta Sans', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--primary); text-decoration: none; transition: opacity var(--transition); }
a:hover { opacity: 0.8; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   TYPOGRAPHY HELPERS
   ===================================================== */
.section-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.highlight {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-pill);
  padding: 12px 28px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-nav {
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  padding: 10px 22px;
}

.btn-nav:hover {
  background: var(--primary-dark);
  opacity: 1;
  transform: translateY(-1px);
}

.btn-submit {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: var(--white);
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-submit:hover::before { opacity: 1; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(108, 99, 255, 0.45); }
.btn-submit:active { transform: translateY(0); }

.btn-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}

.brand strong { color: var(--primary); }

.brand--white, .brand--white strong { color: var(--white); }

.brand-icon { font-size: 1.4rem; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f7ff 0%, #e8f4fd 50%, #fdf4ff 100%);
  padding: 100px 0 80px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.45;
  filter: blur(60px);
}

.shape-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #c4b5fd 0%, transparent 70%);
  top: -160px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, #bae6fd 0%, transparent 70%);
  bottom: -100px; left: -80px;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 240px; height: 240px;
  background: radial-gradient(circle, #fde68a 0%, transparent 70%);
  top: 40%; right: 20%;
  animation: float3 6s ease-in-out infinite;
}

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-24px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
@keyframes float3 { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-14px) scale(1.05)} }

.hero-inner {
  position: relative;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1.5px solid rgba(108, 99, 255, 0.25);
  border-radius: var(--radius-pill);
  padding: 6px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  margin-bottom: 28px;
}

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

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

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 44px;
}

/* COUNTDOWN */
.countdown-wrapper {
  margin-bottom: 40px;
}

.countdown-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius);
  padding: 20px 32px;
  backdrop-filter: blur(8px);
  box-shadow: var(--card-shadow);
}

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

.countdown-num {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.countdown-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.countdown-sep {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
}

/* HERO META */
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.meta-icon { font-size: 1rem; }

/* =====================================================
   STATS BAR
   ===================================================== */
.stats-bar {
  background: linear-gradient(135deg, var(--primary), #a855f7);
  padding: 36px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
}

.stat span {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* =====================================================
   SPEAKERS
   ===================================================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.speaker-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  position: relative;
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.speaker-card--featured {
  border-color: var(--primary);
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 40%);
  transform: translateY(-12px);
}

.speaker-card--featured:hover {
  transform: translateY(-18px);
}

.speaker-badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), #a855f7);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
}

.speaker-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.speaker-name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.speaker-topic {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--primary-dark);
  margin-bottom: 16px;
  padding: 10px 16px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}

.speaker-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.social-chip {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-alt);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.social-chip:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
  border-color: var(--primary);
  opacity: 1;
}

/* =====================================================
   AGENDA
   ===================================================== */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
}

.agenda-item {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1.5px solid var(--border);
  transition: all var(--transition);
}

.agenda-item:last-child { border-bottom: none; }

.agenda-item:hover { background: rgba(255,255,255,0.6); border-radius: var(--radius-sm); padding-left: 12px; padding-right: 12px; }

.agenda-time {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 64px;
  padding-top: 2px;
  font-variant-numeric: tabular-nums;
}

.agenda-content { flex: 1; }

.agenda-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
  background: var(--primary-light);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  margin-bottom: 6px;
}

.agenda-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.agenda-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =====================================================
   BENEFITS
   ===================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--primary);
}

.benefit-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.benefit-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =====================================================
   REGISTRATION FORM
   ===================================================== */
.section--register {
  background: linear-gradient(135deg, #f0f4ff 0%, #fdf4ff 100%);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-left {
  padding-top: 8px;
}

.form-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.form-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.form-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.check {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--green), #16a34a);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.seats-indicator { }

.seats-bar {
  height: 8px;
  background: var(--border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 8px;
}

.seats-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green), #16a34a);
  border-radius: var(--radius-pill);
  transition: width 1s ease;
}

.seats-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FORM RIGHT */
.form-right {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: 0 8px 40px rgba(108, 99, 255, 0.12);
  border: 1.5px solid rgba(108, 99, 255, 0.1);
}

.reg-form { display: flex; flex-direction: column; gap: 20px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

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

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  transition: all var(--transition);
  outline: none;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.form-group input.is-invalid,
.form-group select.is-invalid {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.1);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.field-error {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  min-height: 16px;
}

/* CHECKBOX */
.form-group--checkbox { flex-direction: row; align-items: flex-start; flex-wrap: wrap; gap: 6px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] { display: none; }

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.checkbox-label a { color: var(--primary); font-weight: 600; }

/* SUCCESS STATE */
.success-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-state.visible { display: block; }

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bounce-in {
  0%{ transform:scale(0); opacity:0; }
  100%{ transform:scale(1); opacity:1; }
}

.success-state h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--green);
}

.success-state p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.share-section p {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.share-btn {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.share-wa {
  background: #25d366;
  color: var(--white);
}

.share-wa:hover { background: #1ebe5d; transform: translateY(-1px); }

.share-ig {
  background: var(--bg-alt);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.share-ig:hover { background: var(--primary-light); color: var(--primary-dark); transform: translateY(-1px); }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: all var(--transition);
}

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

.stars {
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
}

.testimonial-author span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================================
   FAQ
   ===================================================== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--primary); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--bg-alt); }
.faq-item.open .faq-question { background: var(--primary-light); color: var(--primary-dark); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
  background: var(--text);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  max-width: 300px;
  line-height: 1.6;
}

.footer-links h5 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--primary);
  font-weight: 600;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-inner { padding-top: 12px; padding-bottom: 12px; }

  .hero { padding: 72px 0 60px; }

  .speakers-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .speaker-card--featured { transform: none; }
  .speaker-card--featured:hover { transform: translateY(-6px); }

  .form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row { grid-template-columns: 1fr; }

  .form-right { padding: 28px 20px; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .countdown { padding: 16px 20px; gap: 4px; }
  .countdown-unit { min-width: 52px; }

  .hero-meta { gap: 10px; }
  .meta-item { font-size: 0.82rem; padding: 6px 14px; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .countdown { padding: 12px 16px; }
  .countdown-num { font-size: 1.8rem; }
  .countdown-unit { min-width: 44px; }
  .benefits-grid { grid-template-columns: 1fr; }
}

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

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