/* ================================================
   RESET & TOKENS
   ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #111111;
  --navy:       #1c1c1c;
  --navy-mid:   #262626;
  --navy-light: #323232;
  --gold:       #c8a96e;
  --gold-lt:    #dbbe8c;
  --gold-dk:    #a8833f;
  --cream:      #f8f8f8;
  --ivory:      #f2f2f2;
  --rule:       #e0e0e0;
  --muted:      #888888;
  --text:       #111111;
  --text-mid:   #444444;

  --serif: 'Heebo', sans-serif;
  --sans:  'Heebo', sans-serif;
  --ease:  cubic-bezier(.4,0,.2,1);
  --r:     10px;
}

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  direction: rtl;
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--sans); cursor: pointer; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ================================================
   TYPOGRAPHY HELPERS
   ================================================ */
h1, h2, h3 { line-height: 1.15; }

h2 {
  font-family: var(--sans);
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-tag.centered {
  display: flex;
  justify-content: center;
}

.section-tag.centered::before {
  display: none;
}

.section-tag.light {
  color: var(--gold-lt);
}

.section-tag.light::before {
  background: var(--gold-lt);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header h2 { margin-bottom: 20px; }

.section-sub {
  max-width: 520px;
  margin: 20px auto 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.gold-rule {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt));
  margin-bottom: 28px;
  border-radius: 2px;
}

.gold-rule.centered {
  margin-left: auto;
  margin-right: auto;
}

/* ================================================
   BUTTONS
   ================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 30px;
  border-radius: 4px;
  border: none;
  transition: all 0.28s var(--ease);
  white-space: nowrap;
}

.btn-gold:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,169,110,.35);
}

.btn-gold.full {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.95rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,.85);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.3);
  transition: all 0.28s var(--ease);
}

.btn-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
  color: white;
}

/* ================================================
   NAVBAR
   ================================================ */
#navbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(17,17,17,.98);
  border-color: rgba(200,169,110,.15);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo-text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.nav-links a {
  color: rgba(255,255,255,.78);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

.nav-links a:not(.nav-cta):hover {
  color: rgba(255,255,255,1);
}

.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  display: flex !important;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  color: var(--gold) !important;
  border: 1px solid rgba(200,169,110,.5);
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.04em;
  transition: all 0.25s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold) !important;
}

.nav-cta::after { display: none !important; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-drawer {
  display: none;
  flex-direction: column;
  background: #0b1220;
  border-top: 1px solid rgba(200,169,110,.12);
  padding: 8px 32px 24px;
}

.nav-drawer a {
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--gold-lt); }
.nav-drawer.open { display: flex; }

/* ================================================
   HERO
   ================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-grad {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 85% 40%, rgba(200,169,110,.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 70% at 15% 70%, rgba(200,169,110,.04) 0%, transparent 50%),
    linear-gradient(160deg, #0d0d0d 0%, #1c1c1c 50%, #111111 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hbl {
  position: absolute;
  border: 1px solid rgba(200,169,110,.06);
  border-radius: 50%;
}

.hbl-1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.hbl-2 { width: 900px; height: 900px; top: -350px; left: -400px; }
.hbl-3 { width: 500px; height: 500px; bottom: -150px; right: -100px; }

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 32px 40px;
  max-width: 780px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
}

h1 {
  font-family: var(--sans);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,.6);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.8;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid rgba(200,169,110,.15);
  width: 100%;
  margin-top: auto;
}

.hstat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 0;
  gap: 4px;
}

.hstat-n {
  font-family: var(--sans);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hstat-l {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,.45);
  letter-spacing: 0.04em;
  text-align: center;
  max-width: 140px;
  line-height: 1.4;
}

.hstat-sep {
  width: 1px;
  height: 40px;
  background: rgba(200,169,110,.15);
  flex-shrink: 0;
}

.hero-scroll-ind {
  position: absolute;
  bottom: 100px;
  right: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}

@keyframes pulse-line {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.35; transform: scaleY(.6); transform-origin: top; }
}

/* ================================================
   ABOUT
   ================================================ */
#about {
  padding: 120px 0;
  background: var(--cream);
}

