:root {
  --navy: #0a1628;
  --navy-mid: #142240;
  --navy-light: #1e3a6e;
  --gold: #c9a227;
  --gold-light: #e8c35a;
  --gold-pale: #f5e6b0;
  --silver: #9fb3cc;
  --white: #ffffff;
  --off-white: #f0f4fa;
  --text-dark: #0d1f3c;
  --text-mid: #3a5070;
  --text-light: #6b84a0;
  --danger: #c0392b;
  --success: #1a7a4a;
  --border: #d0dcea;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.10);
  --shadow-md: 0 6px 24px rgba(10,22,40,0.15);
  --shadow-lg: 0 12px 48px rgba(10,22,40,0.20);
  --radius: 6px;
  --radius-lg: 12px;
  --font: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: var(--navy-light); text-decoration: none; }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── DEMO BAR ── */
.demo-bar {
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 7px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: center;
  text-align: center;
}
.demo-bar span { opacity: 0.85; }
.demo-bar a {
  color: var(--gold);
  font-weight: 700;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.demo-bar a:hover { color: var(--gold-light); }
.demo-bar .demo-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  border-bottom: none;
}
.demo-bar .demo-cta:hover { background: var(--gold-light); color: var(--navy); }

/* ── HEADER / NAV ── */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-text-sub { font-size: 0.7rem; font-weight: 400; color: var(--silver); display: block; letter-spacing: 1px; text-transform: uppercase; }

/* checkbox hack mobile menu */
#nav-toggle { display: none; }
.nav-label {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-label span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}
nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  color: var(--silver);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
nav ul li a:hover, nav ul li a.active {
  color: var(--white);
  background: var(--navy-light);
}
.nav-cta a {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 8px 18px !important;
}
.nav-cta a:hover { background: var(--gold-light) !important; }

@media (max-width: 768px) {
  .nav-label { display: flex; }
  nav {
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--navy-mid);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  #nav-toggle:checked ~ nav { max-height: 400px; }
  nav ul { flex-direction: column; padding: 12px 20px 20px; gap: 4px; align-items: stretch; }
  nav ul li a { display: block; padding: 10px 14px; font-size: 0.95rem; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 80px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(201,162,39,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(30,58,110,0.5) 0%, transparent 50%);
}
.hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(201,162,39,0.18);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 span { color: var(--gold); }
.hero p {
  font-size: 1.05rem;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 32px;
}
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-align: center;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(201,162,39,0.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(201,162,39,0.45); color: var(--navy); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--silver);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,162,39,0.08); }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 30px;
}
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; }
.hero-stat span { font-size: 0.8rem; color: var(--silver); letter-spacing: 0.5px; }

/* ── SECTION COMMON ── */
.section { padding: 60px 20px; }
.section-alt { background: var(--off-white); }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-header p { color: var(--text-mid); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

/* ── GRID ── */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 600px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ── CARD ── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 22px; }
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { color: var(--gold); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* ── FEATURE SPLIT ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .feature-split { grid-template-columns: 1fr 1fr; }
  .feature-split.reverse .feature-visual { order: -1; }
}
.feature-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; align-items: center; justify-content: center;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}
.feature-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201,162,39,0.15) 0%, transparent 60%);
}
.feature-text h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.feature-text p { color: var(--text-mid); margin-bottom: 20px; }
.feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-mid);
}
.check-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}

/* ── CABANG OLAHRAGA ── */
.sport-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.sport-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(10,22,40,0.3); }
.sport-card .sport-ico {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.sport-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.sport-card p { font-size: 0.8rem; color: var(--silver); }
.sport-card .level-badge {
  display: inline-block;
  background: rgba(201,162,39,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 12px;
  margin-top: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ── PELATIH ── */
.coach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.coach-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.coach-avatar {
  height: 130px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.coach-body { padding: 20px 18px; }
.coach-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.coach-body .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-bottom: 8px; }
.coach-body p { font-size: 0.82rem; color: var(--text-mid); }
.coach-badges { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 10px; }
.badge {
  background: var(--off-white);
  color: var(--text-mid);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--navy-light) 100%);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px; top: 5px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-item h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-mid); }
