:root {
  color-scheme: light;
  --ink: #171717;
  --muted: #5f666d;
  --line: #dfe4e8;
  --paper: #ffffff;
  --soft: #f5f7f8;
  --soft-2: #eef6f5;
  --accent: #f45a37;
  --accent-dark: #b83218;
  --teal: #0b746f;
  --green: #237b4b;
  --amber: #f2b705;
  --shadow: 0 18px 60px rgba(31, 41, 51, 0.12);
  --shadow-soft: 0 24px 80px rgba(20, 31, 43, 0.1);
  --graphite: #202832;
  --panel: rgba(255, 255, 255, 0.82);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fbfcfd 0%, #ffffff 28%, #f7faf9 100%);
  font-family:
    Pretendard,
    "Apple SD Gothic Neo",
    "Malgun Gothic",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
select,
textarea {
  font: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
select,
input,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(15, 143, 136, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(255, 255, 255, 0.42);
  border-bottom: 1px solid rgba(223, 228, 232, 0.36);
  backdrop-filter: blur(14px) saturate(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(1.08);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease,
    -webkit-backdrop-filter 180ms ease;
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.2;
}

.brand small {
  margin: 0 0 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 981px) {
  .site-header {
    background: rgba(255, 255, 255, 0);
    border-bottom-color: rgba(223, 228, 232, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .site-header:not([data-header]) {
    background: rgba(255, 255, 255, 0.42);
    border-bottom-color: rgba(223, 228, 232, 0.36);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
  }

  .site-header:not(.is-scrolled) .nav,
  .site-header:not(.is-scrolled) .brand small {
    color: #252b31;
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.42);
    border-bottom-color: rgba(223, 228, 232, 0.36);
    backdrop-filter: blur(14px) saturate(1.08);
    -webkit-backdrop-filter: blur(14px) saturate(1.08);
  }
}

.nav a,
.footer-links a {
  transition: color 160ms ease;
}

.nav a:hover,
.footer-links a:hover {
  color: var(--accent-dark);
}

.header-cta {
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 26px rgba(23, 23, 23, 0.1);
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  min-width: 44px;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(23, 23, 23, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    width 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.mobile-menu-toggle span:first-child {
  width: 14px;
}

.mobile-menu-toggle span:last-child {
  width: 21px;
}

.mobile-menu-toggle.is-open {
  align-items: center;
}

.mobile-menu-toggle.is-open span:first-child {
  width: 18px;
  transform: translateY(4.5px) rotate(38deg);
}

.mobile-menu-toggle.is-open span:last-child {
  width: 18px;
  transform: translateY(-4.5px) rotate(-38deg);
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: max(20px, calc((100vw - var(--container)) / 2));
  right: max(20px, calc((100vw - var(--container)) / 2));
  z-index: 25;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(223, 228, 232, 0.92);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.1);
}

.mobile-menu-panel[hidden] {
  display: none;
}

.mobile-menu-links {
  display: grid;
  gap: 4px;
}

.mobile-menu-links a,
.mobile-menu-cta {
  display: flex;
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  font-weight: 900;
}

.mobile-menu-links a {
  padding: 10px 12px;
  color: var(--ink);
}

.mobile-menu-links a:hover {
  background: #fff7f3;
  color: var(--accent-dark);
}

.mobile-menu-cta {
  justify-content: center;
  padding: 11px 14px;
  background: linear-gradient(135deg, var(--accent), #e34825);
  color: #fff;
}

.hero {
  position: relative;
  min-height: 96svh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  color: #141414;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fbfcfd 82%);
  z-index: -1;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  filter: sepia(0.12) saturate(0.82) contrast(0.96) brightness(1.02);
  transition: opacity 700ms ease;
}

.hero-video.is-ready {
  opacity: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 20%, rgba(15, 143, 136, 0.1), transparent 30%),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.98) 38%, rgba(255, 255, 255, 0.66) 68%, rgba(255, 255, 255, 0.12) 100%),
    url("/assets/enterprise-hero.webp") right center / cover no-repeat;
}

.hero.is-video-ready .hero-bg {
  background:
    radial-gradient(circle at 18% 20%, rgba(244, 90, 55, 0.08), transparent 28%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 36%, rgba(255, 248, 244, 0.56) 62%, rgba(244, 225, 211, 0.12) 100%);
}

.hero-content {
  padding: 144px 0 112px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
li,
dd,
dt,
td,
th,
label,
summary,
span {
  overflow-wrap: break-word;
  word-break: keep-all;
}

a[href^="http"] {
  overflow-wrap: anywhere;
  word-break: break-all;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: 2.61rem;
  line-height: 1.05;
  font-weight: 900;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 660px;
  margin: 30px 0 0;
  color: #303437;
  font-size: 1.22rem;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--accent), #e34825);
  color: white;
  box-shadow: 0 12px 28px rgba(255, 92, 53, 0.24);
}

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

.button.secondary {
  border: 1px solid rgba(23, 23, 23, 0.22);
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.hero-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 700px;
  margin-top: 30px;
}

.hero-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: #24545a;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 10px 32px rgba(15, 143, 136, 0.06);
}

.hero-reward {
  max-width: 520px;
  display: grid;
  gap: 12px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 50px rgba(20, 31, 43, 0.09);
  backdrop-filter: blur(14px);
}

.hero-reward strong {
  color: var(--teal);
  font-weight: 900;
}

.hero-reward ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-reward li {
  position: relative;
  padding-left: 22px;
  color: #30363b;
  font-weight: 800;
}

.hero-reward li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.button.wide {
  width: 100%;
}

.hero-metrics {
  max-width: 760px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 52px 0 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid rgba(23, 23, 23, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(20, 31, 43, 0.08);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  font-size: 1.5rem;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-note {
  margin: 24px 0 0;
  color: #3e454b;
  font-size: 0.98rem;
  font-weight: 800;
}

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 22px 0 34px;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.band {
  background: var(--soft);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.proof-strip span {
  display: grid;
  min-height: 74px;
  align-content: center;
  gap: 2px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: #353b40;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(20, 31, 43, 0.06);
}

.proof-strip span:first-child {
  border-color: rgba(244, 90, 55, 0.26);
  background: linear-gradient(180deg, #fff, #fff6f3);
}

.proof-strip strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

.proof-strip small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.philosophy-section {
  background:
    linear-gradient(180deg, #fff, #fff8f5);
}

.letter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 56px;
  align-items: start;
}

.letter-grid h2 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.16;
}

.founder-letter {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 18px 38px;
}

.founder-letter::before,
.founder-letter::after {
  position: absolute;
  color: rgba(244, 90, 55, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-style: normal;
  line-height: 1;
}

.founder-letter::before {
  top: -6px;
  left: 0;
  content: "“";
}

.founder-letter::after {
  right: 0;
  bottom: -18px;
  content: "”";
}

.founder-letter p {
  margin: 0;
  color: #30363b;
  font-size: 1.08rem;
  line-height: 1.72;
}

.letter-sign {
  margin-top: 4px;
  color: var(--accent-dark);
  font-weight: 900;
}

.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.decision-strip div {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(15, 143, 136, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4faf9);
}

.decision-strip strong {
  font-size: 1rem;
  font-weight: 900;
}

.decision-strip span {
  color: var(--muted);
  font-size: 0.92rem;
}

.enterprise-section {
  padding-top: 54px;
}

.enterprise-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 38px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(223, 228, 232, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 250, 249, 0.86)),
    radial-gradient(circle at 100% 0%, rgba(255, 92, 53, 0.1), transparent 26%);
  box-shadow: var(--shadow-soft);
}

.enterprise-copy h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.18;
}

.enterprise-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.enterprise-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(223, 228, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.enterprise-grid span {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
}

.enterprise-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.08rem;
}

.enterprise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.split-heading,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.split-heading {
  margin-bottom: 36px;
}

.split-heading h2,
.two-column h2 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.18;
}

.split-heading p,
.two-column p,
.lead-text {
  color: var(--muted);
  font-size: 1.04rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  background: #f9fafb;
  color: #3a4046;
  font-size: 0.92rem;
}

td:last-child {
  color: var(--green);
  font-weight: 900;
}

tr:last-child td {
  border-bottom: 0;
}

.system-grid,
.process-grid,
.pricing-grid,
.portfolio-grid,
.checklist {
  display: grid;
  gap: 16px;
}

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

.system-grid article,
.process-grid article,
.price-card,
.portfolio-grid article,
.calculator,
.lead-form,
.diagnosis-form,
.diagnosis-result,
.domain-panel,
.callout {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.system-grid article,
.process-grid article,
.price-card {
  padding: 24px;
}

.system-grid span,
.process-grid span,
.domain-panel span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.system-grid h3,
.process-grid h3,
.price-card h3,
.portfolio-grid h3 {
  margin: 18px 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.system-grid p,
.process-grid p,
.price-card p,
.portfolio-grid p {
  margin: 0;
  color: var(--muted);
}

.domain-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
}

.domain-panel div {
  min-height: 142px;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--soft));
}

.launch-stack {
  display: grid;
  gap: 16px;
}

.section-image {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.section-image img {
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
}

.domain-panel p {
  margin: 14px 0 2px;
  color: var(--ink);
  font-weight: 900;
}

.domain-panel small {
  color: var(--muted);
}

.callout {
  margin-top: 26px;
  padding: 20px;
  border-left: 5px solid var(--accent);
}

.callout p {
  margin: 8px 0 0;
}

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

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

.price-card {
  display: flex;
  flex-direction: column;
}

.price-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.price-actions .button {
  width: 100%;
  min-height: 44px;
  justify-content: center;
  padding-inline: 12px;
  font-size: 0.92rem;
}

.price-card.featured {
  border-color: rgba(255, 92, 53, 0.45);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(255, 92, 53, 0.45), rgba(15, 143, 136, 0.38)) border-box;
  box-shadow: var(--shadow-soft);
}

.price-card h3 small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-minimize-card {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 92, 53, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 247, 243, 0.92), rgba(244, 250, 249, 0.86)),
    #fff;
}

