/* ============================================
   THE ENTITLEMENT GROUP — Global Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

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

:root {
  --navy:       #1A1A2E;
  --navy-mid:   #2C2C54;
  --gold:       #C9A84C;
  --gold-light: #E2C47A;
  --gold-dark:  #A8873A;
  --white:      #FFFFFF;
  --off-white:  #F7F6F2;
  --gray-100:   #F0EFE9;
  --gray-300:   #CCCCCC;
  --gray-500:   #888888;
  --gray-700:   #444444;
  --text-dark:  #1A1A2E;

  --font-body:    'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;

  --max-w: 1140px;
  --section-pad: 90px 24px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.text-gold   { color: var(--gold); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
}

.btn-lg { padding: 18px 42px; font-size: 16px; }
.btn-sm { padding: 10px 22px; font-size: 14px; }

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  color: var(--navy);
  font-family: var(--font-display);
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-cta {
  margin-left: 8px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ──────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 55%, #1e1e3f 100%);
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 72px 24px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(44,44,84,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 66px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
}

.hero-stat {
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(8px);
  max-width: 420px;
  width: 100%;
}

.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.dari-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dari-bar {
  display: flex;
  align-items: center;
  gap: 14px;
}

.dari-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dari-color.green  { background: #22C55E; box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.dari-color.yellow { background: #EAB308; box-shadow: 0 0 8px rgba(234,179,8,0.5); }
.dari-color.red    { background: #EF4444; box-shadow: 0 0 8px rgba(239,68,68,0.5); }
.dari-color.black  { background: #1a1a1a; border: 1px solid #555; box-shadow: 0 0 8px rgba(0,0,0,0.8); }

.dari-bar-info { flex: 1; }

.dari-bar-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.dari-bar-track {
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
}

.dari-bar-fill {
  height: 100%;
  border-radius: 10px;
  transition: width 1s ease;
}

.dari-bar-fill.green  { background: #22C55E; width: 25%; }
.dari-bar-fill.yellow { background: #EAB308; width: 55%; }
.dari-bar-fill.red    { background: #EF4444; width: 80%; }
.dari-bar-fill.black  { background: #555; width: 100%; }

.dari-score {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
}

/* ── Sections base ─────────────────────────── */
.section { padding: var(--section-pad); }

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-dark .section-subtitle { color: rgba(255,255,255,0.6); }

.section-mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section-mid .section-subtitle { color: rgba(255,255,255,0.6); }

.section-light { background: var(--off-white); }
.section-white { background: var(--white); }

/* ── Tracks ────────────────────────────────── */
.tracks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}

