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

:root {
  --amber: #F2BA2F;
  --amber-dark: #D9A020;
  --amber-light: #FDF3D0;
  --dark: #1A1A1A;
  --dark2: #262626;
  --dark3: #333333;
  --mid: #4A4A4A;
  --light: #F5F5F3;
  --white: #FFFFFF;
  --border: #E0E0DC;
  --text: #1A1A1A;
  --text-muted: #666666;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 700; line-height: 1.3; }
h4 { font-size: 0.95rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
p { line-height: 1.7; }

.body-lg { font-size: 1.1rem; line-height: 1.7; }
.amber { color: var(--amber); }
.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-label.light { color: var(--amber); }
.section-label.dark { color: var(--dark2); }

/* ── LAYOUT ───────────────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.section { padding: 80px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--dark2); color: var(--white); }
.section-amber { background: var(--amber); color: var(--dark2); }
.section-register { background: var(--dark); color: var(--white); }

.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header p { color: var(--text-muted); margin-top: 12px; max-width: 600px; }
.section-dark .section-header p, .section-register .section-header p { color: rgba(255,255,255,0.7); }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-amber {
  background: var(--amber); color: var(--dark2); border-color: var(--amber);
}
.btn-amber:hover { background: var(--amber-dark); border-color: var(--amber-dark); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); }
.btn-outline-amber {
  background: transparent; color: var(--amber); border-color: var(--amber);
}
.btn-outline-amber:hover { background: var(--amber); color: var(--dark2); }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 36px; font-size: 1.05rem; width: 100%; justify-content: center; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAV ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,26,26,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.nav.scrolled { background: var(--dark2); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-logo { height: 36px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 0.88rem; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.2s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: var(--dark2); padding: 0 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.85); padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 500;
}
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 68px; }
.hero-img-wrap { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,26,26,0.88) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 80px 24px;
  max-width: 700px; padding-left: 24px;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,186,47,0.15); border: 1px solid rgba(242,186,47,0.4);
  color: var(--amber); padding: 6px 14px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); }
.hero-headline { color: var(--white); margin-bottom: 20px; }
.hero-sub { color: rgba(255,255,255,0.82); font-size: 1.15rem; margin-bottom: 32px; max-width: 560px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  margin-bottom: 40px;
}
.meta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ── COMPLIANCE STRIP ─────────────────────────────────────────────────────── */
.compliance-strip { background: var(--dark); padding: 24px 0; border-bottom: 3px solid var(--amber); }
.compliance-grid {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 0;
}
.compliance-item {
  display: flex; flex-direction: column; align-items: center;
  padding: 8px 32px; text-align: center;
}
.compliance-item strong { color: var(--amber); font-size: 0.88rem; font-weight: 700; }
.compliance-item span { color: rgba(255,255,255,0.6); font-size: 0.78rem; margin-top: 2px; }
.compliance-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

/* ── TWO COL ──────────────────────────────────────────────────────────────── */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.col-img img {
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
}
.col-text h2 { margin-bottom: 16px; }
.col-text p { color: var(--text-muted); margin-bottom: 14px; }

/* ── STATS ────────────────────────────────────────────────────────────────── */
.stat-row { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2.2rem; font-weight: 900; color: var(--amber); letter-spacing: -0.02em; line-height: 1; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; max-width: 130px; line-height: 1.4; }

/* ── WHO IT'S FOR ─────────────────────────────────────────────────────────── */
.card-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 48px;
}
.who-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.who-card:hover { border-color: rgba(242,186,47,0.4); background: rgba(255,255,255,0.08); }
.who-icon { margin-bottom: 16px; }
.who-card h3 { color: var(--white); margin-bottom: 10px; }
.who-card p { color: rgba(255,255,255,0.65); font-size: 0.9rem; }

/* ── MODULES ──────────────────────────────────────────────────────────────── */
.modules-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.module-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; gap: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.module-card:hover { box-shadow: var(--shadow-lg); border-color: var(--amber); }
.module-num {
  font-size: 2.4rem; font-weight: 900; color: var(--amber);
  letter-spacing: -0.04em; line-height: 1; min-width: 48px;
  padding-top: 2px;
}
.module-body h3 { margin-bottom: 8px; }
.module-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.module-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: var(--amber-light); color: #7A5500;
  border-radius: 100px; padding: 3px 10px;
  font-size: 0.72rem; font-weight: 600;
}