.price-minimize-card h3 {
  margin: 0;
  font-size: 1.48rem;
  line-height: 1.25;
}

.price-minimize-card p {
  max-width: 980px;
  margin: 0;
  color: var(--muted);
}

.minimize-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.minimize-list li {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 16px 16px 16px 46px;
  border: 1px solid rgba(223, 228, 232, 0.88);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
}

.minimize-list li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  content: "❌";
  font-size: 1rem;
  line-height: 1;
}

.minimize-list strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.35;
}

.minimize-list span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .pricing-grid.simple-pricing {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .minimize-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .pricing-grid.simple-pricing {
    grid-template-columns: 1fr;
  }

  .price-minimize-card {
    padding: 18px;
  }

  .minimize-list {
    grid-template-columns: 1fr;
  }
}

.tag {
  align-self: flex-start;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--soft-2);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
}

.price {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 1.7rem;
  font-weight: 900;
}

.price span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.price-support-note {
  margin-top: 12px;
  padding: 14px 16px;
  border-left: 4px solid var(--accent);
  background: #fff7f3;
  color: #7a2a18;
  font-weight: 900;
}

.price-support-note.muted-note {
  border-left-color: var(--teal);
  background: #f4faf9;
  color: #24545a;
}

.startup-price {
  display: grid;
  gap: 2px;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid rgba(244, 90, 55, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff8f5, #fff);
}

.startup-price span,
.startup-price small {
  color: #7a3a2c;
  font-size: 0.82rem;
  font-weight: 900;
}

.startup-price strong {
  color: var(--accent-dark);
  font-size: 1.28rem;
  line-height: 1.25;
}

.price-card ul,
.plain-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.plain-list li {
  position: relative;
  padding-left: 20px;
  color: #495057;
}

.price-card li::before,
.plain-list li::before {
  position: absolute;
  top: 0.67em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.addon-table {
  margin-top: 24px;
}

.calculator,
.lead-form,
.diagnosis-form,
.diagnosis-result {
  display: grid;
  gap: 18px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.diagnosis-section {
  background:
    radial-gradient(circle at 0 20%, rgba(15, 143, 136, 0.08), transparent 30%),
    linear-gradient(180deg, #fff, #f7fbfa);
}

.diagnosis-shell {
  display: block;
  max-width: 920px;
}

.diagnosis-form {
  background: rgba(255, 255, 255, 0.92);
}

.diagnosis-form-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: 18px;
  align-items: center;
  margin-top: 2px;
  padding: 18px;
  border: 1px solid rgba(244, 90, 55, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7f3, #fff);
}

.diagnosis-form-footer strong {
  display: block;
  color: var(--accent-dark);
  font-size: 1.06rem;
  font-weight: 900;
}

.diagnosis-form-footer p {
  margin: 6px 0 0;
  color: #485158;
  font-size: 0.94rem;
}

.diagnosis-progress,
.diagnosis-score {
  display: grid;
  gap: 8px;
}

.diagnosis-progress span,
.diagnosis-score span {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.diagnosis-progress div,
.diagnosis-score div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #fff0eb;
}

.diagnosis-progress i,
.diagnosis-score i {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), #ff9a75);
  transition: width 180ms ease;
}

.diagnosis-question {
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(244, 90, 55, 0.16);
  border-radius: 8px;
  background: #fbfefd;
}

.diagnosis-question legend {
  padding: 0 0 4px;
  color: var(--ink);
  font-size: 1rem;
}

.diagnosis-question label {
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #d7e4e2;
  border-radius: 8px;
  background: #fff;
  color: #384047;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.diagnosis-question label:has(input:checked) {
  border-color: rgba(244, 90, 55, 0.58);
  background: #fff0eb;
  color: #5b170b;
}

.diagnosis-result {
  position: sticky;
  top: 92px;
  border-color: rgba(244, 90, 55, 0.24);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(244, 90, 55, 0.62), rgba(255, 154, 117, 0.44)) border-box;
}

.result-kicker {
  margin: 0;
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.diagnosis-result > strong {
  font-size: 1.72rem;
  line-height: 1.25;
}

.diagnosis-result p {
  margin: 0;
  color: #485158;
}

.diagnosis-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.diagnosis-summary div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9fbfb;
}

.diagnosis-summary dt {
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.diagnosis-summary dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.diagnosis-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.diagnosis-list li {
  position: relative;
  padding-left: 21px;
  color: #364047;
  font-weight: 800;
}

.diagnosis-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.diagnosis-report-box {
  display: grid;
  gap: 8px;
  padding: 15px;
  border: 1px solid rgba(244, 90, 55, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7f3, #fff);
}

.diagnosis-report-box strong {
  color: var(--accent-dark);
  font-weight: 900;
}

.diagnosis-report-box p {
  font-size: 0.92rem;
}

.diagnosis-report-box ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: #364047;
  font-size: 0.9rem;
  font-weight: 800;
}

.diagnosis-honest {
  padding: 13px;
  border-radius: 8px;
  background: #fff7f3;
  font-size: 0.92rem;
  font-weight: 800;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  color: #30363b;
  font-weight: 800;
}

.label-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0 0 8px;
  font-weight: 900;
}

fieldset label,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cfd6dc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.estimate {
  display: block;
  padding: 18px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-size: 1.35rem;
  font-weight: 900;
}

.estimate-note,
.form-status {
  margin: 0;
  color: var(--muted);
}

.form-status[data-tone="success"] {
  color: var(--green);
  font-weight: 800;
}

.form-status[data-tone="error"] {
  color: var(--accent-dark);
  font-weight: 800;
}

.record-memo {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.record-memo textarea {
  min-height: 74px;
  resize: vertical;
}

.admin-payment-column {
  display: grid;
  gap: 16px;
}

.payment-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.payment-summary-grid article {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.payment-summary-grid span,
.payment-summary-grid small {
  color: var(--muted);
  font-size: 0.82rem;
}

.payment-summary-grid strong {
  color: var(--ink);
  font-size: 1.55rem;
}

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

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

.checklist span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}

.checklist span::before {
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

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

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

.portfolio-grid article {
  overflow: hidden;
}

.sample-card {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.sample-card:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 143, 136, 0.32);
  box-shadow: var(--shadow-soft);
}

.sample-trigger {
  width: 100%;
  display: grid;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.portfolio-grid img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  background: #e8eef0;
}

.sample-body {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.sample-body strong {
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.3;
}

.sample-body span {
  color: var(--muted);
}

.sample-body em {
  margin-top: 4px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 900;
}

.portfolio-grid h3,
.portfolio-grid p {
  padding: 0 18px;
}

.portfolio-grid h3 {
  margin-top: 18px;
}

.portfolio-grid p {
  margin-bottom: 20px;
}

.portfolio-page-hero {
  padding: 92px 0 54px;
}

.portfolio-page-hero h1 {
  margin: 0;
  font-size: 3.2rem;
  line-height: 1.08;
}

.portfolio-page-hero .split-heading {
  margin-bottom: 0;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.portfolio-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 999px;
  background: #fff;
  color: #24545a;
  font-size: 0.86rem;
  font-weight: 900;
}

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

.portfolio-cta-band {
  padding: 64px 0;
  background: #111;
  color: #fff;
}

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

.portfolio-cta-panel h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

.portfolio-cta-panel p {
  margin: 10px 0 0;
  color: #d8dde0;
}

.sample-dialog {
  width: min(100% - 32px, 1120px);
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid rgba(223, 228, 232, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 120px rgba(20, 31, 43, 0.28);
  overflow: auto;
}

.sample-dialog::backdrop {
  background: rgba(17, 24, 31, 0.58);
  backdrop-filter: blur(6px);
}

.checkout-dialog {
  width: min(100% - 32px, 620px);
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid rgba(223, 228, 232, 0.94);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 28px 120px rgba(20, 31, 43, 0.28);
  overflow: auto;
}

.checkout-dialog::backdrop {
  background: rgba(17, 24, 31, 0.58);
  backdrop-filter: blur(6px);
}

.checkout-card {
  display: grid;
  gap: 16px;
  padding: 34px;
}

.checkout-card h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
}

.checkout-summary {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 8px;
  background: #f5fbfa;
}

.checkout-summary strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.checkout-summary span {
  color: var(--accent-dark);
  font-size: 1.7rem;
  font-weight: 900;
}

.checkout-summary small,
.checkout-note {
  color: var(--muted);
}

.checkout-note {
  margin: 0;
}

.sample-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  min-height: 620px;
}

.sample-preview {
  margin: 0;
  background: #e8eef0;
}

.sample-preview img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: contain;
}

.sample-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 34px;
}

.sample-panel h2,
.sample-panel p {
  margin: 0;
}

.sample-panel h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.sample-insight {
  display: grid;
  gap: 10px;
  margin: 0;
}

.sample-insight div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.sample-insight dt {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.sample-insight dd {
  margin: 5px 0 0;
  color: #343a40;
}

.sample-section-list h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.sample-section-list ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sample-section-list li {
  position: relative;
  padding-left: 18px;
  color: #485057;
}

.sample-section-list li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

.sample-close {
  position: sticky;
  top: 12px;
  float: right;
  z-index: 3;
  width: 42px;
  height: 42px;
  margin: 12px 12px -54px 0;
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  box-shadow: 0 8px 24px rgba(20, 31, 43, 0.12);
}

.apply-layout {
  align-items: start;
}

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

.consent {
  color: #454b51;
  font-size: 0.92rem;
}

.consent a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #111;
  color: #fff;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
}

.site-footer p {
  margin: 6px 0 0;
  color: #cfd3d6;
}

.business-info {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  max-width: 760px;
  margin-top: 14px;
  color: #aeb6ba;
  font-size: 0.82rem;
  line-height: 1.55;
}

.business-info a {
  color: #d7dde0;
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: #e8ecef;
}

.policy {
  max-width: 820px;
}

.policy h1 {
  margin: 0 0 18px;
  font-size: 2.55rem;
  line-height: 1.15;
}

.policy h2 {
  margin: 36px 0 8px;
  font-size: 1.32rem;
}

.policy p {
  color: var(--muted);
}

.payment-page {
  min-height: 100svh;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(245, 250, 249, 0.88)),
    url("/assets/enterprise-launch.webp") center / cover no-repeat;
}

