/* ========================================
   Lidl Font Pro
   ======================================== */
@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-Book.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-BookItalic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-SemiboldItalic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'LidlFontPro';
  src: url('assets/Font/LidlFontPro-BoldItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

/* ========================================
   CSS Custom Properties
   ======================================== */
:root {
  --primary-blue: #0050AA;
  --primary-blue-hover: #003D80;
  --accent-yellow: #FFF000;
  --accent-red: #E60A14;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --card-bg: #FFFFFF;
  --border: #E2E8F0;
  --text-primary: #1A1A2E;
  --text-secondary: #64748B;
  --gradient-blue: linear-gradient(135deg, #0050AA, #0073E6);
  --gradient-blue-hover: linear-gradient(135deg, #003D80, #0050AA);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1), 0 4px 8px rgba(0, 0, 0, 0.04);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'LidlFontPro', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

/* ========================================
   Animations (removed — static page)
   ======================================== */

/* ========================================
   Navigation — Floating Pill Style
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  pointer-events: none;
}

.navbar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 8px 0 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
  pointer-events: all;
}

.navbar.scrolled .navbar-inner {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1), 0 1px 6px rgba(0, 0, 0, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

/* Desktop nav links */
.nav-links-desktop {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links-desktop a {
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-links-desktop a:hover {
  color: var(--primary-blue);
  background: rgba(0, 80, 170, 0.06);
}

/* Mobile nav panel (outside navbar to avoid stacking context) */
.nav-links {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75vw;
  height: 100%;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 32px;
  z-index: 10000;
  overflow-y: auto;
}

.nav-links.open {
  transform: translateX(0);
}

.nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-blue);
  padding: 4px;
}

.nav-close svg {
  width: 28px;
  height: 28px;
}

.nav-mobile-logo {
  margin-bottom: 40px;
}

.nav-mobile-logo img {
  height: 48px;
  width: auto;
}

.nav-links a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-blue);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 80, 170, 0.1);
  transition: all var(--transition);
}

.nav-links a:hover {
  padding-left: 8px;
}

.nav-mobile-cta {
  margin-top: 24px;
  background: var(--accent-yellow) !important;
  color: var(--primary-blue) !important;
  font-weight: 700 !important;
  text-align: center;
  padding: 14px 24px !important;
  border-radius: 50px !important;
  border-bottom: none !important;
}

.nav-mobile-cta:hover {
  padding-left: 24px !important;
  opacity: 0.9;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
}

.nav-overlay.open {
  display: block;
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
  .nav-links {
    display: none !important;
  }
  .nav-overlay {
    display: none !important;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-blue);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--gradient-blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 80, 170, 0.35);
}

.nav-cta svg {
  width: 16px;
  height: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-blue);
  overflow: hidden;
  padding-top: 120px;
}

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

.hero-shape {
  position: absolute;
}

/* Red circle — top right */
.hero-shape--red-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--accent-red);
  top: -40px;
  right: -40px;
}

/* Yellow semicircle — bottom center */
.hero-shape--yellow-semicircle {
  width: 1200px;
  height: 1200px;
  background: var(--accent-yellow);
  border-radius: 50%;
  bottom: -1140px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/* Red diamond — bottom right */
.hero-shape--red-diamond {
  width: 120px;
  height: 120px;
  background: var(--accent-red);
  bottom: 8%;
  right: 8%;
  transform: rotate(45deg);
}

/* Yellow arrow/chevron — right side */
.hero-shape--yellow-arrow-left {
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-right: 50px solid var(--accent-yellow);
  right: -5px;
  top: 45%;
}

/* Red arrow — bottom left */
.hero-shape--red-arrow-right {
  width: 0;
  height: 0;
  border-top: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 40px solid var(--accent-red);
  left: -5px;
  bottom: 20%;
}

/* Small red circle — left */
.hero-shape--red-small {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-red);
  top: 25%;
  left: 5%;
}

/* Yellow dot — top left area */
.hero-shape--yellow-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-yellow);
  top: 15%;
  left: 30%;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 0;
  padding-bottom: 80px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -1px;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--accent-yellow);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 900px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent-yellow);
  color: var(--text-primary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  font-weight: 700;
}

.btn-primary:hover {
  background: #FFE600;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.btn-primary svg {
  color: var(--text-primary);
}

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

.hero-meta span {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.2px;
}

.hero-meta-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Farmer Banner
   ======================================== */
.farmer-banner {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}

.farmer-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ========================================
   Section Base
   ======================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--gray {
  background: var(--accent-yellow);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-blue);
  margin-bottom: 16px;
  position: relative;
  padding: 0;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  color: var(--primary-blue);
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========================================
   About / Why Attend
   ======================================== */
.features-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}