.about-layout {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.about-visual {
  position: relative;
}

.about-photo-frame {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-frame-accent {
  position: absolute;
  bottom: -16px;
  left: -16px;
  width: 100px;
  height: 100px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  border-radius: 0 0 0 var(--r);
  pointer-events: none;
}

.about-frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.about-frame-corner.tl { top: -8px; right: -8px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.about-frame-corner.tr { top: -8px; left: -8px; border-top: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.about-frame-corner.bl { bottom: -8px; right: -8px; border-bottom: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.about-frame-corner.br { bottom: -8px; left: -8px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }

.about-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}

.about-badge span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.4;
}

.about-content .section-tag { margin-bottom: 14px; }

.about-content h2 { margin-bottom: 20px; }

.about-lead {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 16px;
}

.about-content > p { margin-bottom: 28px; }

.about-content > p:last-of-type { margin-bottom: 36px; }

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.cred {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.5;
}

.cred-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================
   SERVICES
   ================================================ */
#services {
  padding: 120px 0;
  background: var(--navy);
}

#services .section-tag { color: var(--gold-lt); }
#services .section-tag.centered::before { display: none; }
#services h2 { color: white; }
#services .section-sub { color: rgba(255,255,255,.45); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow: hidden;
}

.srv-card {
  position: relative;
  background: rgba(255,255,255,.02);
  padding: 44px 36px 72px;
  transition: background 0.3s var(--ease);
  cursor: default;
}

.srv-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,110,.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.srv-card:hover {
  background: rgba(200,169,110,.05);
}

.srv-card:hover::after {
  opacity: 1;
}

.srv-num {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(200,169,110,.5);
  letter-spacing: 0.14em;
  margin-bottom: 24px;
}

.srv-icon {
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.srv-card h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.srv-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.75;
}

.srv-arrow {
  position: absolute;
  bottom: 32px;
  left: 36px;
  color: rgba(200,169,110,.3);
  transition: all 0.3s var(--ease);
}

.srv-card:hover .srv-arrow {
  color: var(--gold);
  transform: translateX(-4px);
}

/* ================================================
   INVESTORS
   ================================================ */
#investors {
  padding: 120px 0;
  background: var(--ivory);
}

.investors-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}

.investors-left h2 { margin-bottom: 20px; }

.inv-lead {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.inv-quote {
  position: relative;
  border-right: 3px solid var(--gold);
  padding: 20px 24px;
  margin: 36px 0;
  background: white;
  border-radius: 0 var(--r) var(--r) 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}

.qmark {
  position: absolute;
  top: -8px;
  right: 20px;
  font-family: var(--sans);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold);
  opacity: .3;
}

.inv-quote p, .inv-quote {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.75;
}

.inv-quote footer {
  margin-top: 12px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-dk);
  letter-spacing: 0.04em;
}

.inv-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.inv-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inv-stat-n {
  font-family: var(--sans);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dk);
  line-height: 1;
  letter-spacing: -0.02em;
}

.inv-stat-l {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.inv-stat-sep {
  width: 1px;
  height: 40px;
  background: var(--rule);
}

.inv-stat--badge {
  align-items: flex-start;
}

.inv-stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(168,131,63,.12);
  border: 1px solid rgba(168,131,63,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  margin-bottom: 6px;
}

.inv-stat-n--word {
  font-family: var(--sans) !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--text) !important;
  background: rgba(168,131,63,.1);
  border: 1px solid rgba(168,131,63,.2);
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}

.inv-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.inv-step {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
}

.inv-step:first-child { padding-top: 0; }
.inv-step:last-child { border-bottom: none; padding-bottom: 0; }

.inv-step-head {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}

.inv-step-num {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  letter-spacing: -0.02em;
}

.inv-step h3 {
  font-size: 1rem;
  font-weight: 700;
}

.inv-step p {
  padding-right: 60px;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ================================================
   PROJECTS
   ================================================ */
#projects {
  padding: 120px 0;
  background: var(--ivory);
}

.proj-group + .proj-group { margin-top: 72px; }

.proj-group-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.proj-group-title::before,
.proj-group-title::after {
  content: '';
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.projects-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.proj-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 352px;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(17,17,17,.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.proj-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(17,17,17,.12);
  border-color: rgba(200,169,110,.55);
}

.proj-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--navy);
}

.proj-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.proj-card:hover .proj-img img {
  transform: scale(1.06);
}

