:root {
  --ink: #102033;
  --muted: #5c6b7a;
  --line: #dce5ec;
  --soft: #f5f8fb;
  --paper: #ffffff;
  --accent: #2e7d75;
  --accent-dark: #195b55;
  --warm: #f2eadc;
  --shadow: 0 22px 70px rgba(16, 32, 51, 0.12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f9fbfd 0%, #ffffff 40%);
  line-height: 1.55;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 229, 236, 0.8);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(102px, 11.9vw, 149px);
  height: auto;
  flex: 0 0 auto;
}

.brand-tagline {
  display: inline-block;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.15;
  white-space: nowrap;
}

.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--ink); }
.site-nav .nav-cta {
  padding: 10px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
}

.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }

.section { padding: clamp(60px, 9vw, 110px) clamp(20px, 5vw, 70px); }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  min-height: 76vh;
}

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

h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -0.045em; }
h1 { max-width: 880px; font-size: clamp(3rem, 8vw, 6.2rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.7rem); }
h3 { font-size: 1.25rem; }

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  color: var(--muted);
}

.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
}
.button.primary { background: var(--accent); color: white; box-shadow: 0 14px 30px rgba(46, 125, 117, 0.25); }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary { background: white; border-color: var(--line); color: var(--ink); }
.button.secondary:hover { border-color: var(--ink); }

.microcopy { color: var(--muted); font-size: 0.95rem; margin-top: 18px; }

.hero-card, .panel, .service-card, .problem article, .steps article, .contact-card, .fit-card {
  background: var(--paper);
  border: 1px solid rgba(220, 229, 236, 0.9);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: clamp(24px, 4vw, 34px);
  transform: rotate(1deg);
}
.card-label, .tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--warm);
  color: #6d4b13;
  font-size: 0.8rem;
  font-weight: 800;
}
.hero-card h2 { font-size: 1.8rem; margin-bottom: 22px; }
dl { margin: 0; display: grid; gap: 12px; }
dl div { padding: 14px; border-radius: 16px; background: var(--soft); }
dt { font-size: 0.76rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 800; }
dd { margin: 3px 0 0; font-weight: 700; }
.next-action { margin: 18px 0 0; color: var(--muted); }

.section-heading { max-width: 980px; margin-bottom: 34px; }
.section-heading.narrow { max-width: 760px; margin-inline: auto; text-align: center; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.1rem; }

.problem-grid, .service-grid, .steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.problem article, .service-card, .steps article { padding: 24px; box-shadow: none; }
.problem article p, .service-card p, .steps p { color: var(--muted); margin-bottom: 0; }

.services { background: var(--soft); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-card { min-height: 190px; }

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.panel { padding: clamp(24px, 4vw, 34px); }
blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.panel p { color: var(--muted); }
.brief-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.brief-list li { padding: 13px 14px; background: var(--soft); border-radius: 14px; }

.process { background: linear-gradient(180deg, #ffffff 0%, var(--soft) 100%); }
.steps { counter-reset: step; }
.steps article span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  margin-bottom: 18px;
}

.fit-card {
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: var(--ink);
  color: white;
}
.fit-card .eyebrow { color: #8fd6cd; }
.fit-card p { color: rgba(255,255,255,0.74); }
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pill-list li {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.06);
}

.contact-card {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(30px, 6vw, 58px);
}
.contact-card p { color: var(--muted); font-size: 1.1rem; }
.contact-actions { justify-content: center; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.93rem;
}
.site-footer a { color: var(--ink); font-weight: 700; text-decoration: none; }

@media (max-width: 920px) {
  .hero, .comparison, .fit-card { grid-template-columns: 1fr; }
  .problem-grid, .service-grid, .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .site-header { align-items: flex-start; }
  .brand { gap: 10px; }
  .brand-logo { width: 128px; }
  .brand-tagline { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 14px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; }
  .problem-grid, .service-grid, .steps { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { transform: none; }
  .site-footer { flex-direction: column; }
}