.payment-shell {
  width: min(100% - 32px, 620px);
  min-height: 100svh;
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 0 auto;
  padding: 42px 0;
}

.payment-brand {
  width: max-content;
}

.payment-card {
  padding: 32px;
  border: 1px solid rgba(223, 228, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.payment-card h1 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.2;
}

.payment-summary {
  display: grid;
  gap: 10px;
  margin: 26px 0;
}

.payment-summary div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.payment-summary dt {
  color: var(--muted);
  font-weight: 800;
}

.payment-summary dd {
  margin: 0;
  text-align: right;
  font-weight: 900;
}

.payment-copy {
  margin: 0 0 18px;
  color: var(--muted);
}

.payment-next-steps {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 8px;
  background: #f5fbfa;
}

.payment-next-steps strong {
  color: var(--teal);
}

.payment-next-steps ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: #30363b;
}

.payment-policy-link {
  margin: 14px 0 0;
  text-align: center;
}

.payment-policy-link a {
  color: var(--teal);
  font-weight: 900;
}

.payment-legal-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 12px;
  color: #5f696e;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.payment-legal-info a {
  color: var(--ink);
  font-weight: 800;
}

.optional-label {
  display: inline-flex;
  width: fit-content;
  margin-left: 4px;
  padding: 2px 6px;
  border-radius: 999px;
  background: var(--soft-2);
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 900;
  vertical-align: middle;
}