.proj-img--ph .proj-ph {
  width: 100%;
  height: 100%;
  display: block;
}

.proj-img--diagram {
  background: #f2f0ed;
  padding: 10px;
}

.proj-img--diagram img {
  object-fit: contain;
}

.proj-city {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(17,17,17,.82);
  border-radius: 100px;
}

.proj-city svg { color: var(--gold-lt); }

.proj-type {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(219,190,140,.92);
  border-radius: 100px;
}

.proj-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 24px 28px;
  flex: 1;
}

.proj-body h3 {
  font-size: 1.18rem;
  line-height: 1.3;
}

.proj-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.proj-stat {
  display: flex;
  flex-direction: column;
}

.proj-stat-n {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.proj-stat--new .proj-stat-n { color: var(--gold-dk); }

.proj-stat-l {
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
}

.proj-arrow {
  color: var(--gold);
  flex-shrink: 0;
}

.proj-stats--single { gap: 18px; }

.proj-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rule);
  flex-shrink: 0;
}

.proj-body p {
  font-size: 0.9rem;
  line-height: 1.72;
  margin-top: auto;
}

.projects-note {
  max-width: 720px;
  margin: 44px auto 0;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
}

@media (max-width: 600px) {
  .proj-card { flex-basis: 100%; max-width: 420px; }
}

/* ================================================
   PROCESS
   ================================================ */
#process {
  padding: 120px 0;
  background: var(--cream);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-line {
  position: absolute;
  top: 36px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: linear-gradient(90deg, var(--rule), var(--gold), var(--rule));
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.proc-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dk);
  margin-bottom: 24px;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px var(--cream);
  transition: all 0.3s var(--ease);
}

.proc-step:hover .proc-circle {
  background: var(--gold);
  color: var(--ink);
}

.proc-body { padding: 0 8px; }

.proc-n {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.proc-body h3 { font-size: 0.98rem; margin-bottom: 10px; }
.proc-body p { font-size: 0.85rem; line-height: 1.65; }

/* ================================================
   WHY US
   ================================================ */
#why-us {
  padding: 120px 0;
  background: var(--navy);
}

#why-us .section-tag { color: var(--gold-lt); }
#why-us h2 { color: white; }
#why-us .section-sub { color: rgba(255,255,255,.45); }
#why-us .gold-rule { background: linear-gradient(90deg, var(--gold-dk), var(--gold-lt)); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r);
  overflow: hidden;
}

.why-item {
  display: flex;
  gap: 20px;
  padding: 40px 32px;
  background: rgba(255,255,255,.02);
  transition: background 0.3s var(--ease);
}

.why-item:hover {
  background: rgba(200,169,110,.05);
}

.why-ico {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-text h3 {
  color: white;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.why-text p {
  font-size: 0.86rem;
  color: rgba(255,255,255,.42);
  line-height: 1.7;
}

/* ================================================
   TESTIMONIALS
   ================================================ */
#testimonials {
  padding: 120px 0;
  background: var(--cream);
}

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

.testi-card {
  background: white;
  border-radius: var(--r);
  padding: 40px 36px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.08);
}

.testi-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ================================================
   PRESS
   ================================================ */
#press {
  padding: 120px 0;
  background: var(--navy);
}

#press .section-tag { color: var(--gold-lt); }
#press h2 { color: white; }
#press .section-sub { color: rgba(255,255,255,.45); }

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

.press-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r);
  transition: all 0.28s var(--ease);
  text-decoration: none;
  cursor: pointer;
}

.press-card:hover {
  background: rgba(200,169,110,.07);
  border-color: rgba(200,169,110,.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
}

.press-card--featured {
  grid-column: span 2;
  background: rgba(200,169,110,.06);
  border-color: rgba(200,169,110,.2);
}

.press-card--featured:hover {
  background: rgba(200,169,110,.12);
}

.press-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.press-pub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.press-ext {
  color: rgba(200,169,110,.5);
  flex-shrink: 0;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}

.press-card:hover .press-ext {
  color: var(--gold);
  transform: translate(-2px, 2px);
}

.press-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: white;
  line-height: 1.45;
  flex: 1;
}

.press-card p {
  font-size: 0.84rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: auto;
}

/* ================================================
   CONTACT
   ================================================ */
#contact {
  padding: 0;
  background: var(--navy);
}

