:root {
  color-scheme: light;
  --ink-950: #0b1220;
  --ink-900: #0f172a;
  --ink-700: #334155;
  --ink-500: #475569;
  --line: rgba(15, 26, 43, 0.14);
  --paper: #f8fafc;
  --surface: #ffffff;
  --navy-900: #1e3a8a;
  --navy-800: #1e40af;
  --blue-500: #3b82f6;
  --cyan-500: #60a5fa;
  --orange-500: #ca8a04;
  --yellow-400: #facc15;
  --green-500: #22c55e;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-lg: 0 30px 60px -40px rgba(8, 15, 33, 0.55);
  --shadow-md: 0 20px 44px -34px rgba(8, 15, 33, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Albert Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  min-height: 100vh;
}

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

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

.zoomable-image {
  cursor: zoom-in;
}

.zoomable-image:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.image-zoom-dialog {
  padding: 0;
  border: none;
  background: transparent;
  max-width: none;
}

.image-zoom-dialog::backdrop {
  background: rgba(3, 10, 21, 0.86);
  backdrop-filter: blur(3px);
}

.image-zoom-figure {
  margin: 0;
}

.image-zoom-media {
  width: auto;
  max-width: min(96vw, 1600px);
  max-height: 90vh;
  border-radius: var(--radius-md);
  box-shadow: 0 34px 66px -42px rgba(0, 0, 0, 0.88);
  object-fit: contain;
}

button,
input,
select {
  font: inherit;
}

.page {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px clamp(16px, 3.8vw, 42px) 96px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--navy-900);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 40;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
  outline: none;
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto;
  grid-template-areas:
    "brand actions"
    "nav nav";
  gap: 12px 20px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px -20px rgba(8, 15, 33, 0.45);
}

.brand {
  grid-area: brand;
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand-name {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.06rem;
}

.brand-tagline {
  color: var(--ink-500);
  font-size: 0.84rem;
}

.nav {
  grid-area: nav;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.nav a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--ink-700);
  font-weight: 600;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(15, 26, 43, 0.2);
  background: rgba(15, 26, 43, 0.04);
  color: var(--ink-900);
  outline: none;
}

.header-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  flex-wrap: wrap;
}

.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.lang-label {
  color: var(--ink-500);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.lang-field {
  position: relative;
}

.lang-control {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--ink-900);
  font-weight: 600;
  min-height: 38px;
  min-width: 112px;
  padding: 6px 24px 6px 10px;
  cursor: pointer;
}

.lang-field::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--ink-500);
  border-bottom: 2px solid var(--ink-500);
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--orange-500), var(--yellow-400));
  color: var(--ink-950);
  box-shadow: 0 16px 28px -20px rgba(202, 138, 4, 0.8);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px -18px rgba(202, 138, 4, 0.9);
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(30, 58, 138, 0.22);
  color: var(--navy-900);
}

.hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.38);
  color: #f8fbff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(30, 58, 138, 0.48);
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.hero .btn-secondary:hover,
.hero .btn-secondary:focus-visible {
  border-color: rgba(255, 255, 255, 0.68);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink-900);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--navy-900);
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.lang-control:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

main {
  margin-top: 24px;
  display: grid;
  gap: clamp(34px, 5vw, 76px);
}

section {
  scroll-margin-top: 132px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(20px, 3vw, 40px);
  border-radius: var(--radius-xl);
  padding: clamp(22px, 4vw, 50px);
  color: #f8fbff;
  background: linear-gradient(135deg, #102554 0%, #1e40af 52%, #1f3f95 100%);
  box-shadow: var(--shadow-lg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background:
    radial-gradient(circle at 18% 28%, rgba(202, 138, 4, 0.33), transparent 42%),
    radial-gradient(circle at 80% 26%, rgba(59, 130, 246, 0.35), transparent 40%),
    radial-gradient(circle at 55% 80%, rgba(96, 165, 250, 0.22), transparent 40%);
  z-index: 0;
}

.hero-content,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.71rem;
  color: rgba(248, 251, 255, 0.8);
}

h1,
h2,
h3 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.08;
}

