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

:root {
  --navy:   #0D1B3E;
  --navy2:  #142250;
  --gold:   #C9A84C;
  --gold2:  #e0bb60;
  --white:  #ffffff;
  --off:    #F7F6F3;
  --grey:   #6B7280;
  --lgrey:  #E5E7EB;
  --text:   #1F2937;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(13,27,62,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,62,0.16);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 10px 22px;
  font-size: 14px;
}
.btn-nav:hover { background: var(--gold2); }
.btn-full { width: 100%; justify-content: center; }

/* ── Typography helpers ───────────────────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label.light { color: var(--gold); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.section-header p { color: var(--grey); font-size: 17px; }

h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; }
h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
p { color: var(--grey); line-height: 1.7; margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }
.gold { color: var(--gold); }

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,27,62,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo-link { display: flex; align-items: center; }
.nav-logo { height: 44px; width: 44px; border-radius: 50%; object-fit: cover; }
.footer-logo { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; margin: 0 auto 16px; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--navy);
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(201,168,76,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-item { display: flex; flex-direction: column; gap: 4px; }
.proof-num { font-size: 28px; font-weight: 800; color: var(--white); line-height: 1; }
.proof-label { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.15); }

/* ── Problem ──────────────────────────────────────────────────────────────── */
.problem { padding: 100px 0; background: var(--white); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-text h2 { margin-bottom: 20px; }
.problem-text p { color: var(--grey); font-size: 16px; }
.problem-highlight {
  font-style: italic;
  font-size: 17px !important;
  color: var(--navy) !important;
  font-weight: 600;
  border-left: 3px solid var(--gold);
  padding-left: 16px;
  margin-top: 24px;
}

.problem-checks { display: flex; flex-direction: column; gap: 20px; }
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--off);
}
.check-item.bad .check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FEE2E2;
  color: #DC2626;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.check-item strong { display: block; color: var(--text); font-size: 15px; margin-bottom: 4px; }
.check-item p { color: var(--grey); font-size: 14px; margin: 0; }

/* ── Why Us ───────────────────────────────────────────────────────────────── */
.why-us { padding: 100px 0; background: var(--off); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-inner {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.why-image-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.why-trade-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.why-image-text p {
  color: rgba(255,255,255,0.85);
  font-size: 18px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}
.why-sig { color: var(--gold); font-weight: 600; font-size: 14px; }

.why-text h2 { margin-bottom: 20px; }
.why-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--lgrey);
}
.why-stat { display: flex; flex-direction: column; gap: 4px; }
.why-stat-num { font-size: 24px; font-weight: 800; color: var(--navy); line-height: 1.2; }
.why-stat-label { font-size: 13px; color: var(--grey); }

/* ── Deliverables ─────────────────────────────────────────────────────────── */
.deliverables { padding: 100px 0; background: var(--white); }
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.deliverable-card {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--lgrey);
  transition: all 0.2s ease;
}
.deliverable-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.deliverable-icon { font-size: 28px; margin-bottom: 16px; }
.deliverable-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--navy); }
.deliverable-card p { font-size: 14px; color: var(--grey); margin: 0; }

/* ── How It Works ─────────────────────────────────────────────────────────── */
.how-it-works { padding: 100px 0; background: var(--navy); }
.how-it-works .section-label { color: var(--gold); }
.how-it-works .section-header h2 { color: var(--white); }
.how-it-works .section-header p { color: rgba(255,255,255,0.6); }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 40px 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  padding: 0 12px;
  padding-top: 60px;
  flex-shrink: 0;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.step h3 { color: var(--white); font-size: 20px; margin-bottom: 12px; }
.step p { color: rgba(255,255,255,0.6); font-size: 15px; margin: 0; }

/* ── Pricing ──────────────────────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--off); }
.pricing-card {
  background: var(--navy);
  border-radius: 20px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
}
.pricing-left {
  padding: 60px;
}
.pricing-left h2 { color: var(--white); margin-bottom: 16px; }
.pricing-left p { color: rgba(255,255,255,0.65); margin-bottom: 32px; }
.pricing-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.pricing-list li { color: rgba(255,255,255,0.85); font-size: 15px; font-weight: 500; }

.pricing-right {
  background: rgba(201,168,76,0.08);
  border-left: 1px solid rgba(201,168,76,0.2);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 280px;
}
.price-amount {
  font-size: 72px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.price-label {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.price-note {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin: 0;
  max-width: 180px;
}

/* ── Trades ───────────────────────────────────────────────────────────────── */
.trades { padding: 100px 0; background: var(--white); }
.trades-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.trade-tag {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--lgrey);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
  cursor: default;
}
.trade-tag:hover { border-color: var(--gold); color: var(--navy); background: rgba(201,168,76,0.06); }

/* ── Contact ──────────────────────────────────────────────────────────────── */
.contact { padding: 100px 0; background: var(--navy); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-text h2 { color: var(--white); margin-bottom: 16px; }
.contact-text p { color: rgba(255,255,255,0.65); }
.contact-details { margin-top: 32px; }
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-weight: 600;
  font-size: 16px;
  transition: opacity 0.2s;
}
.contact-link:hover { opacity: 0.8; }
.contact-link-icon { font-size: 18px; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s;
  outline: none;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy2); color: var(--white); }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.footer {
  background: #080f1f;
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; }
.footer p { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 4px; }
.footer-copy { color: rgba(255,255,255,0.2) !important; font-size: 13px !important; margin-top: 20px !important; }

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-right { border-left: none; border-top: 1px solid rgba(201,168,76,0.2); padding: 40px; }
}

@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; }
  .hero { padding: 120px 0 72px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-proof { gap: 20px; }

  .problem-grid,
  .why-grid,
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }

  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; align-self: center; }

  .deliverables-grid { grid-template-columns: 1fr; }
  .pricing-list { grid-template-columns: 1fr; }
  .pricing-left { padding: 40px 32px; }

  section { padding: 72px 0 !important; }
}