.feature-card {
  border-radius: 20px;
  padding: 32px 28px;
  text-align: left;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  color: var(--white);
  width: 300px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.feature-card:nth-child(2) {
  margin-top: 100px;
}

.feature-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-number {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 7rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.7;
}

.feature-card--red {
  background: #53AD43;
}

.feature-card--yellow {
  background: #BEF45C;
}

.feature-card--yellow h3 {
  color: var(--primary-blue);
}

.feature-card--yellow p {
  color: var(--primary-blue);
}

.feature-card--blue {
  background: #005337;
}

/* ========================================
   Speakers
   ======================================== */
.section--speakers {
  background: var(--primary-blue);
  position: relative;
  overflow: hidden;
}

.section-tag--light {
  color: var(--accent-yellow) !important;
}

.section-title--light {
  color: var(--white) !important;
}

.section-desc--light {
  color: rgba(255, 255, 255, 0.85) !important;
}

.section--speakers .section-header,
#programme .section-header,
#overview .section-header {
  max-width: 90%;
}

/* Decorative shapes */
.speakers-shape {
  position: absolute;
  z-index: 0;
}

.speakers-shape--yellow-semicircle {
  width: 350px;
  height: 350px;
  background: var(--accent-yellow);
  border-radius: 50%;
  right: -160px;
  top: 32%;
}

.speakers-shape--red-triangle {
  width: 0;
  height: 0;
  border-left: 140px solid var(--accent-red);
  border-top: 120px solid transparent;
  border-bottom: 120px solid transparent;
  left: -20px;
  bottom: 15%;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.speaker-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 16px 16px 20px;
  text-align: left;
  transition: all var(--transition);
}

.speaker-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.speaker-photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.speaker-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.speaker-photo--placeholder {
  background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.speaker-initials {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-blue);
  opacity: 0.5;
}

/* ========================================
   What To Expect
   ======================================== */
.expect-list {
  max-width: 900px;
  margin: 0 auto;
}

.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  padding: 20px 24px;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.expect-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.expect-icon {
  color: var(--primary-blue);
  font-size: 0.8rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.expect-item p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
}

.expect-item strong {
  color: var(--primary-blue);
}

.speaker-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--primary-blue);
}

.speaker-role {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* ========================================
   Programme / Schedule
   ======================================== */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table thead th {
  color: var(--white);
  padding: 20px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary-blue);
}

.schedule-table thead th:first-child {
  background: var(--accent-red);
}

.schedule-table thead th:last-child {
  background: #002366;
}

.schedule-table tbody tr {
  background: var(--white);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  cursor: default;
}

.schedule-table tbody tr:hover {
  transform: scale(1.015);
  box-shadow: 0 4px 20px rgba(0, 80, 170, 0.15);
  z-index: 1;
  position: relative;
}

.schedule-table tbody tr.schedule-blue:hover {
  background: #003D80 !important;
  box-shadow: 0 4px 20px rgba(0, 50, 120, 0.3);
}

.schedule-table tbody tr.schedule-break:hover {
  background: #E6D800 !important;
  box-shadow: 0 4px 20px rgba(255, 240, 0, 0.4);
}

.schedule-table tbody td {
  padding: 18px 28px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  transition: padding-left 0.3s ease;
}

.schedule-table tbody tr:hover .schedule-title {
  padding-left: 8px;
}

.schedule-table tbody tr:last-child td {
  border-bottom: none;
}

.schedule-time {
  font-weight: 700;
  color: var(--primary-blue);
  white-space: nowrap;
  font-size: 0.9rem;
  min-width: 200px;
}

.schedule-title {
  font-weight: 600;
  color: var(--primary-blue);
}

.schedule-speaker {
  font-weight: 500;
  color: var(--primary-blue);
  font-size: 0.85rem;
}

.schedule-blue .schedule-speaker {
  color: rgba(255, 255, 255, 0.8);
}

.schedule-break .schedule-speaker {
  color: var(--text-secondary);
}

/* Blue highlight rows */
.schedule-blue {
  background: var(--primary-blue) !important;
}

.schedule-blue .schedule-time,
.schedule-blue .schedule-title,
.schedule-blue .schedule-speaker {
  color: var(--white);
}

/* Yellow break rows */
.schedule-break {
  background: var(--accent-yellow) !important;
}

.schedule-break .schedule-time {
  color: var(--primary-blue);
  font-weight: 700;
}

.schedule-break .schedule-title {
  color: var(--primary-blue);
  font-weight: 700;
}

.schedule-break .schedule-speaker {
  color: var(--primary-blue);
}

/* Mobile schedule cards */
.schedule-cards {
  display: none;
}

.schedule-card-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 12px;
  transition: all var(--transition);
}

.schedule-card-item:hover {
  box-shadow: var(--shadow-md);
}

.schedule-card-item.is-blue {
  background: var(--primary-blue);
  border-color: var(--primary-blue);
}

.schedule-card-item.is-blue .schedule-card-time,
.schedule-card-item.is-blue .schedule-card-title {
  color: var(--white);
}

.schedule-card-item.is-break {
  background: var(--accent-yellow);
  border-color: var(--accent-yellow);
}

