:root {
  --navy-950: #111111;
  --navy-900: #1a1a1a;
  --navy-800: #262626;
  --navy-700: #383838;
  --steel-700: #575757;
  --steel-500: #7d7d7d;
  --steel-300: #d3d3d3;
  --steel-200: #e8e8e8;
  --mist: #f5f5f5;
  --surface: #ffffff;
  --surface-soft: #f7f7f7;
  --white: #ffffff;
  --signal: #f4b400;
  --signal-dark: #cd9500;
  --signal-text: #8b6800;
  --shadow-lg: 0 28px 60px rgba(17, 17, 17, 0.16);
  --shadow-md: 0 18px 40px rgba(17, 17, 17, 0.1);
  --shadow-sm: 0 12px 24px rgba(17, 17, 17, 0.08);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--navy-950);
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.08), transparent 22rem),
    linear-gradient(180deg, #f4f4f4 0%, #ffffff 36%, #f6f6f6 100%);
  line-height: 1.72;
  letter-spacing: -0.01em;
}

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

.text-link {
  color: var(--navy-900);
  text-decoration: underline;
  text-decoration-color: rgba(244, 180, 0, 0.7);
  text-underline-offset: 0.18em;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration-color: var(--signal);
}

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

.site-shell {
  min-height: 100vh;
}

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

.narrow {
  width: min(860px, 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.06);
}

.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  min-height: 148px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  margin-right: 1.5rem;
}

.brand-logo,
.logo {
  height: 110px !important;
  width: auto !important;
  max-height: none !important;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 0.55rem;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-800);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(26, 26, 26, 0.08);
  color: var(--navy-950);
}

.site-nav a.active {
  background: rgba(244, 180, 0, 0.16);
  color: var(--navy-950);
  box-shadow: inset 0 0 0 1px rgba(244, 180, 0, 0.28);
}

.site-nav .nav-cta {
  padding: 0.8rem 1.2rem;
  background: linear-gradient(135deg, var(--signal), #ffd24c);
  color: var(--navy-950);
  box-shadow: 0 10px 22px rgba(244, 180, 0, 0.22);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: linear-gradient(135deg, var(--signal-dark), #e7ae00);
  color: var(--navy-950);
  box-shadow: 0 12px 24px rgba(205, 149, 0, 0.28);
}

.site-nav .nav-cta.active {
  background: linear-gradient(135deg, var(--signal), #ffd24c);
  color: var(--navy-950);
  box-shadow:
    0 10px 22px rgba(244, 180, 0, 0.22),
    inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0.35rem;
  margin-left: auto;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy-900);
}

.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;
}

.hero,
.page-hero {
  position: relative;
  padding: 6rem 0 4.5rem;
}

.hero {
  overflow: hidden;
}

.page-hero {
  overflow: hidden;
  padding: 6rem 0 6rem;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.14), transparent 26rem),
    linear-gradient(135deg, #101010 0%, #1a1a1a 45%, #2a2a2a 100%);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 8rem),
    linear-gradient(rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 8rem);
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.55), transparent 78%);
  z-index: 0;
}

.page-hero::before {
  inset: 0;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

.hero .container,
.page-hero .container {
  position: relative;
  z-index: 1;
}

.hero-grid,
.split-layout,
.trust-grid,
.card-grid,
.product-grid,
.footer-grid,
.field-grid,
.form-layout,
.category-grid,
.proof-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 2rem;
  align-items: stretch;
}

.hero-copy,
.page-hero .narrow {
  color: var(--white);
}

.products-hero-content {
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-layout h2,
.cta-card h2 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  position: relative;
  max-width: 12ch;
  color: var(--white);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.hero-copy h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 6px;
  margin-top: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--signal), #ffe07a);
  box-shadow: 0 8px 18px rgba(244, 180, 0, 0.24);
}

.page-hero h1,
.section-heading h2,
.split-layout h2,
.cta-card h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1rem;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--signal-text);
}

.eyebrow::before {
  content: "";
  width: 46px;
  height: 2px;
  background: currentColor;
}

.lead {
  margin-top: 1.25rem;
  font-size: 1.08rem;
  color: var(--steel-700);
  max-width: 42rem;
  line-height: 1.8;
}

.heading-note {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--signal-text);
}

.hero-copy .lead,
.page-hero .lead {
  color: rgba(255, 255, 255, 0.84);
}

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

