@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #e8b422;
  --gold-hover: #d4a01c;
  --nav-bg: #0c1428;
  --hero-bg: #0e1833;
  --bg: #ffffff;
  --bg-muted: #f4f5f7;
  --text: #1a1f2e;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --card: #ffffff;
  --radius: 0.75rem;
  --font: 'Inter', sans-serif;
}

body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, select, textarea { font-family: var(--font); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 1.5rem; }
.container-xs { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }

/* ---- Navbar ---- */
.navbar { background: var(--nav-bg); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(255,255,255,0.05); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.navbar-logo { display: flex; align-items: center; position: relative; }
.navbar-logo img { height: 60px; width: auto; }
.navbar-logo .reg { position: absolute; top: 12px; right: 10px; font-size: 13px; color: rgba(255,255,255,0.6); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link { padding: 8px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); border-radius: 8px; transition: color 0.2s, background 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(255,255,255,0.05); }
.nav-cta { padding: 8px 18px; background: var(--gold); color: var(--nav-bg); font-weight: 600; font-size: 14px; border-radius: 8px; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-hover); }
.dropdown { position: relative; }
.dropdown-btn { display: flex; align-items: center; gap: 4px; padding: 8px 14px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); border-radius: 8px; transition: color 0.2s, background 0.2s; }
.dropdown-btn:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.dropdown-btn svg { width: 14px; height: 14px; transition: transform 0.2s; }
.dropdown:hover .dropdown-btn svg { transform: rotate(180deg); }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; min-width: 180px; background: var(--nav-bg); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.4); padding-top: 8px; }
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 10px 16px; font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.2s, background 0.2s; }
.dropdown-menu a:hover { color: var(--gold); background: rgba(255,255,255,0.05); }
.mobile-toggle { display: none; color: rgba(255,255,255,0.8); padding: 6px; }
.mobile-toggle svg { width: 24px; height: 24px; }
.mobile-menu { display: none; background: var(--nav-bg); border-top: 1px solid rgba(255,255,255,0.05); padding: 12px 16px 16px; }
.mobile-menu a, .mobile-menu button { display: block; width: 100%; text-align: left; padding: 10px 14px; font-size: 14px; color: rgba(255,255,255,0.8); border-radius: 8px; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-submenu { padding-left: 16px; display: none; }
.mobile-submenu.open { display: block; }

/* ---- Footer ---- */
.footer { background: var(--nav-bg); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.footer-logo { position: relative; display: inline-block; margin-bottom: 16px; }
.footer-logo img { height: 40px; }
.footer-logo .reg { position: absolute; top: 10px; right: 8px; font-size: 11px; color: rgba(255,255,255,0.6); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }
.footer h4 { color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { max-width: 1280px; margin: 40px auto 0; padding: 24px 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: var(--gold); }

/* ---- Hero ---- */
.hero { background: var(--hero-bg); position: relative; overflow: hidden; padding: 80px 0; }
.hero-grid { position: absolute; inset: 0; opacity: 0.03; pointer-events: none; background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0); background-size: 40px 40px; }
.hero-orb1 { position: absolute; top: 80px; left: 40px; pointer-events: none; width: 280px; height: 280px; background: rgba(232,180,34,0.1); border-radius: 50%; filter: blur(120px); }
.hero-orb2 { position: absolute; bottom: 40px; right: 80px; pointer-events: none; width: 360px; height: 360px; background: rgba(59,130,246,0.1); border-radius: 50%; filter: blur(120px); }
.hero-inner { position: relative; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; background: rgba(232,180,34,0.1); border: 1px solid rgba(232,180,34,0.2); border-radius: 999px; margin-bottom: 24px; }
.hero-badge span { font-size: 12px; font-weight: 500; color: var(--gold); letter-spacing: 0.03em; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: #fff; line-height: 1.15; margin-bottom: 20px; }
.hero h1 .accent { color: var(--gold); }
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.6); max-width: 600px; line-height: 1.7; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stat-row { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 48px; }
.hero-stat { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 16px 20px; text-align: center; min-width: 120px; }
.hero-stat .value { font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-centered { text-align: center; }
.hero-centered p { margin-left: auto; margin-right: auto; }
.hero-centered .hero-actions { justify-content: center; }

/* ---- Buttons ---- */
.btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; background: var(--gold); color: var(--nav-bg); font-weight: 600; font-size: 15px; border-radius: 12px; transition: background 0.2s; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; background: rgba(255,255,255,0.05); color: #fff; font-weight: 500; font-size: 15px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); transition: background 0.2s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-gold-sm { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--gold); color: var(--nav-bg); font-weight: 600; font-size: 14px; border-radius: 10px; transition: background 0.2s; }
.btn-gold-sm:hover { background: var(--gold-hover); }

/* ---- Sections ---- */
.section { padding: 80px 0; }
.section-muted { background: var(--bg-muted); }
.section-dark { background: var(--hero-bg); }
.section-title { text-align: center; margin-bottom: 56px; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.section-title h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700; margin-top: 10px; }
.section-title p { color: var(--text-muted); max-width: 540px; margin: 16px auto 0; }

/* ---- Cards ---- */
.card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px; transition: border-color 0.3s, box-shadow 0.3s; }
.card:hover { border-color: rgba(232,180,34,0.3); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(232,180,34,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---- Grid helpers ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }

/* ---- Accordion (details/summary) ---- */
details.accordion { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
details.accordion:hover { border-color: rgba(232,180,34,0.3); }
details.accordion summary { display: flex; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; list-style: none; user-select: none; }
details.accordion summary::-webkit-details-marker { display: none; }
details.accordion summary .sum-num { width: 40px; height: 40px; border-radius: 10px; background: var(--hero-bg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }
details.accordion summary .sum-img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
details.accordion summary .sum-info { flex: 1; min-width: 0; }
details.accordion summary .sum-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); }
details.accordion summary .sum-title { font-weight: 600; font-size: 14px; margin-top: 2px; }
details.accordion summary .sum-arrow { margin-left: auto; flex-shrink: 0; width: 20px; height: 20px; color: var(--text-muted); transition: transform 0.3s; }
details.accordion[open] summary .sum-arrow { transform: rotate(180deg); }
details.accordion .acc-body { border-top: 1px solid var(--border); padding: 20px 24px; }

/* ---- Bullet list ---- */
.bullet-list { list-style: none; }
.bullet-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 8px; }
.bullet-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }

/* ---- Tag ---- */
.tag { display: inline-block; padding: 3px 10px; border-radius: 999px; background: rgba(232,180,34,0.1); border: 1px solid rgba(232,180,34,0.2); font-size: 12px; font-weight: 600; color: var(--gold); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }

/* ---- Check list ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-muted); }
.check-list li svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ---- Form ---- */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form-group label .req { color: var(--gold); }
.form-control { width: 100%; padding: 10px 16px; border: 1px solid var(--border); border-radius: 12px; background: var(--card); color: var(--text); font-size: 14px; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-control:focus { border-color: rgba(232,180,34,0.5); box-shadow: 0 0 0 3px rgba(232,180,34,0.1); }
.form-control::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-btn { width: 100%; padding: 14px; background: var(--gold); color: var(--nav-bg); font-weight: 700; font-size: 15px; border-radius: 12px; cursor: pointer; transition: background 0.2s; border: none; font-family: var(--font); }
.form-btn:hover { background: var(--gold-hover); }
.form-success { text-align: center; padding: 48px 0; }
.form-success .check-circle { width: 64px; height: 64px; border-radius: 50%; background: rgba(232,180,34,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.form-success h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); font-size: 14px; }

/* ---- ATO logos ---- */
.ato-row { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
.ato-country { display: flex; align-items: center; gap: 10px; min-width: 160px; }
.ato-country .flag { font-size: 2rem; }
.ato-country span { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.ato-logos { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; }
.ato-logo { display: flex; align-items: center; justify-content: center; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 10px 14px; min-width: 130px; height: 56px; transition: border-color 0.2s; }
.ato-logo:hover { border-color: rgba(232,180,34,0.4); }
.ato-logo img { max-height: 36px; max-width: 130px; object-fit: contain; }

/* ---- Roles card ---- */
.role-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: border-color 0.3s; }
.role-card:hover { border-color: rgba(232,180,34,0.3); }
.role-card img { width: 100%; height: 180px; object-fit: cover; transition: transform 0.5s; }
.role-card:hover img { transform: scale(1.05); }
.role-card-body { padding: 20px; }
.role-card h3 { font-weight: 600; margin-bottom: 8px; }
.role-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ---- Legal pages ---- */
.legal h2 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.legal h3 { font-size: 1.05rem; font-weight: 600; margin: 24px 0 10px; }
.legal p { color: var(--text-muted); line-height: 1.75; margin-bottom: 14px; font-size: 15px; }
.legal ol, .legal ul { color: var(--text-muted); padding-left: 24px; margin-bottom: 14px; }
.legal li { line-height: 1.75; margin-bottom: 8px; font-size: 15px; }
.legal a { color: var(--gold); }
.legal a:hover { text-decoration: underline; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 20px; font-size: 14px; color: var(--text-muted); }
.legal table th { text-align: left; padding: 10px 16px 10px 0; border-bottom: 1px solid var(--border); font-weight: 600; color: var(--text); }
.legal table td { padding: 10px 16px 10px 0; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal table td:first-child { font-weight: 600; color: var(--text); min-width: 180px; white-space: nowrap; }
.cancellation-form { background: var(--bg-muted); border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-top: 16px; }
.section-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }

/* ---- Benefits ---- */
.benefit-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.benefit-summary { display: flex; align-items: center; gap: 20px; padding: 20px 24px; cursor: pointer; list-style: none; user-select: none; }
.benefit-summary::-webkit-details-marker { display: none; }
.benefit-num { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--gold); letter-spacing: 0.08em; }
.benefit-img { width: 60px; height: 60px; border-radius: 12px; object-fit: cover; flex-shrink: 0; }
.benefit-info { flex: 1; }
.benefit-title { font-weight: 700; font-size: 1rem; }
.benefit-intro { font-size: 13px; color: var(--text-muted); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-top: 4px; }
.benefit-arrow { margin-left: auto; width: 20px; height: 20px; color: var(--text-muted); flex-shrink: 0; transition: transform 0.3s; }
details.benefit-card[open] .benefit-arrow { transform: rotate(180deg); }
.benefit-body { border-top: 1px solid var(--border); padding: 24px; }
.benefit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.benefit-group h4 { font-weight: 600; font-size: 14px; margin-bottom: 10px; }

/* ---- Course page module/competency ---- */
.module-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 24px; transition: border-color 0.3s; }
.module-card:hover { border-color: rgba(232,180,34,0.3); }
.module-num { width: 40px; height: 40px; border-radius: 10px; background: var(--hero-bg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; color: var(--gold); flex-shrink: 0; }

/* ---- Differentiators ---- */
.diff-list { display: flex; flex-direction: column; gap: 10px; }
.diff-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-muted); }
.diff-item::before { content: ''; width: 16px; height: 16px; background: var(--gold); border-radius: 50%; flex-shrink: 0; margin-top: 2px; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%230c1428' d='M13 4L6 11l-3-3'/%3E%3C/svg%3E"); background-size: 12px; background-repeat: no-repeat; background-position: center; }

/* ---- Certbadge ---- */
.cert-strip { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 40px; }

/* ---- Workshops ---- */
.workshop-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin-bottom: 48px; }
.workshop-header { padding: 32px 40px; }
.workshop-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 32px; align-items: start; }
.workshop-objectives { margin: 20px 0; }
.workshop-objectives h4 { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.workshop-meta { display: flex; align-items: center; gap: 24px; margin-top: 20px; }
.workshop-meta span { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); }
.workshop-meta svg { width: 16px; height: 16px; color: var(--gold); }
.workshop-img { display: flex; justify-content: center; align-items: center; }
.workshop-img img { width: 180px; height: 180px; object-fit: contain; opacity: 0.85; }
.workshop-syllabus { border-top: 1px solid var(--border); padding: 32px 40px; }
.workshop-syllabus h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 16px; }
.syllabus-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; margin-bottom: 8px; }
.syllabus-item summary { display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; cursor: pointer; font-size: 14px; font-weight: 500; }
.syllabus-item summary::-webkit-details-marker { display: none; }
.syllabus-item summary svg { width: 16px; height: 16px; color: var(--text-muted); transition: transform 0.2s; flex-shrink: 0; }
.syllabus-item[open] summary svg { transform: rotate(180deg); }
.syllabus-body { border-top: 1px solid var(--border); padding: 14px 18px; }

