:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-soft: #f7f3ec;
  --ink: #182232;
  --muted: #5b6678;
  --line: #e8ded0;
  --navy: #12305a;
  --navy-2: #0b2447;
  --orange: #b74415;
  --orange-2: #93350f;
  --gold: #f5b544;
  --green: #1f7a4d;
  --shadow: 0 14px 34px rgba(18, 48, 90, 0.10);
  --shadow-soft: 0 6px 18px rgba(18, 48, 90, 0.06);
  --radius: 18px;
  --radius-sm: 14px;
  --container: 1160px;
  --header-height: 64px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 56px;
  --space-10: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  font-family:
    "Be Vietnam Pro",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::selection {
  background: rgba(230, 95, 31, 0.18);
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: var(--space-10) 0;
}

.section--compact {
  padding: var(--space-8) 0;
}

.section--tight {
  padding: var(--space-9) 0;
}

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

.narrow {
  max-width: 860px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(232, 222, 208, 0.8);
  box-shadow: 0 10px 28px rgba(18, 48, 90, 0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo {
  display: block;
  width: 200px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: #334155;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.005em;
}

.desktop-nav a {
  padding: 10px 0;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

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

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

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  margin: 5px 0;
}

.mobile-menu {
  display: none;
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto 16px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.94rem;
}

.mobile-menu a:hover {
  background: var(--surface-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn svg,
.mobile-bottom-bar svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 30px rgba(230, 95, 31, 0.27);
}

.btn-primary:hover {
  background: var(--orange-2);
  box-shadow: 0 18px 38px rgba(230, 95, 31, 0.3);
}

.btn-secondary {
  color: var(--navy);
  background: #fff;
  border-color: rgba(18, 48, 90, 0.16);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover,
.btn-outline:hover {
  border-color: rgba(230, 95, 31, 0.45);
  color: var(--orange);
}

.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.88rem;
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(18, 48, 90, 0.18);
}

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

.btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: clip;
  padding-top: var(--space-10);
  padding-bottom: var(--space-9);
  background:
    linear-gradient(135deg, rgba(255, 250, 243, 0.96), rgba(247, 243, 236, 0.86)),
    radial-gradient(circle at 82% 18%, rgba(245, 181, 68, 0.18), transparent 30%),
    var(--bg);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.58));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: var(--space-7);
  align-items: center;
}

.eyebrow {
  margin: 0 0 var(--space-3);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 18ch;
  margin-bottom: var(--space-4);
  color: var(--navy-2);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h2 {
  margin-bottom: var(--space-3);
  color: var(--navy-2);
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.018em;
  font-weight: 700;
}

h3 {
  margin-bottom: var(--space-2);
  color: var(--navy-2);
  font-size: 1.125rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 44ch;
  color: #435266;
  font-size: 1.0625rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-5) 0 var(--space-4);
}

.hotline-card {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
  padding: 10px 14px;
  border: 1px solid rgba(18, 48, 90, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
}

.hotline-card span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.hotline-card a {
  color: var(--orange);
  font-size: 1.125rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 48, 90, 0.09);
  color: #425166;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  padding: 0;
  list-style: none;
  color: #334155;
  font-weight: 600;
}

.hero-points li {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  padding-left: 28px;
  border: 1px solid rgba(31, 122, 77, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 14px 8px 34px;
  font-size: 0.92rem;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-weight: 700;
}

.hero-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.5fr);
  gap: var(--space-4);
  align-items: stretch;
}

.hero-stage {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 48, 90, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(11, 36, 71, 0.22)),
    url("public/assets/kamax/projects/kamax-project-noi-that-01.webp") center / cover no-repeat,
    #fff;
  box-shadow: var(--shadow);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(11, 36, 71, 0.18));
}

.hero-stage-pack {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  width: min(44%, 300px);
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 38px rgba(11, 36, 71, 0.24);
  transform: translateX(-50%);
  display: none;
}

.hero-stage-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(11, 36, 71, 0.9);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-sidecards {
  display: grid;
  gap: var(--space-3);
}