.hero .heading-note,
.page-hero .heading-note {
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-badge {
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(244, 180, 0, 0.24);
  background: rgba(244, 180, 0, 0.12);
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero .trust-badge,
.page-hero .trust-badge {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(244, 180, 0, 0.32);
  background: rgba(244, 180, 0, 0.18);
}

.hero-chip {
  padding: 0.72rem 1rem;
  border: 1px solid rgba(244, 180, 0, 0.24);
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.12);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  border: 2px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--signal), #ffd24c);
  color: var(--navy-950);
  box-shadow: 0 16px 30px rgba(244, 180, 0, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--signal-dark), #ebb000);
  box-shadow: 0 18px 34px rgba(205, 149, 0, 0.34);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.88);
  background: var(--surface);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(244, 180, 0, 0.4);
  background: #fffbea;
  color: var(--navy-950);
}

.page-hero + .section .button-secondary,
.section .button-secondary,
.cta-card .button-secondary {
  border-color: rgba(26, 26, 26, 0.14);
  background: var(--surface);
  color: var(--navy-800);
}

body[data-page="products"] .page-hero h1 {
  color: #ffffff;
  max-width: 12ch;
}

body[data-page="products"] .products-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
}

body[data-page="products"] .products-hero-content {
  max-width: 700px;
  min-width: 0;
}

body[data-page="products"] .products-hero-space {
  min-height: 100%;
}

.hero-panel,
.info-panel,
.form-card,
.point-card,
.feature-card,
.product-card,
.cta-card,
.trust-grid > div,
.category-card,
.proof-card {
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    linear-gradient(180deg, rgba(20, 20, 20, 0.98), rgba(33, 33, 33, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--signal), #ffe07a);
}

.panel-card,
.info-panel,
.form-card,
.point-card,
.feature-card,
.product-card,
.cta-card,
.trust-grid > div,
.category-card,
.proof-card {
  position: relative;
  padding: 1.8rem;
}

.hero-panel-card {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-lg) - 4px);
}

.hero-panel-label {
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.panel-card h2,
.info-panel h2,
.product-card h3,
.feature-card h3,
.point-card h3,
.category-card h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-panel-stats {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero-panel-stats div {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(244, 180, 0, 0.08);
  border: 1px solid rgba(244, 180, 0, 0.16);
}

.hero-panel-stats strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffe07a;
}

.hero-panel-stats span {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.95rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(244, 180, 0, 0.16);
}

.trust-strip {
  margin-top: -1.5rem;
  padding: 0 0 2.5rem;
}

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

.trust-grid-home > div {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(247, 247, 247, 1));
}

.trust-label {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--signal-text);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-grid strong,
.proof-number {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section {
  padding: 3rem 0 5.5rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(26, 26, 26, 0.04), rgba(26, 26, 26, 0.012)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(245, 245, 245, 0.74));
  border-top: 1px solid rgba(26, 26, 26, 0.05);
  border-bottom: 1px solid rgba(26, 26, 26, 0.05);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.25rem;
}

.section-heading .lead {
  margin-bottom: 0;
}

.section-links {
  margin: 1.25rem 0 0;
  color: var(--steel-700);
}

.catalogue-disclaimer {
  margin: -0.5rem 0 1.75rem;
  max-width: 880px;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-left: 4px solid var(--signal);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
  color: var(--steel-700);
  box-shadow: var(--shadow-sm);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

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

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

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

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.catalogue-section {
  display: grid;
  gap: 2rem;
}

.catalogue-group {
  display: grid;
  gap: 1.25rem;
  padding: 1.75rem;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 248, 248, 0.92));
  box-shadow: var(--shadow-sm);
}

.catalogue-group-heading {
  max-width: 620px;
}

.catalogue-group-heading h3 {
  margin: 0;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy-950);
}

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

.catalogue-grid-single {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  min-width: 0;
  border: 1px solid rgba(26, 26, 26, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1rem;
  min-height: 220px;
  padding: 1.35rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), transparent),
    linear-gradient(135deg, #1a1a1a 0%, #252525 58%, #3a3a3a 100%);
  color: rgba(255, 255, 255, 0.76);
}

.product-media::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: rgba(244, 180, 0, 0.16);
}

.product-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 1;
  width: 100%;
  padding: 0.5rem 0 0.75rem;
}

.product-visual svg {
  width: min(100%, 220px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}

.product-photo-frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 156px;
  padding: 1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 244, 244, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 24px rgba(0, 0, 0, 0.16);
}

.product-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 140px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 8px 14px rgba(17, 17, 17, 0.14));
}

.product-tag {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 0;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(244, 180, 0, 0.16);
  color: #ffe289;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 1.5rem;
  gap: 0.95rem;
}

.product-body h4 {
  margin: 0 0 0.65rem;
  overflow-wrap: anywhere;
  word-break: normal;
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.product-body p {
  margin: 0;
  color: var(--steel-700);
  overflow-wrap: anywhere;
  word-break: normal;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 0.85rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.product-spec {
  display: grid;
  align-content: start;
  gap: 0.32rem;
  min-width: 0;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: #f8f8f8;
  border: 1px solid rgba(26, 26, 26, 0.06);
}

.product-spec strong {
  color: var(--navy-950);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: normal;
  hyphens: none;
}

.product-spec span {
  color: var(--steel-700);
  font-size: 0.9rem;
  line-height: 1.45;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: normal;
  hyphens: none;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.7rem;
}

.product-features li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--navy-800);
  font-size: 0.95rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(244, 180, 0, 0.14);
}

