:root {
  --bg: #0d1117;
  --bg-soft: #121924;
  --text: #0f1720;
  --white: #ffffff;
  --muted: #687386;
  --line: #d9e0e8;
  --brand: #0b63f6;
  --brand-dark: #0847af;
  --panel: #ffffff;
  --dark-panel: #111826;
  --shadow: 0 18px 50px rgba(6, 18, 38, 0.18);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #f4f6f8;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(13, 17, 23, 0.84);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}
.brand-mark {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: .9;
  letter-spacing: .02em;
}
.brand-sub {
  font-size: .72rem;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.72);
}
.brand { color: var(--white); }
.nav {
  display: flex;
  gap: 1.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 12px;
  font-weight: 800;
  padding: .95rem 1.35rem;
  transition: .2s ease;
  border: 0;
  cursor: pointer;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #1474ff 0%, #0b63f6 100%);
  box-shadow: 0 10px 24px rgba(11,99,246,0.28);
}
.btn-primary:hover { background: linear-gradient(180deg, #1f7cff 0%, #0957dc 100%); }
.btn-secondary {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(11,99,246,.28), transparent 28%),
    linear-gradient(130deg, rgba(13,17,23,.96), rgba(13,17,23,.84)),
    linear-gradient(180deg, #1a2633, #0d1117);
  color: var(--white);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.15));
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  padding: 5.5rem 0 4rem;
}
.eyebrow {
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
  color: var(--brand);
  margin: 0 0 .8rem;
}
.hero .eyebrow { color: #8ab8ff; }
.hero h1,
.section-head h2,
.cta-box h2,
.about-grid h2,
.contact-grid h2,
.section-dark h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  margin: 0;
}
.hero h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  max-width: 10ch;
}
.hero-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.86);
  max-width: 38rem;
  margin: 1.1rem 0 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 1.5rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.2rem;
  padding: 0;
  list-style: none;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-weight: 600;
}
.hero-points li::before {
  content: "•";
  margin-right: .45rem;
  color: #8ab8ff;
}
.hero-card {
  align-self: end;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}
.card-top {
  font-weight: 800;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.86);
  margin-bottom: 1rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.stat-box {
  background: rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 1rem;
}
.stat-box strong {
  display: block;
  font-size: 1.9rem;
  margin-top: .25rem;
}
.stat-label {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.stat-box.wide {
  grid-column: 1 / -1;
}
.stat-box p {
  margin: .35rem 0 0;
  color: rgba(255,255,255,.86);
}
.mini-chart {
  display: flex;
  align-items: end;
  gap: .6rem;
  height: 96px;
  padding: 1.1rem .2rem 0;
}
.mini-chart span {
  display: block;
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, #56a0ff 0%, #0b63f6 100%);
}
.mini-chart span:nth-child(1) { height: 38%; }
.mini-chart span:nth-child(2) { height: 54%; }
.mini-chart span:nth-child(3) { height: 48%; }
.mini-chart span:nth-child(4) { height: 74%; }
.mini-chart span:nth-child(5) { height: 66%; }
.mini-chart span:nth-child(6) { height: 88%; }

.proof-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  padding: 1.4rem 0;
}
.proof-grid strong { display: block; margin-bottom: .3rem; }
.proof-grid p { margin: 0; color: var(--muted); }

.section { padding: 5rem 0; }
.section-head {
  text-align: center;
  margin-bottom: 2.2rem;
}
.section-head.left { text-align: left; }
.section-head h2,
.about-grid h2,
.contact-grid h2,
.cta-box h2,
.section-dark h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}
.section-head p:last-child { color: var(--muted); margin-top: .7rem; }
.cards.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #edf1f4;
}
.service-card h3 { margin: .8rem 0 .55rem; font-size: 1.2rem; }
.service-card p { margin: 0; color: var(--muted); }
.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: rgba(11,99,246,.12);
  color: var(--brand);
  border-radius: 14px;
  font-size: 1.5rem;
  font-weight: 800;
}

.section-dark {
  background: linear-gradient(180deg, #0f1720 0%, #121a24 100%);
  color: #fff;
}
.light p { color: rgba(255,255,255,.72) !important; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 1.35rem;
}
.step-num {
  display: inline-block;
  margin-bottom: .8rem;
  color: #8ab8ff;
  font-weight: 800;
  letter-spacing: .08em;
}
.step h3 { margin: 0 0 .45rem; }
.step p { margin: 0; color: rgba(255,255,255,.78); }

.about-grid,
.contact-grid,
.cta-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2rem;
  align-items: start;
}
.about-panel,
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  border: 1px solid #edf1f4;
}
.about-panel h3 { margin-top: 0; }
.about-panel ul { margin: .6rem 0 0; padding-left: 1.2rem; }
.about-panel li + li { margin-top: .45rem; }

.cta-band { padding-top: 0; }
.cta-box {
  background: linear-gradient(135deg, #0d1117, #13253d);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}
.cta-box p { color: rgba(255,255,255,.78); }

.contact-list {
  display: grid;
  gap: .85rem;
  margin-top: 1.5rem;
}
.contact-list div {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: .85rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-list span { color: var(--muted); }
.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: grid;
  gap: .45rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e0ea;
  border-radius: 12px;
  padding: .95rem 1rem;
  font: inherit;
  background: #fbfcfe;
}

.site-footer {
  background: #0d1117;
  color: rgba(255,255,255,.82);
  padding: 1.5rem 0;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer-brand { font-size: 2rem; }
.footer-wrap p { margin: .15rem 0; }
.footer-right { text-align: right; }

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .cta-box,
  .proof-grid,
  .cards.three-up,
  .steps {
    grid-template-columns: 1fr;
  }
  .nav { display: none; }
  .nav-cta { display: none; }
}

@media (max-width: 640px) {
  .hero-grid { padding: 4.4rem 0 3rem; }
  .hero h1 { max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right { text-align: left; }
}


.calendly-embed-card {
  display: block;
}

.calendly-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217, 20, 29, 0.08);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.calendly-title {
  margin: 0 0 10px;
}

.calendly-copy {
  margin: 0 0 16px;
  color: var(--muted);
}

.calendly-inline-widget {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}