h1 span {
  color: var(--yellow-400);
}

.hero p {
  margin: 0 0 18px;
  line-height: 1.6;
  color: rgba(248, 251, 255, 0.9);
}

.hero-lockup {
  display: inline-flex;
  width: clamp(136px, 18vw, 184px);
  margin: 0 0 20px;
  padding: clamp(8px, 1.2vw, 12px);
  border-radius: 18px;
  border: 1px solid rgba(248, 251, 255, 0.28);
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.22), rgba(248, 251, 255, 0.08));
  box-shadow: 0 16px 30px -24px rgba(3, 10, 21, 0.9);
  backdrop-filter: blur(2px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-lockup img {
  width: 100%;
  height: auto;
}

.hero-lockup:hover,
.hero-lockup:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(250, 204, 21, 0.78);
  background: linear-gradient(135deg, rgba(248, 251, 255, 0.28), rgba(248, 251, 255, 0.12));
  outline: none;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

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

.hero-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.hero-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange-500), var(--cyan-500));
}

.hero-showcase {
  display: grid;
  gap: 12px;
}

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

.proof-pair-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-md);
}

.proof-pair-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-pair-item figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(9, 18, 34, 0.78);
  color: #f8fbff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.proof-pair-hero {
  margin: 0;
}

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

.proof-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 6px;
}

.proof-item strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--navy-900);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
}

.proof-item span {
  color: var(--ink-700);
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 760px;
}

.section-heading p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.contact-band .section-heading {
  max-width: none;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-500), var(--cyan-500));
}

.card h3 {
  margin-top: 8px;
}

.card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.price-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(30, 64, 175, 0.05), rgba(59, 130, 246, 0.08));
  padding: clamp(22px, 3vw, 34px);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.price-card {
  border: 1px solid rgba(15, 26, 43, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.price-card h3 {
  margin: 0;
}

.price-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.price-note {
  margin: 14px 0 18px;
  color: var(--ink-700);
  line-height: 1.55;
}

.before-after-band {
  padding: clamp(22px, 3.5vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(30, 64, 175, 0.05), rgba(96, 165, 250, 0.08));
}

.proof-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.proof-case {
  border: 1px solid rgba(15, 26, 43, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.proof-case h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-900);
}

.project-spotlight {
  margin-bottom: clamp(16px, 2vw, 24px);
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 26, 43, 0.16);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.88));
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(14px, 2.2vw, 24px);
}

.project-spotlight-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.project-spotlight-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--navy-900);
}

.project-spotlight-copy h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  line-height: 1.3;
}

.project-spotlight-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

.project-spotlight-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.project-spotlight-steps li {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(15, 26, 43, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.project-spotlight-steps strong {
  color: var(--ink-900);
  font-size: 0.93rem;
}

.project-spotlight-steps span {
  color: var(--ink-700);
  line-height: 1.48;
  font-size: 0.92rem;
}

.project-spotlight-summary {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(30, 58, 138, 0.24);
  background: linear-gradient(125deg, rgba(30, 64, 175, 0.06), rgba(96, 165, 250, 0.11));
  color: var(--ink-900);
  font-weight: 600;
}

.project-spotlight-media {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "main main main"
    "prep after damage"
    "hall wall wall";
  gap: 10px;
}

.project-spotlight-media-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "main main"
    "prep damage"
    "after after";
}

.project-spotlight-frame {
  margin: 0;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 210px;
  border: 1px solid rgba(15, 26, 43, 0.18);
  box-shadow: var(--shadow-md);
}

.project-spotlight-frame-main {
  grid-area: main;
  min-height: 280px;
}

.project-spotlight-frame-damage {
  grid-area: damage;
}

.project-spotlight-frame-prep {
  grid-area: prep;
}

.project-spotlight-frame-hall {
  grid-area: hall;
}

.project-spotlight-frame-wall {
  grid-area: wall;
}

.project-spotlight-frame-after {
  grid-area: after;
}

.project-spotlight-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-spotlight-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 12, 24, 0.06) 44%, rgba(4, 12, 24, 0.72) 100%);
  z-index: 1;
}

