
:root {
  --bg: #07080b;
  --bg-2: #0d1016;
  --card: rgba(255,255,255,.065);
  --card-2: rgba(255,255,255,.035);
  --line: rgba(255,255,255,.12);
  --text: #fff;
  --muted: #b9c0cc;
  --muted-2: #7e8798;
  --gold: #f5c542;
  --gold-2: #ffb800;
  --danger: #ffdd7a;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(0,0,0,.35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(245,197,66,.10), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,.08), transparent 22%),
    linear-gradient(180deg, #07080b, #0b0d12 45%, #07080b);
  z-index: -2;
}
a { color: inherit; text-decoration: none; }
svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.container { width: min(1180px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(7,8,11,.78);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  letter-spacing: -.7px;
  font-size: 22px;
}
.brand-mark {
  display: inline-flex;
  width: 52px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 12px 30px rgba(245,197,66,.18);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 800;
  color: #e8eaf0;
}
.site-nav a { position: relative; padding: 30px 0; }
.site-nav a:hover, .site-nav a.active { color: var(--gold); }
.site-nav a.active::after {
  content: "";
  position: absolute;
  height: 3px;
  border-radius: 999px;
  background: var(--gold);
  left: 0;
  right: 0;
  bottom: 0;
}
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(245,197,66,.55);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 900;
}
.nav-cta:hover { background: var(--gold); color: #111; }

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-home { padding: 82px 0 70px; }
.hero-bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: .65;
}
.orb-one {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(245,197,66,.28), transparent 68%);
  top: 80px; right: 5%;
}
.orb-two {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,.10), transparent 65%);
  bottom: 10px; left: 8%;
}
.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 64px;
  align-items: center;
}
.kicker {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 900;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1, .sub-hero h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -3px;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2px;
}
.lead {
  color: var(--muted);
  font-size: 19px;
  max-width: 720px;
}
.lead.small { font-size: 18px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 18px 46px rgba(245,197,66,.20);
}
.btn.ghost { border: 1px solid rgba(255,255,255,.20); color: #fff; }
.btn:hover { transform: translateY(-2px); }

.hero-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}
.hero-mini-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}
.hero-mini-stats b { display: block; color: var(--gold); font-size: 18px; }
.hero-mini-stats span { color: var(--muted); font-size: 14px; }

.growth-panel {
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025)),
    rgba(10,12,17,.86);
  box-shadow: var(--shadow);
}
.panel-top, .metric-row, .signal-list { display: flex; }
.panel-top {
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 26px;
}
.panel-top strong { color: var(--gold); }
.orbit-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(245,197,66,.26);
  background: rgba(245,197,66,.09);
}
.orbit-card span {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: rgba(245,197,66,.15);
  color: var(--gold);
}
.orbit-card h3 { margin-bottom: 6px; font-size: 26px; }
.orbit-card p { color: var(--muted); margin: 0; }
.metric-row {
  gap: 12px;
  margin: 18px 0;
}
.metric-row div {
  flex: 1;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
}
.metric-row span { display: block; color: var(--muted-2); font-size: 13px; }
.metric-row b { color: #fff; }
.signal-list { flex-wrap: wrap; gap: 10px; }
.signal-list span {
  padding: 10px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #e9ecf3;
  background: rgba(255,255,255,.04);
  font-size: 13px;
  font-weight: 800;
}

.logo-strip {
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.025);
}
.strip-wrap {
  min-height: 78px;
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.strip-wrap span { color: var(--muted-2); font-weight: 800; }
.strip-wrap b {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
}

.section {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}
.muted-section {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015));
}
.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.between {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}
.text-link { color: var(--gold); font-weight: 900; white-space: nowrap; }
.intro-grid, .two-col, .impact-layout, .contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 62px;
  align-items: center;
}
.problem-list { display: grid; gap: 16px; }
.problem-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.045);
}
.problem-item span, .values-grid span, .steps-grid span {
  color: var(--gold);
  font-weight: 900;
}
.problem-item p { margin: 0; color: var(--muted); }

