:root {
  --color-ink: #172026;
  --color-muted: #5c6a72;
  --color-line: #d9e2e7;
  --color-bg: #f7faf9;
  --color-panel: #ffffff;
  --color-blue: #174f73;
  --color-blue-dark: #0d2e45;
  --color-teal: #0f766e;
  --color-mint: #dff3ee;
  --color-amber: #c98a20;
  --color-amber-soft: #fff4dc;
  --shadow-soft: 0 18px 44px rgba(15, 43, 59, 0.12);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-bg);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
  letter-spacing: 0;
}

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

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden {
  display: none !important;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  min-height: 72px;
  padding: 10px max(20px, calc((100vw - var(--container)) / 2));
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 231, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 250px;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 60px;
  max-width: 240px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.98);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.brand small {
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: var(--radius);
  color: #31424b;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--color-blue);
  background: #eef6f5;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-ink);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--color-blue-dark);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 36, 0.86) 0%, rgba(9, 24, 36, 0.6) 44%, rgba(9, 24, 36, 0.12) 100%),
    linear-gradient(0deg, rgba(9, 24, 36, 0.68) 0%, rgba(9, 24, 36, 0.06) 48%);
}

.hero-inner {
  position: relative;
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  padding: 96px 0 116px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.hero-visual {
  justify-self: end;
  width: min(100%, 560px);
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
}

.hero-visual-label {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 5px 10px;
  border: 1px solid rgba(156, 224, 215, 0.34);
  border-radius: var(--radius);
  color: #bde9e2;
  background: rgba(9, 24, 36, 0.45);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-mock-image {
  width: 100%;
  border-radius: 14px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.2));
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--color-teal);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero .eyebrow {
  color: #9ce0d7;
}

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

h1 {
  margin-bottom: 22px;
  font-size: 3.5rem;
  line-height: 1.12;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
  line-height: 1.25;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.14rem;
}

.hero-actions,
.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.3;
  cursor: pointer;
}

.button.primary {
  color: #fff;
  background: var(--color-teal);
  box-shadow: 0 12px 26px rgba(15, 118, 110, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #0b5f59;
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button.ghost {
  color: var(--color-blue-dark);
  border-color: var(--color-line);
  background: #fff;
}

.hero .button.ghost,
.target-section .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.button.full {
  width: 100%;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 660px);
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.18);
}

.hero-facts div {
  padding: 18px;
  background: rgba(8, 25, 37, 0.62);
}

.hero-facts dt {
  margin-bottom: 4px;
  color: #9ce0d7;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-facts dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.section {
  padding: 92px 0;
  background: var(--color-panel);
}

.page-hero {
  padding: 112px 0 82px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(13, 46, 69, 0.96) 0%, rgba(13, 46, 69, 0.86) 58%, rgba(15, 118, 110, 0.68) 100%),
    url("assets/hero-website-service.png") center / cover;
}

.page-hero-service {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.96) 0%, rgba(5, 15, 28, 0.82) 44%, rgba(5, 15, 28, 0.18) 100%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.68) 0%, rgba(5, 15, 28, 0.08) 58%),
    url("assets/service-hero-bg-v2.png") center / cover;
}

.page-hero-service .page-hero-inner {
  max-width: 690px;
}

.page-hero-pricing {
  min-height: 560px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.96) 0%, rgba(5, 15, 28, 0.82) 47%, rgba(5, 15, 28, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.66) 0%, rgba(5, 15, 28, 0.08) 58%),
    url("assets/pricing-hero-bg-v2.png") center / cover;
}

.page-hero-pricing .page-hero-inner {
  max-width: 780px;
}

.page-hero-writing {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 132px 0 108px;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.96) 0%, rgba(5, 15, 28, 0.82) 43%, rgba(5, 15, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.62), rgba(5, 15, 28, 0.02)),
    url("assets/card-writing-visual-v1.png") 57% center / cover;
}

.page-hero-writing .page-hero-inner {
  width: min(100% - 80px, 1260px);
  max-width: none;
  margin-inline: auto;
}

.page-hero-writing h1 {
  max-width: 650px;
  font-size: 3.55rem;
  line-height: 1.12;
}

.page-hero-writing .page-lead {
  max-width: 650px;
  font-size: 1.02rem;
  line-height: 1.95;
}

.page-hero-seo {
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 132px 0 88px;
  background:
    linear-gradient(90deg, rgba(5, 15, 28, 0.96) 0%, rgba(5, 15, 28, 0.8) 46%, rgba(5, 15, 28, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 15, 28, 0.64), rgba(5, 15, 28, 0.04)),
    url("assets/card-seo-visual-v1.png") 58% center / cover;
}

.page-hero-seo .page-hero-inner {
  width: min(100% - 80px, 1260px);
  max-width: none;
  margin-inline: auto;
}

.page-hero.page-hero-seo h1 {
  max-width: 680px;
  font-size: 3.45rem;
  line-height: 1.14;
}

.page-hero.page-hero-seo .page-lead {
  max-width: 680px;
  line-height: 1.95;
}

.page-hero-flow {
  background:
    linear-gradient(90deg, rgba(7, 25, 42, 0.96) 0%, rgba(7, 25, 42, 0.84) 56%, rgba(7, 25, 42, 0.32) 100%),
    url("assets/card-flow-visual-v1.png") center / cover;
}

.page-hero-contact {
  background:
    linear-gradient(90deg, rgba(7, 25, 42, 0.96) 0%, rgba(7, 25, 42, 0.84) 56%, rgba(7, 25, 42, 0.32) 100%),
    url("assets/cta-bg-wireframe-v1.png") center / cover;
}

.page-hero-why {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding: 70px 0 56px;
  background:
    radial-gradient(circle at 78% 50%, rgba(15, 118, 110, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(5, 15, 28, 0.99) 0%, rgba(5, 15, 28, 0.97) 50%, rgba(5, 15, 28, 0.74) 100%),
    #07192a;
}

.page-hero-why::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 56%;
  background: url("assets/generated/why-website/webp/why-website_01_fv_candidate-ok_20260630.webp") right center / contain no-repeat;
  opacity: 0.88;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, transparent 18%, #000 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, transparent 18%, #000 42%, #000 100%);
}

.page-hero-why .page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1280px);
  max-width: none;
  margin-inline: auto;
}

.why-hero-copy {
  max-width: 640px;
}

.page-hero.page-hero-why h1 {
  max-width: 640px;
  font-size: 2.72rem;
  line-height: 1.2;
}

.page-hero.page-hero-why .page-lead {
  max-width: 650px;
  line-height: 1.95;
}

.why-hero-graphic {
  position: relative;
  justify-self: end;
  width: min(100%, 620px);
  margin: 0;
  filter: drop-shadow(0 26px 58px rgba(0, 0, 0, 0.36));
}

.why-hero-graphic::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 24px;
  background: radial-gradient(circle at 70% 38%, rgba(255, 255, 255, 0.14), transparent 44%);
  pointer-events: none;
}

.why-hero-graphic img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 8px;
}

.page-hero-selling {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 138px 0 112px;
  background:
    linear-gradient(90deg, rgba(4, 19, 33, 0.96) 0%, rgba(4, 19, 33, 0.82) 46%, rgba(4, 19, 33, 0.38) 100%),
    linear-gradient(0deg, rgba(4, 19, 33, 0.72), rgba(4, 19, 33, 0.04)),
    url("assets/selling-hero-bg-v1.png") center / cover,
    #07192a;
}

.page-hero-selling .page-hero-inner {
  max-width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.page-hero-selling h1,
.page-hero-selling .page-lead {
  max-width: 760px;
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero .section-kicker {
  color: #9ce0d7;
}

.page-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 3rem;
}

.page-lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
}

.page-hero.page-hero-writing h1 {
  max-width: 650px;
  font-size: 3.45rem;
  line-height: 1.12;
}

.page-hero.page-hero-writing .page-lead {
  max-width: 650px;
  font-size: 1.02rem;
  line-height: 1.95;
}

.page-hero .hero-actions {
  margin-top: 24px;
}

.page-hero .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.12);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(242, 247, 246, 0.92), rgba(242, 247, 246, 0.94)),
    url("assets/section-pattern-wireframe-v1.png") top right / min(920px, 76vw) auto no-repeat,
    #f2f7f6;
}

.intro-band {
  padding: 38px 0;
  background: var(--color-blue-dark);
  color: #fff;
}

.intro-grid,
.target-grid,
.two-column,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.intro-band h2 {
  margin-bottom: 0;
  font-size: 1.55rem;
}

.intro-list,
.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.intro-list span,
.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 800;
}

.section-lead {
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

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

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

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-teal);
  font-weight: 900;
}

.page-intro-visual {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 252, 0.96)),
    url("assets/section-pattern-wireframe-v1.png") top right / min(760px, 70vw) auto no-repeat;
}

.visual-copy-panel {
  padding: 34px;
  border: 1px solid rgba(217, 226, 231, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 54px rgba(15, 43, 59, 0.07);
}

.visual-stack {
  display: grid;
  gap: 20px;
}

.page-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(217, 226, 231, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 43, 59, 0.12);
}

.page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(4, 27, 58, 0.08));
}

.page-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.section-visual-wide {
  margin-bottom: 30px;
}

.section-visual-wide img {
  max-height: 360px;
}

.inline-page-visual {
  margin-top: 24px;
}

.inline-page-visual img {
  aspect-ratio: 16 / 10;
}

.compact-panel .mini-card {
  min-height: auto;
  padding: 20px;
}

.visual-process-map {
  margin-top: 0;
}

.reason-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.mini-card,
.plan-card,
.compare-card,
.pricing-support article,
.contact-form,
details {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 43, 59, 0.06);
}

.mini-card {
  min-height: 220px;
  padding: 22px;
}

.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: var(--color-blue-dark);
  background: var(--color-mint);
  font-weight: 900;
}

.mini-card p,
.plan-card p,
.compare-card p,
.pricing-support p,
details p {
  color: var(--color-muted);
}

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

.plan-card {
  position: relative;
  padding: 26px;
}

.card-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 18px;
  object-fit: cover;
  border: 1px solid rgba(217, 226, 231, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(15, 43, 59, 0.08);
}

.plan-card.featured {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: 0 18px 44px rgba(15, 118, 110, 0.12);
}

