:root {
  --ink: #14213d;
  --muted: #5d6a7d;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --deep: #101827;
  --orange: #ea6b24;
  --orange-dark: #c44f16;
  --teal: #0f8f8a;
  --green: #18a058;
  --purple: #7c3aed;
  --shadow: 0 18px 50px rgba(16, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--soft);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 227, 234, 0.9);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 154px;
  height: auto;
}

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

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #314056;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
  background: #fff3ec;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: 0.18s ease;
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(234, 107, 36, 0.24);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
}

.btn-outline:hover {
  color: #fff;
  background: var(--orange);
}

.page {
  padding-top: 72px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(234, 107, 36, 0.18), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(15, 143, 138, 0.16), transparent 34%),
    linear-gradient(135deg, #080f1d 0%, #101827 48%, #0b1220 100%);
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 82px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.page-hero .eyebrow,
.deep .eyebrow {
  color: #ffd7bf;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 7vw, 76px);
  line-height: 1;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d8e1ea;
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin-top: 48px;
}

.metric {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.metric strong {
  display: block;
  font-size: 27px;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 4px;
  color: #d8e1ea;
  font-size: 13px;
}

.section {
  padding: 84px 0;
}

.section.white {
  background: var(--paper);
}

.section.deep {
  color: #fff;
  background: var(--deep);
}

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.section-head p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.deep .section-head p,
.deep .muted,
.page-hero p {
  color: #cbd5e1;
}

.grid {
  display: grid;
  gap: 22px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 1px 2px rgba(16, 24, 39, 0.04);
}

.feature-card,
.service-card,
.product-card,
.vision-item {
  padding: 26px;
}

.feature-card:hover,
.service-card:hover,
.product-card:hover,
.vision-item:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card,
.service-card,
.product-card,
.vision-item {
  transition: 0.18s ease;
}

.icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
}

.icon.teal {
  background: var(--teal);
}

.icon.green {
  background: var(--green);
}

.icon.purple {
  background: var(--purple);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.2;
}

.card p,
.content p,
.timeline p,
.founder-copy p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  align-items: stretch;
}

.service-offer {
  overflow: hidden;
  min-height: 340px;
  border-color: #d7e0ea;
}

.service-offer a {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.service-offer-top {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--service-color);
}

.service-offer-top svg {
  width: 30px;
  height: 30px;
}

.service-offer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px 32px;
}

.service-offer-body h3 {
  margin: 0 0 16px;
  color: #061126;
  font-size: 22px;
  line-height: 1.15;
}

.service-offer-body p {
  margin: 0;
  color: #33415c;
  font-size: 17px;
  line-height: 1.55;
}

.service-offer-body span {
  margin-top: auto;
  padding-top: 28px;
  color: #f25516;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-offer-body strong {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.18s ease;
}

.service-offer:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-offer:hover strong {
  transform: translateX(3px);
}

.service-detail {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.service-detail-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
  padding: 34px;
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--service-color);
}

.detail-icon {
  width: 62px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--service-color);
}

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

.service-detail-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.1;
}

.service-detail-card p {
  margin: 0 0 24px;
  color: var(--muted);
}

.service-detail-card .btn {
  width: 100%;
}

.service-detail-content h2 {
  margin: 0 0 20px;
  max-width: 720px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.service-detail-content h2 em {
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}

.service-detail-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.detail-intro p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.detail-intro .eyebrow {
  margin-bottom: 20px;
  color: var(--orange-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
}

.detail-intro .eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.detail-intro::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin: 24px 0 0;
  background: #b9b9b9;
}

.highlight-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 36px;
}

.highlight-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #ffd5bd;
  border-radius: 999px;
  color: var(--orange-dark);
  background: #fff4ed;
  font-size: 14px;
  font-weight: 800;
}

.detail-heading {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 26px;
}

.detail-item {
  display: flex;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.detail-item span {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 6px #ffe0cf;
}

.detail-item p {
  margin: 0;
  color: #33415c;
  font-size: 15px;
  line-height: 1.45;
}

.service-note {
  max-width: 760px;
  padding: 24px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--deep);
}

.service-note h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-note p {
  margin: 0;
  color: #cbd5e1;
}

.individual-hero {
  padding: 88px 0 72px;
  color: #fff;
  background: #0b0b0b;
}

.individual-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1;
}

.individual-hero p {
  margin: 18px 0 0;
  color: #d7e1ee;
  font-size: 18px;
}

.individual-page {
  color: #101827;
}

.individual-lead {
  max-width: 980px;
  margin: 0 0 34px;
  color: #24324a;
  font-size: 17px;
  line-height: 1.75;
}

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

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

.individual-metrics div {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 14px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  background: #0b0b0b;
}

.individual-metrics strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
  line-height: 1;
}

.individual-metrics span {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.individual-block {
  margin-top: 42px;
}

.mini-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.mini-title::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--orange);
}

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

.individual-checks ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.individual-checks li {
  color: #1b2a42;
  font-size: 15px;
}

.individual-checks li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
}

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

.individual-receives article {
  min-height: 126px;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  background: #f5f6f8;
}

