:root {
  --navy: #0b2f5b;
  --blue: #1464c8;
  --cyan: #23a7e0;
  --pale: #eaf4ff;
  --ink: #1f2937;
  --muted: #64748b;
  --line: #d8e2ef;
  --bg: #ffffff;
  --soft: #f5f7fa;
  --warm: #fff7e8;
  --warm-deep: #f4c76f;
  --green: #17a673;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.8;
  background: var(--bg);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(11, 47, 91, 0.12);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
  color: var(--navy);
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: var(--blue);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span::before,
.brand-mark span::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}

.brand-mark::before {
  top: 3px;
  left: 13.5px;
}

.brand-mark::after {
  right: 3px;
  top: 13.5px;
}

.brand-mark span::before {
  bottom: 3px;
  left: 13.5px;
}

.brand-mark span::after {
  left: 3px;
  top: 13.5px;
}

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

.brand strong {
  font-size: 16px;
  line-height: 1.3;
}

.brand small {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0;
}

.global-nav {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  gap: 18px;
  color: #334155;
  font-size: 14px;
  white-space: nowrap;
}

.global-nav a {
  padding: 8px 0;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.4;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.secondary {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 720px;
  padding: clamp(56px, 8vw, 112px) clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 88% 22%, rgba(244, 199, 111, 0.28), transparent 32%),
    radial-gradient(circle at 14% 82%, rgba(35, 167, 224, 0.12), transparent 30%),
    linear-gradient(180deg, #fbfdff, #fff7e8);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.32;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
  line-break: strict;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.45;
  word-break: auto-phrase;
  line-break: strict;
}

.keep {
  display: inline-block;
  max-width: 100%;
}

.nowrap {
  white-space: nowrap;
}

.lead {
  max-width: 760px;
  color: #334155;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 22px;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-notes span {
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(20, 100, 200, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(11, 47, 91, 0.13);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(11, 47, 91, 0.08);
  border-radius: 8px;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(11, 47, 91, 0.12);
  backdrop-filter: blur(10px);
}

.hero-badge strong {
  font-size: 24px;
}

.hero-badge span {
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.section {
  padding: clamp(64px, 8vw, 108px) clamp(20px, 6vw, 88px);
}

.section-head {
  max-width: 980px;
  margin-bottom: 34px;
}

.section-head p {
  color: #475569;
}

.problem-grid,
.service-grid,
.strength-grid,
.member-grid,
.articles-grid {
  display: grid;
  gap: 18px;
}

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

.problem-grid p,
.card,
.strength-grid article,
.member-card,
.articles-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.problem-grid p {
  margin: 0;
  padding: 22px;
  font-weight: 700;
}

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

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

.promise-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(11, 47, 91, 0.06);
}

.promise-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
}

.promise-grid p {
  margin: 0;
  color: #334155;
}

.section.target-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  padding-top: 34px;
  padding-bottom: 34px;
  color: #fff;
  background: var(--navy);
}

.section.target-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.section.target-strip p {
  margin: 0;
}

.section.target-strip div p {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.5;
}

.section.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--navy);
  background: #fff;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbff;
}

.proof-strip strong {
  display: block;
  color: var(--blue);
  font-size: clamp(20px, 2.4vw, 32px);
  line-height: 1.2;
}

.proof-strip span {
  display: block;
  margin-top: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 700;
}

.result-range {
  background: #f8fbff;
}

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

.range-grid article,
.axis-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
}

.range-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.range-grid strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.35;
}

.range-grid p,
.axis-grid p {
  margin-bottom: 0;
  color: #334155;
}

.compare-axis {
  background: #fff;
}

.axis-grid h2,
.axis-grid h3 {
  font-size: clamp(20px, 1.7vw, 24px);
}

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

.card {
  padding: 28px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.note {
  color: var(--muted);
  font-size: 13px;
}

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

.price-summary {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.price-highlight {
  display: grid;
  gap: 4px;
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.price-highlight.light {
  color: var(--navy);
  border: 1px solid var(--line);
  background: #fff;
}

.price-highlight span {
  font-size: 14px;
  font-weight: 800;
}

.price-highlight strong {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  white-space: nowrap;
}

.price-highlight small {
  color: inherit;
  opacity: 0.8;
  font-weight: 700;
}

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

.pricing-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.pricing-card h3 {
  margin: 0;
  padding: 18px 22px;
  color: #fff;
  font-size: 18px;
  background: var(--blue);
}

.table-scroll {
  overflow-x: auto;
}

.pricing-card table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 14px;
}

.pricing-card th,
.pricing-card td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: right;
  white-space: nowrap;
}

.pricing-card thead th {
  color: var(--navy);
  font-size: 13px;
  background: var(--pale);
}

.pricing-card th:first-child,
.pricing-card td:first-child {
  text-align: left;
}

.pricing-card tbody th {
  color: #334155;
  font-weight: 800;
}

.pricing-card tbody td {
  color: var(--navy);
  font-weight: 900;
}

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

.price-note {
  margin-top: 14px;
}

.outcome-section {
  background: #fff;
}

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

.outcome-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}

