:root {
  --bg: #f6efe5;
  --bg-strong: #fffaf3;
  --ink: #1b1916;
  --muted: #5d564d;
  --line: rgba(27, 25, 22, 0.12);
  --card: rgba(255, 250, 243, 0.82);
  --green: #1a8e63;
  --green-soft: #dff4e7;
  --coral: #ff7e61;
  --coral-soft: #ffe3db;
  --shadow: 0 24px 80px rgba(34, 28, 20, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(26, 142, 99, 0.15), transparent 20%),
    linear-gradient(180deg, #f5ede2 0%, #f8f4ed 48%, #fffaf5 100%);
}

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

.page-shell {
  max-width: 1340px;
  margin: 0 auto;
  padding: 24px 24px 56px;
}

.site-header,
.site-footer,
.hero,
.metrics-strip,
.services-grid-section,
.pain-points,
.workflow-section,
.cta-panel {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand strong {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand small {
  font-size: 0.88rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 28px;
  padding: 28px 0 22px;
}

.hero-copy,
.hero-panel,
.metrics-strip,
.services-grid-section,
.pain-points,
.workflow-section,
.cta-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 34px 36px 40px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.92), rgba(255, 245, 237, 0.86));
  border: 1px solid rgba(27, 25, 22, 0.08);
  box-shadow: var(--shadow);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--green);
}

.hero h1,
.section-heading h2,
.preview-card h2,
.cta-panel h2 {
  font-family: "Fraunces", serif;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.3rem);
  max-width: 12ch;
}

.hero-text,
.section-heading p,
.column-intro,
.pain-card p,
.workflow-grid p,
.cta-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.button-primary {
  background: var(--ink);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
}

.hero-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(20, 20, 18, 0.96), rgba(35, 33, 29, 0.96));
  color: #fff7ef;
  box-shadow: var(--shadow);
}

.signal-board {
  height: 100%;
  min-height: 520px;
  border-radius: calc(var(--radius-xl) - 6px);
  padding: 18px;
  background:
    radial-gradient(circle at 80% 12%, rgba(26, 142, 99, 0.24), transparent 24%),
    radial-gradient(circle at 18% 80%, rgba(255, 126, 97, 0.2), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.signal-head {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.signal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.service-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.switcher-pill {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: inherit;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
}

.switcher-pill.active {
  background: #fff7ef;
  color: var(--ink);
}

.preview-stack {
  position: relative;
  margin-top: 22px;
}

.preview-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 252, 247, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 340px;
}

.preview-label {
  margin: 0 0 16px;
  color: #9fe7c8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 800;
}

.preview-card h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3rem);
}

.preview-card ul,
.service-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-card li,
.service-list li {
  position: relative;
  padding-left: 18px;
}

.preview-card li + li,
.service-list li + li {
  margin-top: 12px;
}

.preview-card li::before,
.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.metrics-strip,
.services-grid-section,
.pain-points,
.workflow-section,
.cta-panel {
  margin-top: 28px;
  padding: 28px;
  background: rgba(255, 251, 245, 0.76);
  border: 1px solid rgba(27, 25, 22, 0.08);
  box-shadow: var(--shadow);
}

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

.metrics-strip div {
  padding: 16px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(27, 25, 22, 0.08);
}

.metrics-strip strong {
  display: block;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 800;
}

.metrics-strip span {
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 780px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.section-heading p {
  margin: 0;
}

.services-grid,
.pain-grid,
.workflow-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-column,
.pain-card,
.workflow-grid article {
  border-radius: var(--radius-lg);
  background: var(--bg-strong);
  border: 1px solid rgba(27, 25, 22, 0.1);
}

.service-column {
  padding: 24px;
}

.column-kicker {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-column h3,
.pain-card h3,
.workflow-grid h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.18;
}

.column-intro {
  margin: 14px 0 18px;
}

.service-list {
  color: var(--ink);
  line-height: 1.6;
}

.accent-green {
  background: linear-gradient(180deg, #f3fff8, #ebfbf1);
}

.accent-coral {
  background: linear-gradient(180deg, #fff7f2, #fff0ea);
}

.pain-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pain-card {
  display: block;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.pain-card:hover,
.pain-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(30, 24, 18, 0.12);
}

.pain-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(27, 25, 22, 0.06);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pain-card p {
  margin: 14px 0 0;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.workflow-grid article {
  padding: 22px;
}

.workflow-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(26, 142, 99, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 800;
}

.workflow-grid p {
  margin: 14px 0 0;
}

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

.cta-panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
}

.cta-panel p {
  max-width: 56ch;
  margin: 12px 0 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 4px 8px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  max-width: 34ch;
  line-height: 1.6;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

@media (max-width: 1120px) {
  .hero,
  .services-grid,
  .pain-grid,
  .workflow-grid,
  .metrics-strip,
  .cta-panel,
  .site-footer {
    grid-template-columns: 1fr;
    display: grid;
  }

  .cta-panel,
  .site-footer {
    align-items: start;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 16px 16px 40px;
  }

  .site-header {
    padding-bottom: 20px;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero-copy,
  .hero-panel,
  .metrics-strip,
  .services-grid-section,
  .pain-points,
  .workflow-section,
  .cta-panel {
    padding: 22px;
  }

  .signal-board {
    min-height: auto;
  }

  .preview-card {
    min-height: auto;
    padding: 22px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a {
    padding: 10px 13px;
    font-size: 0.9rem;
  }
}
