/* ================================================
   GoGolf — Main Stylesheet
   Mobile-first responsive design
   ================================================ */

/* --- Custom Properties --- */
:root {
  --primary:       #2D6A4F;
  --primary-dark:  #1B4332;
  --primary-light: #D8F3DC;
  --accent:        #95D5B2;
  --text:          #333333;
  --text-muted:    #666666;
  --bg:            #FFFFFF;
  --bg-subtle:     #F6FCF8;
  --border:        #D8EFE1;
  --shadow-sm:     0 2px 8px rgba(27,67,50,0.07);
  --shadow-md:     0 4px 20px rgba(27,67,50,0.11);
  --shadow-lg:     0 8px 40px rgba(27,67,50,0.16);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     22px;
  --ease:          0.25s ease;
  --max-w:         1180px;
  --nav-h:         70px;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

/* --- Reset --- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* --- Skip link --- */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--primary-dark); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
  transition: top var(--ease);
}
.skip-link:focus { top: 1rem; }

/* --- Typography --- */
h1,h2,h3,h4 { line-height: 1.2; color: var(--primary-dark); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h4 { font-size: 1.1rem; }
p { max-width: 65ch; }
.lead { font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-muted); line-height: 1.7; }

/* --- Layout --- */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header p { margin: .75rem auto 0; color: var(--text-muted); }

.tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-dark);
  font-size: .8rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; padding: .35rem .9rem;
  border-radius: 100px; margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.75rem; border-radius: var(--radius-sm);
  font-size: 1rem; font-weight: 600; white-space: nowrap;
  transition: all var(--ease);
}
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 14px rgba(45,106,79,.3);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(45,106,79,.4);
}
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--primary); color: #fff;
}
.btn-white {
  background: #fff; color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(0,0,0,.13);
}
.btn-white:hover, .btn-white:focus-visible {
  background: var(--primary-light); transform: translateY(-2px);
}
.btn-accent {
  background: var(--accent); color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(149,213,178,.25);
}
.btn-accent:hover, .btn-accent:focus-visible {
  background: #74c69d; transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(149,213,178,.35);
}
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.0625rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  height: 100%; display: flex;
  align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.5rem; font-weight: 800;
  color: var(--primary-dark); letter-spacing: -.02em;
}
.nav-logo span { color: var(--primary); }

.nav-links {
  display: none; align-items: center; gap: 1.75rem;
}
.nav-links a {
  font-size: .9375rem; font-weight: 500; color: var(--text);
  position: relative; transition: color var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary);
  transition: width var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links .btn { padding: .5rem 1.25rem; font-size: .875rem; }
.nav-links .btn::after { display: none; }
.nav-links .btn-primary,
.nav-links .btn-primary:hover { color: #fff; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

.nav-toggle {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  width: 40px; height: 40px; gap: 5px;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}
.nav-toggle:hover { background: var(--primary-light); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: #fff; z-index: 99;
  flex-direction: column; padding: 1.5rem 1.25rem; gap: .25rem;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: .875rem 1rem;
  font-size: 1.125rem; font-weight: 500; color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--ease);
}
.nav-mobile a:hover, .nav-mobile a.active {
  background: var(--primary-light); color: var(--primary-dark);
}
.nav-mobile .btn {
  margin-top: 1rem; justify-content: center; width: 100%;
}
.nav-mobile .btn:hover { transform: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background:
    linear-gradient(to right, rgba(11,35,24,.88) 0%, rgba(11,35,24,.60) 40%, rgba(11,35,24,.15) 70%, transparent 100%),
    url('../hero.jpg') center center / cover no-repeat;
  color: #fff; padding: 5rem 0 4rem;
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero::before { display: none; }
.hero-orb {
  position: absolute; right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  border: 80px solid rgba(149,213,178,.035);
  pointer-events: none;
}
.hero-orb::before {
  content: ''; position: absolute; inset: -50px;
  border-radius: 50%; border: 40px solid rgba(149,213,178,.025);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(149,213,178,.18);
  border: 1px solid rgba(149,213,178,.3);
  color: var(--accent);
  font-size: .8rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .375rem .9rem; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: 'Manrope', var(--font);
  color: #fff; font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800; letter-spacing: -.025em;
  line-height: 1.08; margin-bottom: 1.25rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: clamp(1.0625rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.82); line-height: 1.65;
  margin-bottom: 2rem; max-width: 54ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-note {
  margin-top: 2.5rem; display: flex; align-items: center; gap: .75rem;
  color: rgba(255,255,255,.5); font-size: .875rem;
}
.hero-note-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}

/* ============================================================
   SOCIAL PROOF STRIP
   ============================================================ */
.proof-strip {
  background: var(--primary-dark); color: #fff;
  padding: 1.1rem 0;
}
.proof-strip-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
  gap: .75rem 2.5rem; font-size: .9375rem;
}
.proof-item {
  display: flex; align-items: center; gap: .5rem; font-weight: 500;
}
.proof-item svg { color: var(--accent); flex-shrink: 0; }

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.benefits { background: var(--bg-subtle); }
.benefits-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3,1fr); } }