.feature-grid, .values-grid, .service-detail-grid, .pricing-grid, .project-grid, .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-grid { grid-template-columns: repeat(4, 1fr); }
.feature-card, .values-grid article, .service-detail-grid article, .pricing-grid article, .project-grid article, .blog-grid article, .contact-card, .policy-content article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  padding: 26px;
}
.feature-card { min-height: 260px; }
.feature-card svg, .service-detail-grid svg {
  color: var(--gold);
  margin-bottom: 18px;
}
.feature-card h3 { font-size: 22px; margin-bottom: 12px; }
.feature-card p, .values-grid p, .service-detail-grid p, .project-grid p, .blog-grid p, .policy-content p, .rich-text p, .contact-card li {
  color: var(--muted);
}
.philosophy { background: #08090b; }
.steps-grid, .service-row, .process-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.steps-grid article, .service-row article, .process-line div {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
}
.steps-grid h3, .service-row h3 { font-size: 24px; }
.dark-card-section {
  background:
    radial-gradient(circle at 80% 30%, rgba(245,197,66,.12), transparent 28%),
    #0d1016;
}
.scoreboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.scoreboard div {
  min-height: 130px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
}
.scoreboard strong { display: block; color: var(--gold); font-size: 26px; }
.scoreboard span { color: var(--muted); }

.process-line { grid-template-columns: repeat(4, 1fr); }
.process-line b {
  display: inline-grid;
  place-items: center;
  width: 44px; height: 44px;
  color: #111;
  background: var(--gold);
  border-radius: 50%;
  margin-bottom: 18px;
}
.final-cta { border-bottom: 0; }
.cta-box {
  text-align: center;
  border: 1px solid rgba(245,197,66,.24);
  border-radius: 34px;
  padding: 58px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245,197,66,.18), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}
.cta-box p { color: var(--muted); max-width: 720px; margin-left: auto; margin-right: auto; }

.sub-hero {
  padding: 86px 0 70px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 20%, rgba(245,197,66,.15), transparent 30%),
    linear-gradient(160deg, rgba(255,255,255,.05), transparent 45%);
}
.sub-hero p { max-width: 820px; color: var(--muted); font-size: 19px; }
.rich-text { font-size: 18px; }
.values-grid { grid-template-columns: repeat(4, 1fr); }
.values-grid article span { display: block; margin-bottom: 18px; }
.service-detail-grid article ul, .pricing-grid article ul, .contact-card ul {
  padding-left: 20px;
  color: var(--muted);
}
.service-detail-grid article { min-height: 330px; }
.project-grid article span, .blog-grid article span, .plan {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(245,197,66,.10);
  color: var(--gold);
  font-weight: 900;
  font-size: 13px;
}
.project-grid a { color: var(--gold); font-weight: 900; }
.pricing-grid article { display: flex; flex-direction: column; }
.pricing-grid .featured {
  border-color: rgba(245,197,66,.50);
  box-shadow: 0 20px 70px rgba(245,197,66,.08);
}
.price {
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}
.pricing-grid .btn { margin-top: auto; }
.contact-card.big a {
  display: block;
  font-size: 25px;
  font-weight: 900;
  color: var(--gold);
  margin: 16px 0;
}
.policy-content { display: grid; gap: 18px; max-width: 900px; }

.site-footer {
  padding: 58px 0 24px;
  background: #050609;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 34px;
}
.footer-brand { margin-bottom: 18px; }
.site-footer p { color: var(--muted); max-width: 450px; }
.site-footer h4 { margin: 0 0 16px; color: #fff; }
.site-footer a:not(.brand) {
  display: block;
  color: var(--muted);
  margin: 9px 0;
}
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1040px) {
  .nav-wrap { align-items: flex-start; flex-direction: column; padding: 18px 0; }
  .site-nav { flex-wrap: wrap; gap: 12px 18px; }
  .site-nav a { padding: 0; }
  .site-nav a.active::after { display: none; }
  .nav-cta { display: none; }
  .hero-layout, .intro-grid, .two-col, .impact-layout, .contact-layout { grid-template-columns: 1fr; }
  .feature-grid, .values-grid, .process-line, .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .hero h1, .sub-hero h1 { letter-spacing: -1.8px; }
  .section { padding: 64px 0; }
  .hero-home { padding: 56px 0; }
  .hero-mini-stats, .metric-row, .feature-grid, .values-grid, .service-detail-grid, .pricing-grid, .project-grid, .blog-grid, .steps-grid, .service-row, .process-line, .scoreboard, .footer-grid { grid-template-columns: 1fr; }
  .section-head.between { display: block; }
  .cta-box { padding: 34px 22px; }
  .footer-bottom { flex-direction: column; }
}