.track-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.track-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.track-a {
  background: linear-gradient(135deg, #1e2a4a 0%, #151d35 100%);
  border: 1px solid rgba(201,168,76,0.2);
}

.track-a::before { background: linear-gradient(90deg, var(--gold), var(--gold-dark)); }

.track-b {
  background: linear-gradient(135deg, #1e2a4a 0%, #151d35 100%);
  border: 1px solid rgba(201,168,76,0.12);
}

.track-b::before { background: linear-gradient(90deg, #4A90D9, #357ABD); }

.track-letter {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 24px;
}

.track-a .track-letter {
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}

.track-b .track-letter {
  background: rgba(74,144,217,0.15);
  color: #4A90D9;
  border: 1px solid rgba(74,144,217,0.3);
}

.track-card h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.track-card .track-sub {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.track-a .track-sub { color: var(--gold); }
.track-b .track-sub { color: #4A90D9; }

.track-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 28px;
}

.track-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.track-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}

.track-feature::before {
  content: '→';
  flex-shrink: 0;
  margin-top: 1px;
}

.track-a .track-feature::before { color: var(--gold); }
.track-b .track-feature::before { color: #4A90D9; }

/* ── DARI Score ────────────────────────────── */
.dari-section { padding: var(--section-pad); }

.dari-intro {
  max-width: 700px;
  margin-bottom: 56px;
}

.dari-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dari-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition);
}

.dari-card:hover { transform: translateY(-4px); }

.dari-card-green {
  background: linear-gradient(135deg, #052e16, #0a3d1f);
  border: 1px solid rgba(34,197,94,0.25);
}

.dari-card-yellow {
  background: linear-gradient(135deg, #3b2800, #4a3300);
  border: 1px solid rgba(234,179,8,0.25);
}

.dari-card-red {
  background: linear-gradient(135deg, #3b0a0a, #4a0f0f);
  border: 1px solid rgba(239,68,68,0.25);
}

.dari-card-black {
  background: linear-gradient(135deg, #0a0a0a, #111);
  border: 1px solid rgba(255,255,255,0.08);
}

.dari-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.dari-card-green .dari-dot  { background: #22C55E; box-shadow: 0 0 16px rgba(34,197,94,0.6); }
.dari-card-yellow .dari-dot { background: #EAB308; box-shadow: 0 0 16px rgba(234,179,8,0.6); }
.dari-card-red .dari-dot    { background: #EF4444; box-shadow: 0 0 16px rgba(239,68,68,0.6); }
.dari-card-black .dari-dot  { background: #444; border: 1px solid #666; box-shadow: 0 0 12px rgba(0,0,0,1); }

.dari-card h3 {
  font-size: 28px;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.dari-card-green h3  { color: #4ade80; }
.dari-card-yellow h3 { color: #fbbf24; }
.dari-card-red h3    { color: #f87171; }
.dari-card-black h3  { color: rgba(255,255,255,0.7); }

.dari-card-label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dari-card-green .dari-card-label-tag  { color: rgba(74,222,128,0.7); }
.dari-card-yellow .dari-card-label-tag { color: rgba(251,191,36,0.7); }
.dari-card-red .dari-card-label-tag    { color: rgba(248,113,113,0.7); }
.dari-card-black .dari-card-label-tag  { color: rgba(255,255,255,0.35); }

.dari-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ── Products ──────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: var(--white);
  border: 1px solid #E8E6DF;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card.featured {
  border-color: var(--gold);
  border-width: 2px;
}

.product-badge {
  position: absolute;
  top: 0; right: 28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

.product-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.product-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1;
}

.product-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-500);
  font-family: var(--font-body);
}

.product-desc {
  font-size: 14px;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 28px;
}

.product-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
}

.product-feature .check {
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Contact strip ─────────────────────────── */
.contact-strip {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: var(--section-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.contact-strip .section-title { color: var(--white); }
.contact-strip .section-subtitle { color: rgba(255,255,255,0.65); }

.contact-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
  margin-top: 20px;
  transition: var(--transition);
}

.contact-email-link:hover { color: var(--gold-light); }

/* ── Footer ────────────────────────────────── */
.footer {
  background: #0f0f1a;
  padding: 60px 24px 36px;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* ── About page ────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 140px 24px 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.06), transparent);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  line-height: 1.7;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.mission-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}

.mission-text p {
  font-size: 16px;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 18px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--gold);
}

.value-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.value-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
  margin: 0;
}

.mission-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
}

.mission-visual::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,0.12), transparent 70%);
  pointer-events: none;
}

.mission-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-stat {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
}

.mission-stat-num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.mission-stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* Team Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.team-card {
  background: var(--white);
  border: 1px solid #E8E6DF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.team-avatar {
  height: 200px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-avatar::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.15), transparent);
}

.team-initials {
  width: 90px;
  height: 90px;
  background: rgba(201,168,76,0.15);
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}

.team-info {
  padding: 32px;
}

.team-info h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 4px;
}

.team-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.team-info p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ── Forms ─────────────────────────────────── */
.form-section {
  padding: var(--section-pad);
}

.form-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.form-card {
  background: var(--white);
  border: 1px solid #E8E6DF;
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #D8D6CF;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #AAAAAA; }

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 14px;
}

/* Checklist page specifics */
.checklist-hero {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  padding: 130px 24px 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.checklist-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(201,168,76,0.07), transparent);
  pointer-events: none;
}

.checklist-hero-inner { position: relative; z-index: 1; }

.checklist-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px auto 0;
  max-width: 860px;
}

.checklist-benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}

.checklist-benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
  color: var(--gold);
}

.checklist-benefit h4 {
  font-size: 15px;
  color: var(--white);
  margin-bottom: 8px;
}

.checklist-benefit p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

.download-section {
  padding: 72px 24px;
  background: var(--off-white);
}

.download-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.download-preview {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  padding: 40px;
  position: sticky;
  top: 100px;
}

.download-preview h3 {
  font-size: 18px;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.checklist-item:last-child { border-bottom: none; }

.checklist-check {
  width: 18px;
  height: 18px;
  border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
}

.blur-overlay {
  position: relative;
  overflow: hidden;
}

.blur-overlay::after {
  content: 'Download to see all 47 items';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--navy));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.download-form-wrap {
  background: var(--white);
  border: 1px solid #E8E6DF;
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}

.download-form-wrap h2 {
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}

.download-form-wrap > p {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 32px;
  line-height: 1.7;
}

/* ── Contact page ──────────────────────────── */
.contact-page-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info { position: sticky; top: 100px; }

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail p {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.contact-detail a:hover { color: var(--gold); }

.contact-form-card {
  background: var(--white);
  border: 1px solid #E8E6DF;
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #F0EEE8;
}

/* ── Success message ───────────────────────── */
.success-msg {
  display: none;
  text-align: center;
  padding: 28px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius);
  margin-top: 16px;
}

.success-msg h4 {
  color: #16a34a;
  font-size: 18px;
  margin-bottom: 6px;
}

.success-msg p {
  color: #15803d;
  font-size: 14px;
}

/* ── Divider ───────────────────────────────── */
.gold-line {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px;
  margin: 20px 0 32px;
}

.gold-line.center { margin-left: auto; margin-right: auto; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1024px) {
  .dari-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .tracks-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .contact-info { position: static; }
  .checklist-benefits { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--navy);
    padding: 20px 24px 28px;
    border-bottom: 1px solid rgba(201,168,76,0.15);
    gap: 18px;
    align-items: flex-start;
  }
  .dari-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 36px 28px; }
  .contact-form-card { padding: 36px 28px; }
  .download-form-wrap { padding: 36px 28px; }
  .mission-stat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .dari-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}
