/* Andi Prasetyo — Life Coach | style.css */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #f57f17;
  --primary-dark: #e65100;
  --primary-light: #ffb74d;
  --accent: #fff9c4;
  --bg: #fffdf0;
  --text: #1a1a1a;
  --text-soft: #555;
  --white: #fff;
  --shadow: 0 4px 24px rgba(245,127,23,0.13);
  --radius: 14px;
  --nav-h: 64px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
}

/* ── Demo Bar ── */
.demo-bar {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 8px 16px;
  font-size: 13px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.demo-bar a { color: var(--primary-light); text-decoration: none; font-weight: 600; }
.demo-bar a:hover { text-decoration: underline; }

/* ── Nav ── */
nav {
  background: var(--white);
  border-bottom: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: var(--nav-h);
  position: sticky;
  top: 33px;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(245,127,23,0.08);
}
.nav-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-dark);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-brand span { color: var(--primary); }

.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }

/* checkbox hack mobile menu */
#menu-toggle { display: none; }
.menu-icon {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-icon span {
  width: 24px; height: 2.5px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(245,127,23,0.35);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,127,23,0.4); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}
.btn-white:hover { background: var(--accent); transform: translateY(-2px); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -100px; right: -100px;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -80px; left: -60px;
  pointer-events: none;
}

.hero-avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 0 auto 24px;
  background: rgba(255,255,255,0.18);
  border: 4px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  position: relative; z-index: 1;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 540px;
  margin: 0 auto 32px;
  position: relative; z-index: 1;
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
  position: relative; z-index: 1;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}
.hero-stat-label { font-size: 0.8rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 0.5px; }

/* ── Section Base ── */
section { padding: 72px 24px; }
.container { max-width: 1060px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--text);
}
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-soft); max-width: 560px; font-size: 1rem; }
.section-header { margin-bottom: 48px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── Cards ── */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245,127,23,0.08);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(245,127,23,0.18); }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ── Home: Kenapa Saya ── */
.why-section { background: var(--white); }
.why-icon {
  width: 56px; height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 8px; color: var(--primary-dark); }
.why-desc { color: var(--text-soft); font-size: 0.92rem; }

/* ── Home: Proses Coaching ── */
.process-section { background: var(--bg); }
.steps { counter-reset: step; display: flex; flex-direction: column; gap: 0; position: relative; max-width: 680px; margin: 0 auto; }
.steps::before {
  content: '';
  position: absolute;
  left: 26px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--primary-light));
}
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
  z-index: 1;
}
.step-num {
  counter-increment: step;
  min-width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(245,127,23,0.4);
}
.step-content h3 { font-size: 1rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 6px; }
.step-content p { color: var(--text-soft); font-size: 0.92rem; }

/* ── Home: CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.cta-banner h2 em { font-style: normal; color: var(--accent); }
.cta-banner p { opacity: 0.9; max-width: 500px; margin: 0 auto 32px; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Program ── */
.program-hero {
  background: linear-gradient(135deg, #fff8e1, var(--accent));
  padding: 72px 24px 56px;
  text-align: center;
}
.program-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; color: var(--primary-dark); margin-bottom: 12px; }
.program-hero p { color: var(--text-soft); max-width: 500px; margin: 0 auto; }

.program-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(245,127,23,0.1);
  transition: transform .25s, box-shadow .25s;
}
.program-card:hover { transform: translateY(-5px); box-shadow: 0 14px 40px rgba(245,127,23,0.2); }
.program-card-top {
  padding: 28px 28px 20px;
  border-bottom: 2px solid var(--accent);
}
.program-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.program-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 8px; }
.program-card p { color: var(--text-soft); font-size: 0.9rem; }
.program-card-bottom { padding: 20px 28px 28px; }
.program-features { list-style: none; margin-bottom: 22px; }
.program-features li {
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.program-features li::before {
  content: '';
  width: 16px; height: 16px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23fff' d='M3 8l3.5 3.5L13 5'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}
.program-price { font-size: 1.5rem; font-weight: 900; color: var(--primary); margin-bottom: 4px; }
.program-price span { font-size: 0.85rem; font-weight: 500; color: var(--text-soft); }

.program-popular {
  border: 2px solid var(--primary);
  position: relative;
}
.popular-ribbon {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 50px;
}

/* ── Testimonial ── */
.testimonial-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 24px;
  text-align: center;
  color: var(--white);
}
.testimonial-hero h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 12px; }
.testimonial-hero p { opacity: 0.9; max-width: 500px; margin: 0 auto; }

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
  position: relative;
}
.testi-quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  font-family: Georgia, serif;
  position: absolute;
  top: 16px; left: 22px;
}
.testi-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 28px;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.1rem;
}
.testi-name { font-weight: 800; font-size: 0.92rem; color: var(--primary-dark); }
.testi-role { font-size: 0.8rem; color: var(--text-soft); }

.stars { color: var(--primary); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 6px; }

