/* ═══════════════════════════════════════════════
   AL HANTOUBI GSBF UAE — Global Stylesheet
   hantoubi.com · Pure CSS · 2026
═══════════════════════════════════════════════ */

/* ─── DESIGN TOKENS ─── */
:root {
  --emerald:   #063C2E;
  --forest:    #03241B;
  --gold:      #C5A059;
  --terra:     #D59A7F;
  --terra-h:   #C68A6E;
  --cream:     #F5F2EB;
  --charcoal:  #1E1E1E;
  --white:     #FFFFFF;
  --gold-dim:  rgba(197,160,89,0.14);
  --ff-d: 'Playfair Display', Georgia, serif;
  --ff-b: 'DM Sans', system-ui, sans-serif;
  --nav-h: 76px;
  --max-w: 1160px;
  --r: 2px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-b);
  color: var(--charcoal);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.wrap { max-width: var(--max-w); margin: 0 auto; }

/* ─── OVERLINE LABEL ─── */
.over {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.over::before { content:''; width:18px; height:1px; background:var(--gold); flex-shrink:0; }
.over--dim { color: rgba(197,160,89,0.55); }
.over--dim::before { background: rgba(197,160,89,0.4); }

/* ─── SECTION HEADINGS ─── */
.section-h {
  font-family: var(--ff-d);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.section-h--light { color: var(--cream); }
.section-sub {
  font-size: 15px;
  line-height: 1.74;
  color: rgba(30,30,30,0.52);
  max-width: 540px;
  margin-bottom: 52px;
}
.section-sub--light { color: rgba(245,242,235,0.48); }

/* ─── SECTION BACKGROUNDS ─── */
.s-cream   { background: var(--cream);    padding: 96px 48px; }
.s-white   { background: var(--white);    padding: 96px 48px; }
.s-emerald { background: var(--emerald);  padding: 96px 48px; position: relative; overflow: hidden; }
.s-forest  { background: var(--forest);   padding: 96px 48px; }
.s-char    { background: var(--charcoal); padding: 96px 48px; }

/* ─── BUTTONS ─── */
.btn-t {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--terra);
  color: var(--white);
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-t:hover { background: var(--terra-h); transform: translateY(-1px); }

.btn-o {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(245,242,235,0.62);
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: var(--r);
  border: 1px solid rgba(197,160,89,0.28);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-o:hover { border-color: var(--gold); color: var(--cream); }

.btn-o--dark {
  color: rgba(30,30,30,0.5);
  border-color: rgba(30,30,30,0.16);
}
.btn-o--dark:hover { border-color: var(--terra); color: var(--terra); }

/* ─── NAV ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--forest);
  z-index: 100;
  display: flex;
  align-items: center;
  padding: 0 48px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(197,160,89,0.1);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 11px;
}
.nav__logo { width: 30px; height: 30px; flex-shrink: 0; }
.nav__wordmark {
  font-family: var(--ff-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  line-height: 1.1;
}
.nav__wordmark span {
  display: block;
  font-family: var(--ff-b);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a {
  font-size: 13px;
  color: rgba(245,242,235,0.5);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--cream); }
.nav__links a.active { color: var(--gold); }
.nav__cta {
  background: var(--terra) !important;
  color: var(--white) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
  padding: 10px 22px !important;
  border-radius: var(--r);
  border: none !important;
  transition: background 0.2s !important;
  cursor: pointer;
  white-space: nowrap;
}
.nav__cta:hover { background: var(--terra-h) !important; }
.nav__ham {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav__ham span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ─── MOBILE NAV DRAWER ─── */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--forest);
  border-bottom: 1px solid rgba(197,160,89,0.1);
  z-index: 99;
  padding: 24px 32px;
  flex-direction: column;
  gap: 18px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 14px;
  color: rgba(245,242,235,0.6);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav__mobile a:hover, .nav__mobile a.active { color: var(--gold); }
.nav__mobile .btn-t { justify-content: center; }

/* ─── HERO ─── */
.hero {
  background: var(--emerald);
  padding: calc(var(--nav-h) + 88px) 48px 100px;
  position: relative;
  overflow: hidden;
}
.hero--sm {
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 56px;
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(197,160,89,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,160,89,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  top: -100px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(197,160,89,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow-b {
  position: absolute;
  bottom: -60px; left: 8%;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(197,160,89,0.035) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.hero__headline {
  font-family: var(--ff-d);
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 700px;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(245,242,235,0.5);
  line-height: 1.76;
  max-width: 520px;
  margin-bottom: 44px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(197,160,89,0.1);
}
.trust__num {
  font-family: var(--ff-d);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 5px;
}
.trust__lbl {
  font-size: 10px;
  color: rgba(245,242,235,0.3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ─── INTRO BAND ─── */
.intro-band {
  background: var(--forest);
  border-top: 1px solid rgba(197,160,89,0.08);
  padding: 44px 48px;
}
.intro-band__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
}
.intro-band__q {
  font-family: var(--ff-d);
  font-size: 17px;
  font-style: italic;
  color: rgba(245,242,235,0.66);
  line-height: 1.74;
  flex: 1;
}
.intro-band__badge {
  flex-shrink: 0;
  text-align: center;
  padding: 18px 22px;
  border: 1px solid rgba(197,160,89,0.14);
  border-radius: var(--r);
}
.intro-band__badge-n {
  font-family: var(--ff-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.intro-band__badge-s {
  font-size: 9px;
  color: rgba(197,160,89,0.38);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  line-height: 1.65;
}

/* ─── PATHWAY CARDS (Interactive) ─── */
.pathways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}
.pway {
  background: var(--white);
  border: 1px solid rgba(30,30,30,0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.pway:hover { box-shadow: 0 8px 40px rgba(6,60,46,0.08); }
.pway--dark { background: var(--emerald); border-color: rgba(197,160,89,0.1); }
.pway--dark:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.2); }

.pway__badge {
  position: absolute;
  top: 26px; right: 26px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.pway__badge--pop { background: var(--terra); color: var(--white); }
.pway__badge--prem {
  background: rgba(197,160,89,0.12);
  color: var(--gold);
  border: 1px solid rgba(197,160,89,0.28);
}

.pway__head { padding: 36px 36px 24px; border-bottom: 1px solid rgba(30,30,30,0.06); }
.pway--dark .pway__head { border-bottom-color: rgba(197,160,89,0.1); }

.pway__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.pway__title {
  font-family: var(--ff-d);
  font-size: 24px;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pway--dark .pway__title { color: var(--cream); }
.pway__tagline { font-size: 13px; color: rgba(30,30,30,0.44); line-height: 1.62; }
.pway--dark .pway__tagline { color: rgba(245,242,235,0.4); }

.pway__price-bar {
  padding: 20px 36px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(6,60,46,0.03);
  border-bottom: 1px solid rgba(30,30,30,0.06);
}
.pway--dark .pway__price-bar { background: rgba(245,242,235,0.03); border-bottom-color: rgba(197,160,89,0.08); }
.pway__price {
  font-family: var(--ff-d);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
}
.pway--dark .pway__price { color: var(--cream); }
.pway__price-note { font-size: 11px; color: rgba(30,30,30,0.36); }
.pway--dark .pway__price-note { color: rgba(245,242,235,0.33); }

/* Toggle row */
.pway__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 36px;
  cursor: pointer;
  border: none;
  border-top: 1px solid rgba(30,30,30,0.06);
  background: transparent;
  width: 100%;
  font-family: var(--ff-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  transition: color 0.2s, background 0.2s;
}
.pway--dark .pway__toggle { border-top-color: rgba(197,160,89,0.1); color: var(--gold); }
.pway__toggle:hover { background: rgba(213,154,127,0.04); }
.pway--dark .pway__toggle:hover { background: rgba(197,160,89,0.04); }

.pway__toggle-ico {
  width: 20px; height: 20px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
  opacity: 0.8;
}
.pway.open .pway__toggle-ico { transform: rotate(45deg); }

/* Expandable detail */
.pway__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.44s cubic-bezier(0.4,0,0.2,1);
}
.pway.open .pway__detail { max-height: 1200px; }
.pway__detail-in { padding: 24px 36px; border-top: 1px solid rgba(30,30,30,0.05); }
.pway--dark .pway__detail-in { border-top-color: rgba(197,160,89,0.07); }

/* Detail internals */
.d-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  margin-top: 20px;
}
.d-label:first-child { margin-top: 0; }

.d-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,30,30,0.05);
  font-size: 13px;
  gap: 16px;
}
.pway--dark .d-row { border-bottom-color: rgba(197,160,89,0.07); }
.d-row:last-child { border-bottom: none; }
.d-row__w { color: rgba(30,30,30,0.42); font-size: 12px; }
.pway--dark .d-row__w { color: rgba(245,242,235,0.36); }
.d-row__a { font-weight: 600; color: var(--charcoal); white-space: nowrap; }
.pway--dark .d-row__a { color: var(--cream); }
.d-row--total { border-top: 1px solid rgba(30,30,30,0.09) !important; padding-top: 12px !important; margin-top: 4px; }
.pway--dark .d-row--total { border-top-color: rgba(197,160,89,0.12) !important; }

.d-vtrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(197,160,89,0.1);
  font-size: 13px;
  gap: 12px;
}
.d-vtrow:last-child { border-bottom: none; }
.d-vtrow__p { display: flex; align-items: center; gap: 9px; color: rgba(245,242,235,0.56); }
.d-vtrow__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); opacity: 0.5; flex-shrink: 0; }
.d-vtrow__f { font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--cream); }

.d-list { list-style: none; margin-bottom: 4px; }
.d-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 7px 0;
  font-size: 13px;
  color: rgba(30,30,30,0.6);
  border-bottom: 1px solid rgba(30,30,30,0.05);
  line-height: 1.52;
}
.pway--dark .d-list li { color: rgba(245,242,235,0.55); border-bottom-color: rgba(197,160,89,0.07); }
.d-list li:last-child { border-bottom: none; }
.d-list li::before { content:'—'; color:var(--gold); font-size:10px; flex-shrink:0; margin-top:2px; }

.d-pills { display: flex; flex-wrap: wrap; gap: 7px; }
.d-pill {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 20px;
  border: 1px solid rgba(30,30,30,0.1);
  color: rgba(30,30,30,0.48);
}
.pway--dark .d-pill { border-color: rgba(197,160,89,0.22); color: rgba(245,242,235,0.4); }

.d-cbox {
  background: rgba(6,60,46,0.04);
  border-left: 3px solid var(--gold);
  padding: 13px 15px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(30,30,30,0.55);
  line-height: 1.66;
  border-radius: 0 2px 2px 0;
}
.pway--dark .d-cbox { background: rgba(245,242,235,0.04); color: rgba(245,242,235,0.4); }
.d-cbox strong {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.pway__foot { padding: 0 36px 36px; display: flex; flex-direction: column; gap: 10px; }
.pway__foot .btn-t, .pway__foot .btn-o { justify-content: center; width: 100%; }

/* ─── HOMEPAGE TEASER CARDS ─── */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}
.teaser {
  border: 1px solid rgba(30,30,30,0.07);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  transition: box-shadow 0.3s;
}
.teaser--dark { background: var(--emerald); border-color: rgba(197,160,89,0.1); }
.teaser:hover { box-shadow: 0 6px 30px rgba(6,60,46,0.07); }
.teaser__num { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); }
.teaser__t { font-family: var(--ff-d); font-size: 22px; font-weight: 700; color: var(--charcoal); line-height: 1.2; letter-spacing: -0.02em; }
.teaser--dark .teaser__t { color: var(--cream); }
.teaser__b { font-size: 13px; color: rgba(30,30,30,0.5); line-height: 1.68; flex: 1; }
.teaser--dark .teaser__b { color: rgba(245,242,235,0.44); }
.teaser__price { font-family: var(--ff-d); font-size: 20px; font-weight: 700; color: var(--charcoal); }
.teaser--dark .teaser__price { color: var(--cream); }
.teaser__divider { width: 28px; height: 1px; background: rgba(197,160,89,0.4); }
.teaser__cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.teaser--dark .teaser__cta { color: var(--gold); }
.teaser:hover .teaser__cta { gap: 12px; }