.plan-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: var(--radius);
  color: var(--color-blue-dark);
  background: var(--color-amber-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-card ul,
.compare-card ul {
  padding-left: 1.2em;
  margin-bottom: 0;
  color: #33464f;
}

.notice-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.notice-row p,
.note-box,
.legal-note {
  border-radius: var(--radius);
  background: #fff;
}

.notice-row p {
  margin: 0;
  padding: 18px;
  border-left: 4px solid var(--color-teal);
}

.price-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.price-strip.three-items {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.price-strip.hero-price {
  max-width: 780px;
}

.price-strip div {
  padding: 18px;
  background: #fff;
}

.price-strip span {
  display: block;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.price-strip strong {
  display: block;
  margin-top: 4px;
  color: var(--color-blue);
  font-size: 1.18rem;
}

.price-strip p {
  margin: 8px 0 0;
  color: var(--color-muted);
  font-weight: 800;
}

.page-hero .price-strip {
  color: var(--color-ink);
}

.process-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 26px;
  border-radius: var(--radius);
  background: #eef7f5;
}

.process-map div {
  display: grid;
  min-height: 82px;
  place-items: center;
  padding: 14px;
  border: 1px solid #cae3dd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-blue-dark);
  font-weight: 900;
  text-align: center;
}

.process-map div:last-child {
  grid-column: 1 / -1;
  background: var(--color-blue-dark);
  color: #fff;
}

.note-box {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid var(--color-line);
}

.note-box p:last-child {
  margin-bottom: 0;
  color: var(--color-blue-dark);
  font-weight: 800;
}

.writing-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 22px;
}

.writing-compare-section {
  padding-top: 74px;
}

.writing-compare-section .container,
.writing-process-section .container,
.writing-page-role-section .container,
.writing-before-after-section .container,
.writing-cta-section .container {
  width: min(100% - 80px, 1260px);
}

.writing-compare-section .section-head {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
}

.writing-compare-section .section-head.centered {
  max-width: 1120px;
}

.writing-compare-section h2,
.writing-process-section h2,
.writing-page-role-section h2,
.writing-before-after-section h2 {
  color: #092348;
  font-size: 2rem;
  line-height: 1.32;
}

.writing-compare-section h2 {
  font-size: 1.82rem;
}

.compare-card {
  padding: 28px;
}

.compare-card.accent {
  border-color: rgba(201, 138, 32, 0.45);
  background: linear-gradient(180deg, #fffaf0 0%, #ffffff 52%);
}

.writing-option-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 40px;
}

.writing-option-card.accent {
  padding-top: 58px;
  border-color: rgba(15, 160, 165, 0.54);
  box-shadow: 0 18px 50px rgba(15, 118, 110, 0.12);
}

.writing-recommend {
  position: absolute;
  inset: 0 0 auto;
  margin: 0;
  padding: 9px 18px;
  color: #fff;
  background: linear-gradient(90deg, #07969c, #13a8ad);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
}

.writing-option-card .writing-recommend {
  color: #fff;
}

.writing-option-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.writing-option-head h3 {
  margin-bottom: 4px;
  color: #092348;
  font-size: 1.62rem;
  line-height: 1.28;
}

.writing-card-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 18px 38px rgba(15, 43, 59, 0.18);
}

.writing-card-icon.navy {
  background: linear-gradient(135deg, #061f43, #0b4772);
}

.writing-card-icon.teal {
  background: linear-gradient(135deg, #14a8ad, #078b92);
}

.writing-card-icon svg,
.writing-step-icon svg,
.writing-page-icon svg,
.writing-cta-icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.writing-option-copy {
  min-height: 3.6em;
  color: #33464f;
  font-weight: 600;
}

.writing-option-body {
  display: grid;
  grid-template-columns: minmax(170px, 0.72fr) minmax(240px, 1fr);
  gap: 28px;
  align-items: center;
  margin-top: auto;
}

.writing-option-body ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.writing-option-body li {
  position: relative;
  padding-left: 20px;
  color: #203a4d;
  font-size: 0.96rem;
  font-weight: 850;
}

.writing-option-body li + li {
  margin-top: 8px;
}

.writing-option-body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.writing-option-body img {
  width: 100%;
  aspect-ratio: 16 / 9.8;
  object-fit: cover;
  border: 1px solid rgba(217, 226, 231, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(15, 43, 59, 0.12);
}

.price-free,
.option-price {
  color: var(--color-teal);
  font-size: 1.34rem;
  font-weight: 900;
}

.writing-process-section {
  padding-top: 78px;
  padding-bottom: 56px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfc 58%, #ffffff 100%);
}

.writing-process-section .container {
  width: min(100% - 96px, 1180px);
}

.writing-process-section .section-head {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 34px;
}

.writing-step-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 26px;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.writing-step-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 248px;
  padding: 26px 18px 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 42px rgba(15, 43, 59, 0.07);
}

.writing-step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid #7d95a6;
  transform: translateY(-50%);
}

.writing-step-number {
  position: absolute;
  left: 16px;
  top: 16px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: #0b9fa5;
  font-size: 0.86rem;
  font-weight: 950;
}

.writing-step-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 18px auto 12px;
  color: #08264d;
}

.writing-step-icon svg {
  width: 46px;
  height: 46px;
  stroke-width: 1.9;
}

.writing-step-card strong {
  display: block;
  margin: 0 0 12px;
  color: #092348;
  font-size: 1rem;
}

.writing-step-card p {
  max-width: 150px;
  margin: 0 auto;
  color: #425665;
  font-size: 0.88rem;
  line-height: 1.75;
}

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

.writing-page-role-section {
  padding-top: 72px;
}

.writing-page-role-section .section-head {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 38px;
}

.writing-page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 44px rgba(15, 43, 59, 0.07);
}

.writing-page-card figure {
  margin: 0;
}

.writing-page-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  object-fit: contain;
  background: #f7fbfc;
}

.writing-page-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: -31px 0 20px 24px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  box-shadow: 0 12px 28px rgba(15, 43, 59, 0.18);
}

.writing-page-icon svg {
  width: 30px;
  height: 30px;
}

.writing-page-card h3,
.writing-page-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.writing-page-card h3 {
  color: #092348;
  margin-top: 0;
  margin-bottom: 10px;
}

.writing-page-card p {
  margin-bottom: 28px;
  color: #425665;
  font-size: 0.94rem;
  line-height: 1.82;
}

.writing-page-card p strong {
  display: block;
  margin-bottom: 6px;
  color: #08264d;
}

.writing-before-after-section {
  padding-top: 88px;
  background: #fff;
}

.writing-before-after {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.writing-before-after::after {
  content: ">";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 6px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  box-shadow: 0 18px 42px rgba(15, 43, 59, 0.18);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.writing-before-after-section .section-head {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 36px;
}

.rewrite-table {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.07);
}

.rewrite-table h3 {
  margin: 0;
  padding: 15px 22px;
  color: #092348;
  background: #e7edf0;
  font-size: 1rem;
  text-align: center;
}

.rewrite-table h3 span {
  margin-left: 6px;
  color: #425665;
  font-size: 0.86rem;
}

.rewrite-table.after h3 {
  color: #fff;
  background: #0b9fa5;
}

.rewrite-table.after h3 span {
  color: rgba(255, 255, 255, 0.86);
}

.rewrite-table dl {
  margin: 0;
}

.rewrite-table dl div {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  border-top: 1px solid var(--color-line);
}

.rewrite-table dt,
.rewrite-table dd {
  margin: 0;
  padding: 17px 20px;
}

.rewrite-table dt {
  color: #092348;
  background: #fbfdfd;
  font-weight: 900;
}

.rewrite-table dd {
  color: #33464f;
}

.writing-bottom-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 320px);
  align-items: center;
  min-height: 168px;
  padding: 42px 56px;
}

.writing-bottom-cta p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.writing-cta-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #08264d;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.seo-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin: 30px 0 26px;
}

.seo-hero-facts div {
  position: relative;
  min-height: 86px;
  padding: 18px 16px 18px 72px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(5, 18, 34, 0.54);
}

.seo-hero-facts span:not(.seo-fact-icon) {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 900;
}

.seo-hero-facts strong {
  display: block;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.3;
}

.seo-fact-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #d7a12a;
  transform: translateY(-50%);
}

.seo-fact-icon svg,
.seo-entry-icon svg,
.seo-process-grid article > svg,
.seo-card-icon svg,
.seo-flow-list svg,
.seo-cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seo-entry-section {
  padding-top: 46px;
  padding-bottom: 42px;
}

.seo-entry-section .container,
.seo-safety-section .container,
.seo-flow-section .container,
.seo-plan-section .container,
.seo-cta-section .container {
  width: min(100% - 80px, 1260px);
}

.seo-entry-section .section-head,
.seo-safety-section .section-head,
.seo-flow-section .section-head,
.seo-plan-section .section-head {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.seo-entry-section .section-head {
  margin-bottom: 18px;
}

.seo-entry-section .section-head h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #10a9ad;
}

.seo-entry-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.24fr);
  gap: 20px;
  align-items: stretch;
}

.seo-entry-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-content: start;
  column-gap: 20px;
  min-height: 404px;
  padding: 30px 38px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.08);
}

.seo-entry-icon {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin-top: 6px;
  color: #0b9fa5;
}

.seo-entry-icon svg {
  width: 66px;
  height: 66px;
  stroke-width: 1.8;
}

.seo-entry-card h3 {
  margin: 0 0 10px;
  color: #092348;
  font-size: 1.08rem;
  line-height: 1.45;
}

.seo-entry-copy p {
  margin: 0;
  color: #425665;
  line-height: 1.72;
}

.seo-entry-card ul {
  grid-column: 1 / -1;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.seo-entry-card li {
  position: relative;
  padding-left: 24px;
  color: #203a4d;
  font-weight: 850;
}

.seo-entry-card li + li {
  margin-top: 12px;
}

.seo-entry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 9px;
  height: 5px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.seo-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 22px;
}

.seo-process-grid article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 54px auto 1fr;
  min-height: 182px;
  padding: 22px 18px 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 43, 59, 0.05);
}

.seo-process-grid article::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 10px solid #7d95a6;
  transform: translateY(-50%);
}

.seo-process-grid article:nth-of-type(3)::after,
.seo-process-grid article:nth-of-type(6)::after {
  display: none;
}

.seo-process-turn-arrow {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.seo-process-turn-arrow path {
  fill: none;
  stroke: #8aa0ae;
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
}

.seo-process-turn-arrow marker path {
  fill: #8aa0ae;
  stroke: none;
}

.seo-process-grid article > svg {
  justify-self: center;
  align-self: end;
  color: #08264d;
  width: 52px;
  height: 52px;
}

.seo-process-grid strong {
  margin-top: 8px;
  color: #092348;
  font-size: 1.03rem;
}

.seo-process-grid p {
  margin: 6px 0 0;
  color: #425665;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.seo-process-grid .highlight {
  border-color: rgba(15, 160, 165, 0.62);
  box-shadow: 0 16px 38px rgba(15, 118, 110, 0.1);
}

.seo-note-box {
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.seo-note-box p:last-child {
  margin-bottom: 0;
  color: #08264d;
  font-weight: 850;
}

.seo-safety-section {
  padding-top: 64px;
  background: linear-gradient(180deg, #f8fcfc, #ffffff);
}

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

.seo-safety-grid article {
  min-height: 260px;
  padding: 30px 28px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 43, 59, 0.07);
}

.seo-card-icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  box-shadow: 0 14px 34px rgba(15, 118, 110, 0.18);
}

.seo-safety-grid h3 {
  color: #092348;
  font-size: 1.1rem;
}

.seo-safety-grid p {
  color: #425665;
}

.seo-fit-grid {
  margin-top: 24px;
}

.seo-fit-grid article {
  min-height: auto;
}

.seo-fit-grid h3 {
  margin-top: 0;
}

.seo-fit-grid p {
  margin-bottom: 0;
}

.seo-flow-section {
  padding-top: 78px;
}

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

.seo-flow-list li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 240px;
  padding: 24px 16px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 14px 34px rgba(15, 43, 59, 0.06);
}

.seo-flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -17px;
  top: 50%;
  z-index: 2;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 11px solid #7d95a6;
  transform: translateY(-50%);
}

.seo-flow-list span {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #0b9fa5;
  font-size: 0.82rem;
  font-weight: 950;
}

.seo-flow-list svg {
  width: 46px;
  height: 46px;
  margin: 22px auto 14px;
  color: #08264d;
}

.seo-flow-list strong {
  color: #092348;
}

.seo-flow-list p {
  margin: 10px 0 0;
  color: #425665;
  font-size: 0.82rem;
  line-height: 1.65;
}

.seo-flow-note,
.seo-plan-note {
  margin: 24px auto 0;
  color: var(--color-muted);
  text-align: center;
}

.seo-plan-section {
  padding-top: 78px;
  background: #fff;
}

.seo-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.seo-plan-grid article {
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 43, 59, 0.07);
}

.seo-plan-grid h3 {
  margin: 0;
  padding: 14px 18px;
  color: #fff;
  background: #0b9fa5;
  font-size: 1.1rem;
  text-align: center;
}

.seo-plan-grid .premium h3 {
  background: #08264d;
}

.seo-formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto 88px;
  gap: 14px;
  align-items: center;
  padding: 34px 28px 20px;
  color: #092348;
  text-align: center;
}

.seo-formula span {
  font-weight: 900;
}

.seo-formula small {
  display: block;
  color: #425665;
  font-size: 0.78rem;
}

.seo-formula b {
  color: #0b9fa5;
  font-size: 2rem;
  line-height: 1;
}

.seo-formula strong {
  color: #08264d;
  font-size: 4rem;
  line-height: 0.9;
}

.seo-formula strong small {
  margin-top: 8px;
  color: #092348;
  font-size: 0.85rem;
}

.seo-plan-grid article > p {
  margin: 0 28px 30px;
  color: #33464f;
}

.seo-plan-note {
  max-width: 1120px;
  padding: 14px 18px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #f8fbfc;
  color: #27495c;
  font-weight: 850;
}

.seo-bottom-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(250px, 320px);
  align-items: center;
  min-height: 168px;
  padding: 42px 56px;
}

.seo-bottom-cta p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.seo-bottom-cta .button {
  justify-self: end;
  min-width: 220px;
  white-space: nowrap;
}

.seo-cta-icon {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  color: #08264d;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.why-role-section {
  padding-top: 58px;
  padding-bottom: 56px;
  background: #fff;
}

.why-role-section .container,
.why-journey-section .container,
.why-not-only-section .container,
.why-cta-section .container {
  width: min(100% - 80px, 1280px);
}