.benefit-card-image {
  overflow: hidden;
  min-height: 220px;
  display: flex;
}
.benefit-card.benefit-card-image { padding: 0; }
.benefit-card-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; flex: 1;
}

/* ============================================================
   BENEFITS DARK (home page)
   ============================================================ */
.benefits-dark { background: var(--primary-dark); }
.benefits-dark .section-header .tag {
  background: rgba(149,213,178,.15); color: var(--accent);
  border: 1px solid rgba(149,213,178,.25);
}
.benefits-dark .section-header h2 { color: #fff; }
.benefits-dark .section-header p { color: rgba(255,255,255,.7); }
.benefits-dark .benefit-card {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  border-top: 3px solid var(--primary);
}
.benefits-dark .benefit-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.32);
}
.benefits-dark .benefit-icon {
  background: var(--primary); color: #fff;
}
.benefits-dark .benefit-card-image {
  border-top: none;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}

.benefit-card {
  background: #fff; border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--ease), box-shadow var(--ease);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.benefit-icon {
  width: 52px; height: 52px;
  background: var(--primary-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--primary);
}
.benefit-card h3 { margin-bottom: .5rem; font-size: 1.0625rem; }
.benefit-card p { font-size: .9375rem; color: var(--text-muted); max-width: none; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2rem; position: relative;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3,1fr); gap: 2rem;
  }
  .steps-grid::before {
    content: ''; position: absolute;
    top: 27px;
    left: calc(16.667% + 27px);
    right: calc(16.667% + 27px);
    height: 2px;
    background: linear-gradient(to right, var(--accent), var(--primary-light));
    z-index: 0;
  }
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px;
  background: var(--primary); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; font-weight: 700;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 14px rgba(45,106,79,.3);
}
.step h3 { margin-bottom: .5rem; }
.step p { font-size: .9375rem; color: var(--text-muted); margin: 0 auto; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg-subtle); }