.individual-receives h3 {
  margin: 0 0 8px;
  color: #101827;
  font-size: 16px;
  text-transform: uppercase;
}

.individual-receives p {
  margin: 0;
  color: #24324a;
  font-size: 14px;
  line-height: 1.55;
}

.individual-cta {
  margin: 44px 0 28px;
  padding: 22px 28px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  background: linear-gradient(90deg, #ff6a1a, #ff7a1f);
  font-size: 18px;
  font-weight: 800;
}

.individual-note {
  padding: 22px 28px;
  border-radius: 6px;
  color: #fff;
  background: #0b0b0b;
}

.individual-note p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.7;
}

.individual-note strong {
  color: var(--orange);
}

.individual-actions {
  margin-top: 30px;
}

.compact-hero {
  padding-top: 82px;
}

.compact-page .individual-note {
  margin-top: 38px;
}

.compact-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  margin-top: 32px;
}

.compact-columns h3 {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--orange);
  color: #101827;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.compact-columns ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compact-columns li {
  color: #1b2a42;
  font-size: 15px;
}

.compact-columns li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.media-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dbe4ec;
}

.media-frame img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #fff;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #314056;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 6px #d7f6f3;
}

.cta-band {
  padding: 68px 0;
  color: #fff;
  text-align: center;
  background: var(--orange);
}

.cta-band .container {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.cta-band p {
  max-width: 640px;
  margin: 14px auto 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-band .btn {
  min-width: 220px;
  color: var(--orange);
  border-color: #fff;
  background: #fff;
  box-shadow: 0 12px 28px rgba(124, 45, 18, 0.22);
}

.cta-band .btn:hover {
  color: #fff;
  border-color: #101827;
  background: #101827;
}

.page-hero {
  padding: 96px 0 72px;
  color: #fff;
  background: var(--deep);
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 58px);
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  font-size: 19px;
}

.timeline {
  counter-reset: step;
}

.timeline-item {
  position: relative;
  padding: 28px 28px 28px 82px;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 24px;
  top: 28px;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.method-pillars .card {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
}

.method-pillars .card p {
  color: #cbd5e1;
}

.method-pillars .section-head {
  max-width: 780px;
}

.method-pillars .section-head h2 {
  color: #fff;
  font-size: clamp(40px, 6vw, 62px);
  line-height: 1.06;
}

.method-pillars .section-head h2 span {
  color: var(--orange);
}

.method-pillars .section-head h2::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  margin: 26px auto 0;
  background: var(--orange);
}

.method-growth {
  max-width: 760px;
  margin: 42px auto 0;
  text-align: center;
}

.method-growth ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 28px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  text-align: left;
}

.method-growth li {
  position: relative;
  padding-left: 28px;
  color: #e5edf7;
  font-size: 16px;
  line-height: 1.55;
}

.method-growth li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-size: 20px;
  line-height: 1.2;
}

.founder-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.founder-photo {
  min-height: 560px;
  background: #dce3ea;
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-copy {
  padding: clamp(28px, 5vw, 58px);
}

.bio-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.bio {
  padding-left: 18px;
  border-left: 4px solid #ffd1b8;
}

.bio h3 {
  margin: 0;
  font-size: 19px;
}

.bio .role {
  margin: 4px 0 8px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
}

.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-visual {
  height: 150px;
  margin: -26px -26px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: #fff1e8;
}

.product-card:nth-child(2) .product-visual {
  color: var(--teal);
  background: #e3f8f5;
}

.product-card:nth-child(3) .product-visual {
  color: var(--purple);
  background: #f0e8ff;
}

.product-card .btn {
  width: 100%;
  margin-top: auto;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-box {
  padding: 24px;
}

.form {
  padding: 30px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234, 107, 36, 0.14);
}

.footer {
  color: #cbd5e1;
  background: #0b1220;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0;
}

.footer img {
  width: 190px;
  height: 72px;
  margin-bottom: 18px;
  object-fit: contain;
  object-position: left center;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: #cbd5e1;
}

.footer a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #93a4b8;
  font-size: 14px;
}

.empty-route {
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
}

@media (max-width: 920px) {
  .nav-links,
  .nav-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links.open {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 16px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 15px;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 82% 18%, rgba(234, 107, 36, 0.18), transparent 30%),
      radial-gradient(circle at 12% 78%, rgba(15, 143, 138, 0.16), transparent 34%),
      linear-gradient(135deg, #080f1d 0%, #101827 48%, #0b1220 100%);
  }

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

  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .split,
  .service-detail,
  .individual-metrics,
  .individual-checks,
  .individual-receives,
  .compact-columns,
  .founder-panel,
  .contact-layout,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .cta-band .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .media-frame img,
  .founder-photo {
    height: auto;
    min-height: 0;
  }

  .service-detail-card {
    position: relative;
    top: auto;
  }

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

  .individual-metrics.metric-4 {
    grid-template-columns: 1fr;
  }

  .method-growth ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .nav-shell,
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand img {
    width: 132px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .hero-actions,
  .cta-band .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

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