.project-spotlight-frame figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  color: #f8fbff;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
}

.project-spotlight-frame:hover img,
.project-spotlight-frame:focus-within img {
  transform: scale(1.03);
}

.compare-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.compare-copy p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.6;
}

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

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-700);
  line-height: 1.45;
}

.compare-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange-500), var(--blue-500));
  margin-top: 0.45em;
  flex: 0 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.portfolio-grid-proof {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio-card {
  margin: 0;
  position: relative;
  min-height: 260px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 26, 43, 0.2);
  box-shadow: var(--shadow-md);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-pair {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 260px;
}

.portfolio-pair img {
  min-height: 260px;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 12, 24, 0.05) 42%, rgba(4, 12, 24, 0.72) 100%),
    linear-gradient(120deg, rgba(59, 130, 246, 0.16), transparent 55%);
  z-index: 1;
}

.portfolio-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 14px;
  color: #f8fbff;
  display: grid;
  gap: 6px;
}

.portfolio-card figcaption span {
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 700;
  color: rgba(248, 251, 255, 0.92);
}

.portfolio-card figcaption h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.3;
}

.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.04);
}

.process-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.step-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  position: relative;
}

.step-card::before {
  content: attr(data-step);
  width: 36px;
  height: 36px;
  border-radius: 12px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(120deg, var(--orange-500), var(--blue-500));
}

.step-card p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.55;
}

.step-outcome {
  margin-top: 10px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(15, 26, 43, 0.12);
  background: rgba(30, 64, 175, 0.04);
  font-size: 0.88rem;
  color: var(--ink-900);
}

.trust-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  padding: clamp(22px, 3vw, 34px);
}

.faq-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.06));
  padding: clamp(22px, 3vw, 34px);
}

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

.faq-item {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: clip;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 14px 42px 14px 16px;
  font-weight: 700;
  color: var(--ink-900);
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: -2px;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 26, 43, 0.08);
  color: var(--ink-900);
  font-weight: 800;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 16px 14px;
  color: var(--ink-700);
  line-height: 1.6;
}

.contact-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(30, 64, 175, 0.05), rgba(96, 165, 250, 0.08));
  padding: clamp(22px, 3vw, 34px);
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.contact-card span {
  color: var(--ink-500);
  font-size: 0.9rem;
}

.contact-link {
  color: var(--ink-900);
  font-weight: 700;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--navy-900);
  outline: none;
}

.contact-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.contact-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--ink-700);
  line-height: 1.45;
  font-size: 0.94rem;
}

.contact-checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.46em;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--orange-500), var(--cyan-500));
  flex: 0 0 auto;
}

footer {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "cluster logo"
    "meta logo";
  align-items: start;
  gap: 14px 22px;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.footer-cluster {
  grid-area: cluster;
}

.footer-logo-mark {
  grid-area: logo;
  justify-self: end;
  display: inline-flex;
  width: min(240px, 44vw);
  padding: clamp(8px, 1vw, 10px);
  border-radius: 16px;
  border: 1px solid rgba(30, 58, 138, 0.12);
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.74));
  opacity: 0.9;
  filter: saturate(1.04);
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.footer-logo-mark img {
  width: 100%;
  height: auto;
}

.footer-logo-mark:hover,
.footer-logo-mark:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  border-color: rgba(30, 58, 138, 0.22);
  outline: none;
}

.footer-meta {
  grid-area: meta;
  display: grid;
  justify-items: start;
  gap: 10px;
  max-width: 760px;
}

.footer-legal {
  font-weight: 600;
  color: var(--ink-700);
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 35;
  display: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--orange-500), var(--yellow-400));
  color: var(--ink-950);
  font-weight: 700;
  box-shadow: 0 18px 36px -20px rgba(202, 138, 4, 0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.floating-cta:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-lockup,
  .portfolio-card img,
  .project-spotlight-frame img,
  .btn {
    transition: none;
  }
}