.outcome-grid h2,
.outcome-grid h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.outcome-grid p {
  margin-bottom: 0;
  color: #334155;
}

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

.guide-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.guide-card.featured {
  border-color: rgba(20, 100, 200, 0.4);
  background: linear-gradient(180deg, var(--pale), #fff);
}

.guide-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding-left: 1.2em;
}

.guide-card a {
  color: var(--blue);
  font-weight: 800;
}

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

.scope-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.scope-card.include {
  border-color: rgba(23, 166, 115, 0.34);
}

.scope-card.conditional {
  border-color: rgba(244, 199, 111, 0.7);
  background: #fffaf0;
}

.scope-card.exclude {
  background: #f8fafc;
}

.scope-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

.client-work {
  margin-top: 18px;
  padding: 26px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--pale);
}

.client-work p:last-child {
  margin-bottom: 0;
}

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

.onboarding-flow article {
  padding: 28px;
  border: 1px solid rgba(20, 100, 200, 0.2);
  border-radius: 8px;
  background: #fff;
}

.onboarding-flow span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  background: var(--blue);
}

.onboarding-flow h2,
.onboarding-flow h3 {
  font-size: clamp(20px, 1.8vw, 26px);
}

.onboarding-flow p {
  margin-bottom: 0;
  color: #334155;
}

.section.campaign {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 20%, rgba(244, 199, 111, 0.26), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--blue));
}

.section.campaign h2,
.section.campaign .eyebrow,
.section.campaign p,
.section.campaign .note {
  color: #fff;
}

.section.campaign .campaign-copy {
  max-width: 860px;
}

.campaign-visual {
  flex: 0 0 280px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 46px rgba(2, 20, 48, 0.2);
}

.campaign-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.recruit div {
  max-width: 860px;
}

.recruit .button.secondary {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

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

.strength-grid article {
  padding: 28px;
}

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

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.proof-grid div {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.proof-grid strong {
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.proof-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.award-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 26px;
  align-items: center;
  margin: 18px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(11, 47, 91, 0.08);
}

.award-panel h3 {
  font-size: clamp(22px, 2.2vw, 32px);
}

.award-panel p:not(.eyebrow) {
  color: #334155;
}

.award-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}

.industry-box {
  padding: 26px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
}

.industry-box h3 {
  color: #fff;
}

.industry-box p {
  margin: 0;
}

.philosophy {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  background: linear-gradient(180deg, #fff, var(--warm));
}

.philosophy-symbol {
  position: relative;
  width: 148px;
  height: 148px;
  border-radius: 8px;
  background: var(--blue);
  box-shadow: 0 18px 46px rgba(11, 47, 91, 0.1);
}

.philosophy-symbol::before,
.philosophy-symbol::after,
.philosophy-symbol span::before,
.philosophy-symbol span::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
}

.philosophy-symbol::before {
  top: 15px;
  left: 50px;
}

.philosophy-symbol::after {
  top: 50px;
  right: 15px;
}

.philosophy-symbol span::before {
  bottom: 15px;
  left: 50px;
}

.philosophy-symbol span::after {
  top: 50px;
  left: 15px;
}

.philosophy p:not(.eyebrow) {
  max-width: 900px;
  color: #334155;
  font-size: 17px;
}

.members {
  background: #fff;
}

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

.member-card {
  padding: 24px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 22px rgba(20, 100, 200, 0.18);
}

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

.flow span {
  padding: 20px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  background: var(--pale);
}

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

.voice-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(260px, 1fr));
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.voice-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.voice-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.voice-grid p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}

.voice-grid dl {
  margin: 0;
}

.voice-grid dt {
  display: inline-flex;
  margin-top: 12px;
  margin-bottom: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
  background: var(--pale);
}

.voice-grid dt:first-of-type {
  margin-top: 0;
}

.voice-grid dd {
  margin: 0;
  color: #334155;
  font-size: 14px;
  line-height: 1.8;
}