.timeline-tag { font-size: 0.72rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; display: block; margin-bottom: 4px; }

/* ── PRESTASI ── */
.achievement-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 24px;
  color: var(--white);
  border-left: 4px solid var(--gold);
}
.achievement-card .ach-year { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 1px; margin-bottom: 6px; }
.achievement-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.achievement-card p { font-size: 0.82rem; color: var(--silver); }
.medal-icon { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }

/* ── TESTIMONIAL ── */
.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold);
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testi-card p { font-size: 0.9rem; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-size: 0.88rem; font-weight: 700; color: var(--navy); }
.testi-role { font-size: 0.75rem; color: var(--text-light); }

/* ── PROGRAM CARD ── */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.program-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 24px;
  color: var(--white);
}
.program-header h3 { font-size: 1rem; font-weight: 800; margin-bottom: 4px; }
.program-header .price { font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.program-header .price span { font-size: 0.75rem; font-weight: 400; color: var(--silver); }
.program-body { padding: 22px; }
.program-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.program-features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-mid); }
.program-features li svg { flex-shrink: 0; color: var(--gold); }
.program-featured { border: 2px solid var(--gold); }
.program-featured .program-header { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%); }
.program-featured .program-header h3 { color: var(--navy); }
.program-featured .program-header .price { color: var(--navy); }
.program-featured .program-header .price span { color: var(--navy-light); }
.featured-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-bottom: 8px;
}

/* ── FAQ ── */
details {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 300;
  flex-shrink: 0;
}
details[open] summary::after { content: '−'; }
.details-body { padding: 0 20px 18px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; }

/* ── FORM ── */
.form-section {
  background: var(--navy);
  padding: 60px 20px;
  color: var(--white);
}
.form-inner { max-width: 700px; margin: 0 auto; }
.form-inner h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 8px; }
.form-inner p { color: var(--silver); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-full { grid-column: 1 / -1; }
label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--silver); margin-bottom: 6px; letter-spacing: 0.3px; }
input, select, textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.93rem;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.35); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
select option { background: var(--navy); color: var(--white); }
textarea { resize: vertical; min-height: 110px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 50px 20px;
  text-align: center;
}
.cta-band h2 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cta-band p { color: var(--navy-light); margin-bottom: 24px; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-block;
  transition: all 0.2s;
}
.btn-navy:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); }

/* ── CONTACT INFO ── */
.contact-block {
  display: flex; flex-direction: column; gap: 20px;
}
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.contact-ico svg { color: var(--gold); }
.contact-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item p { font-size: 0.88rem; color: var(--text-mid); }

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 10px;
  color: var(--silver);
  font-size: 0.9rem;
}
.map-placeholder svg { opacity: 0.6; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: var(--silver);
  padding: 40px 20px 20px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: 2fr 1fr 1fr; } }
.footer-brand .logo { margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 7px; }
.footer-col ul li a { font-size: 0.83rem; color: var(--silver); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: space-between; align-items: center;
  font-size: 0.78rem;
}
.footer-bottom a { color: var(--gold); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--off-white);
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner { max-width: 1100px; margin: 0 auto; font-size: 0.82rem; color: var(--text-light); }
.breadcrumb-inner a { color: var(--navy-light); }
.breadcrumb-inner span { margin: 0 6px; color: var(--border); }

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 50px 20px 40px;
  color: var(--white);
}
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p { color: var(--silver); max-width: 560px; }

/* ── TABLE ── */
.tabel-jadwal { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.tabel-jadwal th {
  background: var(--navy);
  color: var(--gold);
  padding: 12px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}
.tabel-jadwal td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.tabel-jadwal tr:hover td { background: var(--off-white); }
.tabel-jadwal tbody tr:last-child td { border-bottom: none; }
.tabel-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }

/* ── UTILITIES ── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.alert-success { background: #eaf7ef; border-left: 4px solid var(--success); color: var(--success); }
.alert-info { background: #eef4ff; border-left: 4px solid var(--navy-light); color: var(--navy-light); }