@media (max-width: 1020px) {
  .site-header {
    top: 8px;
  }

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

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

  .proof-cases {
    grid-template-columns: 1fr;
  }

  .project-spotlight {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
  }

  .header-actions {
    width: 100%;
    justify-content: stretch;
    align-items: stretch;
    flex-direction: column;
    justify-self: stretch;
    gap: 8px;
  }

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

  .lang-select {
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .lang-field {
    flex: 1;
  }

  .lang-control {
    width: 100%;
    min-width: 0;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
    width: 100%;
  }

  .nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 12px;
    border-color: var(--line);
    background: rgba(15, 26, 43, 0.02);
  }

  section {
    scroll-margin-top: 24px;
  }

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

  .hero-lockup {
    width: min(176px, 56vw);
    display: flex;
    margin: 0 auto 16px;
  }

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

  .project-spotlight-media {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "damage"
      "prep"
      "hall"
      "wall"
      "after";
  }

  .project-spotlight-media-compact {
    grid-template-areas:
      "main"
      "prep"
      "damage"
      "after";
  }

  .project-spotlight-frame-main {
    min-height: 240px;
  }

  footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cluster"
      "logo"
      "meta";
    align-items: start;
    gap: 12px;
  }

  .footer-logo-mark {
    justify-self: start;
    width: min(210px, 62vw);
  }

  .footer-meta {
    justify-items: start;
  }

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

@media (max-width: 640px) {
  .page {
    padding-bottom: 124px;
  }

  .hero {
    padding: 20px;
  }

  h1 {
    font-size: clamp(1.84rem, 9vw, 2.3rem);
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .contact-card .btn {
    width: 100%;
  }

  .proof-pair {
    grid-template-columns: 1fr;
  }

  .project-spotlight {
    padding: 14px;
  }

  .floating-cta {
    display: inline-flex;
    width: calc(100% - 24px);
    justify-content: center;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
  }
}

/* 2026-03 visual refresh */
:root {
  --gold-500: #ca8a04;
  --paper-deep: #eef2ff;
}

body {
  background:
    radial-gradient(circle at 10% 10%, rgba(202, 138, 4, 0.1), transparent 34%),
    radial-gradient(circle at 88% 14%, rgba(59, 130, 246, 0.09), transparent 32%),
    radial-gradient(circle at 64% 82%, rgba(30, 58, 138, 0.06), transparent 36%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper-deep) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
}

body::before {
  inset: auto auto 10% -12%;
  width: min(480px, 54vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(15, 26, 43, 0.06), transparent 66%);
  filter: blur(1px);
}

body::after {
  inset: -8% -14% auto auto;
  width: min(620px, 62vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 42% 42%, rgba(250, 204, 21, 0.07), transparent 64%);
}

.page {
  padding-top: 18px;
}

.site-header {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 16px 34px -26px rgba(8, 15, 33, 0.55);
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange-500), var(--cyan-500));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.nav a.is-current::after {
  transform: scaleX(1);
}

.nav a.is-current {
  color: var(--ink-900);
  border-color: rgba(15, 26, 43, 0.2);
  background: rgba(15, 26, 43, 0.06);
}

.hero {
  border: 1px solid rgba(248, 251, 255, 0.16);
  background:
    linear-gradient(120deg, rgba(96, 165, 250, 0.1), transparent 34%),
    linear-gradient(140deg, #102554 0%, #1e40af 56%, #1f3f95 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.24;
  pointer-events: none;
}

.hero-showcase {
  align-content: start;
}

.proof-pair-item {
  min-height: 240px;
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-contact-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(248, 251, 255, 0.28);
  background: linear-gradient(140deg, rgba(248, 251, 255, 0.18), rgba(248, 251, 255, 0.08));
  box-shadow: 0 18px 34px -28px rgba(1, 7, 18, 0.95);
  backdrop-filter: blur(6px);
}

.hero-contact-label {
  margin: 0;
  color: rgba(248, 251, 255, 0.82);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
}

.hero-contact-link {
  color: #fff;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.hero-contact-link:hover,
.hero-contact-link:focus-visible {
  color: var(--yellow-400);
}

.hero-contact-meta {
  margin: 0;
  display: grid;
  gap: 4px;
  color: rgba(248, 251, 255, 0.88);
  font-size: 0.88rem;
  line-height: 1.4;
}

.hero-contact-meta span {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 251, 255, 0.76);
}

.hero-contact-meta strong {
  font-weight: 600;
}

.hero-contact-btn.btn-outline {
  border-color: rgba(248, 251, 255, 0.46);
  color: #f8fbff;
  background: rgba(248, 251, 255, 0.05);
}

.hero-contact-btn.btn-outline:hover,
.hero-contact-btn.btn-outline:focus-visible {
  border-color: rgba(248, 251, 255, 0.74);
  background: rgba(248, 251, 255, 0.12);
}

.proof-strip {
  gap: 14px;
}

.proof-item {
  position: relative;
  overflow: hidden;
  border-color: rgba(30, 58, 138, 0.18);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.87));
}

