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

:root {
  --midnight: #0A1628;
  --navy: #0F1E36;
  --gold: #C9A96E;
  --gold-light: #D4B87A;
  --gold-dim: rgba(201,169,110,0.15);
  --ivory: #F5F0E8;
  --ivory-warm: #EDE8DF;
  --charcoal: #2A3545;
  --text-muted: #8A9BB5;
  --text-body: #B8C4D4;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  background: var(--midnight);
  color: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(30%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.96) 0%, rgba(10,22,40,0.85) 50%, rgba(10,22,40,0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ivory);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 44px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.meta-value {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.meta-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.meta-divider {
  width: 1px;
  height: 36px;
  background: rgba(201,169,110,0.2);
}

/* === TRUST CARD === */
.trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(20px);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}

.stars { display: flex; gap: 3px; }

.rating-count {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.trust-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 20px 0;
}

.trust-services { display: flex; flex-direction: column; gap: 10px; }

.services-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.country-badges { display: flex; gap: 8px; }

.country-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 4px 10px;
  border-radius: 20px;
}

/* === STATS BAR === */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  padding: 32px 0;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.stat-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.08);
}

/* === SECTIONS === */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 520px;
}

/* === PROCESS === */
.process {
  padding: 100px 0;
  background: var(--midnight);
}

.process-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-top: 60px;
}

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}

.step-card:hover {
  border-color: rgba(201,169,110,0.25);
  background: rgba(201,169,110,0.04);
}

.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 20px;
}

.step-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 5px 12px;
  border-radius: 20px;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 12px;
  padding-top: 60px;
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.service-card:hover {
  border-color: rgba(201,169,110,0.2);
  background: rgba(201,169,110,0.03);
}

.service-icon {
  margin-bottom: 16px;
}

.service-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-price {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}

/* === MANIFESTO === */
.manifesto {
  padding: 100px 0;
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.manifesto-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.4;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 16px;
}

.manifesto-attr {
  font-size: 0.8rem;
  color: var(--gold);
  padding-left: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

.manifesto-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.manifesto-body p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}

.mstat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.mstat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === CLOSING === */
.closing {
  padding: 120px 0;
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.12);
  text-align: center;
}

.closing-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 60px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 60px;
}

.closing-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* === FOOTER === */
.footer {
  padding: 48px 0;
  background: var(--midnight);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ivory);
}

.brand-sep { color: var(--text-muted); font-weight: 300; }
.brand-company { color: var(--gold); font-weight: 400; }

.footer-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}

.footer-legal {
  font-size: 0.72rem;
  color: var(--text-muted);
  opacity: 0.5;
  max-width: 560px;
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 20px; }
  .step-connector { display: none; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 60px; }
}

@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding: 0 24px; }
  .stats-inner { flex-wrap: wrap; gap: 24px; padding: 0 24px; }
  .stat-divider { display: none; }
  .services-inner, .process-inner { padding: 0 24px; }
  .manifesto-inner { padding: 0 24px; }
  .closing-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 80px; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .meta-divider { display: none; }
}