.line-steps {
  background: #fff;
}

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

.step-grid article {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.step-grid span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  font-weight: 900;
  background: var(--blue);
}

.step-grid p {
  margin: 0;
  font-weight: 800;
}

.line-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 24px;
  border-radius: 8px;
  background: var(--pale);
}

.line-example p {
  margin: 0;
  color: var(--navy);
  font-weight: 700;
}

.reply-box {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(20, 100, 200, 0.24);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
}

.reply-box h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.reply-box ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.2em;
}

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

.articles-grid article {
  padding: 24px;
}

.articles-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.page-hero {
  padding: clamp(58px, 8vw, 112px) clamp(20px, 6vw, 88px);
  background:
    radial-gradient(circle at 86% 16%, rgba(35, 167, 224, 0.16), transparent 28%),
    linear-gradient(180deg, #fbfdff, #f4f8fc);
}

.page-hero h1 {
  max-width: 920px;
  margin-bottom: 18px;
}

.page-hero p:not(.eyebrow) {
  max-width: 860px;
  color: #334155;
  font-size: 18px;
}

.sub-section {
  padding: clamp(54px, 7vw, 96px) clamp(20px, 6vw, 88px);
  background: #fff;
}

.sub-section.soft {
  background: var(--soft);
}

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

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

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

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

.detail-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.detail-card.emphasized {
  border-color: rgba(20, 100, 200, 0.32);
  background: var(--pale);
}

.detail-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.detail-card h2 {
  font-size: clamp(22px, 2vw, 30px);
}

.detail-card a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.info-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

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

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.info-table th {
  width: 220px;
  color: var(--navy);
  background: var(--pale);
}

.pricing-tables.full {
  grid-template-columns: 1fr;
}

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

.sub-cta {
  margin: 0;
  padding: clamp(38px, 5vw, 60px) clamp(20px, 6vw, 88px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 22%, rgba(35, 167, 224, 0.26), transparent 28%),
    linear-gradient(135deg, #0b2f5b, #1464c8);
}

.sub-cta h2,
.sub-cta p {
  max-width: 850px;
  color: #fff;
}

.sub-cta .button.secondary {
  color: var(--navy);
  border-color: #fff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px clamp(20px, 6vw, 88px);
  color: #dbeafe;
  background: #071f3c;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-size: 20px;
}

.site-footer p {
  margin-bottom: 4px;
}

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

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

  .problem-grid,
  .service-grid,
  .promise-grid,
  .proof-strip,
  .range-grid,
  .axis-grid,
  .outcome-grid,
  .price-summary,
  .pricing-tables,
  .guide-grid,
  .scope-grid,
  .onboarding-flow,
  .proof-grid,
  .award-panel,
  .member-grid,
  .detail-grid.three,
  .detail-grid.four,
  .flow.wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .target-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .header-cta {
    width: 100%;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .dashboard-card.main {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .dashboard-card.stat {
    width: 128px;
    height: 96px;
  }

  .problem-grid,
  .service-grid,
  .promise-grid,
  .proof-strip,
  .range-grid,
  .axis-grid,
  .outcome-grid,
  .price-summary,
  .pricing-tables,
  .scope-grid,
  .onboarding-flow,
  .proof-grid,
  .award-panel,
  .strength-grid,
  .member-grid,
  .articles-grid,
  .guide-grid,
  .detail-grid.two,
  .detail-grid.three,
  .detail-grid.four,
  .step-grid,
  .flow,
  .flow.wide {
    grid-template-columns: 1fr;
  }

  .info-table,
  .info-table tbody,
  .info-table tr,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }

  .info-table th {
    border-bottom: 0;
  }

  .campaign,
  .recruit,
  .line-example,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .campaign-visual {
    flex-basis: auto;
    width: 100%;
    max-width: 420px;
  }

  .price-highlight {
    padding: 20px;
  }

  .philosophy-symbol {
    width: 118px;
    height: 118px;
  }

  .philosophy-symbol::before,
  .philosophy-symbol::after,
  .philosophy-symbol span::before,
  .philosophy-symbol span::after {
    width: 38px;
    height: 38px;
  }

  .philosophy-symbol::before {
    top: 13px;
    left: 40px;
  }

  .philosophy-symbol::after {
    top: 40px;
    right: 13px;
  }

  .philosophy-symbol span::before {
    bottom: 13px;
    left: 40px;
  }

  .philosophy-symbol span::after {
    top: 40px;
    left: 13px;
  }
}