/* ─── PROCESS STEPS ─── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.p-step {
  background: rgba(245,242,235,0.03);
  border: 1px solid rgba(197,160,89,0.09);
  padding: 28px 22px;
}
.p-step__n { font-family: var(--ff-d); font-size: 32px; font-weight: 900; color: rgba(197,160,89,0.11); line-height: 1; margin-bottom: 14px; }
.p-step__t { font-family: var(--ff-d); font-size: 14px; font-weight: 700; color: var(--cream); margin-bottom: 9px; line-height: 1.3; }
.p-step__b { font-size: 12px; color: rgba(245,242,235,0.36); line-height: 1.7; }

/* ─── TRUST PILLARS ─── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.trust-card {
  background: rgba(245,242,235,0.03);
  border: 1px solid rgba(197,160,89,0.09);
  padding: 32px 28px;
}
.trust-card__ico { font-size: 22px; margin-bottom: 14px; }
.trust-card__t { font-family: var(--ff-d); font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 9px; }
.trust-card__b { font-size: 13px; color: rgba(245,242,235,0.4); line-height: 1.7; }

/* ─── PROFILE GRID ─── */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.p-card {
  background: var(--white);
  border: 1px solid rgba(30,30,30,0.065);
  padding: 28px 24px;
}
.p-card__ico { font-size: 20px; margin-bottom: 12px; }
.p-card__t { font-family: var(--ff-d); font-size: 15px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.p-card__b { font-size: 13px; color: rgba(30,30,30,0.5); line-height: 1.7; }

/* ─── FAQ ─── */
.faq-item { border-bottom: 1px solid rgba(30,30,30,0.08); }
.faq-item--d { border-bottom-color: rgba(245,242,235,0.07); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-qt { font-family: var(--ff-d); font-size: 16px; font-weight: 600; color: var(--charcoal); line-height: 1.35; }
.faq-item--d .faq-qt { color: var(--cream); }
.faq-tog {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(30,30,30,0.14);
  border-radius: 50%;
  font-size: 14px;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item--d .faq-tog { border-color: rgba(197,160,89,0.2); }
.faq-item.open .faq-tog { transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.36s ease; }
.faq-item.open .faq-ans { max-height: 280px; }
.faq-ans-in { font-size: 14px; color: rgba(30,30,30,0.56); line-height: 1.76; padding-bottom: 22px; }
.faq-item--d .faq-ans-in { color: rgba(245,242,235,0.46); }

/* ─── COMPLIANCE ─── */
.comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
  margin-top: 28px;
}
.comp-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(30,30,30,0.54);
  line-height: 1.66;
  padding: 8px 0;
  border-bottom: 1px solid rgba(30,30,30,0.05);
}
.comp-item::before {
  content: '!';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: rgba(197,160,89,0.12);
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── CTA SECTION ─── */
.cta-s {
  background: var(--forest);
  padding: 88px 48px;
  position: relative;
  overflow: hidden;
}
.cta-s__rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cta-s__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.cta-s__h { font-family: var(--ff-d); font-size: clamp(22px, 2.8vw, 36px); font-weight: 700; color: var(--cream); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-s__sub { font-size: 14px; color: rgba(245,242,235,0.42); line-height: 1.74; max-width: 440px; }
.cta-s__acts { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }
.cta-s__acts .btn-t, .cta-s__acts .btn-o { justify-content: center; }
.cta-s__phone { font-size: 11px; color: rgba(245,242,235,0.22); text-align: center; letter-spacing: 0.1em; margin-top: 4px; }

/* ─── ABOUT — VALUES ─── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
}
.v-card { background: rgba(245,242,235,0.03); border: 1px solid rgba(197,160,89,0.09); padding: 32px 28px; }
.v-card__n { font-family: var(--ff-d); font-size: 38px; font-weight: 900; color: rgba(197,160,89,0.1); line-height: 1; margin-bottom: 12px; }
.v-card__t { font-family: var(--ff-d); font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 9px; }
.v-card__b { font-size: 13px; color: rgba(245,242,235,0.4); line-height: 1.72; }

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 52px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid rgba(30,30,30,0.07);
  padding: 36px;
}
.contact-form__h { font-family: var(--ff-d); font-size: 20px; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.contact-form__sub { font-size: 13px; color: rgba(30,30,30,0.48); line-height: 1.65; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.38);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  font-family: var(--ff-b);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid rgba(30,30,30,0.1);
  border-radius: var(--r);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { min-height: 110px; resize: vertical; }
.form-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='%23C5A059' 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;
}
.form-submit {
  width: 100%;
  background: var(--terra);
  color: var(--white);
  font-family: var(--ff-b);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--terra-h); }
.form-note { font-size: 11px; color: rgba(30,30,30,0.32); margin-top: 10px; line-height: 1.6; text-align: center; }
.form-success {
  display: none;
  background: rgba(6,60,46,0.05);
  border: 1px solid rgba(197,160,89,0.2);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--emerald);
  line-height: 1.65;
}
.form-success strong { display: block; font-family: var(--ff-d); margin-bottom: 4px; }

.contact-aside { display: flex; flex-direction: column; gap: 20px; }
.wa-card {
  background: var(--emerald);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wa-card__h { font-family: var(--ff-d); font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.wa-card__sub { font-size: 13px; color: rgba(245,242,235,0.46); line-height: 1.66; margin-bottom: 8px; }
.info-card { background: var(--white); border: 1px solid rgba(30,30,30,0.07); padding: 28px; }
.info-card__h { font-size: 9px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-bottom: 1px solid rgba(30,30,30,0.05);
  font-size: 13px;
  color: rgba(30,30,30,0.58);
  line-height: 1.5;
}
.info-row:last-child { border-bottom: none; }
.info-row__lbl { font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(30,30,30,0.3); min-width: 68px; flex-shrink: 0; padding-top: 2px; }

/* ─── FOOTER ─── */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(197,160,89,0.08);
  padding: 36px 48px 28px;
}
.footer__row { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer__brand { display: flex; align-items: center; gap: 10px; }
.footer__logo { width: 22px; height: 22px; }
.footer__wm { font-family: var(--ff-d); font-size: 13px; font-weight: 700; color: rgba(245,242,235,0.28); letter-spacing: 0.08em; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }
.footer__links a { font-size: 12px; color: rgba(245,242,235,0.26); letter-spacing: 0.03em; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__copy {
  width: 100%;
  max-width: var(--max-w);
  margin: 14px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(197,160,89,0.07);
  font-size: 11px;
  color: rgba(245,242,235,0.16);
  letter-spacing: 0.04em;
  line-height: 1.65;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-1 { animation: fadeUp 0.6s 0.00s ease both; }
.anim-2 { animation: fadeUp 0.6s 0.10s ease both; }
.anim-3 { animation: fadeUp 0.6s 0.20s ease both; }
.anim-4 { animation: fadeUp 0.6s 0.32s ease both; }
.anim-5 { animation: fadeUp 0.6s 0.44s ease both; }

/* ─── RESPONSIVE ─── */
@media(max-width:1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:900px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__ham { display: flex; }
  .hero { padding-left: 24px; padding-right: 24px; }
  .hero--sm { padding-left: 24px; padding-right: 24px; }
  .pathways-grid, .teaser-grid, .values-grid { grid-template-columns: 1fr; }
  .trust-grid, .profile-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr; }
  .cta-s__inner { grid-template-columns: 1fr; gap: 36px; }
  .cta-s__acts { flex-direction: row; flex-wrap: wrap; }
  .contact-grid { grid-template-columns: 1fr; }
  .intro-band__inner { flex-direction: column; gap: 28px; }
  .intro-band { padding: 36px 24px; }
  .s-cream, .s-white, .s-emerald, .s-forest, .s-char, .cta-s, .footer { padding-left: 24px; padding-right: 24px; }
  .s-cream, .s-white, .s-emerald, .s-forest, .s-char { padding-top: 64px; padding-bottom: 64px; }
  .cta-s { padding-top: 64px; padding-bottom: 64px; }
}
@media(max-width:640px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid, .profile-grid { grid-template-columns: 1fr; }
  .hero__trust { gap: 24px; }
  .pway__head, .pway__price-bar, .pway__toggle, .pway__detail-in, .pway__foot { padding-left: 24px; padding-right: 24px; }
}
@media(max-width:480px) {
  .process-grid { grid-template-columns: 1fr; }
}