.proof-item::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--orange-500), var(--cyan-500));
}

.proof-item strong {
  letter-spacing: 0.01em;
}

.grid {
  gap: 20px;
}

.card {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(30, 58, 138, 0.26);
  box-shadow: 0 24px 38px -28px rgba(8, 15, 33, 0.5);
}

.price-band,
.before-after-band,
.about-band,
.trust-band,
.faq-band,
.contact-band {
  border-color: rgba(30, 58, 138, 0.16);
  box-shadow: 0 28px 48px -40px rgba(8, 15, 33, 0.38);
}

.price-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-500), var(--cyan-500));
}

.price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px -28px rgba(8, 15, 33, 0.54);
}

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

.portfolio-card {
  grid-column: span 4;
  min-height: 280px;
}

.portfolio-card:nth-child(1),
.portfolio-card:nth-child(2) {
  grid-column: span 6;
}

.portfolio-card figcaption h3 {
  text-wrap: balance;
}

.process-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  position: relative;
  align-items: stretch;
}

.process-grid::before {
  content: "";
  position: absolute;
  left: 3%;
  right: 3%;
  top: 31px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.4), rgba(96, 165, 250, 0.32));
}

.step-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: 0 16px 32px -26px rgba(8, 15, 33, 0.44);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.step-card:hover,
.step-card:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px -30px rgba(8, 15, 33, 0.56);
}

.step-card::before {
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px -16px rgba(8, 15, 33, 0.8);
}

.step-outcome {
  border-color: rgba(15, 26, 43, 0.2);
  background: rgba(30, 64, 175, 0.06);
}

.contact-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-card:hover,
.contact-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(30, 58, 138, 0.24);
  box-shadow: 0 20px 32px -28px rgba(8, 15, 33, 0.48);
}

.floating-cta {
  border: 1px solid rgba(30, 58, 138, 0.16);
}

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

html.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
  animation: none;
}

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

@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

  .portfolio-card {
    grid-column: span 1;
  }

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

  .process-grid::before {
    left: 5%;
    right: 5%;
  }
}

@media (max-width: 760px) {
  .site-header.is-scrolled {
    box-shadow: 0 12px 24px -22px rgba(8, 15, 33, 0.45);
  }

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

  .hero-contact-card {
    padding: 12px;
  }

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

  .process-grid::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px;
  }

  .hero-contact-link {
    font-size: 1rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.home-v2 {
  background:
    radial-gradient(circle at 8% 0%, rgba(96, 165, 250, 0.12), transparent 30%),
    radial-gradient(circle at 100% 6%, rgba(59, 130, 246, 0.12), transparent 28%),
    radial-gradient(circle at 50% 100%, rgba(30, 58, 138, 0.05), transparent 40%),
    var(--paper);
}

.home-v2 .page {
  max-width: 1360px;
  padding-bottom: 120px;
}

.home-v2 .site-header {
  top: 14px;
  gap: 14px 22px;
  padding: 16px 18px;
  border-color: rgba(30, 58, 138, 0.1);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 36px -28px rgba(8, 15, 33, 0.42);
}

.home-v2 .site-header.is-scrolled {
  box-shadow: 0 22px 40px -30px rgba(8, 15, 33, 0.56);
}

.home-v2 .brand-name {
  font-size: 1.02rem;
}

.home-v2 .brand-tagline {
  color: var(--ink-700);
}

.home-v2 .nav a {
  color: var(--ink-700);
}

.home-v2 .nav a::after {
  display: none;
}

.home-v2 .nav a.is-current,
.home-v2 .nav a:hover,
.home-v2 .nav a:focus-visible {
  color: var(--navy-900);
  border-color: rgba(30, 58, 138, 0.14);
  background: rgba(30, 58, 138, 0.06);
}

.home-v2 main {
  margin-top: 28px;
  gap: clamp(42px, 5vw, 84px);
}

.home-v2 .section-heading {
  max-width: 820px;
  margin-bottom: 26px;
}

.home-v2 .section-heading h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.home-v2 .hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.96fr);
  gap: clamp(22px, 3vw, 40px);
  padding: clamp(24px, 3.6vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 44px 90px -56px rgba(8, 15, 33, 0.92);
}

