:root {
  --bg: #071018;
  --bg-deep: #04090f;
  --surface: rgba(13, 22, 32, 0.92);
  --surface-strong: rgba(18, 31, 46, 0.96);
  --surface-soft: rgba(255, 255, 255, 0.04);
  --text: #f3f7fb;
  --muted: #a3b0bf;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff7b20;
  --accent-2: #ffb264;
  --accent-soft: rgba(255, 123, 32, 0.14);
  --ok: #34d399;
  --danger: #ff8f8f;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius: 18px;
  --max: 1180px;
  --font-body: "Aptos", "Segoe UI", sans-serif;
  --font-display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(circle at top right, rgba(255, 123, 32, 0.2), transparent 32%),
    radial-gradient(circle at left 20%, rgba(33, 193, 122, 0.1), transparent 28%),
    linear-gradient(180deg, #08111a 0%, #0b1621 42%, #071018 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0));
}

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

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

p,
ul,
ol {
  margin: 0;
}

.site-shell {
  position: relative;
  overflow: clip;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 16, 24, 0.76);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffe2c9;
}

.brand-mark span {
  color: var(--accent);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.92rem;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.language-picker {
  display: inline-flex;
  align-items: center;
}

.language-select {
  width: auto;
  min-width: 122px;
  min-height: 50px;
  padding: 0 42px 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  appearance: none;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  color-scheme: dark;
  font-weight: 700;
  cursor: pointer;
}

.language-select option {
  background: #0b1621;
  color: var(--text);
}

.language-select option:checked {
  background: #1d5fd1;
  color: #ffffff;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button {
  color: #121212;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 16px 38px rgba(255, 123, 32, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.button-ghost {
  min-height: auto;
  padding: 0;
  color: #ffd7b6;
  border: 0;
  background: transparent;
}

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

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.hero {
  position: relative;
  min-height: clamp(620px, 82vh, 860px);
  padding: 68px 0 78px;
  display: flex;
  align-items: stretch;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.46) 50%, rgba(0, 0, 0, 0.6) 100%),
    var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 180px;
  background: linear-gradient(180deg, rgba(7, 16, 24, 0) 0%, rgba(7, 16, 24, 1) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 26px;
  align-items: end;
  padding-top: 42px;
  width: 100%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffd8b8;
  font-size: 0.9rem;
  font-weight: 700;
}

.page-title {
  margin: 18px 0 18px;
  max-width: 860px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.page-lead {
  max-width: 760px;
  color: #dbe3ec;
  font-size: 1.08rem;
}

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

.hero-panel,
.card,
.image-card,
.data-box,
.notice,
.disclaimer,
.legal-card,
.redirect-card {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(11, 18, 27, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 24px;
}

.panel-kicker,
.section-kicker,
.card-kicker {
  display: block;
  margin-bottom: 10px;
  color: #ffc899;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.hero-panel h2,
.card h3,
.legal-card h2,
.notice h3,
.disclaimer h3,
.redirect-card h1 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  line-height: 1.08;
}

.hero-panel p,
.card p,
.legal-card p,
.notice p,
.disclaimer p,
.redirect-card p {
  color: var(--muted);
}

.stat-grid,
.mini-grid,
.cards-2,
.cards-3,
.cards-4,
.legal-grid,
.media-grid,
.form-layout,
.timeline {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.mini-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: #ffe8d5;
}

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

.section {
  position: relative;
  padding: 84px 0;
}

.section + .section {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-header {
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section-title {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.section-intro {
  max-width: 860px;
  color: var(--muted);
  font-size: 1.02rem;
}

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

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

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

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

.card {
  padding: 24px;
  min-width: 0;
}

.card h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: balance;
}

.card p {
  overflow-wrap: break-word;
}

.card ul,
.disclaimer ul,
.legal-card ul {
  padding-left: 18px;
}

.card li,
.disclaimer li,
.legal-card li {
  margin-top: 10px;
  color: var(--muted);
}

.media-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.split-feature,
.visual-feature,
.service-feature {
  display: grid;
  gap: 28px;
  align-items: center;
}

.split-feature {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
}

.visual-feature,
.service-feature {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
}

.feature-copy .section-header {
  margin-bottom: 24px;
}

.feature-copy {
  min-width: 0;
}

.split-feature .cards-2x2 .card {
  min-height: 100%;
}

.image-card {
  overflow: hidden;
}

.image-card img,
.feature-image img,
.brand-proof img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-card img {
  min-height: 320px;
}

.feature-image {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.feature-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.feature-image img {
  min-height: inherit;
}

.visual-feature-copy,
.service-copy {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(11, 18, 27, 0.94) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.visual-feature-copy h2,
.service-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.04;
}

.visual-feature-copy p,
.service-copy p {
  color: var(--muted);
}

.impact-banner {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: end;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.impact-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.impact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.36) 58%, rgba(0, 0, 0, 0.18) 100%);
}

.impact-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: 34px;
}

.impact-content h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1;
}

.impact-content p {
  color: #e4ebf2;
}

.brand-proof {
  overflow: hidden;
  max-width: 320px;
  margin: 22px 0;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.brand-proof img {
  aspect-ratio: 4 / 3;
}

.brand-proof figcaption {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.project-hero {
  min-height: clamp(640px, 84vh, 900px);
}

.project-hero::before {
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.48) 48%, rgba(0, 0, 0, 0.64) 100%),
    var(--hero-image) center / cover no-repeat;
}

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

.project-hero-panel .mini-card {
  padding: 13px 15px;
}

.project-compare-section {
  padding-top: 96px;
}

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

.compare-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
}