.product-body .button {
  margin-top: auto;
}

.category-card,
.feature-card,
.product-card,
.proof-card {
  overflow: hidden;
  min-width: 0;
}

.product-card h3,
.product-card p {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.feature-card::before,
.product-card::before,
.category-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
}

.accent-blue::before,
.product-card:nth-child(3n + 1)::before {
  background: linear-gradient(90deg, var(--navy-900), #444444);
}

.accent-grey::before,
.product-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, #6b6b6b, #b9b9b9);
}

.accent-red::before,
.product-card:nth-child(3n)::before {
  background: linear-gradient(90deg, var(--signal), #ffd451);
}

.category-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(244, 180, 0, 0.14);
  color: var(--navy-800);
  font-family: "Poppins", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.proof-card {
  min-height: 100%;
}

.split-layout {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2rem;
  align-items: start;
}

.stacked-points {
  display: grid;
  gap: 1rem;
}

.point-card {
  padding-left: 1.6rem;
  border-left: 5px solid var(--signal);
}

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

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

.form-card label {
  display: block;
  font-weight: 600;
  color: var(--navy-800);
  letter-spacing: -0.01em;
}

.form-intro {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
}

.form-intro h2 {
  margin: 0 0 0.5rem;
}

.form-intro p {
  margin: 0;
  color: var(--steel-700);
}

.form-section {
  margin-top: 1.5rem;
}

.form-section-title {
  margin: 0 0 1rem;
  color: var(--signal-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-trust {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(26, 26, 26, 0.08);
}

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

input,
select,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 16px;
  background: var(--surface-soft);
  font: inherit;
  font-size: 0.98rem;
  color: var(--navy-950);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

p,
li,
input,
select,
textarea {
  line-height: 1.72;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(244, 180, 0, 0.2);
  border-color: var(--signal);
}

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

.form-actions {
  margin-top: 1.5rem;
}

.form-note {
  margin: 0.85rem 0 0;
  color: var(--steel-700);
  font-size: 0.95rem;
}

.form-message {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  color: var(--navy-950);
}

.form-message.is-success {
  border: 1px solid rgba(244, 180, 0, 0.28);
  background: #fffbea;
}

.form-message.is-error {
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: #f6f6f6;
}

.form-message strong {
  display: block;
  margin-bottom: 0.3rem;
}

.form-message p {
  margin: 0;
}

.contact-list p {
  margin: 0 0 1rem;
}

.cta-band {
  padding-top: 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background:
    linear-gradient(120deg, rgba(17, 17, 17, 0.98), rgba(48, 48, 48, 0.95)),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-card .eyebrow {
  color: #ffd451;
}

.site-footer {
  padding: 2.25rem 0 1.4rem;
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  grid-template-columns: 2fr 1fr 1fr;
  align-items: start;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.84);
}

.footer-base {
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1100px) {
  .proof-grid,
  .card-grid,
  .catalogue-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .nav-wrap {
  min-height: 140px;
}
  .hero,
  .page-hero {
    padding-top: 5.25rem;
  }

  .page-hero {
    padding-bottom: 5.5rem;
  }

  .hero-grid,
  .split-layout,
  .form-layout,
  .category-grid,
  .product-grid,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="products"] .products-hero-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="products"] .products-hero-space {
    display: none;
  }

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

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(26, 26, 26, 0.1);
    box-shadow: var(--shadow-md);
  }

  .site-nav a,
  .site-nav .nav-cta {
    width: 100%;
  }

  .brand {
    margin-right: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-block;
  }

  .hero::before {
    inset: 0;
  }

  .logo {
    height: 88px !important;
  }
}

@media (max-width: 720px) {
  .proof-grid,
  .card-grid,
  .catalogue-grid,
  .catalogue-grid-compact {
    grid-template-columns: 1fr;
  }

  .product-spec-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero,
  .page-hero {
    padding-top: 4.75rem;
  }

  .page-hero {
    padding-bottom: 5rem;
  }

  .hero-copy h1,
  .page-hero h1,
  .section-heading h2,
  .split-layout h2,
  .cta-card h2 {
    line-height: 0.98;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 9vw, 3.3rem);
  }

  .hero-copy h1::after {
    width: 92px;
    height: 5px;
  }

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

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .nav-wrap {
    min-height: 98px;
  }

  .logo {
    height: 72px !important;
  }
}