.testi-result-section { background: var(--accent); }
.result-stat {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(245,127,23,0.1);
}
.result-num { font-size: 2.4rem; font-weight: 900; color: var(--primary); }
.result-label { font-size: 0.85rem; color: var(--text-soft); margin-top: 4px; }

/* ── Tentang ── */
.tentang-hero {
  background: linear-gradient(135deg, #fff8e1 0%, var(--accent) 100%);
  padding: 72px 24px 56px;
}
.tentang-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}
.about-avatar-wrap { text-align: center; }
.about-avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(245,127,23,0.35);
  margin: 0 auto 16px;
}
.about-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
}
.tentang-name { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 900; color: var(--primary-dark); margin-bottom: 8px; }
.tentang-subtitle { color: var(--primary); font-weight: 600; margin-bottom: 18px; font-size: 1rem; }
.tentang-bio { color: var(--text-soft); line-height: 1.75; }

.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(--primary), var(--primary-light));
}
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-dot {
  position: absolute;
  left: -28px; top: 4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
}
.timeline-year { font-size: 0.78rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-title { font-weight: 800; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.timeline-desc { font-size: 0.88rem; color: var(--text-soft); }

.achievement-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.achievement-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex; gap: 16px; align-items: flex-start;
  box-shadow: 0 2px 12px rgba(245,127,23,0.08);
}
.achievement-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.achievement-label { font-size: 0.78rem; color: var(--text-soft); }
.achievement-value { font-weight: 800; font-size: 0.95rem; color: var(--primary-dark); }

.filosofi-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: var(--white); }
.filosofi-section .section-title { color: var(--white); }
.filosofi-section .section-desc { color: rgba(255,255,255,0.8); }
.quote-block {
  background: rgba(255,255,255,0.12);
  border-left: 4px solid var(--accent);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin: 32px 0;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.65;
}
.filosofi-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 40px; }
.pillar {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 22px;
  text-align: center;
}
.pillar-icon { margin-bottom: 12px; }
.pillar h3 { font-weight: 800; font-size: 0.95rem; margin-bottom: 8px; color: var(--accent); }
.pillar p { font-size: 0.85rem; opacity: 0.8; }

/* ── Kontak ── */
.kontak-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 72px 24px 56px;
  text-align: center;
  color: var(--white);
}
.kontak-hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 12px; }
.kontak-hero p { opacity: 0.9; max-width: 480px; margin: 0 auto; }

.kontak-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 1.3rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 24px; }

.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  background: #fafafa;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(245,127,23,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info h2 { font-size: 1.3rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 24px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-icon {
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label { font-size: 0.78rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 3px; }
.contact-value { font-weight: 700; color: var(--text); font-size: 0.95rem; }
.contact-value a { color: var(--primary); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

.wa-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 28px;
  transition: background .2s, transform .2s;
}
.wa-btn:hover { background: #1da851; transform: translateY(-2px); }

.social-links { display: flex; gap: 12px; flex-wrap: wrap; }
.social-link {
  display: flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1.5px solid #eee;
  border-radius: 10px;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color .2s, color .2s;
}
.social-link:hover { border-color: var(--primary); color: var(--primary); }

.booking-section { background: var(--accent); padding: 56px 24px; }
.booking-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.booking-card h2 { font-size: 1.5rem; font-weight: 900; color: var(--primary-dark); margin-bottom: 10px; }
.booking-card p { color: var(--text-soft); margin-bottom: 28px; }
.booking-options { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-bottom: 28px; }
.booking-opt {
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 18px 14px;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.booking-opt:hover, .booking-opt.selected { border-color: var(--primary); background: #fff8e1; }
.booking-opt-title { font-weight: 800; font-size: 0.9rem; color: var(--primary-dark); margin-bottom: 4px; }
.booking-opt-sub { font-size: 0.78rem; color: var(--text-soft); }

/* ── Footer ── */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 28px;
}
.footer-inner {
  max-width: 1060px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.footer-brand-name span { color: var(--primary); }
.footer-tagline { font-size: 0.88rem; margin-bottom: 18px; }
.footer-h { font-size: 0.85rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { text-align: center; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .menu-icon { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(var(--nav-h) + 33px);
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 18px 24px 24px;
    border-bottom: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px;
  }
  #menu-toggle:checked ~ .nav-links { display: flex; }
  .menu-icon span:nth-child(1) { transform: none; }
  #menu-toggle:checked ~ .menu-icon span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  #menu-toggle:checked ~ .menu-icon span:nth-child(2) { opacity: 0; }
  #menu-toggle:checked ~ .menu-icon span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .tentang-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .kontak-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .achievement-grid { grid-template-columns: 1fr; }
  .filosofi-pillars { grid-template-columns: 1fr; }
  .booking-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 52px 16px; }
  .hero { padding: 60px 16px 52px; }
  nav { padding: 0 16px; }
  .hero-stats { flex-direction: column; gap: 18px; }
}