.why-role-section .section-head,
.why-journey-section .section-head,
.why-not-only-section .section-head {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
}

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

.why-role-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto 1fr 162px;
  min-height: 382px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 43, 59, 0.08);
}

.why-card-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 26px 26px 10px;
  border-radius: 50%;
  color: #fff;
  background: #082b58;
}

.why-card-icon svg,
.why-cta-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-role-grid h3,
.why-role-grid p {
  margin-right: 26px;
  margin-left: 26px;
}

.why-role-grid h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #092348;
  font-size: 1.12rem;
}

.why-role-grid p {
  margin-top: 0;
  color: #33464f;
  line-height: 1.75;
}

.why-role-grid img {
  align-self: end;
  display: block;
  width: 100%;
  height: 162px;
  object-fit: cover;
}

.why-role-grid article:nth-child(1) img {
  object-position: 50% 58%;
}

.why-role-grid article:nth-child(2) img {
  object-position: 48% 42%;
}

.why-role-grid article:nth-child(3) img {
  object-position: 42% 54%;
}

.why-role-grid article:nth-child(4) img {
  object-position: 58% 48%;
}

.why-journey-section {
  padding-top: 48px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

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

.why-journey-grid article {
  position: relative;
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 16px 18px 20px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 38px rgba(15, 43, 59, 0.06);
}

.why-journey-grid article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -22px;
  top: 50%;
  z-index: 2;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 18px solid #0fa4a8;
  transform: translateY(-50%);
}

.why-journey-grid span {
  position: absolute;
  left: 18px;
  top: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #0b9fa5;
  font-size: 0.86rem;
  font-weight: 950;
}

.why-journey-grid img {
  width: 100%;
  height: 156px;
  margin-bottom: 16px;
  object-fit: cover;
  border-radius: calc(var(--radius) - 2px);
}

.why-journey-grid h3 {
  margin: 0 0 8px;
  color: #092348;
  font-size: 1rem;
}

.why-journey-grid p {
  margin: 0;
  color: #33464f;
  font-weight: 850;
  line-height: 1.55;
}

.why-not-only-section {
  padding-top: 54px;
}

.why-compare-section .section-head {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

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

.why-service-grid article {
  overflow: hidden;
  display: grid;
  grid-template-rows: 176px auto auto auto 1fr;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 43, 59, 0.07);
}

.why-service-grid img {
  display: block;
  width: 100%;
  height: 176px;
  object-fit: cover;
}

.why-service-grid .plan-badge {
  display: none;
}

.why-service-grid h3,
.why-service-grid p,
.why-service-grid ul {
  margin-right: 22px;
  margin-left: 22px;
}

.why-service-grid h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #092348;
  font-size: 1.15rem;
}

.why-service-grid p {
  margin-top: 0;
  color: #33464f;
  line-height: 1.75;
}

.why-service-grid ul {
  align-self: end;
  padding: 0 0 24px;
  list-style: none;
}

.why-service-grid li {
  position: relative;
  padding-left: 22px;
  color: #203a4d;
  font-weight: 850;
}

.why-service-grid li + li {
  margin-top: 9px;
}

.why-service-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.why-compare-table tbody th {
  min-width: 190px;
  padding-left: 24px;
}

.why-table-icon {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-right: 8px;
  border: 2px solid #082b58;
  border-radius: 50%;
  color: #082b58;
  vertical-align: middle;
}

.why-table-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-cta-section {
  padding: 0;
  background:
    linear-gradient(90deg, rgba(2, 16, 32, 0.95), rgba(2, 16, 32, 0.82)),
    url("assets/cta-bg-wireframe-v1.png") center right / cover no-repeat;
}

.why-bottom-cta {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(220px, 320px);
  align-items: center;
  min-height: 156px;
  padding: 30px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.why-bottom-cta p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.why-cta-icon {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  color: #08264d;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

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

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

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
}

thead th {
  color: #fff;
  background: var(--color-blue-dark);
  font-size: 0.9rem;
}

tbody th {
  color: var(--color-blue-dark);
}

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

.highlight-row th,
.highlight-row td {
  background: #f0fbf8;
}

td strong {
  color: var(--color-teal);
  font-size: 1.08rem;
}

.pricing-support {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.pricing-support article {
  padding: 24px;
}

.compare-wrap {
  box-shadow: none;
}

.compare-table {
  min-width: 780px;
}

.mobile-compare-summary article {
  padding: 20px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 43, 59, 0.07);
}

.mobile-compare-summary span {
  display: block;
  margin-bottom: 8px;
  color: #5b6b73;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-compare-summary strong {
  display: block;
  color: #08264d;
  font-size: 1rem;
  line-height: 1.45;
}

.mobile-compare-summary p {
  margin: 10px 0 0;
  color: #425665;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.65;
}

.legal-note {
  margin-top: 18px;
  padding: 16px 18px;
  color: var(--color-muted);
  border: 1px solid var(--color-line);
}

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

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

.flow-list li {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
}

.flow-list span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-blue);
  font-weight: 900;
}

.flow-list strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-blue-dark);
}

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

.visual-flow-section {
  overflow: hidden;
}

.home-flow-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 0;
}

.home-flow-list li {
  min-height: 252px;
}

.flow-icon {
  width: 66px;
  height: 66px;
  margin: 0 0 12px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 43, 59, 0.12);
}

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

details {
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--color-blue-dark);
  font-weight: 900;
}

details p {
  padding: 0 20px 18px;
  margin: 0;
}

.target-section {
  color: #fff;
  background: var(--color-blue-dark);
}

.target-section .section-kicker {
  color: #9ce0d7;
}

.target-section p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f2f7f6 100%);
}

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

.company-info {
  margin: 26px 0 0;
  border-top: 1px solid var(--color-line);
}

.company-info div {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-line);
}

.company-info dt {
  color: var(--color-blue-dark);
  font-weight: 900;
}

.company-info dd {
  margin: 0;
  color: var(--color-muted);
}

.contact-form {
  padding: 26px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
}

.contact-form span {
  color: var(--color-blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cdd9df;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--color-ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--color-teal);
}

.form-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
}

.form-note.is-active {
  color: var(--color-teal);
  font-weight: 900;
}

.site-footer {
  padding: 28px 0;
  color: #dce8ec;
  background: #0a202f;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin-bottom: 0;
  font-weight: 900;
}

.footer-inner a {
  color: #dce8ec;
  font-size: 0.9rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.cta-band.visual-cta {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(9, 24, 36, 0.88) 0%, rgba(9, 24, 36, 0.78) 44%, rgba(9, 24, 36, 0.36) 100%),
    url("assets/cta-bg-wireframe-v1.png") center / cover no-repeat;
  box-shadow: 0 28px 80px rgba(15, 43, 59, 0.2);
}

.cta-band.visual-cta .section-kicker {
  color: #9ce0d7;
}

.cta-band.visual-cta p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
}

.notice-row.stacked {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.article-section {
  background: #fff;
}

.reading-article {
  max-width: 1160px;
  margin: 0 auto;
}

.article-block {
  max-width: 860px;
  margin: 0 auto;
  padding: 52px 0;
  border-top: 1px solid #dce5ec;
}

.reading-article > .article-block:first-child {
  padding-top: 0;
  border-top: 0;
}

.article-block h2 {
  margin-bottom: 24px;
  font-size: 2rem;
}

.article-block p {
  margin-bottom: 12px;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 2;
}

.article-quote {
  margin: 24px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--color-teal);
  background: #f3faf9;
}

.article-quote p {
  margin-bottom: 8px;
  color: var(--color-blue-dark);
  font-weight: 900;
}

.article-quote p:last-child {
  margin-bottom: 0;
}

.article-point-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.article-point-list li {
  padding: 13px 16px;
  border-left: 3px solid var(--color-teal);
  background: #f7fafc;
  color: var(--color-blue-dark);
  font-weight: 900;
  line-height: 1.6;
}

.article-final-cta {
  margin-top: 16px;
  padding: 38px;
  border: 1px solid #dce5ec;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(246, 250, 251, 0.96), rgba(255, 255, 255, 0.98)),
    url("assets/section-pattern-wireframe-v1.png") top right / min(520px, 80vw) auto no-repeat;
  box-shadow: var(--shadow-soft);
}

.article-final-cta .hero-actions {
  margin-top: 24px;
}

.selling-intro-block,
.selling-balance-block,
.selling-need-block,
.selling-price-block,
.selling-final-cta {
  max-width: 1160px;
}

.selling-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 64px;
}

.selling-section-visual {
  margin: 0;
}

.selling-section-visual img,
.selling-price-visual img {
  display: block;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(15, 43, 59, 0.12);
}

.selling-message-map {
  max-width: 1160px;
  padding: 70px 0 76px;
}

.selling-message-head {
  max-width: 980px;
  margin: 0 auto 34px;
  text-align: center;
}

.selling-message-head h2 {
  margin-bottom: 12px;
  color: #08264d;
  font-size: clamp(2rem, 3.2vw, 2.72rem);
  line-height: 1.22;
}

.selling-message-head h2 span {
  display: inline;
}

.selling-message-head p {
  margin: 0;
  color: #405666;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  font-weight: 800;
  line-height: 1.7;
}

.selling-message-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 20px auto 0;
  border-radius: 999px;
  background: #13a6ac;
}

.selling-diagram-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(210px, 0.62fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.selling-ng-examples {
  margin-top: 40px;
}

.selling-ng-head {
  margin-bottom: 26px;
  text-align: center;
}

.selling-ng-head h3 {
  margin: 0;
  color: #08264d;
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  line-height: 1.35;
}

.selling-ng-head::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: #13a6ac;
}

.selling-ng-image-list {
  display: grid;
  gap: 34px;
}

.selling-ng-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #d7e5ea;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 52px rgba(15, 43, 59, 0.09);
}

.selling-ng-image-card img {
  display: block;
  width: 100%;
  height: auto;
}

.selling-response-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 760px;
  margin: 42px auto 0;
}

.selling-response-flow .selling-question-wrap {
  min-height: auto;
}

.selling-response-flow .selling-question-wrap::before,
.selling-response-flow .selling-question-wrap::after {
  display: none;
}

.selling-diagram-panel,
.selling-question-circle,
.selling-reality-note,
.selling-conclusion-card {
  border: 1px solid #d7e5ea;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 52px rgba(15, 43, 59, 0.08);
}

.selling-diagram-panel {
  padding: 24px;
}

.selling-diagram-panel h3 {
  margin: 0 0 18px;
  color: #08264d;
  font-size: 1.32rem;
  text-align: center;
}

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

.common-site-card {
  position: relative;
  min-height: 178px;
  padding: 16px 14px 14px;
  border: 1px solid #e0eaef;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fcfd);
}

.common-site-number {
  position: absolute;
  left: 12px;
  top: 12px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  background: #13a6ac;
  font-size: 0.88rem;
  font-weight: 900;
}

.common-site-image {
  display: grid;
  align-items: center;
  height: 92px;
  margin: 14px 0 14px 24px;
}

.common-site-image img {
  display: block;
  width: 100%;
  max-width: 176px;
  height: 100%;
  object-fit: contain;
}

.mini-site-mockup {
  position: relative;
  height: 82px;
  margin: 16px 0 14px 24px;
  overflow: hidden;
  border: 5px solid #0b2a4e;
  border-radius: 8px;
  background: #fff;
}

.mini-site-mockup::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 18px;
  background: #eaf3f7;
}

.mini-site-mockup span {
  position: absolute;
  display: block;
  border-radius: 5px;
  background: #d7e7ef;
}

.mockup-clean span:nth-child(1) {
  left: 12px;
  top: 28px;
  width: 46%;
  height: 10px;
  background: #13a6ac;
}

.mockup-clean span:nth-child(2) {
  left: 12px;
  top: 46px;
  width: 70%;
  height: 7px;
}

.mockup-clean span:nth-child(3) {
  left: 12px;
  top: 61px;
  width: 34%;
  height: 10px;
}

.mockup-clean span:nth-child(4) {
  right: 10px;
  top: 31px;
  width: 27%;
  height: 36px;
  background: #dceef6;
}