.hero-sidecard {
  overflow: hidden;
  margin: 0;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(18, 48, 90, 0.08);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-sidecard img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-sidecard-product img {
  object-fit: contain;
  padding: 10px;
  background: linear-gradient(180deg, #fff, #f7f3ec);
}

.hero-sidecard figcaption {
  padding: 10px 14px 12px;
  color: var(--navy-2);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}

.hero-media:has(> img) {
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  align-items: stretch;
}

.hero-media > img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: linear-gradient(180deg, #fff, #f7f3ec);
  border: 1px solid rgba(18, 48, 90, 0.08);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}

.hero-media > img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}

.trust-strip {
  margin-top: -32px;
  position: relative;
  z-index: 2;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.mini-card,
.why-card,
.product-card,
.audience-card,
.project-card,
.process-card,
.testimonial-card,
.commitment-card,
.quote-card,
.faq-item {
  background: var(--surface);
  border: 1px solid rgba(18, 48, 90, 0.09);
  box-shadow: var(--shadow-soft);
}

.mini-card {
  padding: 20px;
  border-radius: var(--radius-sm);
}

.mini-card .icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: var(--space-3);
  border-radius: 10px;
  background: rgba(230, 95, 31, 0.1);
  color: var(--orange);
  font-weight: 700;
}

.mini-card p,
.why-card p,
.product-card p,
.audience-card p,
.project-card p,
.process-card p,
.testimonial-card span,
.commitment-card p,
.quote-card p,
.section-heading p,
.contact-copy p,
.site-footer p,
.faq-item p {
  color: var(--muted);
}

.mini-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.section-heading {
  max-width: 720px;
  margin-bottom: var(--space-6);
}

.section-heading p {
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.65;
}

.section-heading.split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-5);
}

.text-link {
  color: var(--orange);
  font-weight: 600;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
}

.inline-cta::after {
  content: "→";
  font-size: 0.95rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.why-card {
  padding: var(--space-5);
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.why-card p {
  margin-bottom: 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.product-card:hover,
.audience-card:hover,
.project-card:hover,
.commitment-card:hover,
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(241, 97, 58, 0.16), transparent 24%),
    linear-gradient(180deg, #fff, #f7f3ec);
}

.product-card div,
.audience-card div,
.project-card div {
  padding: 20px;
}

.product-card div,
.audience-card div,
.project-card div {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.product-card p,
.audience-card p,
.project-card p {
  margin-bottom: 0;
}

.card-kicker,
.project-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(241, 97, 58, 0.12);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-pack {
  margin: 0;
  color: #425166;
  font-size: 0.88rem;
  font-weight: 500;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-1);
}

.card-actions .btn {
  flex: 0 1 auto;
  min-height: 36px;
  padding: 8px 14px;
  font-size: 0.82rem;
  border-radius: 10px;
}

.section-source {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(18, 48, 90, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.product-benefits {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-benefits li {
  position: relative;
  padding-left: 18px;
  color: #425166;
  font-size: 0.9rem;
  line-height: 1.55;
}

.product-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(241, 97, 58, 0.12);
}

.color-section {
  background:
    radial-gradient(circle at top right, rgba(241, 97, 58, 0.08), transparent 24%),
    linear-gradient(180deg, #fffaf3, #fdf8f2);
}

.slim-teaser {
  padding: var(--space-8) 0;
  background:
    linear-gradient(180deg, rgba(241, 97, 58, 0.04), rgba(11, 36, 71, 0.02)),
    #fff;
}

.slim-teaser .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-6);
  align-items: center;
}

.slim-teaser .section-heading {
  max-width: 56ch;
  margin-bottom: 0;
}

.teaser-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

.color-filter,
.project-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.color-filter {
  margin-bottom: 24px;
}

.color-filter-btn,
.project-filter-btn {
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgba(18, 48, 90, 0.12);
  border-radius: 999px;
  background: #fff;
  color: #425166;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.color-filter-btn.is-active,
.project-filter-btn.is-active {
  border-color: transparent;
  background: var(--navy-2);
  color: #fff;
  box-shadow: 0 12px 24px rgba(11, 36, 71, 0.22);
}

.swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.swatch-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18, 48, 90, 0.08);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.swatch-card:hover,
.need-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.swatch-card.is-hidden {
  display: none;
}

.swatch-color {
  height: 120px;
  background: var(--swatch);
}

.swatch-copy {
  display: grid;
  gap: 4px;
  padding: var(--space-4);
}

.swatch-copy strong {
  color: var(--navy-2);
  font-size: 0.95rem;
  font-weight: 600;
}

.swatch-copy span {
  color: #4f5e71;
  font-size: 0.88rem;
}

.swatch-copy small {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.8rem;
}

.color-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.8fr);
  gap: var(--space-5);
  align-items: center;
  margin-top: var(--space-5);
  padding: var(--space-5);
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18, 48, 90, 0.08);
  box-shadow: var(--shadow-soft);
}