.home-v2 .hero::before {
  inset: -30% -10%;
  background:
    radial-gradient(circle at 12% 20%, rgba(202, 138, 4, 0.18), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(59, 130, 246, 0.3), transparent 30%),
    radial-gradient(circle at 58% 86%, rgba(96, 165, 250, 0.12), transparent 32%);
}

.home-v2 .hero-content {
  max-width: 610px;
}

.home-v2 .hero p {
  color: rgba(248, 251, 255, 0.92);
}

.home-v2 .eyebrow {
  color: rgba(248, 251, 255, 0.72);
}

.home-v2 .hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.1vw, 3.45rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-v2 .hero h1 span {
  color: #facc15;
}

.home-v2 .hero-actions {
  align-items: center;
  gap: 12px;
  margin: 28px 0 24px;
}

.home-v2 .hero .btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #f8fbff;
}

.home-v2 .hero .btn-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f8fbff;
  background: transparent;
}

.home-v2 .hero .btn-outline:hover,
.home-v2 .hero .btn-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.42);
}

.home-v2 .hero-list {
  gap: 12px;
}

.home-v2 .hero-list li {
  align-items: flex-start;
}

.home-v2 .hero-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.home-v2 .hero-trust-item {
  display: grid;
  gap: 6px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  box-shadow: 0 18px 30px -24px rgba(0, 0, 0, 0.5);
}

.home-v2 .hero-trust-item strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
  color: #ffffff;
}

.home-v2 .hero-trust-item span {
  color: rgba(248, 251, 255, 0.82);
  line-height: 1.45;
}

.home-v2 .hero-local-note {
  margin-top: 18px;
  display: inline-grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 15, 31, 0.34);
}

.home-v2 .hero-local-note span {
  color: rgba(248, 251, 255, 0.65);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-v2 .hero-local-note strong {
  color: #ffffff;
  font-size: 0.98rem;
}

.home-v2 .hero-showcase {
  gap: 16px;
}

.home-v2 .proof-pair-item {
  min-height: 220px;
  border-radius: 20px;
}

.home-v2 .hero-summary-card {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(7, 15, 31, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-v2 .hero-summary-copy {
  display: grid;
  gap: 8px;
}

.home-v2 .hero-summary-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.76rem;
}

.home-v2 .hero-summary-card p {
  margin: 0;
}

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

.home-v2 .hero-stat {
  display: grid;
  gap: 4px;
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.home-v2 .hero-stat strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #ffffff;
  font-size: 0.94rem;
}

.home-v2 .hero-stat span {
  color: rgba(248, 251, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.35;
}

.home-v2 .proof-strip {
  gap: 16px;
}

.home-v2 .proof-item {
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.88));
  box-shadow: 0 26px 44px -38px rgba(8, 15, 33, 0.42);
}

.home-v2 .proof-item:nth-child(2) {
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.96), rgba(30, 64, 175, 0.94));
  border-color: rgba(30, 58, 138, 0.9);
}

.home-v2 .proof-item:nth-child(2) strong,
.home-v2 .proof-item:nth-child(2) span {
  color: #f8fbff;
}