.mockup-stylish {
  background: linear-gradient(135deg, #f7fbfc 0%, #fff 50%, #e8f5f6 100%);
}

.mockup-stylish span:nth-child(1) {
  left: 12px;
  top: 30px;
  width: 30%;
  height: 28px;
  background: #0b2a4e;
}

.mockup-stylish span:nth-child(2) {
  left: 48%;
  top: 29px;
  width: 38%;
  height: 8px;
  background: #13a6ac;
}

.mockup-stylish span:nth-child(3) {
  left: 48%;
  top: 45px;
  width: 30%;
  height: 6px;
}

.mockup-stylish span:nth-child(4) {
  left: 48%;
  top: 58px;
  width: 22%;
  height: 6px;
}

.mockup-photo {
  background: #f2f8fa;
}

.mockup-photo span:nth-child(1) {
  left: 10px;
  top: 28px;
  width: 34%;
  height: 34px;
  background: linear-gradient(135deg, #8ccbd0, #d9edf0);
}

.mockup-photo span:nth-child(2) {
  left: 48%;
  top: 28px;
  width: 38%;
  height: 13px;
  background: #d4e3ea;
}

.mockup-photo span:nth-child(3) {
  left: 48%;
  top: 48px;
  width: 30%;
  height: 8px;
}

.mockup-photo span:nth-child(4) {
  left: 10px;
  bottom: 8px;
  width: 75%;
  height: 7px;
  background: #13a6ac;
}

.mockup-cost span:nth-child(1) {
  left: 10px;
  top: 28px;
  width: 40%;
  height: 10px;
  background: #13a6ac;
}

.mockup-cost span:nth-child(2) {
  left: 10px;
  top: 47px;
  width: 68%;
  height: 8px;
}

.mockup-cost span:nth-child(3) {
  right: 14px;
  bottom: 9px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f6c35b;
}

.mockup-cost span:nth-child(3)::after {
  content: "Y";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #08264d;
  font-weight: 900;
}

.mockup-cost span:nth-child(4) {
  left: 10px;
  bottom: 12px;
  width: 30%;
  height: 10px;
}

.common-site-card h4 {
  margin: 0;
  color: #08264d;
  font-size: 0.98rem;
  line-height: 1.45;
}

.selling-question-wrap {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.selling-question-wrap::before,
.selling-question-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44px;
  border-top: 3px dotted #13a6ac;
}

.selling-question-wrap::before {
  right: calc(100% - 6px);
}

.selling-question-wrap::after {
  left: calc(100% - 6px);
}

.selling-question-circle {
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 1;
  padding: 46px;
  border-radius: 50%;
  text-align: center;
  place-items: center;
}

.question-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: #13a6ac;
  font-size: 2rem;
  font-weight: 900;
  place-items: center;
}

.selling-question-circle p {
  margin: 0 0 14px;
  color: #08264d;
  font-size: clamp(1.8rem, 2.45vw, 2.55rem);
  font-weight: 900;
  line-height: 1.45;
}

.selling-question-circle .question-emphasis {
  margin-bottom: 0;
  color: #0b9aa0;
  font-size: clamp(2.05rem, 2.85vw, 2.9rem);
  line-height: 1.42;
}

.reaction-card-list {
  display: grid;
  gap: 14px;
}

.reaction-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border: 1px solid #dce8ee;
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #f8fcfd);
}

.reaction-icon,
.target-symbol {
  display: grid;
  color: #0b969d;
  place-items: center;
}

.reaction-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e9f7f8;
}

.reaction-icon svg,
.target-symbol svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reaction-card p {
  margin: 0;
  color: #324957;
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.55;
}

.reaction-card strong {
  color: #08264d;
  font-size: 1.04rem;
}

.selling-diagram-bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  margin-top: 26px;
}

.selling-reality-note,
.selling-conclusion-card {
  display: grid;
  align-items: center;
  min-height: 190px;
  padding: 24px;
}

.selling-reality-note {
  grid-template-columns: 120px 1fr;
  column-gap: 20px;
}

.thinking-person {
  grid-row: span 2;
}

.thinking-person svg {
  display: block;
  width: 118px;
  height: 118px;
}

.thinking-person img {
  display: block;
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.selling-reality-note p {
  margin: 0;
  color: #324957;
  font-weight: 800;
  line-height: 1.75;
}

.selling-reality-note p + p {
  margin-top: 10px;
}

.selling-conclusion-card {
  position: relative;
  grid-template-columns: 72px 1fr;
  column-gap: 18px;
  border-color: rgba(19, 166, 172, 0.28);
  background: linear-gradient(135deg, #f4fbfc, #fff);
}

.target-symbol {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e5f7f8;
}

.conclusion-main,
.conclusion-sub {
  grid-column: 2;
  margin: 0;
}

.conclusion-main {
  color: #08264d;
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.65;
}

.conclusion-main strong {
  display: inline-block;
  color: #0b969d;
  font-size: clamp(1.42rem, 2.4vw, 1.95rem);
}

.conclusion-sub {
  margin-top: 8px;
  color: #435968;
  font-weight: 800;
}

.selling-balance-block {
  padding: 76px 0;
}

.selling-balance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.82fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 38px;
}

.selling-balance-copy h2 {
  font-size: 1.62rem;
}

.selling-balance-copy p {
  font-size: 0.98rem;
}

.selling-balance-visual img {
  min-height: 280px;
  object-fit: cover;
}

.selling-need-block {
  text-align: center;
}

.selling-need-block > p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.article-point-list.selling-flow-points {
  counter-reset: selling-flow;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.selling-flow-points li {
  position: relative;
  min-height: 142px;
  padding: 62px 16px 18px;
  border: 0;
  border-radius: var(--radius);
  background: #f7fbfc;
  box-shadow: inset 0 0 0 1px #dce5ec;
}

.selling-flow-points li::before {
  counter-increment: selling-flow;
  content: counter(selling-flow);
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--color-teal);
  transform: translateX(-50%);
  font-size: 0.88rem;
  font-weight: 900;
}

.selling-price-block {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  padding: 72px 0;
}

.selling-price-visual {
  position: relative;
  margin: 0;
}

.selling-price-visual img {
  min-height: 360px;
  object-fit: cover;
}

.price-plate {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border-radius: 50%;
  color: var(--color-teal);
  background: rgba(239, 250, 250, 0.94);
  box-shadow: 0 18px 45px rgba(15, 43, 59, 0.16);
  text-align: center;
}

.price-plate span,
.price-plate small {
  color: var(--color-teal);
  font-weight: 900;
}

.price-plate strong {
  color: var(--color-teal);
  font-size: 1.68rem;
  line-height: 1.1;
}

.selling-final-cta {
  overflow: hidden;
  padding: 48px;
  border: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 27, 58, 0.96), rgba(4, 27, 58, 0.88)),
    url("assets/cta-bg-wireframe-v1.png") center / cover no-repeat;
  box-shadow: none;
}

.selling-final-cta h2,
.selling-final-cta .article-block h2 {
  color: #fff;
}

.selling-final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.selling-final-cta .button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

/* Top page visual direction based on the approved completion image. */
.site-header {
  min-height: 76px;
  color: #fff;
  background: rgba(4, 27, 58, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 250px;
}

.brand strong {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1rem;
  font-weight: 800;
}

.brand small {
  color: rgba(218, 232, 237, 0.72);
}

.site-nav {
  gap: 10px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.92);
  padding: 10px 9px;
  font-size: 0.82rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav .nav-cta {
  padding: 12px 14px;
  color: #fff;
  background: linear-gradient(135deg, #13a6ac, #098a92);
  box-shadow: 0 10px 26px rgba(0, 151, 160, 0.22);
}

.hero {
  min-height: 720px;
  margin-top: -76px;
  padding-top: 76px;
}

.hero-bg {
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 25, 0.9) 0%, rgba(5, 12, 25, 0.72) 40%, rgba(5, 12, 25, 0.16) 100%),
    linear-gradient(0deg, rgba(5, 12, 25, 0.66) 0%, rgba(5, 12, 25, 0.04) 56%);
}

.hero-inner {
  padding: 116px 0 58px;
}

.hero-layout {
  display: block;
}

.hero-copy {
  max-width: 780px;
}

.hero .eyebrow {
  margin-bottom: 12px;
  color: #fff;
  font-size: 1rem;
}

.hero h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.15vw, 3.62rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.1rem;
  font-weight: 700;
}

.button {
  gap: 8px;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 4px;
}

.button.primary {
  background: linear-gradient(135deg, #0ca3a7, #07858c);
  box-shadow: 0 12px 22px rgba(0, 121, 128, 0.2);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(5, 16, 31, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-visual {
  width: min(100%, 540px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-mock-image {
  border-radius: 0;
  filter: drop-shadow(0 28px 38px rgba(0, 0, 0, 0.38));
}

.hero-facts {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 820px);
  min-height: 0;
  margin: 44px 0 0;
  gap: 18px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.hero-facts::before {
  display: none;
}

.hero-facts div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 94px;
  padding: 18px 20px 18px 82px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015)),
    rgba(4, 20, 40, 0.68);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.hero-facts div::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid #d4a122;
  border-radius: 50%;
  color: #e6b536;
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
  transform: translateY(-50%);
}

.hero-facts div::after {
  content: "";
  position: absolute;
  left: 17px;
  bottom: 14px;
  width: 54px;
  height: 54px;
  border-bottom: 1px solid rgba(212, 161, 34, 0.56);
  border-left: 1px solid rgba(212, 161, 34, 0.56);
  border-radius: 0 0 0 42px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  line-height: 1.3;
}

.hero-facts dd {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.35;
}

.center-head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-head h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  color: #061f43;
  font-size: 2rem;
}

.center-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #13a6ac, #76d6d4);
}

.center-head small {
  font-size: 0.64em;
  font-weight: 800;
}

.center-lead {
  max-width: 820px;
  margin: -12px auto 34px;
  color: var(--color-muted);
  text-align: center;
  font-weight: 700;
}

.problem-section {
  padding: 48px 0;
  background: #fff;
}

.selling-lead-section {
  padding: 52px 0 58px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f6fafb 100%);
}

.selling-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 34px 0;
  border-top: 1px solid #dce5ec;
  border-bottom: 1px solid #dce5ec;
}

.selling-lead h2 {
  max-width: 760px;
  margin-bottom: 16px;
}

.selling-lead p {
  max-width: 740px;
  margin-bottom: 6px;
  color: var(--color-muted);
}

.selling-lead .section-kicker {
  color: var(--color-teal);
}

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

.problem-grid span {
  position: relative;
  min-height: 74px;
  padding: 18px 16px 16px 46px;
  border: 1px solid #dce5ec;
  border-radius: 8px;
  color: #092348;
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 43, 59, 0.04);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.5;
}

.problem-grid span::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 21px;
  width: 15px;
  height: 15px;
  border: 2px solid #092348;
  border-radius: 50%;
}

.problem-grid span::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 26px;
  width: 6px;
  height: 4px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.service-showcase {
  background:
    linear-gradient(180deg, rgba(242, 248, 250, 0.96), rgba(248, 252, 253, 0.96)),
    url("assets/section-pattern-wireframe-v1.png") top right / min(860px, 72vw) auto no-repeat;
}

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

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #d9e4ea;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.08);
}

.service-card .card-visual {
  margin: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  background: #f8fbfd;
  box-shadow: none;
}

.service-card h3,
.service-card p,
.service-card ul {
  margin-left: 26px;
  margin-right: 26px;
}

.service-card h3 {
  color: #08264d;
  font-size: 1.18rem;
  min-height: 2.9em;
}

.service-card-link {
  align-self: stretch;
  min-height: 52px;
  margin: auto 26px 28px;
  padding-right: 18px;
  padding-left: 18px;
  text-align: center;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: normal;
}

.service-card p {
  color: #425665;
}

.service-card ul {
  padding: 0 0 28px;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: #203a4d;
  font-size: 0.88rem;
  font-weight: 800;
}

.service-card li + li {
  margin-top: 8px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 8px;
  height: 4px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.service-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: -46px 0 18px 26px;
  border: 6px solid #fff;
  border-radius: 50%;
  background: linear-gradient(135deg, #06234c, #0b4772);
  box-shadow: 0 16px 32px rgba(15, 43, 59, 0.28);
}

.service-icon::before,
.service-icon::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
}

.icon-site::before {
  width: 27px;
  height: 19px;
  border: 2px solid #fff;
  border-radius: 3px;
}

.icon-site::after {
  bottom: 14px;
  width: 18px;
  height: 2px;
  background: #fff;
  box-shadow: 0 -5px 0 -1px #fff;
}