.schedule-card-time {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 6px;
}

.schedule-card-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.schedule-card-speaker {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 6px;
  font-style: italic;
}

.schedule-card-item.is-blue .schedule-card-speaker {
  color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   Registration — Split Layout
   ======================================== */
.map-full {
  width: 100%;
  height: 500px;
  position: relative;
}

.map-full iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.register-split {
  display: flex;
  min-height: 600px;
}

.register-map {
  width: 50%;
  position: relative;
}

.register-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.register-form-side {
  width: 50%;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
}

.register-form-inner {
  width: 100%;
  max-width: 440px;
}

.register-form-inner h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary-blue);
}

.register-form-inner>p {
  color: var(--text-secondary);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-primary);
  transition: all var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: #94A3B8;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(0, 80, 170, 0.12);
}

.form-group input.error {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 3px rgba(230, 10, 20, 0.1);
}

.form-error {
  font-size: 0.8rem;
  color: var(--accent-red);
  margin-top: 6px;
  display: none;
}

.form-error.show {
  display: block;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--gradient-blue);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
}

.btn-submit:hover {
  background: var(--gradient-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 80, 170, 0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.form-success.show {
  display: block;
}

.form-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 80, 170, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ========================================
   FAQs
   ======================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
  background: var(--card-bg);
}

.faq-item:hover {
  border-color: rgba(0, 80, 170, 0.2);
}

.faq-item.active {
  border-color: var(--primary-blue);
  box-shadow: 0 2px 12px rgba(0, 80, 170, 0.08);
}

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

.faq-question:hover {
  color: var(--primary-blue);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 80, 170, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--primary-blue);
  color: var(--white);
  transform: rotate(180deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
}

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

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========================================
   Stay Updated (CTA Banner)
   ======================================== */
.cta-section {
  padding: 80px 0;
  background: var(--gradient-blue);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 240, 0, 0.08);
  top: -100px;
  right: -50px;
}

.cta-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  bottom: -80px;
  left: -40px;
}

.cta-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--accent-yellow);
  color: var(--text-primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.cta-btn:hover {
  background: #FFE600;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 240, 0, 0.4);
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.cta-form input {
  flex: 1;
  padding: 16px 24px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  outline: none;
  transition: all var(--transition);
}

.cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.cta-form input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.cta-form button {
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  background: var(--accent-yellow);
  color: var(--text-primary);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.cta-form button:hover {
  background: #FFE600;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 240, 0, 0.3);
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

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

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand .tagline {
  color: var(--accent-yellow);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 360px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--accent-yellow);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  margin-left: 24px;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent-yellow);
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1440px) {
  /* Shrink yellow semicircle so it doesn't cover text */
  .hero-shape--yellow-semicircle {
    width: 900px;
    height: 900px;
    bottom: -720px;
  }

  /* Move yellow dot to the side so it doesn't overlap text */
  .hero-shape--yellow-dot {
    left: 8%;
    top: 10%;
  }

  /* Shrink red circle top-right */
  .hero-shape--red-circle {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 1024px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 16px;
  }

  .navbar-inner {
    padding: 0 12px;
    height: 52px;
  }

  .nav-links-desktop {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open > *:not(.nav-links):not(.nav-overlay) {
    filter: blur(6px);
    pointer-events: none;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .feature-card {
    width: 100%;
    max-width: 340px;
    aspect-ratio: auto;
    min-height: 240px;
  }

  .feature-card:nth-child(1),
  .feature-card:nth-child(2),
  .feature-card:nth-child(3) {
    align-self: center;
    margin-top: 0;
  }

  .hero-shape--yellow-dot {
    display: none;
  }

  /* Yellow semicircle — smaller, centered and much lower on mobile */
  .hero-shape--yellow-semicircle {
    width: 600px;
    height: 600px;
    bottom: -540px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin: 0;
  }

  /* Red diamond — smaller and pushed to far right on mobile */
  .hero-shape--red-diamond {
    width: 60px;
    height: 60px;
    right: -10px;
    bottom: 12%;
  }

  /* Red arrow — hide on mobile to avoid clutter */
  .hero-shape--red-arrow-right {
    display: none;
  }

  /* Yellow arrow — hide on mobile */
  .hero-shape--yellow-arrow-left {
    display: none;
  }

  /* Red small circle — move up so it doesn't overlap text */
  .hero-shape--red-small {
    top: 12%;
    left: 3%;
    width: 35px;
    height: 35px;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .schedule-table {
    display: none;
  }

  .schedule-cards {
    display: block;
  }

  .register-split {
    flex-direction: column;
  }

  .register-map {
    width: 100%;
    height: 300px;
  }

  .register-form-side {
    width: 100%;
    padding: 40px 24px;
  }

  .cta-form {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .section {
    padding: 40px 0;
  }

}

@media (max-width: 480px) {
  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta-sep {
    display: none;
  }
}