.home-v2 .services-band,
.home-v2 .price-band,
.home-v2 .before-after-band,
.home-v2 .about-band,
.home-v2 #process,
.home-v2 .home-trust-band,
.home-v2 .faq-band,
.home-v2 .contact-band,
.home-v2 footer {
  border: 1px solid rgba(30, 58, 138, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 30px 56px -44px rgba(8, 15, 33, 0.38);
  backdrop-filter: blur(4px);
}

.home-v2 .services-grid {
  margin-bottom: 18px;
}

.home-v2 .service-support {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: start;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.home-v2 .service-support > p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.7;
}

.home-v2 .service-support-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-v2 .service-support-point {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.home-v2 .service-support-point h3,
.home-v2 .service-support-point p {
  margin: 0;
}

.home-v2 .service-support-point h3 {
  margin-bottom: 10px;
  font-size: 1.02rem;
}

.home-v2 .service-support-point p {
  color: var(--ink-700);
  line-height: 1.55;
}

.home-v2 .price-band {
  background:
    linear-gradient(135deg, rgba(30, 58, 138, 0.96), rgba(30, 64, 175, 0.94)),
    #1e3a8a;
  color: #ffffff;
}

.home-v2 .price-band .section-heading p,
.home-v2 .price-note,
.home-v2 .price-card p {
  color: rgba(248, 251, 255, 0.82);
}

.home-v2 .price-grid {
  gap: 16px;
}

.home-v2 .price-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
}

.home-v2 .price-card h3 {
  color: #ffffff;
}

.home-v2 .price-note {
  margin: 20px 0 0;
}

.home-v2 .proof-case {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
}

.home-v2 .project-spotlight {
  border-radius: 24px;
  border-color: rgba(30, 58, 138, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 245, 255, 0.82));
}

.home-v2 .project-spotlight-steps li {
  border-color: rgba(30, 58, 138, 0.12);
}

.home-v2 .compare-copy {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.05), rgba(59, 130, 246, 0.08));
  border: 1px solid rgba(30, 58, 138, 0.1);
}

.home-v2 .compare-copy p,
.home-v2 .compare-copy li {
  color: var(--ink-700);
}

.home-v2 .compare-list {
  margin: 0;
}

.home-v2 .portfolio-card {
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 28px 52px -44px rgba(8, 15, 33, 0.5);
}

.home-v2 .portfolio-card figcaption {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 12, 24, 0.74));
}

.home-v2 .portfolio-card figcaption span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-v2 .portfolio-card figcaption h3 {
  color: #ffffff;
}

.home-v2 .process-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-v2 .process-grid::before {
  display: none;
}

.home-v2 .step-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
}

.home-v2 .step-card h3,
.home-v2 .step-card p {
  margin: 0;
}

.home-v2 .home-trust-band {
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78));
}

.home-v2 .trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 20px;
}

.home-v2 .testimonial-grid {
  display: grid;
  gap: 16px;
}

.home-v2 .testimonial-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.96), rgba(30, 64, 175, 0.92));
  color: #ffffff;
  box-shadow: 0 30px 54px -44px rgba(8, 15, 33, 0.88);
}

.home-v2 .testimonial-quote {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.7;
  color: rgba(248, 251, 255, 0.92);
}

.home-v2 .testimonial-quote::before {
  content: "\"";
  display: block;
  margin-bottom: 6px;
  color: var(--yellow-400);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.home-v2 .testimonial-card strong {
  font-size: 1rem;
}

.home-v2 .testimonial-card span {
  color: rgba(248, 251, 255, 0.7);
}

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

.home-v2 .trust-point {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(30, 58, 138, 0.08);
}

.home-v2 .trust-point h3,
.home-v2 .trust-point p {
  margin: 0;
}

.home-v2 .trust-point h3 {
  margin-bottom: 10px;
}

.home-v2 .trust-point p {
  color: var(--ink-700);
  line-height: 1.55;
}

.home-v2 .faq-grid {
  gap: 16px;
}

.home-v2 .faq-item {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 30px -28px rgba(8, 15, 33, 0.28);
}

.home-v2 .contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.96fr) minmax(0, 1.04fr);
  gap: 20px;
}