.service-icon.accent {
  background: linear-gradient(135deg, #14a8ad, #078b92);
}

.service-icon.dark {
  background: linear-gradient(135deg, #06172f, #0b284d);
}

.icon-writing::before {
  width: 30px;
  height: 6px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-38deg);
}

.icon-writing::after {
  right: 16px;
  bottom: 15px;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(7deg);
}

.icon-seo::before {
  left: 17px;
  bottom: 18px;
  width: 4px;
  height: 19px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 8px -7px 0 #fff, 16px -13px 0 #fff;
}

.icon-seo::after {
  right: 14px;
  top: 17px;
  width: 24px;
  height: 17px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: skew(-14deg);
}

.reason-showcase {
  background: #fff;
}

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

.reason-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid #d9e4ea;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 252, 252, 0.94)),
    #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.07);
}

.reason-number {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #061f43;
  background: #fff4dc;
  font-size: 0.78rem;
  font-weight: 950;
}

.reason-card h3 {
  color: #08264d;
}

.reason-card p {
  margin-bottom: 0;
  color: #425665;
}

.reason-points {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.reason-points li {
  position: relative;
  padding-left: 22px;
  color: #183246;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.55;
}

.reason-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #12a4a8;
  border-bottom: 2px solid #12a4a8;
  transform: rotate(-45deg);
}

.case-showcase {
  background:
    linear-gradient(180deg, #f7fbfb 0%, #ffffff 100%);
}

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

.case-grid article {
  min-height: 330px;
  padding: 28px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.07);
}

.case-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #075f62;
  background: #e5f7f6;
  font-size: 0.78rem;
  font-weight: 950;
}

.case-grid h3 {
  color: #08264d;
}

.case-grid p {
  color: #425665;
}

.case-grid strong {
  display: block;
  margin: 18px 0 8px;
  color: #092348;
}

.case-grid ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-grid li {
  position: relative;
  padding-left: 20px;
  color: #20384a;
  font-size: 0.9rem;
  font-weight: 850;
}

.case-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 5px;
  border-left: 2px solid #13a6ac;
  border-bottom: 2px solid #13a6ac;
  transform: rotate(-45deg);
}

.pricing-showcase {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid #d9e2e7;
  background: #d9e2e7;
  gap: 1px;
  box-shadow: 0 16px 42px rgba(15, 43, 59, 0.06);
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 28px 24px 24px;
  background: #fff;
  text-align: center;
}

.pricing-card.featured {
  border-top: 8px solid #0aa0a5;
  padding-top: 20px;
}

.popular-badge {
  position: absolute;
  left: 50%;
  top: -1px;
  margin: 0;
  padding: 3px 16px;
  color: #061f43;
  background: #ffc62f;
  font-size: 0.78rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.pricing-card h3 {
  color: #092348;
  font-size: 1.2rem;
}

.price-label {
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-fit {
  min-height: 3.2em;
  margin: -4px 0 16px;
  color: #475b69;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.55;
}

.price-main {
  margin-bottom: 22px;
  color: #06234c;
  font-size: 2rem;
  font-weight: 950;
  line-height: 1.1;
}

.price-main span,
.price-main small {
  margin-right: 4px;
  font-size: 0.72rem;
  font-weight: 900;
}

.price-main small {
  margin-left: 2px;
  margin-right: 0;
}

.pricing-card dl {
  margin: 0 0 22px;
  text-align: left;
}

.pricing-card dl div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid #e7eef2;
}

.pricing-card dt {
  color: #5a6872;
  font-size: 0.78rem;
  font-weight: 900;
}

.pricing-card dd {
  margin: 0;
  color: #20384a;
  font-size: 0.82rem;
  font-weight: 800;
}

.pricing-card .button {
  margin-top: auto;
}

.plan-guide {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(247, 252, 252, 0.96), rgba(255, 255, 255, 0.98)),
    #fff;
}

.plan-guide-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.plan-guide-head .section-kicker {
  margin-bottom: 6px;
}

.plan-guide-head h3 {
  margin-bottom: 0;
  color: #08264d;
  font-size: 1.45rem;
}

.plan-guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #d9e4ea;
}

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

.plan-guide-grid article {
  min-height: 132px;
  padding: 18px;
  background: #fff;
}

.plan-guide-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #08264d;
  font-size: 1rem;
}

.plan-guide-grid p {
  margin: 0;
  color: #425665;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.55;
}

.pricing-note {
  margin: 22px 0 0;
  color: #6a7880;
  font-size: 0.86rem;
  text-align: center;
}

.campaign-note {
  margin-top: 10px;
  color: #075f62;
  font-weight: 900;
}

.flow-showcase {
  padding-top: 42px;
  background: #fff;
}

.home-flow-list {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
}

.home-flow-list li {
  position: relative;
  min-height: 214px;
  padding: 22px 18px 20px;
  text-align: center;
}

.home-flow-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #6c7983;
  transform: translateY(-50%);
}

.home-flow-list .flow-icon {
  box-sizing: border-box;
  width: 64px;
  height: 64px;
  margin: 8px auto 12px;
  border: 2px solid rgba(6, 31, 67, 0.2);
  border-radius: 50%;
  background: #061f43;
  filter: contrast(1.08) saturate(1.06);
}

.home-flow-list span {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  margin: 0;
  background: #061f43;
}

.bottom-cta {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 27, 58, 0.96), rgba(4, 27, 58, 0.88)),
    url("assets/cta-bg-wireframe-v1.png") center / cover no-repeat;
}

.bottom-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 116px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.bottom-cta-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-question {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #061f43;
  background: #fff;
  font-size: 2rem;
  font-weight: 950;
}

.bottom-cta h2 {
  margin-bottom: 4px;
  font-size: 1.35rem;
}

.bottom-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.page-hero-pricing .price-strip.hero-price {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.page-hero-pricing .price-strip.hero-price div {
  position: relative;
  min-height: 86px;
  padding: 18px 18px 18px 74px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(6, 22, 36, 0.46);
}

.page-hero-pricing .price-strip.hero-price span {
  color: rgba(255, 255, 255, 0.82);
}

.page-hero-pricing .price-strip.hero-price strong {
  color: #fff;
}

.page-hero-pricing .price-strip.hero-price .hero-price-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0;
  color: #d7a12a;
  transform: translateY(-50%);
}

.page-hero-pricing .price-strip.hero-price .hero-price-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-main-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.pricing-page-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #d9e4ea;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(15, 43, 59, 0.08);
}

.pricing-page-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto minmax(176px, 1fr) 56px;
  gap: 16px;
  min-height: 650px;
  min-width: 0;
  padding: 34px 24px 24px;
  background: #fff;
  text-align: center;
}

.pricing-page-card.featured {
  border-top: 0;
  box-shadow: inset 0 0 0 1px rgba(10, 160, 165, 0.26);
}

.pricing-page-ribbon {
  position: absolute;
  inset: 0 0 auto;
  margin: 0;
  padding: 7px 10px;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.pricing-page-head {
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 6px;
}

.pricing-page-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  background: #061f43;
  font-weight: 950;
  line-height: 1;
}

.pricing-page-head h3 {
  margin: 0;
  color: #08264d;
  font-size: 1.28rem;
  line-height: 1.28;
}

.pricing-page-head p,
.pricing-page-initial {
  margin: 0;
  color: #08264d;
  font-weight: 900;
}

.pricing-page-costs {
  display: grid;
  gap: 10px;
}

.pricing-page-price {
  margin: 0;
  padding: 15px 12px;
  border: 1px solid #dce7eb;
  border-radius: 6px;
  background: #f8fbfb;
}

.pricing-page-price span {
  display: block;
  margin-bottom: 2px;
  color: #08264d;
  font-size: 0.9rem;
  font-weight: 900;
}

.pricing-page-price strong {
  display: block;
  color: #08264d;
  font-size: 2rem;
  line-height: 1.1;
}

.pricing-page-price.accent strong {
  color: #0aa0a5;
}

.pricing-page-price small {
  font-size: 0.95rem;
}

.pricing-page-initial {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border: 1px solid #f0dcc4;
  border-radius: 6px;
  background: #fff8ef;
  font-size: 0.82rem;
}

.pricing-page-initial span {
  color: #8a6418;
  font-size: 0.76rem;
  font-weight: 950;
}

.pricing-page-initial del,
.pricing-table del {
  color: #8a3a24;
  text-decoration-color: #d33b2f;
  text-decoration-thickness: 2px;
}

.pricing-page-initial strong {
  color: #0b6d69;
  font-size: 0.92rem;
  line-height: 1.35;
}

.pricing-page-tag {
  align-self: center;
  margin: 0;
  padding: 8px 10px;
  border-radius: 4px;
  color: #8a6418;
  background: #f7eddb;
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing-page-list {
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.pricing-page-list li {
  position: relative;
  padding-left: 20px;
  color: #203a4d;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.48;
}

.pricing-page-list li + li {
  margin-top: 9px;
}

.pricing-page-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 4px;
  border-bottom: 2px solid #0aa0a5;
  border-left: 2px solid #0aa0a5;
  transform: rotate(-45deg);
}

.pricing-page-card .button {
  align-self: end;
}

.pricing-card-note {
  margin: 18px auto 28px;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
}

.pricing-table td:last-child strong {
  color: #0b6d69;
  font-size: 1.08rem;
}

.mobile-pricing-note,
.mobile-compare-summary {
  display: none;
}

.pricing-choice-guide {
  margin-bottom: 26px;
}

.plan-guide-head > p {
  max-width: 360px;
  margin: 0;
  color: #5b6b73;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.65;
}

.seo-plan-compare {
  margin: 0 0 28px;
  padding: 26px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #f7fbfb;
}

.seo-plan-compare h3 {
  margin-bottom: 18px;
  color: #08264d;
  text-align: center;
}

.seo-plan-compare > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.seo-plan-compare article {
  padding: 22px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #fff;
}

.seo-plan-compare strong {
  display: block;
  margin-bottom: 8px;
  color: #0b6d69;
  font-size: 1.05rem;
}

.seo-plan-compare p {
  margin: 0;
  color: #425665;
  font-weight: 800;
  line-height: 1.7;
}

.pricing-caution-section {
  background: #fff;
}

.pricing-caution-section .pricing-support {
  margin: 0;
}

.pricing-support article {
  position: relative;
  padding: 34px 30px 30px;
}

.pricing-support-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  box-shadow: 0 12px 28px rgba(15, 43, 59, 0.12);
}

.pricing-support-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-bottom-cta {
  background:
    linear-gradient(90deg, rgba(4, 27, 58, 0.96), rgba(4, 27, 58, 0.84), rgba(4, 27, 58, 0.62)),
    url("assets/pricing-hero-bg-v2.png") center / cover no-repeat;
}

.section-head.centered {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-fit-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

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

.service-fit-card {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.08);
}

.service-fit-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-fit-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 18px 0 14px 22px;
  border: 4px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  box-shadow: 0 12px 26px rgba(15, 43, 59, 0.16);
}

.service-fit-icon svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-fit-card h3,
.service-fit-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.service-fit-card h3 {
  margin-bottom: 2px;
  color: #08264d;
  font-size: 1.18rem;
}

.service-fit-card .fit-sub {
  margin-bottom: 12px;
  color: #08264d;
  font-weight: 900;
  line-height: 1.45;
}

.service-fit-card p:last-child {
  margin-bottom: 26px;
  color: #465b68;
  font-size: 0.92rem;
}

.service-plan-section {
  background:
    linear-gradient(180deg, rgba(242, 247, 246, 0.96), rgba(246, 251, 252, 0.98)),
    url("assets/section-pattern-wireframe-v1.png") top right / min(860px, 72vw) auto no-repeat;
}

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

.service-plan-card {
  position: relative;
  display: grid;
  grid-template-rows: 66px 62px minmax(258px, 1fr) 74px;
  min-height: 532px;
  padding: 42px 20px 24px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(15, 43, 59, 0.07);
  text-align: center;
}

.service-plan-card.featured {
  padding-top: 42px;
  border-color: rgba(10, 160, 165, 0.42);
  box-shadow: 0 22px 54px rgba(15, 118, 110, 0.13);
}

.service-plan-ribbon {
  position: absolute;
  inset: 0 0 auto;
  margin: 0;
  padding: 6px 10px;
  color: #fff;
  background: linear-gradient(135deg, #14a8ad, #078b92);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.service-plan-card h3 {
  margin: 0;
  color: #08264d;
  font-size: 1rem;
  line-height: 1.35;
}

.service-plan-card h3 span {
  display: block;
  margin-bottom: 3px;
  font-size: 1.1rem;
}

.service-plan-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border: 2px solid #c9d9e2;
  border-radius: 50%;
  color: #08264d;
  background: #f7fbfc;
}