.testimonial-track-wrap { overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.testimonial-stars { display: flex; gap: .2rem; color: #FFD700; }
.testimonial-quote {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.testimonial-author strong { display: block; font-size: .9375rem; color: var(--primary-dark); }
.testimonial-author span { font-size: .8125rem; color: var(--text-muted); }

@media (max-width: 768px) {
  .testimonial-card { flex: 0 0 85vw; }
}

/* ============================================================
   TESTIMONIAL ARROWS
   ============================================================ */
.testimonial-arrows {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.75rem;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--ease);
  box-shadow: var(--shadow-sm);
}

.testimonial-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; padding: 5rem 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-block h2 { color: #fff; margin-bottom: 1rem; }
.cta-block p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin: 0 auto 2rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff; padding: 4rem 0 3.5rem; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin: 0 auto; }

.bg-word {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(5rem, 22vw, 13rem);
  font-weight: 800; letter-spacing: .04em;
  color: rgba(255,255,255,.06);
  white-space: nowrap; pointer-events: none;
  user-select: none; z-index: 0; line-height: 1;
}
.bg-word--tl { top: -1.5rem; left: 2rem; transform: none; }
.bg-word--tr { top: -1.5rem; right: -1rem; left: auto; transform: none; }
.bg-word--bl { top: auto; bottom: -1.5rem; left: 2rem; transform: none; }
.bg-word--tc { top: -1.5rem; left: 50%; transform: translateX(-50%); }
.bg-word--br { top: auto; bottom: -1.5rem; right: -1rem; left: auto; transform: none; }
.about-section .bg-word,
.bg-word--light { color: rgba(45,106,79,.09); }
.page-hero .container,
.cta-block .container { position: relative; z-index: 1; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid; grid-template-columns: 1fr;
  gap: 3rem; align-items: center;
}
@media (min-width: 768px) { .about-intro { grid-template-columns: 5fr 7fr; } }

.photo-placeholder {
  aspect-ratio: 3/4; max-width: 380px;
  background: linear-gradient(145deg, #b7e4c7 0%, var(--accent) 50%, #74c69d 100%);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--primary-dark);
  font-weight: 600; font-size: .9375rem;
  margin: 0 auto;
}
.photo-placeholder svg { opacity: .4; }

.about-bio p + p { margin-top: 1rem; }

/* ============================================================
   ABOUT SECTION — HOME PAGE (dark)
   ============================================================ */
.about-section {
  background: #fff;
  position: relative; overflow: hidden;
}

.tag-mint {
  background: var(--primary-light); color: var(--primary-dark);
  border: 1px solid var(--border);
}

.about-section .about-bio h2 { color: var(--primary-dark); }
.about-section .about-bio p {
  font-size: .9375rem; color: var(--text-muted); margin-top: 1rem;
}

.coach-photo-wrap {
  position: relative; max-width: 380px;
  margin: 0 auto; padding-bottom: 1.75rem;
}
.coach-photo-wrap::after {
  content: '';
  position: absolute;
  inset: -10px -10px calc(1.75rem - 10px) -10px;
  border: 1.5px solid var(--accent);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}
.coach-photo-wrap .photo-placeholder {
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.coach-name-card {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  background: #fff; border-radius: var(--radius-md);
  padding: .75rem 1.75rem; text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  white-space: nowrap; z-index: 1;
}
.coach-name-card strong {
  display: block; color: var(--primary-dark);
  font-size: 1rem; font-weight: 700;
}
.coach-name-card span {
  color: var(--primary); font-size: .8125rem; font-weight: 500;
}

.about-stats-row {
  display: flex; align-items: center;
  gap: 1.25rem; margin: 1.5rem 0;
  padding: 1.125rem 1.25rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.about-stat { display: flex; flex-direction: column; gap: .15rem; }
.about-stat-value {
  color: var(--primary-dark); font-weight: 800;
  font-size: .9375rem; line-height: 1;
}
.about-stat-label {
  color: var(--text-muted); font-size: .72rem; font-weight: 500;
}
.about-stat-divider {
  width: 1px; height: 2rem;
  background: var(--border); flex-shrink: 0;
}

.credentials {
  margin-top: 2rem; display: flex; flex-direction: column; gap: .75rem;
}
.credential-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .875rem 1rem; background: var(--primary-light);
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: .9375rem; color: var(--primary-dark);
}
.credential-item svg { color: var(--primary); flex-shrink: 0; }

.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
}
@media (min-width: 560px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3,1fr); } }

.value-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  text-align: center; box-shadow: var(--shadow-sm);
}
.value-card .value-emoji { font-size: 2.25rem; display: block; margin-bottom: .75rem; }
.value-card h3 { font-size: 1rem; margin-bottom: .375rem; }
.value-card p { font-size: .875rem; color: var(--text-muted); max-width: none; }

.value-card-v2 {
  background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius-md); padding: 2rem 1.75rem;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.value-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card-v2::before {
  content: attr(data-num);
  position: absolute; top: -.5rem; right: 1rem;
  font-size: 5.5rem; font-weight: 800;
  color: var(--primary-light); line-height: 1;
  pointer-events: none; user-select: none;
}
.value-card-v2 h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--primary-dark); margin-bottom: .625rem; position: relative;
}
.value-card-v2 p { font-size: .9375rem; color: var(--text-muted); max-width: none; position: relative; }

.about-stats-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: .75rem; margin: 1.5rem 0;
}
.about-stat-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: .875rem 1rem;
}

.approach-section { background: var(--bg-subtle); }
.approach-section .approach-text p {
  font-size: .9375rem; color: var(--text-muted); margin-top: 1rem;
}
.approach-section .approach-text p:first-of-type { margin-top: .75rem; }

/* ============================================================
   APPROACH SECTION (about page)
   ============================================================ */
.approach-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .approach-layout { grid-template-columns: 1fr 1fr; }
}

.approach-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   PROGRAMMES PAGE
   ============================================================ */
.programme-cards-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2rem;
}
@media (min-width: 768px) { .programme-cards-grid { grid-template-columns: repeat(2, 1fr); } }

.programme-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 0;
}
.programme-card h3 {
  margin-bottom: .75rem; color: var(--primary); font-size: 1.25rem;
}
.programme-card > p { color: var(--text-muted); margin-bottom: 1.5rem; }

.programme-features {
  display: grid; grid-template-columns: 1fr; gap: .75rem; margin-top: 1.5rem;
}
@media (min-width: 560px) { .programme-features { grid-template-columns: repeat(2,1fr); } }

.feature-item {
  display: flex; align-items: flex-start; gap: .75rem; font-size: .9375rem;
}
.feature-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.addon-card {
  background: var(--bg-subtle); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.75rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.addon-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.addon-card h4 { margin-bottom: .375rem; }
.addon-card p { font-size: .9375rem; color: var(--text-muted); max-width: none; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.4rem;
  max-width: 1080px; margin: 0 auto;
}
@media (min-width: 540px) { .pricing-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .pricing-grid { grid-template-columns: repeat(3,1fr); } }

.pricing-card {
  background: #fff; border: 2px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.8rem 1.6rem;
  text-align: center; position: relative;
  display: flex; flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--primary); box-shadow: var(--shadow-md);
}