.contact-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 120px 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact-left h2 {
  color: white;
  margin-bottom: 20px;
}

.contact-sub {
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  margin-bottom: 24px;
  line-height: 1.75;
}

.contact-trust {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
  padding: 20px 24px;
  background: rgba(200,169,110,.08);
  border: 1px solid rgba(200,169,110,.18);
  border-radius: 8px;
}

.ctrust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}

.ctrust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.cdet {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255,255,255,.7);
  transition: color 0.2s;
}

a.cdet:hover { color: var(--gold-lt); }

.cdet-ico {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(200,169,110,.1);
  border: 1px solid rgba(200,169,110,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.cdet-txt {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
}

.cdet-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

.cdet-val {
  font-size: 0.95rem;
  font-weight: 500;
}

.contact-socials {
  display: flex;
  gap: 10px;
}

.csoc {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all 0.25s var(--ease);
}

.csoc:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

/* FORM */
.contact-right {
  background: var(--cream);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.3);
}

.contact-form {
  padding: 48px;
}

.form-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

.form-header h3 {
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.form-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

.field { margin-bottom: 20px; }

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.field-row .field { margin-bottom: 0; }

label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.req { color: var(--gold-dk); }

input, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  direction: rtl;
  transition: border-color 0.22s, box-shadow 0.22s;
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: #b8b0a4;
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,.12);
}

textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--rule);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text);
  background: white;
  direction: rtl;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.sel-arr {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--muted);
}

.field-checkbox {
  margin-bottom: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-box {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--rule);
  border-radius: 4px;
  background: white;
  margin-top: 2px;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label input:checked + .checkbox-box {
  background: var(--gold);
  border-color: var(--gold);
}

.checkbox-label input:checked + .checkbox-box::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--ink);
  border-top: none;
  border-right: none;
  transform: rotate(-45deg) translateY(-1px);
}

.checkbox-label:hover .checkbox-box {
  border-color: var(--gold);
}

.checkbox-text {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 400;
}

.checkbox-text a {
  color: var(--gold-dk);
  text-decoration: underline;
  text-decoration-color: rgba(168,131,63,.4);
  transition: color 0.2s;
}

.checkbox-text a:hover {
  color: var(--gold-dk);
  text-decoration-color: var(--gold-dk);
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

/* ================================================
   FOOTER
   ================================================ */
#footer {
  background: var(--ink);
}

.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
}

.footer-logo-text {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.87rem;
  color: rgba(255,255,255,.38);
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,.38);
  padding: 5px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: rgba(255,255,255,.75); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  color: rgba(255,255,255,.45);
  padding: 0;
  transition: all 0.22s var(--ease);
}

.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  padding: 20px 0;
}

.footer-bot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bot-inner p {
  font-size: 0.78rem;
  color: rgba(255,255,255,.22);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.footer-privacy:hover {
  color: var(--gold-lt);
  border-color: var(--gold-lt);
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.wa-float {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  z-index: 900;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}

/* ================================================
   SCROLL REVEAL
   ================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .about-layout {
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
  }

  .investors-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .services-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  .inv-step p {
    padding-right: 0;
  }

  .about-visual { max-width: 340px; margin: 0 auto; }

  .about-badge {
    left: auto;
    right: -16px;
    top: 24px;
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid,
  .testi-grid,
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card--featured {
    grid-column: span 1;
  }

  .process-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-line { display: none; }

  .proc-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    text-align: right;
    padding: 24px 0;
    border-bottom: 1px solid var(--rule);
  }

  .proc-circle { margin-bottom: 0; flex-shrink: 0; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 80px 24px;
  }

  .contact-form { padding: 32px 24px; }

  .field-row { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bot-inner { flex-direction: column; align-items: flex-start; }

  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-card--featured {
    grid-column: span 2;
  }

  #about, #services, #investors, #process, #why-us, #testimonials, #press {
    padding: 80px 0;
  }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .hstat-n { font-size: 1.6rem; }
  .hstat-l { font-size: 0.68rem; max-width: 100px; }
  .hero-scroll-ind { display: none; }
  .container { padding: 0 20px; }
  .inv-stats { flex-direction: column; gap: 20px; }
  .inv-stat-sep { width: 40px; height: 1px; }
  .contact-trust { padding: 16px; }
}