.service-plan-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-plan-card ul,
.service-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.service-plan-card ul {
  align-self: start;
}

.service-plan-card li,
.service-check-list li {
  position: relative;
  padding-left: 22px;
  color: #203a4d;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.48;
}

.service-plan-card li + li,
.service-check-list li + li {
  margin-top: 8px;
}

.service-plan-card li::before,
.service-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid #0aa0a5;
  border-left: 2px solid #0aa0a5;
  transform: rotate(-45deg);
}

.service-plan-fit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid #e5eef2;
  color: #08264d;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.5;
}

.service-plan-note,
.service-center-note {
  margin: 20px auto 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  text-align: center;
}

.service-included-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.service-included-copy p {
  color: #33464f;
  font-weight: 800;
}

.service-included-visual {
  margin-top: 24px;
}

.service-check-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-check-card {
  padding: 30px;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 43, 59, 0.07);
}

.service-check-card h3 {
  position: relative;
  margin-bottom: 20px;
  padding-left: 30px;
  color: #08264d;
  font-size: 1.18rem;
}

.service-check-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 20px;
  height: 20px;
  border: 2px solid #0aa0a5;
  border-radius: 50%;
}

.service-industry-section {
  color: var(--color-ink);
  background: #fbfdfd;
}

.service-industry-section .section-kicker {
  color: var(--color-teal);
}

.service-industry-section h2 {
  color: #08264d;
}

.service-industry-section p {
  color: var(--color-muted);
}

.service-industry-strip {
  position: relative;
  overflow: hidden;
  border: 1px solid #d9e4ea;
  border-radius: var(--radius);
  background: #061f43;
  box-shadow: 0 18px 46px rgba(15, 43, 59, 0.1);
}

