:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --ink: #0f172a;
  --muted: #5f6f89;
  --line: #dbe4f0;
  --accent: #2563eb;
  --accent-dark: #1d4ed8;
  --accent-soft: #dbeafe;
  --success: #14b8a6;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img, svg {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.section-pad.compact {
  padding: 72px 0;
}

.soft-bg {
  background: linear-gradient(180deg, #eef4ff 0%, #f8fafc 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(248, 250, 252, 0.82);
  border-bottom: 1px solid rgba(219, 228, 240, 0.75);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-size: 1.14rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, #0f172a, #2563eb);
  border-radius: 11px;
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  color: white !important;
  background: var(--ink);
  border-radius: 999px;
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 108px;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.14), transparent 28%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3, p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.08em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: -0.035em;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.card-grid,
.trust-row {
  display: flex;
  flex-wrap: wrap;
}

.hero-actions {
  gap: 14px;
  margin-bottom: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: var(--accent);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.button.primary:hover {
  background: var(--accent-dark);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.button.light {
  color: var(--ink);
  background: white;
  box-shadow: none;
}

.trust-row {
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  color: #334155;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(219, 228, 240, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.card-topline {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(20, 184, 166, 0.12);
}

.site-preview {
  padding: 18px;
  background: #0f172a;
  border-radius: 22px;
}

.preview-bar {
  width: 42%;
  height: 12px;
  margin-bottom: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
}

.preview-hero {
  width: 88%;
  height: 86px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #ffffff, #93c5fd);
  border-radius: 18px;
}

.preview-lines span,
.preview-cards span {
  display: block;
  border-radius: 999px;
}

.preview-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.preview-lines span {
  height: 10px;
  background: rgba(255,255,255,0.22);
}

.preview-lines span:nth-child(1) { width: 92%; }
.preview-lines span:nth-child(2) { width: 78%; }
.preview-lines span:nth-child(3) { width: 58%; }

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.preview-cards span {
  height: 58px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
}

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

.metric-grid div {
  padding: 14px;
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.metric-grid strong,
.metric-grid span {
  display: block;
}

.metric-grid strong {
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.split-intro {
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.7fr;
  gap: 36px;
  align-items: start;
}

.split-intro h2 {
  margin-bottom: 0;
}

.split-intro p:last-child,
.section-heading p,
.timeline p,
.service-card p,
.package-subtitle,
.package-card li,
.proof-grid span,
.faq-list p,
.cta-panel p,
.site-footer p {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.about-panel {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: stretch;
}

.about-card,
.about-facts div {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.045);
}

.about-card {
  padding: 42px;
  border-radius: var(--radius-lg);
}

.about-card p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-card p:last-child {
  margin-bottom: 0;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-facts div {
  padding: 24px;
  border-radius: var(--radius-md);
}

.about-facts strong,
.about-facts span {
  display: block;
}

.about-facts strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: -0.035em;
}

.about-facts span {
  color: var(--muted);
}

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

.work-card {
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.045);
}

.work-preview {
  min-height: 190px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}

.work-preview span {
  display: block;
  width: 72%;
  height: 74px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  box-shadow:
    0 34px 0 -22px rgba(255,255,255,0.18),
    0 68px 0 -46px rgba(255,255,255,0.16);
}

.work-preview strong {
  font-size: 1.08rem;
  letter-spacing: -0.035em;
}

.work-preview.consultant {
  background: linear-gradient(135deg, #1e293b, #0f766e);
}

.work-preview.product {
  background: linear-gradient(135deg, #111827, #4f46e5);
}

.work-content {
  padding: 24px;
}

.work-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-content p:not(.work-tag),
.work-content li {
  color: var(--muted);
}

.work-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.card-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.package-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.045);
}

.service-card {
  padding: 24px;
}

.service-card .icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-layout,
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.timeline span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 14px;
  font-weight: 900;
}

.package-grid {
  align-items: stretch;
}

.package-card {
  position: relative;
  padding: 28px;
}

.package-card.featured {
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 28px 70px rgba(37, 99, 235, 0.12);
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  background: var(--success);
  border-radius: 999px;
}

.package-card a {
  color: var(--accent);
  font-weight: 900;
}

.proof-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  padding: 42px;
  color: white;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-panel .eyebrow,
.proof-panel span {
  color: #bfdbfe;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.proof-grid div {
  padding: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
}

.final-cta {
  padding-top: 40px;
}

.cta-panel {
  padding: 64px 32px;
  color: white;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(147, 197, 253, 0.32), transparent 28%),
    linear-gradient(135deg, #1d4ed8, #0f172a);
  border-radius: var(--radius-lg);
}

.cta-panel p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: #dbeafe;
}

.cta-panel .eyebrow {
  color: #bfdbfe;
}

.site-footer {
  padding: 52px 0;
  background: #0b1120;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer strong,
.site-footer a {
  display: block;
}

.site-footer strong {
  margin-bottom: 12px;
}

.site-footer a:not(.brand) {
  margin: 8px 0;
  color: #cbd5e1;
}

.business-id {
  margin-top: 8px;
  color: #cbd5e1;
  font-size: 0.95rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-intro,
  .process-layout,
  .faq-layout,
  .about-panel,
  .proof-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid.four,
  .card-grid.three,
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .section-pad {
    padding: 70px 0;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.6rem, 16vw, 4.6rem);
  }

  .hero {
    padding-top: 76px;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-card,
  .about-card,
  .proof-panel,
  .cta-panel {
    border-radius: 22px;
  }

  .metric-grid,
  .card-grid.four,
  .card-grid.three,
  .work-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .proof-panel,
  .about-card,
  .cta-panel {
    padding: 30px 22px;
  }
}