.pricing-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary); color: #fff;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.pricing-label {
  font-size: .88rem; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 1rem;
}
.pricing-price { margin-bottom: .25rem; }
.pricing-price .currency { font-size: 1.4rem; font-weight: 700; color: var(--primary-dark); vertical-align: super; }
.pricing-price .amount { font-size: 2.8rem; font-weight: 800; color: var(--primary-dark); line-height: 1; }
.pricing-sub { font-size: .95rem; color: var(--text-muted); margin-bottom: 1.4rem; }

.pricing-features {
  text-align: left; display: flex; flex-direction: column;
  gap: .6rem; margin-bottom: 1.6rem;
}

.pricing-card .btn-full { margin-top: auto; }
.pricing-features li { display: flex; align-items: center; gap: .6rem; font-size: 1rem; }
.pricing-features li svg { color: var(--primary); flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px; margin: 0 auto;
  display: flex; flex-direction: column; gap: .75rem;
}
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 1.5rem;
  font-size: 1rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem;
  transition: background var(--ease), color var(--ease);
}
.faq-question:hover { background: var(--bg-subtle); color: var(--primary); }
.faq-question[aria-expanded="true"] { background: var(--primary-light); color: var(--primary-dark); }

.faq-icon {
  flex-shrink: 0; width: 20px; height: 20px; position: relative;
}
.faq-icon::before, .faq-icon::after {
  content: ''; position: absolute;
  background: currentColor; border-radius: 2px;
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after {
  width: 2px; height: 12px; top: 4px; left: 9px;
  transition: transform var(--ease), opacity var(--ease);
}
.faq-question[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 1rem 1.5rem 1.5rem;
  color: var(--text-muted); font-size: .9375rem; max-width: none;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 3rem;
}
@media (min-width: 768px) { .contact-layout { grid-template-columns: 6fr 4fr; } }

.contact-form-wrap {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--text); margin-bottom: .375rem;
}
.form-group input,
.form-group textarea {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid #D0E8D8; border-radius: var(--radius-sm);
  font-family: var(--font); font-size: 1rem; color: var(--text);
  background: #fff; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #bbb; }

.form-success {
  display: none; background: var(--primary-light);
  color: var(--primary-dark); border-radius: var(--radius-sm);
  padding: 1rem 1.25rem; margin-top: 1rem; font-weight: 500;
}

.contact-sidebar { display: flex; flex-direction: column; gap: 1.25rem; height: 100%; }

.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--bg-subtle);
  border-radius: var(--radius-md); border: 1px solid var(--border);
}
.contact-icon {
  width: 44px; height: 44px;
  background: var(--primary-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); flex-shrink: 0;
}
.contact-detail-text strong {
  display: block; font-size: .78rem;
  text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-muted); margin-bottom: .25rem;
}
.contact-detail-text a {
  color: var(--primary-dark); font-weight: 600; font-size: 1rem;
  transition: color var(--ease);
}
.contact-detail-text a:hover { color: var(--primary); }
.contact-detail-text span {
  color: var(--primary-dark); font-weight: 500; font-size: .9375rem;
}

.cert-badge {
  background: var(--primary-light); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem;
  display: flex; align-items: center; gap: .875rem;
}
.cert-badge svg { color: var(--primary); flex-shrink: 0; }
.cert-badge p { font-size: .875rem; color: var(--primary-dark); font-weight: 500; max-width: none; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--primary-dark); color: rgba(255,255,255,.75); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }

.footer-brand h3 {
  color: #fff; font-size: 1.5rem; font-weight: 800;
  margin-bottom: .75rem;
}
.footer-brand h3 span { color: var(--accent); }
.footer-brand p { font-size: .9375rem; line-height: 1.65; max-width: 28ch; }

.footer-col h4 {
  color: #fff; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { font-size: .9375rem; transition: color var(--ease); }
.footer-col a:hover { color: var(--accent); }

.footer-contact-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .9375rem; margin-bottom: .625rem;
}
.footer-contact-row svg { color: var(--accent); flex-shrink: 0; }
.footer-contact-row a { transition: color var(--ease); }
.footer-contact-row a:hover { color: var(--accent); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center;
  gap: .75rem; font-size: .8rem; color: rgba(255,255,255,.4);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

.stagger > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .1s; }
.stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .2s; }
.stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .3s; }

/* ============================================================
   UTILS
   ============================================================ */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