.home-v2 .contact-form-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 30px);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(30, 58, 138, 0.98), rgba(30, 64, 175, 0.94));
  color: #ffffff;
  box-shadow: 0 34px 58px -42px rgba(8, 15, 33, 0.9);
}

.home-v2 .contact-form-card h3,
.home-v2 .contact-form-card p {
  margin: 0;
}

.home-v2 .contact-form-card > p {
  color: rgba(248, 251, 255, 0.78);
  line-height: 1.65;
}

.home-v2 .field {
  display: grid;
  gap: 8px;
}

.home-v2 .field-label {
  font-size: 0.88rem;
  color: rgba(248, 251, 255, 0.82);
}

.home-v2 .contact-form-card input,
.home-v2 .contact-form-card select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.home-v2 .contact-form-card select option {
  color: var(--ink-900);
}

.home-v2 .contact-form-card input:focus-visible,
.home-v2 .contact-form-card select:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 3px;
}

.home-v2 .contact-form-hint {
  color: rgba(248, 251, 255, 0.7);
  font-size: 0.9rem;
}

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

.home-v2 .contact-card {
  min-height: 100%;
}

.home-v2 .contact-card-wide {
  grid-column: 1 / -1;
}

.home-v2 footer {
  text-align: left;
}

.home-v2 .footer-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.home-v2 .footer-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 138, 0.14);
  background: rgba(30, 58, 138, 0.04);
  color: var(--navy-900);
  font-weight: 600;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.home-v2 .footer-link-chip:hover,
.home-v2 .footer-link-chip:focus-visible {
  border-color: rgba(30, 58, 138, 0.28);
  background: rgba(30, 58, 138, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.home-v2 .footer-logo-mark {
  width: 180px;
  margin-bottom: 18px;
}

.home-v2 .floating-cta {
  box-shadow: 0 22px 34px -24px rgba(202, 138, 4, 0.9);
}

@media (max-width: 1020px) {
  .home-v2 .hero,
  .home-v2 .contact-layout,
  .home-v2 .trust-layout,
  .home-v2 .service-support {
    grid-template-columns: 1fr;
  }

  .home-v2 .hero h1 {
    max-width: 12ch;
  }

  .home-v2 .hero-stats,
  .home-v2 .contact-side-grid,
  .home-v2 .service-support-points,
  .home-v2 .trust-reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .home-v2 .site-header {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
  }

  .home-v2 .header-actions {
    justify-self: stretch;
    justify-content: space-between;
  }

  .home-v2 .nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 4px;
  }

  .home-v2 .nav a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .home-v2 .proof-strip,
  .home-v2 .hero-trust-list,
  .home-v2 .hero-stats,
  .home-v2 .contact-side-grid,
  .home-v2 .service-support-points,
  .home-v2 .trust-reasons,
  .home-v2 .process-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 8.2vw, 2.5rem);
  }

  .home-v2 .footer-meta {
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .home-v2 .page {
    padding: 12px 16px 96px;
  }

  .home-v2 .site-header {
    padding: 14px;
  }

  .home-v2 .header-actions {
    gap: 12px;
  }

  .home-v2 .header-actions .btn,
  .home-v2 .hero-actions .btn,
  .home-v2 .footer-link-chip {
    width: 100%;
  }

  .home-v2 .hero {
    padding: 20px;
  }

  .home-v2 .hero h1 {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
  }

  .home-v2 .hero-summary-card,
  .home-v2 .contact-form-card,
  .home-v2 .services-band,
  .home-v2 .price-band,
  .home-v2 .before-after-band,
  .home-v2 .about-band,
  .home-v2 #process,
  .home-v2 .home-trust-band,
  .home-v2 .faq-band,
  .home-v2 .contact-band,
  .home-v2 footer {
    border-radius: 24px;
  }

  .home-v2 .footer-cluster,
  .home-v2 .footer-links {
    display: grid;
    gap: 10px;
  }
}