.mobile-sticky-cta {
  display: none;
}

.page-hero {
  padding: 116px 0 72px;
  background:
    linear-gradient(135deg, #ffffff 0%, #f7faf9 54%, #edf6f4 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 3.65rem;
  line-height: 1.08;
  font-weight: 900;
}

.page-lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: #333b41;
  font-size: 1.16rem;
}

.page-hero-card,
.page-image-card {
  overflow: hidden;
  border: 1px solid rgba(223, 228, 232, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.page-hero-card {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.page-hero-card strong {
  font-size: 1.25rem;
  line-height: 1.3;
}

.page-hero-card p {
  margin: 0;
  color: var(--muted);
}

.page-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-hero-card li {
  position: relative;
  padding-left: 20px;
  color: #394047;
  font-weight: 800;
}

.page-hero-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.page-image-card {
  margin: 0;
}

.page-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10.2;
  object-fit: cover;
}

.page-stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.page-stat-strip span {
  display: grid;
  gap: 2px;
  min-height: 82px;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(20, 31, 43, 0.06);
}

.page-stat-strip strong {
  font-size: 1.12rem;
  line-height: 1.2;
}

.page-stat-strip small {
  color: var(--muted);
  font-weight: 800;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.price-scope-grid article,
.responsibility-grid article,
.guide-question-list article,
.redflag-grid article,
.scope-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 46px rgba(20, 31, 43, 0.06);
}

.service-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 300px;
  padding: 24px;
}

.service-card span {
  display: inline-grid;
  place-items: center;
  width: fit-content;
  min-width: 36px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--soft-2);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3,
.price-scope-grid h3,
.responsibility-grid h3,
.guide-question-list h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

.service-card p,
.guide-question-list p,
.redflag-grid p {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.price-scope-grid ul,
.responsibility-grid ul {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.price-scope-grid li,
.responsibility-grid li {
  position: relative;
  padding-left: 19px;
  color: #485057;
}

.service-card li::before,
.price-scope-grid li::before,
.responsibility-grid li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  content: "";
}

.muted-card {
  background: linear-gradient(180deg, #fff, #f8fafb);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.deliverable-grid span {
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(20, 31, 43, 0.05);
}

.deliverable-grid span::before {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--amber);
  content: "";
}

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

.scope-list article {
  padding: 20px;
}

.scope-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.scope-list p {
  margin: 0;
  color: var(--muted);
}

.generous-included {
  display: grid;
  gap: 18px;
}

.generous-included h3,
.blocked-work strong {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.3;
}

.generous-grid,
.no-fee-compare {
  display: grid;
  gap: 16px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.generous-grid article,
.vs-card,
.blocked-work {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.generous-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.generous-grid strong {
  color: var(--accent-dark);
  font-size: 0.95rem;
  line-height: 1.35;
}

.generous-grid p,
.no-fee-grid p,
.caveat-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.vs-card {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.vs-card span {
  width: max-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: #f1f3f5;
  color: #59616a;
  font-size: 0.82rem;
  font-weight: 900;
}

.vs-card h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.3;
}

.vs-card.other {
  border-color: rgba(122, 42, 24, 0.18);
  background: linear-gradient(135deg, #fff, #fff7f3);
}

.vs-card.other span {
  background: rgba(122, 42, 24, 0.1);
  color: #7a2a18;
}

.vs-card.positive {
  border-color: rgba(15, 116, 111, 0.22);
  background: linear-gradient(135deg, #fff, #f4faf9);
}

.vs-card.positive span {
  background: rgba(15, 116, 111, 0.12);
  color: var(--teal);
}

.vs-marker {
  align-self: center;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 24, 31, 0.12);
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: var(--shadow-soft);
}

.caveat-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(223, 228, 232, 0.9);
  border-radius: 8px;
  background: #fbfcfc;
  font-size: 0.95rem;
}

.blocked-work {
  display: grid;
  gap: 16px;
  padding: 26px;
}

.blocked-work ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blocked-work li {
  padding: 9px 12px;
  border: 1px solid rgba(223, 228, 232, 0.9);
  border-radius: 999px;
  background: #fff7f3;
  color: #7a2a18;
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  .generous-grid,
  .no-fee-compare {
    grid-template-columns: 1fr;
  }

  .generous-grid article,
  .vs-card,
  .blocked-work {
    padding: 18px;
  }

  .vs-marker {
    justify-self: center;
    width: 46px;
    height: 46px;
  }

  .blocked-work ul {
    display: grid;
  }

  .blocked-work li {
    border-radius: 8px;
  }
}

.page-cta {
  padding: 72px 0;
  background: #111;
  color: #fff;
}

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

.page-cta-panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.18;
}

.page-cta-panel p:not(.eyebrow) {
  max-width: 720px;
  margin: 10px 0 0;
  color: #d7dde0;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline article {
  min-height: 206px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 44px rgba(20, 31, 43, 0.06);
}

.timeline span {
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
}

.timeline h3 {
  margin: 22px 0 8px;
  font-size: 1.12rem;
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

.responsibility-grid,
.price-scope-grid,
.redflag-grid,
.guide-question-list {
  display: grid;
  gap: 16px;
}

.responsibility-grid,
.price-scope-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.responsibility-grid article,
.price-scope-grid article {
  padding: 24px;
}

.guide-question-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guide-question-list article {
  display: grid;
  gap: 10px;
  padding: 22px;
}

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

.redflag-grid article {
  display: grid;
  gap: 8px;
  padding: 22px;
  border-color: rgba(244, 90, 55, 0.22);
  background: linear-gradient(180deg, #fff, #fff8f5);
}

.redflag-grid strong {
  color: var(--accent-dark);
  font-size: 1.02rem;
}

.contact-hero {
  padding-bottom: 92px;
}

.contact-hero .page-hero-grid {
  align-items: start;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.contact-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid rgba(15, 143, 136, 0.18);
  border-radius: 8px;
  background: #fff;
  color: #24545a;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form-card {
  background: rgba(255, 255, 255, 0.94);
}

.compact-grid .service-card {
  min-height: 210px;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
      url("/assets/enterprise-hero-mobile.webp") center top / cover no-repeat;
  }

  .hero.is-video-ready .hero-bg {
    background:
      radial-gradient(circle at 20% 18%, rgba(244, 90, 55, 0.1), transparent 30%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 250, 247, 0.72) 100%);
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-content {
    padding: 112px 0 86px;
  }

  .hero-lead {
    margin-top: 26px;
  }

  .hero-actions {
    margin-top: 34px;
  }

  .hero-assurance,
  .hero-reward {
    margin-top: 28px;
  }

  .hero-metrics {
    margin-top: 44px;
  }

  .split-heading,
  .two-column,
  .letter-grid,
  .diagnosis-shell,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .diagnosis-result {
    position: static;
  }

  .system-grid,
  .pricing-grid,
  .process-grid,
  .checklist,
  .portfolio-grid,
  .decision-strip,
  .proof-strip,
  .service-card-grid,
  .timeline,
  .deliverable-grid,
  .redflag-grid,
  .guide-question-list,
  .price-scope-grid,
  .responsibility-grid,
  .page-stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .enterprise-panel {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .enterprise-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-grid article {
    min-height: 0;
  }

  .portfolio-full-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-cta-panel {
    display: grid;
  }

  .page-cta-panel {
    display: grid;
  }

  .sample-dialog-grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sample-preview img {
    min-height: 320px;
    max-height: 52svh;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: calc(78px + env(safe-area-inset-bottom));
  }

  .container {
    width: calc(100% - 28px);
    max-width: var(--container);
  }

  .header-inner {
    min-height: 64px;
  }

  .brand {
    min-width: 0;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .mobile-menu-panel {
    left: 14px;
    right: 14px;
  }

  .hero-content {
    padding: 94px 0 76px;
  }

  .hero h1 {
    font-size: 1.38rem;
    line-height: 1.12;
  }

  .page-hero {
    padding: 70px 0 48px;
  }

  .page-hero h1 {
    font-size: 2.35rem;
    line-height: 1.13;
  }

  .page-lead {
    font-size: 1.03rem;
  }

  .hero-lead {
    font-size: 1.04rem;
    margin-top: 24px;
  }

  .hero-actions {
    gap: 12px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
  }

  .hero-assurance {
    gap: 9px;
    margin-top: 28px;
  }

  .hero-metrics,
  .domain-panel,
  .system-grid,
  .pricing-grid,
  .process-grid,
  .checklist,
  .portfolio-grid,
  .portfolio-full-grid,
  .decision-strip,
  .proof-strip,
  .form-row,
  .service-card-grid,
  .timeline,
  .deliverable-grid,
  .redflag-grid,
  .guide-question-list,
  .price-scope-grid,
  .responsibility-grid,
  .page-stat-strip {
    grid-template-columns: 1fr;
  }

  .hero-reward {
    max-width: none;
    margin-top: 28px;
    padding: 18px;
  }

  .hero-metrics div {
    padding: 18px;
  }

  .hero-metrics {
    gap: 14px;
    margin-top: 42px;
  }

  .hero-note {
    margin-top: 24px;
  }

  .section {
    padding: 72px 0;
  }

  .section.compact {
    padding: 16px 0 22px;
  }

  .split-heading h2,
  .two-column h2,
  .letter-grid h2,
  .enterprise-copy h2 {
    font-size: 2rem;
  }

  .founder-letter {
    padding: 16px 28px;
  }

  .portfolio-page-hero {
    padding: 62px 0 38px;
  }

  .portfolio-page-hero h1 {
    font-size: 2.2rem;
  }

  .portfolio-cta-panel h2,
  .page-cta-panel h2 {
    font-size: 1.65rem;
  }

  .enterprise-panel {
    padding: 22px;
  }

  .calculator,
  .lead-form,
  .diagnosis-form,
  .diagnosis-result,
  .payment-card,
  .page-hero-card,
  .service-card,
  .timeline article,
  .guide-question-list article,
  .redflag-grid article,
  .price-scope-grid article,
  .responsibility-grid article {
    padding: 18px;
  }

  .diagnosis-summary {
    grid-template-columns: 1fr;
  }

  .diagnosis-form-footer {
    grid-template-columns: 1fr;
  }

  .diagnosis-result > strong {
    font-size: 1.45rem;
  }

  .sample-dialog {
    width: min(100% - 18px, 1120px);
    max-height: calc(100svh - 18px);
  }

  .sample-panel {
    padding: 22px;
  }

  .sample-panel h2 {
    font-size: 1.55rem;
  }

  .sample-preview img {
    min-height: 240px;
  }

  th,
  td {
    padding: 15px 16px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 19;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #e34825);
    color: #fff;
    font-weight: 900;
    box-shadow: 0 18px 40px rgba(244, 90, 55, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .mobile-sticky-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
