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

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0C0E15;
  --surface: #12151F;
  --surface-2: #191D2C;
  --surface-3: #1F2338;
  --border: rgba(255, 255, 255, 0.06);
  --border-2: rgba(255, 255, 255, 0.12);
  --orange: #F5611A;
  --orange-hover: #FF7033;
  --orange-dim: rgba(245, 97, 26, 0.10);
  --orange-glow: rgba(245, 97, 26, 0.22);
  --text: #EDEEF2;
  --text-2: #9099B8;
  --text-3: #525772;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --max-w: 1160px;
  --nav-h: 72px;
  --section-gap: 120px;
}

html {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body { min-height: 100vh; overflow-x: hidden; }

/* ─── TYPOGRAPHY ─────────────────────────── */
h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 600; line-height: 1.15; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.2rem; font-weight: 600; line-height: 1.35; }
h4 { font-size: 0.9rem; font-weight: 600; }
p  { line-height: 1.75; }
a  { color: inherit; text-decoration: none; }

/* ─── LAYOUT ─────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: var(--section-gap) 0; }

/* ─── LOGO MARK ──────────────────────────── */
.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--surface-2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 0 0 0 transparent;
}

.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  border-radius: 0 0 6px 6px;
}

.logo-r { color: var(--text); }
.logo-f { color: var(--orange); }

/* ─── NAV ────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  background: rgba(12, 14, 21, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.nav .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.nav-logo-text span { color: var(--orange); }

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

.nav-links a:not(.btn) {
  font-size: 0.88rem;
  color: var(--text-2);
  transition: color 0.15s;
  font-weight: 450;
}

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

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.2s;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--orange-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover {
  color: var(--text);
  background: var(--surface);
  border-color: var(--border-2);
}

.btn-lg { font-size: 0.95rem; padding: 13px 26px; }

/* ─── SECTION LABELS ─────────────────────── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.section-header { margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-header .sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 600px;
  line-height: 1.75;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  padding-top: calc(var(--nav-h) + 96px);
  padding-bottom: 96px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at 50% 20%, rgba(245, 97, 26, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

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

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero h1 { max-width: 840px; margin-bottom: 24px; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── STATS STRIP ────────────────────────── */
.stats-strip {
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-3);
  line-height: 1.45;
}

/* ─── PROBLEM SECTION ────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.problem-text { font-size: 1rem; color: var(--text-2); line-height: 1.8; }
.problem-text p + p { margin-top: 20px; }

.problem-callout {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 32px 36px;
}

.problem-callout blockquote {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.problem-callout cite {
  display: block;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-3);
  font-style: normal;
  line-height: 1.5;
}

/* ─── SERVICES PREVIEW ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}

.service-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 14px;
}

.service-card h3 { margin-bottom: 10px; }

.service-card > p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}

.price {
  font-size: 0.88rem;
  color: var(--text-3);
  margin-top: auto;
}

.price strong { color: var(--text); }

/* ─── DIFFERENTIATORS ────────────────────── */
.diff-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}

.diff-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
}

.diff-item h3 { margin-bottom: 12px; font-size: 1.05rem; }
.diff-item p { font-size: 0.88rem; color: var(--text-2); line-height: 1.75; }

/* ─── CTA SECTION ────────────────────────── */
.cta-section { padding-bottom: var(--section-gap); }

.cta-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(245, 97, 26, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner h2 { margin-bottom: 14px; }

.cta-inner .sub {
  font-size: 1.05rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ─── FOOTER ─────────────────────────────── */
.footer {
  padding: 44px 0;
  border-top: 1px solid var(--border);
}

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

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

.footer-copy { font-size: 0.8rem; color: var(--text-3); }

.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.82rem; color: var(--text-3); transition: color 0.15s; }
.footer-links a:hover { color: var(--text-2); }

/* ─── PAGE HEADER ────────────────────────── */
.page-header {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}

.page-header h1 { max-width: 700px; margin-bottom: 18px; }
.page-header .sub { font-size: 1.05rem; color: var(--text-2); max-width: 560px; line-height: 1.75; }

/* ─── HOW WE WORK ────────────────────────── */
.tiers-list { display: flex; flex-direction: column; gap: 14px; }

.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
  align-items: start;
  transition: border-color 0.2s;
}

.tier:hover { border-color: var(--border-2); }

.tier-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.tier-meta h2 { font-size: 1.4rem; margin-bottom: 20px; }

.tier-price { margin-bottom: 6px; }
.tier-price .amount { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.tier-price .period { font-size: 0.85rem; color: var(--text-3); margin-left: 4px; }

.tier-duration {
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 24px;
  line-height: 1.5;
}

.tier-body > * + * { margin-top: 28px; }

.tier-body p { font-size: 0.93rem; color: var(--text-2); line-height: 1.8; }

.tier-for {
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}

.tier-for-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.tier-for p { font-size: 0.87rem; color: var(--text-2); line-height: 1.65; }

.progression-section { border-top: 1px solid var(--border); }

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

.prog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.prog-arrow {
  font-size: 1.5rem;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 12px;
}

.prog-card h4 { font-size: 0.9rem; margin-bottom: 8px; }
.prog-card p { font-size: 0.83rem; color: var(--text-2); line-height: 1.6; }

/* ─── ABOUT PAGE ─────────────────────────── */
.about-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

.about-body p {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.85;
}

.about-body p + p { margin-top: 24px; }

.about-body h3 {
  font-size: 1.1rem;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--text);
}

.about-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
}

.sidebar-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.credential-list { list-style: none; }

.credential-list li {
  font-size: 0.86rem;
  color: var(--text-2);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.credential-list li:last-child { border-bottom: none; }

.sidebar-cta {
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}

.sidebar-cta p {
  font-size: 0.88rem;
  color: var(--text-2);
  margin-bottom: 16px;
  line-height: 1.6;
}

.sidebar-cta .btn { width: 100%; justify-content: center; }

/* ─── CONTACT PAGE ───────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-intro p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-note {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 32px;
}

.contact-note p {
  font-size: 0.87rem;
  color: var(--text-2);
  margin: 0;
  line-height: 1.65;
}

/* ─── FORM ───────────────────────────────── */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }

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

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

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

.btn-submit { width: 100%; justify-content: center; margin-top: 6px; }

.form-note {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 12px;
  line-height: 1.5;
}

/* ─── THANKS PAGE ────────────────────────── */
.thanks-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.thanks-inner { max-width: 520px; }

.thanks-icon {
  width: 52px; height: 52px;
  background: var(--orange-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.4rem;
}

.thanks-inner h1 { font-size: 2rem; margin-bottom: 16px; }
.thanks-inner p { font-size: 1.05rem; color: var(--text-2); margin-bottom: 36px; line-height: 1.75; }

/* ─── DIVIDER ────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .tier { grid-template-columns: 1fr; gap: 32px; padding: 36px; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
  .about-sidebar { position: static; }
}

@media (max-width: 860px) {
  :root { --section-gap: 80px; }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
  }

  .nav-links.open { display: flex; }

  .nav-links a:not(.btn) {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
  }

  .nav-links .btn { margin-top: 12px; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .diff-list { grid-template-columns: 1fr; gap: 36px; }
  .problem-grid { grid-template-columns: 1fr; }
  .progression-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { padding: 52px 32px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hero { padding-top: calc(var(--nav-h) + 60px); padding-bottom: 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .form-card { padding: 28px 24px; }
}