.compare-card figure {
  height: 100%;
}

.compare-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  display: block;
  object-fit: cover;
}

.compare-card-future img {
  object-position: center top;
}

.compare-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04) 35%, rgba(0, 0, 0, 0.74) 100%);
}

.compare-copy {
  position: absolute;
  z-index: 1;
  inset: auto 0 0;
  padding: 26px;
}

.compare-copy h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.compare-copy p {
  max-width: 560px;
  color: #e1e8ef;
}

.project-business-layout,
.operator-grid {
  display: grid;
  gap: 30px;
  align-items: center;
}

.project-business-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
}

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

.project-side-image {
  overflow: hidden;
  min-height: 520px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.project-side-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.project-scale-panel,
.operator-copy {
  position: relative;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: linear-gradient(135deg, rgba(18, 31, 46, 0.96) 0%, rgba(10, 17, 25, 0.98) 100%);
}

.project-scale-panel h2,
.operator-copy h2 {
  max-width: 920px;
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

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

.scale-list article {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.scale-list article span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

.scale-list p {
  color: #e0e7ee;
}

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

.capital-phase {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 31, 46, 0.92) 0%, rgba(10, 17, 25, 0.96) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.capital-phase .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 123, 32, 0.16);
  color: #ffe1c5;
  font-family: var(--font-display);
  font-weight: 800;
}

.capital-phase h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  line-height: 1.08;
}

.capital-phase p,
.operator-copy p {
  color: var(--muted);
}

.operator-grid {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 320px);
}

.operator-proof {
  max-width: none;
  margin: 0;
}

.operator-proof img {
  aspect-ratio: 4 / 3;
}

.project-final-cta {
  padding: 34px;
}

.image-caption {
  padding: 16px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

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

.timeline-step {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 31, 46, 0.92) 0%, rgba(10, 17, 25, 0.96) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.timeline-step .step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(255, 123, 32, 0.16);
  color: #ffe1c5;
  font-family: var(--font-display);
  font-weight: 800;
}

.timeline-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
}

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

.notice,
.disclaimer {
  padding: 24px;
}

.notice {
  background: linear-gradient(135deg, rgba(255, 123, 32, 0.18) 0%, rgba(255, 123, 32, 0.06) 100%);
  border-color: rgba(255, 123, 32, 0.28);
}

.notice-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.form-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: start;
}

.lead-form {
  padding: 28px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  color: #f4f8fc;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 14px 16px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

select {
  color-scheme: dark;
}

select option {
  background: #0b1621;
  color: #f4f8fc;
}

select option:checked {
  background: #1d5fd1;
  color: #ffffff;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 178, 100, 0.76);
  box-shadow: 0 0 0 4px rgba(255, 178, 100, 0.12);
  background: rgba(255, 255, 255, 0.07);
}

.checkbox-row {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 0.95rem;
}

.form-status[data-state="success"] {
  color: var(--ok);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.data-box {
  padding: 24px;
}

.data-box dl {
  display: grid;
  gap: 16px;
  margin: 18px 0 0;
}

.data-box dt {
  margin-bottom: 4px;
  color: #ffe3ca;
  font-weight: 800;
}

.data-box dd {
  margin: 0;
  color: var(--muted);
}

.small-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.disclaimer {
  margin-top: 22px;
}

.footer {
  padding: 34px 0 58px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  max-width: 580px;
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  color: #e8eef6;
}

.legal-hero .hero-inner,
.redirect-page .hero-inner {
  grid-template-columns: 1fr;
}

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

.legal-card {
  padding: 28px;
}

.legal-card h2 {
  margin-top: 0;
}

.legal-card h3 {
  margin: 26px 0 10px;
  font-family: var(--font-display);
}

.redirect-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 20px;
}

.redirect-card {
  width: min(100%, 720px);
  padding: 34px;
}

.redirect-card .button,
.redirect-card .button-secondary {
  margin-top: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .button-secondary,
  .button-ghost,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-inner,
  .form-layout,
  .timeline,
  .cards-4,
  .cards-3,
  .media-grid,
  .split-feature,
  .visual-feature,
  .service-feature {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .split-feature,
  .visual-feature,
  .service-feature,
  .project-business-layout,
  .operator-grid {
    grid-template-columns: 1fr;
  }

  .project-compare-grid,
  .capital-phase-grid {
    grid-template-columns: 1fr;
  }

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

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

  .topbar-inner {
    min-height: 72px;
  }

.topbar-links {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .topbar-tools {
    width: 100%;
    justify-content: flex-end;
  }

  .topbar-links .button-secondary {
    display: none;
  }

  .hero {
    padding-top: 26px;
    min-height: auto;
  }

  .page-title {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }

  .stat-grid,
  .cards-2,
  .cards-3,
  .cards-4,
  .media-grid,
  .split-feature,
  .visual-feature,
  .service-feature,
  .project-business-layout,
  .project-compare-grid,
  .capital-phase-grid,
  .operator-grid,
  .timeline,
  .form-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 280px;
  }

  .impact-banner {
    min-height: 300px;
  }

  .impact-content,
  .visual-feature-copy,
  .service-copy,
  .project-scale-panel,
  .operator-copy,
  .project-final-cta {
    padding: 24px;
  }

  .compare-card,
  .compare-card img {
    min-height: 420px;
  }

  .business-card-grid,
  .scale-list {
    grid-template-columns: 1fr;
  }

  .project-side-image {
    min-height: 300px;
  }

  .section {
    padding: 72px 0;
  }

  .lead-form,
  .data-box,
  .notice,
  .disclaimer,
  .legal-card,
  .hero-panel {
    padding: 22px;
  }

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