.color-cta h3 {
  margin-bottom: var(--space-2);
}

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

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

.need-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}

.need-card {
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(18, 48, 90, 0.08);
  box-shadow: var(--shadow-soft);
}

.need-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-3);
  border-radius: 50%;
  background: rgba(241, 97, 58, 0.12);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
}

.need-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.need-card .inline-cta {
  margin-top: var(--space-4);
  font-size: 0.88rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  align-items: start;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--surface-soft);
}

.project-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  margin: 0 0 var(--space-5);
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(18, 48, 90, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.project-note p {
  margin: 0;
  color: #516173;
}

.project-source-list,
.project-actions,
.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-source-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(18, 48, 90, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.project-filter {
  margin-bottom: 24px;
}

.project-card.is-hidden {
  display: none;
}

.project-meta {
  gap: 8px;
}

.project-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(18, 48, 90, 0.06);
  color: #516173;
  font-size: 0.78rem;
  font-weight: 500;
}

.process-section {
  background: var(--navy-2);
}

.process-section .section-heading h2,
.process-section .process-card h3 {
  color: #fff;
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.process-card {
  padding: var(--space-5);
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.process-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: var(--space-4);
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.process-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}

.testimonial-card {
  padding: var(--space-5);
  border-radius: var(--radius);
}

.testimonial-card p {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.6;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.testimonial-card strong {
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
}

.testimonial-card span {
  margin-top: 2px;
  font-size: 0.85rem;
}

.commitment-section {
  background: #fff;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: var(--space-6);
  align-items: start;
}

.commitment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}

.commitment-card {
  padding: 20px;
  border-radius: var(--radius);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.commitment-card h3 {
  position: relative;
  padding-left: 30px;
}

.commitment-card h3::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(31, 122, 77, 0.12);
  color: var(--green);
  font-size: 0.9rem;
}

.commitment-card p {
  margin-bottom: 0;
}

.cta-band {
  padding: var(--space-8) 0;
  background: linear-gradient(135deg, var(--orange), #f07a2b);
  color: #fff;
}

.cta-band .eyebrow,
.cta-band h2 {
  color: #fff;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto minmax(220px, 0.42fr);
  align-items: center;
  gap: var(--space-5);
}

.cta-band h2 {
  margin-bottom: var(--space-2);
}

.cta-band-copy p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-band-product {
  width: 100%;
  max-width: 240px;
  justify-self: end;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 34px rgba(11, 36, 71, 0.2);
}

.grecaptcha-badge {
  transform: scale(0.82);
  transform-origin: bottom right;
}

.contact-section {
  background:
    linear-gradient(135deg, rgba(18, 48, 90, 0.94), rgba(11, 36, 71, 0.96)),
    var(--navy-2);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.68fr);
  gap: var(--space-6);
  align-items: start;
}

.contact-copy h2,
.contact-copy .eyebrow {
  color: #fff;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
  margin: var(--space-5) 0;
}

.phone-big {
  display: inline-flex;
  color: #fff;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.contact-facts {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.contact-facts div {
  padding: var(--space-4) var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.contact-facts dt {
  margin-bottom: var(--space-1);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
}

.quote-card {
  padding: var(--space-5);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.quote-card h3 {
  font-size: 1.25rem;
}

.quote-card form {
  display: grid;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.quote-card label {
  display: grid;
  gap: 6px;
  color: var(--navy);
  font-size: 0.84rem;
  font-weight: 600;
}

.quote-card input,
.quote-card select,
.quote-card textarea {
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.94rem;
  color: var(--ink);
  background: #f8fafc;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.quote-card input:focus,
.quote-card select:focus,
.quote-card textarea:focus {
  border-color: var(--orange);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(230, 95, 31, 0.12);
}

.quote-card select {
  min-height: 44px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.quote-card textarea {
  resize: vertical;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.form-message {
  margin-top: 16px;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-message.success {
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.faq-list {
  display: grid;
  gap: var(--space-3);
}

.faq-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  color: var(--navy-2);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--orange);
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 400;
}

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

.faq-item p {
  margin: 0;
  padding: 0 var(--space-5) var(--space-5);
  font-size: 0.94rem;
  line-height: 1.65;
}

.site-footer {
  padding: var(--space-8) 0 var(--space-5);
  color: rgba(255, 255, 255, 0.8);
  background: #081b34;
  font-size: 0.92rem;
}

.footer-logo {
  width: 180px;
  max-width: 100%;
  height: auto;
  margin-bottom: var(--space-4);
  padding: 6px;
  border-radius: 12px;
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: var(--space-6);
}

.site-footer h2,
.site-footer h3 {
  color: #fff;
  letter-spacing: -0.01em;
}

.site-footer h2 {
  font-size: 1.125rem;
  margin-bottom: var(--space-3);
}

.site-footer h3 {
  font-size: 0.94rem;
  margin-bottom: var(--space-3);
  font-weight: 600;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: var(--space-2);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  margin-top: var(--space-6);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.84rem;
}

.mobile-bottom-bar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 80;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(18, 48, 90, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
}

.mobile-bottom-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 8px;
  border-radius: 10px;
  color: #fff;
  background: var(--orange);
  font-size: 0.92rem;
  font-weight: 700;
}

.mobile-bottom-bar a:last-child {
  background: var(--navy);
}

.reveal {
  opacity: 1;
  transform: translateY(18px);
  transition:
    transform 0.58s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
  }

  .section {
    padding: var(--space-9) 0;
  }

  .section--compact {
    padding: var(--space-7) 0;
  }

  .hero {
    padding-top: var(--space-9);
    padding-bottom: var(--space-8);
  }

  .hero-grid,
  .contact-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

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

  .need-grid,
  .swatch-grid,
  .process-grid,
  .why-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .color-cta {
    grid-template-columns: 1fr;
  }

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

  .project-note {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 56px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: var(--space-7) 0;
  }

  .section--compact {
    padding: var(--space-6) 0;
  }

  .desktop-nav,
  .header-actions .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.is-open {
    display: block;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 160px;
  }

  .hero {
    padding-top: var(--space-7);
    padding-bottom: var(--space-6);
  }

  h1 {
    font-size: clamp(1.75rem, 7vw, 2.125rem);
    line-height: 1.18;
    max-width: 16ch;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 1.75rem);
    line-height: 1.22;
  }

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

  .hero-cta,
  .contact-actions,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .slim-teaser .container {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .teaser-actions {
    justify-content: flex-start;
  }

  .btn {
    width: 100%;
  }

  .hotline-card {
    width: 100%;
    justify-content: space-between;
    border-radius: 8px;
  }

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

  .hero-stage {
    min-height: auto;
  }

  .hero-stage-pack {
    position: static;
    width: 100%;
    max-width: 260px;
    margin: -86px auto 18px;
    transform: none;
    display: block;
  }

  .hero-stage-badge {
    top: 12px;
    left: 12px;
  }

  .hero-sidecards {
    display: none;
  }

  .hero-media:has(> img) {
    grid-template-columns: 1fr;
  }

  .hero-media > img:first-child {
    aspect-ratio: 4 / 3;
  }

  .hero-facts {
    flex-direction: column;
  }

  .trust-strip {
    margin-top: 0;
    padding-top: 24px;
    background: var(--surface-soft);
  }

  .trust-grid,
  .why-grid,
  .product-grid,
  .need-grid,
  .project-grid,
  .process-grid,
  .testimonial-grid,
  .commitment-list,
  .footer-grid,
  .swatch-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .cta-band-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .project-source-list,
  .project-actions,
  .project-meta,
  .project-filter,
  .color-filter,
  .color-cta-actions,
  .section-source {
    align-items: stretch;
  }

  .project-card img,
  .product-card img {
    aspect-ratio: 4 / 3;
  }

  .project-card img {
    object-fit: cover;
  }

  .product-card img {
    object-fit: contain;
  }

  .cta-band-product {
    display: none;
  }

  .quote-card {
    padding: 18px;
  }

  .quote-card h3 {
    font-size: 1.125rem;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  body {
    padding-bottom: 76px;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }

  .section {
    padding: var(--space-7) 0;
  }

  .section--compact {
    padding: var(--space-6) 0;
  }

  .section-heading {
    margin-bottom: var(--space-5);
  }

  .mini-card,
  .why-card,
  .testimonial-card,
  .commitment-card,
  .need-card,
  .process-card {
    padding: var(--space-4);
  }
}

@media (max-width: 420px) {
  .brand-logo {
    width: 150px;
  }

  .hotline-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

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