.service-industry-strip img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.service-industry-labels {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.service-industry-labels span {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding: 10px 8px;
  color: #fff;
  background: rgba(4, 27, 58, 0.88);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.service-industry-labels span:last-child {
  border-right: 0;
}

.service-bottom-cta {
  background:
    linear-gradient(90deg, rgba(4, 27, 58, 0.96), rgba(4, 27, 58, 0.88)),
    url("assets/cta-bg-wireframe-v1.png") center / cover no-repeat;
}

@media (max-width: 1020px) {
  .site-header {
    min-height: 66px;
    padding: 10px 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 66px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

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

  .site-nav a {
    white-space: normal;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-visual {
    justify-self: start;
    width: min(100%, 560px);
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .intro-grid,
  .target-grid,
  .two-column,
  .contact-grid,
  .writing-compare {
    grid-template-columns: 1fr;
  }

  .visual-copy-panel {
    padding: 28px;
  }

  .page-visual img {
    aspect-ratio: 16 / 10;
  }

  .plans-overview,
  .notice-row,
  .pricing-support,
  .flow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .price-strip.three-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selling-lead {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 720px) {
  .container,
  .hero-inner {
    width: min(100% - 28px, var(--container));
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 46px;
    max-width: 185px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 24, 36, 0.96) 0%, rgba(9, 24, 36, 0.76) 70%, rgba(9, 24, 36, 0.54) 100%),
      linear-gradient(0deg, rgba(9, 24, 36, 0.86) 0%, rgba(9, 24, 36, 0.2) 46%);
  }

  .hero-inner {
    padding: 78px 0 88px;
  }

  .hero-visual {
    padding: 10px;
    border-radius: 14px;
  }

  .hero-visual-label {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

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

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

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .selling-lead .button,
  .article-final-cta .button {
    width: 100%;
  }

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

  .article-block {
    padding: 40px 0;
  }

  .article-final-cta {
    padding: 24px;
  }

  .hero-facts,
  .plans-overview,
  .notice-row,
  .price-strip,
  .price-strip.three-items,
  .pricing-support,
  .flow-list,
  .home-flow-list,
  .faq-grid,
  .reason-panel,
  .process-map {
    grid-template-columns: 1fr;
  }

  .card-visual {
    aspect-ratio: 16 / 10;
  }

  .home-flow-list li {
    min-height: auto;
  }

  .flow-icon {
    width: 58px;
    height: 58px;
  }

  .process-map div:last-child {
    grid-column: auto;
  }

  .section {
    padding: 66px 0;
  }

  .intro-band {
    padding: 34px 0;
  }

  .mini-card,
  .plan-card,
  .compare-card,
  .pricing-support article,
  .contact-form {
    padding: 20px;
  }

  .visual-copy-panel {
    padding: 22px;
  }

  .section-visual-wide {
    margin-bottom: 22px;
  }

  .page-visual img {
    aspect-ratio: 4 / 3;
  }

  .company-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-band {
    align-items: stretch;
    flex-direction: column;
    padding: 24px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .brand strong {
    max-width: 210px;
    font-size: 0.86rem;
  }

  h1 {
    font-size: 1.85rem;
  }

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

  .button {
    min-height: 46px;
    padding: 11px 14px;
  }

  th,
  td {
    padding: 13px;
  }
}

@media (max-width: 640px) {
  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .pricing-table,
  .compare-table {
    min-width: 0;
  }

  thead {
    display: none;
  }

  tbody tr {
    margin-bottom: 14px;
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(15, 43, 59, 0.06);
  }

  tbody tr:last-child {
    margin-bottom: 0;
  }

  tbody th {
    padding: 15px 16px;
    border-bottom: 1px solid var(--color-line);
    color: #fff;
    background: var(--color-blue-dark);
  }

  tbody td {
    display: grid;
    grid-template-columns: minmax(106px, 0.9fr) minmax(0, 1.1fr);
    gap: 12px;
    padding: 13px 16px;
    border-bottom: 1px solid var(--color-line);
    overflow-wrap: anywhere;
  }

  tbody td::before {
    content: attr(data-label);
    color: var(--color-muted);
    font-size: 0.82rem;
    font-weight: 900;
  }

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

  .highlight-row th,
  .highlight-row td {
    background: #f0fbf8;
  }

  .highlight-row th {
    color: var(--color-blue-dark);
    border-bottom-color: #c7e6df;
  }
}

@media (max-width: 1020px) {
  .site-nav {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(4, 27, 58, 0.98);
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-nav .nav-cta {
    text-align: center;
  }

  .hero {
    margin-top: -66px;
    padding-top: 66px;
  }

  .hero-inner {
    padding-top: 92px;
  }

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

  .service-card-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .home-flow-list li:not(:last-child)::after {
    display: none;
  }

  .bottom-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .bottom-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    height: 42px;
    max-width: 168px;
  }

  .brand strong {
    max-width: 180px;
    font-size: 0.82rem;
  }

  .hero {
    margin-top: -66px;
    padding-top: 66px;
  }

  .hero-bg {
    object-position: 64% center;
  }

  .hero-layout {
    gap: 22px;
  }

  .hero-visual {
    max-width: 420px;
  }

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

  .hero-facts,
  .problem-grid,
  .pricing-grid,
  .home-flow-list {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    gap: 12px;
  }

  .service-card h3,
  .service-card p,
  .service-card ul {
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-icon {
    margin-left: 20px;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .bottom-cta-copy {
    align-items: flex-start;
  }

  .bottom-cta-actions,
  .bottom-cta-actions .button {
    width: 100%;
  }
}

@media (max-width: 460px) {
  .brand-logo {
    height: 38px;
    max-width: 152px;
  }

  .brand strong {
    max-width: 158px;
    font-size: 0.76rem;
  }

  .hero-visual {
    display: none;
  }

  .hero-inner {
    padding-bottom: 44px;
  }

  .center-head h2 {
    font-size: 1.55rem;
  }

  .problem-grid span {
    min-height: auto;
  }

  .pricing-card dl div {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .bottom-cta-copy {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .hero-facts {
    gap: 12px;
    min-height: 0;
  }

  .hero-facts::before {
    display: none;
  }

  .hero-facts div {
    min-height: 106px;
    padding: 18px 22px 18px 82px;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 6px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
      rgba(4, 22, 48, 0.58);
  }

  .hero-facts div::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 50%;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 2px solid #d8a526;
    border-radius: 50%;
    color: #f0c044;
    font-size: 1.05rem;
    font-weight: 950;
    transform: translateY(-50%);
  }

  .hero-facts div::after {
    content: "";
    position: absolute;
    left: 17px;
    bottom: 15px;
    width: 54px;
    height: 54px;
    border-bottom: 1px solid rgba(216, 165, 38, 0.58);
    border-left: 1px solid rgba(216, 165, 38, 0.58);
    border-radius: 0 0 0 42px;
  }
}

@media (max-width: 1020px) {
  .page-hero-selling .page-hero-inner {
    margin-left: auto;
  }

  .selling-two-column,
  .selling-balance-grid,
  .selling-diagram-flow,
  .selling-diagram-bottom,
  .selling-response-flow,
  .selling-price-block {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .selling-question-wrap {
    min-height: auto;
  }

  .selling-question-wrap::before,
  .selling-question-wrap::after {
    display: none;
  }

  .selling-question-circle {
    width: min(100%, 430px);
  }

  .article-point-list.selling-flow-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .selling-price-visual img {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .page-hero-selling {
    min-height: auto;
    padding: 98px 0 68px;
  }

  .selling-intro-block,
  .selling-balance-block,
  .selling-need-block,
  .selling-price-block {
    padding: 42px 0;
  }

  .selling-message-map {
    padding: 46px 0 52px;
  }

  .selling-message-head {
    margin-bottom: 24px;
    text-align: center;
  }

  .selling-message-head::after {
    margin-left: auto;
  }

  .selling-message-head h2 {
    font-size: 1.56rem;
    line-height: 1.35;
  }

  .selling-message-head h2 span {
    display: block;
  }

  .selling-ng-examples {
    margin-top: 30px;
  }

  .selling-ng-head {
    margin-bottom: 20px;
  }

  .selling-ng-head h3 {
    font-size: 1.48rem;
  }

  .selling-ng-image-list {
    gap: 22px;
  }

  .selling-ng-image-card {
    border-radius: 12px;
  }

  .selling-response-flow {
    gap: 24px;
    margin-top: 30px;
  }

  .selling-question-circle {
    width: min(100%, 340px);
    padding: 34px 28px;
  }

  .question-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    font-size: 1.7rem;
  }

  .selling-question-circle p {
    margin-bottom: 12px;
    font-size: 1.45rem;
    line-height: 1.45;
  }

  .selling-question-circle .question-emphasis {
    font-size: 1.68rem;
    line-height: 1.45;
  }

  .selling-diagram-panel {
    padding: 18px;
  }

  .selling-common-grid {
    grid-template-columns: 1fr;
  }

  .common-site-card {
    min-height: auto;
  }

  .common-site-image {
    height: 96px;
    margin-left: 18px;
  }

  .common-site-image img {
    max-width: 230px;
  }

  .mini-site-mockup {
    height: 92px;
  }

  .reaction-card {
    grid-template-columns: 52px 1fr;
    padding: 14px;
  }

  .reaction-icon {
    width: 50px;
    height: 50px;
  }

  .selling-reality-note,
  .selling-conclusion-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .thinking-person,
  .target-symbol {
    margin-bottom: 14px;
  }

  .thinking-person svg {
    width: 108px;
    height: 108px;
  }

  .thinking-person img {
    width: 108px;
    height: 108px;
  }

  .conclusion-main,
  .conclusion-sub {
    grid-column: 1;
  }

  .article-point-list.selling-flow-points {
    grid-template-columns: 1fr;
  }

  .selling-flow-points li {
    min-height: 118px;
    padding-top: 54px;
  }

  .selling-price-visual img {
    min-height: 250px;
  }

  .price-plate {
    right: 14px;
    bottom: 14px;
    width: 116px;
    height: 116px;
  }

  .price-plate strong {
    font-size: 1.34rem;
  }

  .selling-final-cta {
    padding: 28px 22px;
  }
}

@media (max-width: 1020px) {
  .page-hero-service {
    min-height: auto;
    background-position: 62% center;
  }

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

  .pricing-page-card {
    grid-template-rows: auto auto auto minmax(150px, 1fr) 56px;
    min-height: 620px;
  }

  .page-hero-pricing .price-strip.hero-price {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-fit-grid,
  .service-check-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-included-grid {
    grid-template-columns: 1fr;
  }

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

  .writing-step-card:not(:last-child)::after {
    display: none;
  }

  .writing-step-card {
    min-height: 220px;
  }

  .seo-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-role-grid,
  .why-journey-grid,
  .why-service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero-why .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .why-hero-graphic {
    justify-self: start;
    max-width: 560px;
  }

  .why-journey-grid article:not(:last-child)::after {
    display: none;
  }

  .seo-entry-layout,
  .seo-safety-grid,
  .seo-plan-grid {
    grid-template-columns: 1fr;
  }

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

  .seo-process-grid article::after,
  .seo-process-turn-arrow {
    display: none;
  }

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

  .seo-flow-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  .page-hero-pricing {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 15, 28, 0.97) 0%, rgba(5, 15, 28, 0.84) 72%, rgba(5, 15, 28, 0.58) 100%),
      linear-gradient(0deg, rgba(5, 15, 28, 0.78) 0%, rgba(5, 15, 28, 0.18) 58%),
      url("assets/pricing-hero-bg-v2.png") 64% center / cover;
  }

  .page-hero-writing {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 15, 28, 0.97) 0%, rgba(5, 15, 28, 0.86) 72%, rgba(5, 15, 28, 0.62) 100%),
      linear-gradient(0deg, rgba(5, 15, 28, 0.76), rgba(5, 15, 28, 0.1)),
      url("assets/card-writing-visual-v1.png") 38% center / cover;
  }

  .page-hero-seo {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 15, 28, 0.97) 0%, rgba(5, 15, 28, 0.86) 72%, rgba(5, 15, 28, 0.62) 100%),
      linear-gradient(0deg, rgba(5, 15, 28, 0.76), rgba(5, 15, 28, 0.1)),
      url("assets/card-seo-visual-v1.png") 40% center / cover;
  }

  .page-hero-why {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(5, 15, 28, 0.98) 0%, rgba(5, 15, 28, 0.91) 100%),
      #07192a;
  }

  .page-hero-why::after {
    width: 100%;
    opacity: 0.26;
    background-position: 70% center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .page-hero-writing .page-hero-inner,
  .page-hero-seo .page-hero-inner,
  .page-hero-why .page-hero-inner,
  .writing-compare-section .container,
  .writing-process-section .container,
  .writing-page-role-section .container,
  .writing-before-after-section .container,
  .writing-cta-section .container,
  .seo-entry-section .container,
  .seo-safety-section .container,
  .seo-flow-section .container,
  .seo-plan-section .container,
  .seo-cta-section .container {
    width: min(100% - 28px, 1260px);
  }

  .why-role-section .container,
  .why-journey-section .container,
  .why-not-only-section .container,
  .why-cta-section .container {
    width: min(100% - 28px, 1280px);
  }

  .page-hero.page-hero-writing h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .page-hero.page-hero-writing .page-lead {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .page-hero.page-hero-seo h1 {
    font-size: 2rem;
    line-height: 1.18;
  }

  .page-hero.page-hero-seo .page-lead {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .page-hero.page-hero-why h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .page-hero.page-hero-why .page-lead {
    font-size: 0.96rem;
    line-height: 1.85;
  }

  .why-hero-graphic {
    display: none;
  }

  .writing-compare-section h2,
  .writing-process-section h2,
  .writing-page-role-section h2,
  .writing-before-after-section h2 {
    font-size: 1.45rem;
  }

  .page-hero-pricing .price-strip.hero-price,
  .pricing-page-grid,
  .seo-hero-facts {
    grid-template-columns: 1fr;
  }

  .pricing-page-card {
    grid-template-rows: auto auto auto auto auto;
    gap: 16px;
    min-height: auto;
  }

  .seo-plan-compare {
    padding: 22px;
  }

  .seo-plan-compare > div {
    grid-template-columns: 1fr;
  }

  .pricing-choice-guide {
    margin: 0 0 22px;
  }

  .plan-guide-grid.compact {
    grid-template-columns: 1fr;
  }

  .pricing-main-section > .container > .table-wrap {
    display: none;
  }

  .mobile-pricing-note {
    display: block;
    margin: 18px 0 0;
    padding: 18px;
    border: 1px solid #d9e4ea;
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, #f7fbfb 0%, #fff 100%);
    box-shadow: 0 12px 32px rgba(15, 43, 59, 0.07);
  }

  .mobile-pricing-note strong {
    display: block;
    margin-bottom: 10px;
    color: #08264d;
    font-size: 1rem;
  }

  .mobile-pricing-note ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-pricing-note li {
    position: relative;
    padding-left: 18px;
    color: #425665;
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.6;
  }

  .mobile-pricing-note li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.73em;
    width: 7px;
    height: 4px;
    border-bottom: 2px solid #0aa0a5;
    border-left: 2px solid #0aa0a5;
    transform: rotate(-45deg);
  }

  .compare-wrap {
    display: none;
  }

  .mobile-compare-summary {
    display: grid;
    gap: 12px;
    margin-top: 18px;
  }

  .page-hero-service {
    background:
      linear-gradient(90deg, rgba(5, 15, 28, 0.97) 0%, rgba(5, 15, 28, 0.82) 72%, rgba(5, 15, 28, 0.62) 100%),
      linear-gradient(0deg, rgba(5, 15, 28, 0.78) 0%, rgba(5, 15, 28, 0.18) 58%),
      url("assets/service-hero-bg-v2.png") 66% center / cover;
  }

  .service-fit-grid,
  .service-plan-grid,
  .service-check-panels {
    grid-template-columns: 1fr;
  }

  .writing-compare,
  .writing-step-list,
  .writing-page-grid,
  .writing-before-after,
  .seo-process-grid,
  .seo-safety-grid,
  .seo-flow-list,
  .seo-plan-grid,
  .why-role-grid,
  .why-journey-grid,
  .why-service-grid {
    grid-template-columns: 1fr;
  }

  .why-role-grid article,
  .why-service-grid article {
    grid-template-rows: auto auto auto auto;
  }

  .why-role-grid img,
  .why-service-grid img {
    height: 180px;
  }

  .why-journey-grid article {
    min-height: 0;
  }

  .seo-entry-layout {
    grid-template-columns: 1fr;
  }

  .seo-entry-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 28px 24px;
  }

  .seo-entry-icon {
    margin-top: 0;
    margin-bottom: 14px;
  }

  .seo-formula {
    grid-template-columns: minmax(68px, 1fr) auto minmax(68px, 1fr) auto 64px;
    gap: 8px;
    padding: 26px 16px 18px;
  }

  .seo-formula small {
    font-size: 0.68rem;
  }

  .seo-formula b {
    font-size: 1.35rem;
  }

  .seo-formula strong {
    font-size: 2.85rem;
  }

  .seo-bottom-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .why-bottom-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
  }

  .seo-cta-icon {
    width: 70px;
    height: 70px;
  }

  .why-cta-icon {
    width: 72px;
    height: 72px;
  }

  .writing-option-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .writing-option-card.accent {
    padding-top: 52px;
  }

  .writing-option-body {
    grid-template-columns: 1fr;
  }

  .writing-step-card {
    grid-template-rows: auto auto auto auto;
    min-height: auto;
  }

  .writing-step-icon {
    margin-top: 10px;
  }

  .rewrite-table dl div {
    grid-template-columns: 1fr;
  }

  .rewrite-table dt {
    padding-bottom: 6px;
  }

  .rewrite-table dd {
    padding-top: 6px;
  }

  .writing-bottom-cta {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    text-align: left;
  }

  .writing-cta-icon {
    width: 70px;
    height: 70px;
  }

  .service-plan-card {
    grid-template-rows: auto auto auto auto;
    gap: 16px;
    min-height: auto;
  }

  .service-industry-strip {
    overflow: visible;
    background: #fff;
  }

  .service-industry-strip img {
    aspect-ratio: 16 / 10;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .service-industry-labels {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: #061f43;
  }

  .service-industry-labels span {
    min-height: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Final top-page overrides: remove temporary symbol icons and keep added sections responsive. */
.hero-facts div {
  padding-left: 24px;
  border-left: 4px solid rgba(156, 224, 215, 0.82);
}

.hero-facts div::before,
.hero-facts div::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 1020px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

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

  .plan-guide-grid article:last-child {
    grid-column: 1 / -1;
  }

  .plan-guide-grid.compact article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .reason-card,
  .case-grid article {
    min-height: auto;
  }

  .plan-guide {
    padding: 22px;
  }

  .plan-guide-head {
    display: block;
  }

  .plan-guide-grid {
    grid-template-columns: 1fr;
  }

  .plan-guide-grid article:last-child {
    grid-column: auto;
  }

  .hero-facts div {
    min-height: auto;
    padding: 18px 20px;
  }
}

/* Completion-image appeal: top hero device mockups and smartphone example slider. */
.hero .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}

.hero .completion-hero-visual {
  position: relative;
  display: block;
  justify-self: end;
  width: min(100%, 520px);
  padding: 0 0 34px !important;
  overflow: visible;
}

.mockup-desktop-window {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(6, 22, 41, 0.66);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mockup-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #eef6f8;
}

.mockup-screen img,
.mockup-phone-window img,
.mockup-phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mockup-desktop-base {
  width: 40%;
  height: 12px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(156, 224, 215, 0.18), rgba(255, 255, 255, 0.34), rgba(156, 224, 215, 0.18));
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.mockup-phone-window {
  position: absolute;
  right: 3%;
  bottom: 0;
  z-index: 2;
  width: min(31%, 154px);
  min-width: 116px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: #06182d;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.mockup-phone-window::before,
.mockup-phone-frame::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  z-index: 3;
  width: 32%;
  height: 5px;
  border-radius: 999px;
  background: rgba(4, 17, 33, 0.82);
  transform: translateX(-50%);
}

.mockup-phone-window img {
  aspect-ratio: 9 / 16;
  border-radius: 22px;
  background: #fff;
}

.mockup-gallery-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 248, 250, 0.96)),
    radial-gradient(circle at top left, rgba(19, 166, 172, 0.08), transparent 34%);
}

.mockup-gallery-lead {
  max-width: 790px;
  margin: -8px auto 0;
  color: #425665;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.9;
}

.mockup-slider {
  position: relative;
  --mockup-gap: 20px;
  --mockup-duration: 72s;
  margin-top: 34px;
  overflow: hidden;
  outline: none;
}

.mockup-slider:focus-visible {
  outline: 3px solid rgba(19, 166, 172, 0.42);
  outline-offset: 8px;
}

.mockup-slider::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  bottom: 56px;
  z-index: 2;
  width: min(120px, 12vw);
  pointer-events: none;
  background: linear-gradient(90deg, rgba(245, 250, 251, 0), rgba(245, 250, 251, 0.96));
}

.mockup-slider::before {
  content: "";
  position: absolute;
  top: 42%;
  right: 18px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(8, 38, 77, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 247, 249, 0.84)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 34px rgba(8, 38, 77, 0.16);
  pointer-events: none;
}

.mockup-track {
  display: flex;
  width: max-content;
  padding: 8px 2px 24px;
  animation: mockup-marquee var(--mockup-duration) linear infinite;
  animation-play-state: running;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .mockup-slider:hover .mockup-track {
    animation-play-state: paused;
  }
}

.mockup-track-set {
  display: flex;
  flex: 0 0 auto;
  min-width: max-content;
  gap: var(--mockup-gap);
  padding-right: var(--mockup-gap);
}

@keyframes mockup-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.mockup-phone-card {
  flex: 0 0 clamp(150px, 12.8vw, 190px);
}

.mockup-phone-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  padding: 8px;
  border: 1px solid rgba(8, 38, 77, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(145deg, #07234a, #041426),
    #06182d;
  box-shadow:
    0 22px 48px rgba(8, 38, 77, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.mockup-phone-frame img {
  border-radius: 23px;
  background: #fff;
}

.mockup-phone-card h3 {
  margin: 12px 0 0;
  color: #08264d;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .mockup-slider {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-color: rgba(8, 38, 77, 0.32) rgba(8, 38, 77, 0.08);
    scrollbar-width: thin;
  }

  .mockup-track {
    animation: none;
    scroll-snap-type: x mandatory;
    will-change: auto;
  }

  .mockup-track-set[aria-hidden="true"] {
    display: none;
  }

  .mockup-phone-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 1020px) {
  .hero .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero .completion-hero-visual {
    justify-self: start;
    width: min(100%, 500px);
    margin-top: 6px;
  }
}

@media (max-width: 720px) {
  .hero .completion-hero-visual {
    width: min(100%, 430px);
  }

  .mockup-phone-window {
    right: 2%;
    width: 29%;
    min-width: 98px;
    padding: 6px;
    border-radius: 24px;
  }

  .mockup-phone-window img {
    border-radius: 19px;
  }

  .mockup-gallery-lead {
    text-align: left;
  }

  .mockup-slider::before,
  .mockup-slider::after {
    display: none;
  }

  .mockup-slider {
    --mockup-gap: 10px;
    --mockup-duration: 44s;
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .mockup-track {
    animation: none !important;
    padding-bottom: 18px;
    transform: none !important;
    will-change: auto;
  }

  .mockup-slider::-webkit-scrollbar {
    display: none;
  }

  .mockup-track-set[aria-hidden="true"] {
    display: flex !important;
  }

  .mockup-phone-card {
    flex-basis: clamp(98px, 29vw, 122px);
  }

  .mockup-phone-frame {
    padding: 3px;
    border-radius: 18px;
    border-color: rgba(8, 38, 77, 0.12);
    box-shadow:
      0 10px 22px rgba(8, 38, 77, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  }

  .mockup-phone-frame::before {
    top: 3px;
    height: 2px;
  }

  .mockup-phone-frame img {
    border-radius: 15px;
  }
}

@media (max-width: 460px) {
  .hero .completion-hero-visual {
    display: block;
    max-width: 320px;
    padding-bottom: 24px !important;
  }

  .mockup-desktop-window {
    padding: 7px;
    border-radius: 14px;
  }

  .mockup-screen {
    border-radius: 9px;
  }

  .mockup-phone-window {
    min-width: 82px;
    padding: 5px;
    border-radius: 20px;
  }

  .mockup-phone-window::before,
  .mockup-phone-frame::before {
    top: 6px;
    height: 4px;
  }

  .mockup-phone-window img {
    border-radius: 15px;
  }

  .mockup-phone-card {
    flex-basis: clamp(96px, 29vw, 118px);
  }
}

/* Top FV redesign: image-backed visual with HTML text/buttons/cards. */
.top-page .site-header {
  min-height: 98px;
  padding: 14px max(28px, calc((100vw - 1160px) / 2));
  color: #fff;
  background: #041b3a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.top-page .brand {
  min-width: 0;
}

.top-page .brand-logo {
  width: 282px;
  max-width: 282px;
  height: auto;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
}

.top-page .site-nav {
  gap: clamp(12px, 1.6vw, 28px);
}

.top-page .site-nav a {
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 900;
}

.top-page .site-nav a:hover,
.top-page .site-nav a:focus-visible {
  color: #fff;
  background: transparent;
}

.top-page .site-nav .nav-cta {
  min-height: 54px;
  padding: 15px 20px;
  border-radius: 7px;
  background: linear-gradient(135deg, #15aeb6, #0790a0);
  box-shadow: 0 18px 36px rgba(3, 151, 165, 0.24);
}

.top-page .hero {
  min-height: 704px;
  margin-top: -98px;
  padding-top: 98px;
  background: #02152f;
}

.top-page .hero-bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.top-page .hero-bg-picture .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.top-page .hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(2, 13, 31, 0.38) 0%, rgba(2, 13, 31, 0.2) 43%, rgba(2, 13, 31, 0.02) 100%),
    linear-gradient(180deg, rgba(2, 13, 31, 0.04) 0%, rgba(2, 13, 31, 0.18) 100%);
}

.top-page .hero-inner {
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(100% - 72px, 1160px);
  padding: 50px 0 28px;
}

.top-page .hero-layout {
  order: 1;
  display: block;
  width: 100%;
}

.top-page .hero-copy {
  max-width: 700px;
  color: #fff;
}

.top-page .completion-hero-visual,
.top-page .hero-mobile-device-space {
  display: none !important;
}

.top-page .hero .eyebrow {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.55;
}

.top-page .hero .eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 46px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #12aeb7, rgba(18, 174, 183, 0.18));
}

.top-page .hero h1 {
  max-width: 720px;
  margin: 0 0 26px;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", YuMincho, "Noto Serif JP", serif;
  font-size: clamp(2.9rem, 4.45vw, 4.22rem);
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
}

.top-page .hero-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.85;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.top-page .hero-actions {
  order: 2;
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
}

.top-page .hero-actions .button {
  position: relative;
  min-width: 205px;
  min-height: 58px;
  justify-content: center;
  padding: 16px 48px 16px 26px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 900;
}

.top-page .hero-actions .button::after {
  content: ">";
  position: absolute;
  right: 22px;
  top: 50%;
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.top-page .hero-actions .button.primary {
  color: #fff;
  background: linear-gradient(135deg, #18b4bf, #078da0);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(4, 137, 151, 0.28);
}

.top-page .hero-actions .button.secondary {
  color: #031735;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.top-page .hero-facts {
  order: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100%, 740px);
  margin: 28px 0 0;
  gap: 12px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.top-page .hero-facts::before,
.top-page .hero-facts div::before,
.top-page .hero-facts div::after {
  display: none !important;
}

.top-page .hero-facts div {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  grid-template-areas:
    "icon term"
    "icon value";
  align-items: center;
  min-height: 90px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.top-page .hero-fact-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #041b3a;
}

.top-page .hero-fact-icon svg {
  display: block;
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.top-page .hero-facts dt {
  grid-area: term;
  color: #041b3a;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.3;
}

.top-page .hero-facts dd {
  grid-area: value;
  color: #041b3a;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.2;
}

@media (max-width: 1180px) {
  .top-page .site-header {
    padding-inline: 26px;
  }

  .top-page .brand-logo {
    width: 242px;
  }

  .top-page .site-nav {
    gap: 12px;
  }

  .top-page .site-nav a {
    font-size: 0.82rem;
  }
}

@media (max-width: 1020px) {
  .top-page .site-header {
    min-height: 98px;
    padding: 18px 34px;
    background: #fff;
    border-bottom: 0;
    box-shadow: 0 1px 0 rgba(4, 27, 58, 0.06);
  }

  .top-page .brand-logo {
    width: 256px;
    max-width: calc(100vw - 124px);
    box-shadow: none;
  }

  .top-page .nav-toggle {
    display: block;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .top-page .nav-toggle span:not(.sr-only) {
    width: 38px;
    height: 4px;
    margin: 6px auto;
    border-radius: 999px;
    background: #041b3a;
  }

  .top-page .site-nav {
    inset: 98px 22px auto;
    gap: 0;
    border-color: rgba(4, 27, 58, 0.12);
    background: rgba(255, 255, 255, 0.98);
  }

  .top-page .site-nav a {
    padding: 13px 14px;
    color: #041b3a;
  }

  .top-page .site-nav .nav-cta {
    color: #fff;
  }

  .top-page .hero {
    min-height: 1138px;
    margin-top: 0;
    padding-top: 0;
  }

  .top-page .hero-bg-picture .hero-bg {
    object-position: center top;
  }

  .top-page .hero-overlay {
    background:
      linear-gradient(180deg, rgba(2, 13, 31, 0.08) 0%, rgba(2, 13, 31, 0.02) 48%, rgba(2, 13, 31, 0.28) 100%),
      linear-gradient(90deg, rgba(2, 13, 31, 0.18), rgba(2, 13, 31, 0.02));
  }

  .top-page .hero-inner {
    width: min(100% - 40px, 680px);
    min-height: 1138px;
    padding: 56px 0 42px;
  }

  .top-page .hero-copy {
    max-width: 100%;
  }

  .top-page .hero .eyebrow {
    margin-bottom: 28px;
    padding-bottom: 0;
    font-size: clamp(1.05rem, 4vw, 1.28rem);
  }

  .top-page .hero .eyebrow::after {
    display: none;
  }

  .top-page .hero h1 {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(2.18rem, 9.25vw, 4.2rem);
    line-height: 1.46;
  }

  .top-page .hero-lead {
    max-width: 100%;
    font-size: clamp(1rem, 4.15vw, 1.28rem);
    line-height: 1.72;
  }

  .top-page .hero-mobile-device-space {
    order: 2;
    display: block !important;
    width: 100%;
    height: clamp(320px, 72vw, 410px);
  }

  .top-page .hero-facts {
    order: 3;
    width: 100%;
    margin-top: 0;
    gap: 12px;
  }

  .top-page .hero-facts div {
    grid-template-columns: 1fr;
    grid-template-areas:
      "icon"
      "term"
      "value";
    justify-items: center;
    min-height: clamp(132px, 35vw, 184px);
    padding: 18px 8px 16px;
    text-align: center;
    border-radius: 8px;
  }

  .top-page .hero-fact-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 8px;
  }

  .top-page .hero-fact-icon svg {
    width: 52px;
    height: 52px;
    stroke-width: 1.65;
  }

  .top-page .hero-facts dt {
    font-size: clamp(0.92rem, 3.7vw, 1.16rem);
  }

  .top-page .hero-facts dd {
    margin-top: 4px;
    font-size: clamp(1.18rem, 5.1vw, 1.72rem);
    overflow-wrap: anywhere;
  }

  .top-page .hero-actions {
    order: 4;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 16px;
    margin-top: 28px;
  }

  .top-page .hero-actions .button {
    width: 100%;
    min-height: 76px;
    font-size: clamp(1.22rem, 5.5vw, 1.68rem);
  }
}

@media (max-width: 430px) {
  .top-page .site-header {
    min-height: 96px;
    padding: 18px 30px;
  }

  .top-page .brand-logo {
    width: 244px;
  }

  .top-page .hero {
    min-height: 1110px;
  }

  .top-page .hero-inner {
    width: min(100% - 28px, 680px);
    min-height: 1110px;
    padding-top: 54px;
  }

  .top-page .hero .eyebrow {
    margin-bottom: 22px;
  }

  .top-page .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.02rem, 8.65vw, 2.55rem);
  }

  .top-page .hero-mobile-device-space {
    height: clamp(348px, 94vw, 404px);
  }

  .top-page .hero-facts {
    gap: 10px;
  }

  .top-page .hero-facts div {
    min-height: 142px;
    padding-inline: 6px;
  }

  .top-page .hero-fact-icon,
  .top-page .hero-fact-icon svg {
    width: 48px;
    height: 48px;
  }

  .top-page .hero-actions .button {
    min-height: 66px;
  }
}

@media (max-width: 380px) {
  .top-page .site-header {
    padding-inline: 24px;
  }

  .top-page .brand-logo {
    width: 228px;
  }

  .top-page .nav-toggle {
    width: 44px;
  }

  .top-page .nav-toggle span:not(.sr-only) {
    width: 32px;
  }

  .top-page .hero-inner {
    width: min(100% - 24px, 680px);
  }

  .top-page .hero h1 {
    font-size: 1.94rem;
  }

  .top-page .hero-facts {
    gap: 8px;
  }

  .top-page .hero-facts div {
    min-height: 134px;
  }

  .top-page .hero-facts dd {
    font-size: 1.12rem;
  }
}

@media (max-width: 720px) {
  .top-page .site-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    min-height: 78px;
    padding: 10px 26px;
    background: rgba(255, 255, 255, 0.96);
  }

  .top-page .brand-logo {
    width: 220px;
  }

  .top-page .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .top-page .hero {
    min-height: auto;
    background: #02152f;
  }

  .top-page .hero-bg-picture {
    inset: 0 auto auto 0;
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .top-page .hero-bg-picture .hero-bg {
    position: static;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    transform: none;
  }

  .top-page .hero-inner {
    min-height: auto;
    padding-top: 132px;
  }

  .top-page .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 13, 31, 0.54) 0%, rgba(2, 13, 31, 0.36) 58%, rgba(2, 13, 31, 0.06) 100%),
      linear-gradient(180deg, rgba(2, 13, 31, 0.06) 0%, rgba(2, 13, 31, 0.02) 46%, rgba(2, 13, 31, 0.22) 100%);
  }

  .top-page .hero .eyebrow {
    margin-bottom: 28px;
    font-size: clamp(1.08rem, 4.45vw, 1.26rem);
    line-height: 1.5;
  }

  .top-page .hero h1 {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: clamp(1.88rem, 8.32vw, 2.36rem);
    line-height: 1.42;
    text-shadow:
      0 8px 22px rgba(2, 13, 31, 0.82),
      0 2px 6px rgba(2, 13, 31, 0.76);
  }

  .top-page .hero-lead {
    max-width: min(61vw, 232px);
    font-size: clamp(0.78rem, 3.18vw, 0.9rem);
    line-height: 1.9;
  }

  .top-page .hero-mobile-device-space {
    height: clamp(82px, 22vw, 106px);
  }
}