/* ── WORKSHOP CALLOUT ─────────────────────────────────────────────────────── */
.workshop-callout {
  margin-top: 32px;
  background: var(--dark2); border-radius: var(--radius-lg);
  padding: 40px 48px;
}
.workshop-inner { display: flex; align-items: center; gap: 48px; }
.workshop-text { flex: 1; }
.workshop-text h3 { color: var(--amber); font-size: 1.3rem; margin-bottom: 16px; }
.workshop-text p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 10px; }
.workshop-text strong { color: var(--white); }
.badge-circle {
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--amber); display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-big { font-size: 3rem; font-weight: 900; color: var(--dark2); line-height: 1; }
.badge-small { font-size: 0.65rem; font-weight: 700; color: var(--dark2); text-align: center; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── INCLUDED GRID ────────────────────────────────────────────────────────── */
.included-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.included-item {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(26,26,26,0.12);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.included-icon { font-size: 2rem; margin-bottom: 14px; }
.included-item h4 { font-size: 1rem; font-weight: 700; text-transform: none; letter-spacing: 0; margin-bottom: 8px; color: var(--dark2); }
.included-item p { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

/* ── TESTIMONIALS ─────────────────────────────────────────────────────────── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.stars { color: var(--amber); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
blockquote { color: rgba(255,255,255,0.82); font-size: 0.92rem; line-height: 1.7; font-style: italic; margin-bottom: 16px; }
cite { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-style: normal; }

/* ── AGENDA ───────────────────────────────────────────────────────────────── */
.agenda-col { align-items: start; }
.logistics-col { }
.agenda { margin-top: 24px; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.agenda-item {
  display: flex; gap: 16px; padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-item.highlight { background: var(--amber-light); }
.agenda-time { color: var(--amber-dark); font-weight: 700; min-width: 70px; font-size: 0.82rem; padding-top: 1px; }
.agenda-text { color: var(--text); }

.logistics-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.logistics-item { display: flex; gap: 14px; align-items: flex-start; }
.logistics-item svg { flex-shrink: 0; margin-top: 2px; }
.logistics-item strong { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.logistics-item span { color: var(--text-muted); font-size: 0.88rem; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  text-align: left; font-size: 1rem; font-weight: 600; color: var(--text);
  gap: 16px; transition: background 0.15s;
}
.faq-q:hover { background: var(--white); }
.faq-arrow { flex-shrink: 0; transition: transform 0.25s; color: var(--amber); }
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-a.open { max-height: 400px; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }

/* ── REGISTER ─────────────────────────────────────────────────────────────── */
.register-wrap {
  display: grid; grid-template-columns: 1fr 480px; gap: 64px; align-items: start;
}
.register-text h2 { color: var(--white); margin-bottom: 16px; }
.register-text .body-lg { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.register-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.register-list li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.82); font-size: 0.95rem;
}
.register-list svg { flex-shrink: 0; margin-top: 2px; }

.register-card {
  background: var(--dark2); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
}
.price-display {
  display: flex; align-items: baseline; gap: 10px;
  margin-bottom: 16px;
}
.price-amount { font-size: 3.5rem; font-weight: 900; color: var(--amber); letter-spacing: -0.03em; line-height: 1; }
.price-label { color: rgba(255,255,255,0.5); font-size: 0.88rem; }
.register-card-sub { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 16px; line-height: 1.5; }
.rto-embed-wrap {
  background: var(--white); border-radius: 12px; overflow: hidden;
  margin-bottom: 16px;
}
.register-small { color: rgba(255,255,255,0.4); font-size: 0.78rem; text-align: center; margin-top: 10px; }
.register-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 24px 0; }
.register-group-note { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-bottom: 12px; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.footer { background: var(--dark); padding: 60px 0 32px; color: rgba(255,255,255,0.6); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { height: 40px; margin-bottom: 16px; object-fit: contain; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 8px; }
.footer-licence { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-licence a { color: var(--amber); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links h4 { color: var(--white); margin-bottom: 6px; }
.footer-links a { font-size: 0.88rem; transition: color 0.15s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; text-align: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.3);
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .register-wrap { grid-template-columns: 1fr; gap: 40px; }
  .register-card { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .col-img { order: -1; }
  .modules-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .card-grid-4 { grid-template-columns: 1fr; }
  .compliance-grid { flex-direction: column; gap: 8px; }
  .compliance-divider { width: 80px; height: 1px; }
  .workshop-inner { flex-direction: column; gap: 24px; }
  .hero-content { padding: 60px 24px; }
  .hero-meta { gap: 14px; }
  .stat-row { gap: 20px; }
  .agenda-col { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .register-card { padding: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .price-amount { font-size: 2.8rem; }
}

/* ── SCROLL ANIMATION ─────────────────────────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── NAV PHONE ────────────────────────────────────────────────────────────── */
.nav-phone {
  color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 600;
  margin-left: 20px; white-space: nowrap;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--amber); }
.mobile-phone {
  display: block; text-align: center; margin-top: 12px;
  color: var(--amber) !important; font-weight: 600;
}

/* ── BOOKING BUTTON ROW ───────────────────────────────────────────────────── */
.booking-btn-row {
  display: flex; gap: 12px; margin-bottom: 20px;
}
.booking-btn-row .btn { font-size: 0.88rem; padding: 12px 16px; }

/* ── BOOKING MODAL ────────────────────────────────────────────────────────── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,20,20,0.72); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 24px;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  position: relative; background: var(--white); color: var(--text);
  border-radius: var(--radius-lg); padding: 40px;
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--shadow-lg);
  margin: auto;
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--light); border: none; cursor: pointer;
  font-size: 1.4rem; line-height: 1; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.modal-close:hover { background: var(--amber-light); color: var(--dark2); }
.modal-box #bookingModalTitle { margin-bottom: 10px; }
.modal-box #bookingModalSub { color: var(--text-muted); margin-bottom: 28px; }
.modal-box .section-label { margin-bottom: 8px; }

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--dark2); margin-bottom: 6px;
}
.form-row input, .form-row textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius);
  border: 1px solid var(--border); font-size: 0.95rem; font-family: inherit;
  background: var(--light); color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none; border-color: var(--amber); background: var(--white);
}
.form-row textarea { resize: vertical; min-height: 90px; }
.form-row.two-up {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 0;
}
.form-row.two-up > div { margin-bottom: 18px; }

.booking-success { text-align: center; padding: 12px 0; }
.success-check {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--amber-light); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.booking-success h2 { margin-bottom: 12px; }
.booking-success p { color: var(--text-muted); margin-bottom: 24px; }

@media (max-width: 640px) {
  .nav-phone { display: none; }
  .modal-box { padding: 28px 20px; }
  .form-row.two-up { grid-template-columns: 1fr; }
  .booking-btn-row { flex-direction: column; }
}