/* ---- Enquire ---- */
.enquire-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 40px; }

/* ---- Consulting ---- */
.consulting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-item { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-muted); margin-bottom: 12px; transition: border-color 0.2s; }
.service-item:hover { border-color: rgba(232,180,34,0.3); }
.service-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.service-item span { font-size: 14px; font-weight: 500; }

/* ---- Phases ---- */
.phase-tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; margin-bottom: 6px; }
.phase-foundation { background: rgba(59,130,246,0.1); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.phase-analysis { background: rgba(232,180,34,0.1); color: var(--gold); border: 1px solid rgba(232,180,34,0.2); }
.phase-design { background: rgba(168,85,247,0.1); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.phase-delivery { background: rgba(34,197,94,0.1); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.phase-mastery { background: rgba(249,115,22,0.1); color: #fb923c; border: 1px solid rgba(249,115,22,0.2); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .consulting-grid { grid-template-columns: 1fr; gap: 40px; }
  .workshop-grid { grid-template-columns: 1fr; }
  .workshop-img { display: none; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 10px; }
  .workshop-header, .workshop-syllabus { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 1024px) {
  .grid-5 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .benefit-grid { grid-template-columns: 1fr; }
  .hero-stat-row { gap: 10px; }
  .workshop-header, .workshop-syllabus { padding: 24px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
