:root {
  /* Theme B - logo cyan (light) */
  --bg: #f0f9ff;
  --surface: #ffffff;
  --ink: #0c1a28;
  --ink-soft: #4a6578;
  --navy: #0c1a28;
  --brand: #0284c7;
  --brand-bright: #7dd3fc;
  --brand-dark: #0369a1;
  --brand-glow: rgba(2, 132, 199, 0.32);
  --accent: var(--brand);
  --accent-hover: var(--brand-dark);
  --panel-bg: #0c4a6e;
  --panel-ink: #f0f9ff;
  --panel-muted: rgba(224, 242, 254, 0.85);
  --border: #cfe8f7;
  --shadow: 0 12px 40px rgba(12, 74, 110, 0.08);
  --header-bg: rgba(255, 255, 255, 0.92);
  --radius: 16px;
  --shell: min(1120px, 100% - 2.5rem);
  --sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --desk: #0284c7;
  --backup: #0d9488;
}

[data-theme="dark"] {
  /* Theme B - dark mode (charcoal + cyan) */
  color-scheme: dark;
  --bg: #070b10;
  --surface: #0f1720;
  --ink: #e8f4fc;
  --ink-soft: #8ba3b5;
  --navy: #e8f4fc;
  --brand: #38bdf8;
  --brand-bright: #7dd3fc;
  --brand-dark: #0ea5e9;
  --brand-glow: rgba(56, 189, 248, 0.28);
  --panel-bg: #061018;
  --panel-ink: #e8f4fc;
  --panel-muted: rgba(186, 230, 253, 0.72);
  --border: #1e3344;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
  --header-bg: rgba(7, 11, 16, 0.92);
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent-hover);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.55rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  flex-shrink: 0;
  color: var(--ink);
}

.brand:hover {
  color: var(--ink);
}

.brand img,
.site-logo {
  height: 2.4rem;
  width: 2.4rem;
  object-fit: contain;
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  white-space: nowrap;
}

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

[data-theme="dark"] .brand-name span {
  color: var(--brand-bright);
}

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

.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-dropdown > button:hover,
.nav-dropdown:focus-within > button {
  color: var(--ink);
}

.nav-dropdown > button::after {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.7;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 12rem;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 60;
}

/* Invisible hit area so the menu stays open while moving from the button into the panel */
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 0.75rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  color: var(--ink);
}

.nav-dropdown-menu a:hover {
  background: var(--bg);
  color: var(--brand-dark);
}

.nav-dropdown-menu img {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 6px;
  object-fit: contain;
  background: var(--bg);
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-cta {
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: var(--brand);
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 20px var(--brand-glow);
}

.header-cta:hover {
  background: var(--brand-dark);
  color: #fff;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink-soft);
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.theme-toggle:hover {
  color: var(--ink);
  border-color: var(--brand);
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-moon {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}

.menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
}

.menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--ink);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0 0 1rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a {
  font-weight: 500;
  padding: 0.65rem 0;
  color: var(--ink);
  text-decoration: none;
}

.mobile-nav .mobile-sub {
  padding-left: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* Hero / dark panels — cyan sky gradient (theme B) */
.hero-panel {
  position: relative;
  color: var(--panel-ink);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 15%, rgba(125, 211, 252, 0.28), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 20%, rgba(14, 165, 233, 0.22), transparent 50%),
    linear-gradient(165deg, #0c4a6e 0%, #0369a1 45%, #0ea5e9 100%);
}

[data-theme="dark"] .hero-panel {
  background:
    radial-gradient(ellipse 70% 55% at 12% 15%, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 20%, rgba(14, 165, 233, 0.12), transparent 50%),
    linear-gradient(165deg, #061018 0%, #0a1f2e 50%, #0c2d42 100%);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, #000 30%, transparent 100%);
}

.hero-panel .shell {
  position: relative;
  z-index: 2;
}

/* Hide legacy circuit assets if present */
.circuit-deco {
  display: none;
}

/* Hero */
.hero {
  padding: 5rem 0 4.75rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-bright);
  margin: 0 0 0.85rem;
}

.hero-text h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.8vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: #fff;
}

.hero-text > p {
  margin: 0 0 1.75rem;
  color: var(--panel-muted);
  max-width: 34em;
  font-size: 1.1rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-main {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 24px var(--brand-glow);
}

.btn-main:hover {
  background: var(--brand-dark);
  color: #fff;
}

.btn-soft {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

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

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.hero-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--panel-muted);
}

.hero-points li::before {
  content: "✓ ";
  color: var(--brand-bright);
  font-weight: 700;
}

.hero-stack {
  display: grid;
  gap: 0.85rem;
}

.hero-stack-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.15rem 0.9rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.05rem 1.2rem;
  backdrop-filter: blur(10px);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s, background 0.15s;
}

.hero-stack-card:hover {
  border-color: rgba(123, 147, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.hero-stack-card img {
  grid-row: 1 / span 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stack-card strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.1rem;
}

.hero-stack-card > span:not(.hero-stack-card-title) {
  font-size: 0.875rem;
  color: var(--panel-muted);
}

.hero-stack-card-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.55rem;
}

.hero-stack-card-title strong {
  margin-bottom: 0;
}

.hero-stack-card .coming-soon {
  background: rgba(125, 211, 252, 0.16);
  color: #bae6fd;
  border-color: rgba(125, 211, 252, 0.4);
}

/* Sections */
.section {
  padding: 4.5rem 0;
}

.section-top {
  margin-bottom: 2rem;
  max-width: 40rem;
}

.section-top h2 {
  margin: 0 0 0.4rem;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.section-top p {
  margin: 0;
  color: var(--ink-soft);
}

.section-top--center {
  text-align: center;
  margin-inline: auto;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}

.product-card:hover {
  border-color: rgba(2, 132, 199, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(2, 132, 199, 0.12);
}

[data-theme="dark"] .product-card:hover {
  border-color: rgba(56, 189, 248, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.product-logo {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  object-fit: contain;
  background: var(--bg);
  margin-bottom: 1rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.18);
}

[data-theme="dark"] .product-logo {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.product-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.product-card-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0 0 0.4rem;
}

.product-card-title h3 {
  margin: 0;
}

.coming-soon {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(2, 132, 199, 0.12);
  color: var(--brand-dark);
  border: 1px solid rgba(2, 132, 199, 0.28);
}

[data-theme="dark"] .coming-soon {
  background: rgba(56, 189, 248, 0.14);
  color: var(--brand-bright);
  border-color: rgba(56, 189, 248, 0.35);
}

.product-hero-brand .coming-soon {
  background: rgba(125, 211, 252, 0.16);
  color: #bae6fd;
  border-color: rgba(125, 211, 252, 0.4);
}

.product-card > p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  flex: 1;
}

.product-card ul {
  margin: 0 0 1.25rem;
  padding: 0 0 0 1.1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.product-card li {
  margin-bottom: 0.35rem;
}

.product-card .btn {
  align-self: flex-start;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

/* Why / value strip */
.value-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.value-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.value-item .value-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.03em;
  margin-bottom: 0.35rem;
}

[data-theme="dark"] .value-item .value-num {
  color: var(--brand-bright);
}

.value-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.value-item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Product page hero */
.product-hero {
  padding: 3.75rem 0 4rem;
}

.product-hero-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.product-hero-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 16px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(2, 132, 199, 0.18);
  color: var(--brand-bright);
  margin-bottom: 0;
}

.product-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.95rem, 4vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: #fff;
  max-width: 16ch;
}

.product-hero .lead {
  margin: 0 0 1.5rem;
  color: var(--panel-muted);
  max-width: 36em;
  font-size: 1.1rem;
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
}

.feature-list .check {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(2, 132, 199, 0.12);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

[data-theme="dark"] .feature-list .check {
  color: var(--brand-bright);
}

.feature-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.15rem;
}

.feature-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* CTA band */
.cta-band {
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  letter-spacing: -0.03em;
  color: #fff;
}

.cta-band p {
  margin: 0 auto 1.5rem;
  color: var(--panel-muted);
  max-width: 32em;
}

.cta-band .hero-cta {
  justify-content: center;
  margin-bottom: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.contact-card > p {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
}

.contact-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.contact-form .field {
  margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(2, 132, 199, 0.4);
  outline-offset: 1px;
  border-color: var(--brand);
}

.contact-form textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact-meta {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-meta li {
  margin-bottom: 1rem;
}

.contact-meta strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 0.2rem;
}

.contact-meta a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
}

.contact-meta a:hover {
  color: var(--brand-dark);
}

.form-note {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

.form-alert {
  margin: 0 0 1.15rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-alert--ok {
  color: #0f5132;
  background: #d1e7dd;
  border: 1px solid #a3cfbb;
}

.form-alert--err {
  color: #842029;
  background: #f8d7da;
  border: 1px solid #f1aeb5;
}

[data-theme="dark"] .form-alert--ok {
  color: #a3cfbb;
  background: rgba(15, 81, 50, 0.35);
  border-color: rgba(163, 207, 187, 0.35);
}

[data-theme="dark"] .form-alert--err {
  color: #f1aeb5;
  background: rgba(132, 32, 41, 0.35);
  border-color: rgba(241, 174, 181, 0.35);
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-grid--single {
  grid-template-columns: 1fr;
  max-width: 36rem;
}

/* Footer */
.footer {
  padding: 3.25rem 0 2rem;
  background: linear-gradient(165deg, #0c4a6e 0%, #0369a1 55%, #0c4a6e 100%);
  color: var(--panel-ink);
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] .footer {
  background: linear-gradient(165deg, #061018 0%, #0a1f2e 55%, #061018 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 0% 0%, rgba(14, 165, 233, 0.2), transparent 60%),
    radial-gradient(ellipse 40% 30% at 100% 100%, rgba(2, 132, 199, 0.15), transparent 55%);
}

.footer .shell {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand-bright);
  margin: 0 0 1rem;
}

.footer p {
  margin: 0;
  color: var(--panel-muted);
  font-size: 0.95rem;
  max-width: 28em;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer li {
  margin-bottom: 0.55rem;
}

.footer a {
  font-size: 0.925rem;
  color: var(--panel-muted);
  text-decoration: none;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
  text-decoration: none;
  color: #fff;
}

.footer-brand:hover {
  color: #fff;
}

.footer-brand img {
  height: 2.15rem;
  width: 2.15rem;
  object-fit: contain;
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-brand .brand-name span {
  color: var(--brand-bright);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: var(--panel-muted);
}

.footer-bottom > span:first-child {
  justify-self: start;
}

.footer-bottom > .made-in-canada {
  justify-self: center;
}

.footer-bottom > span:last-child {
  justify-self: end;
}

.footer-bottom a {
  color: var(--brand-bright);
}

.made-in-canada {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--panel-muted);
  white-space: nowrap;
}

.made-in-canada .flag-emoji {
  font-size: 0.95rem;
  line-height: 1;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--panel-muted);
}

.breadcrumb a {
  color: var(--brand-bright);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .contact-grid,
  .value-strip,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .hero-grid,
  .feature-grid,
  .contact-grid,
  .product-grid,
  .value-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 3.25rem 0;
  }

  .section {
    padding: 3.25rem 0;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > span:first-child,
  .footer-bottom > .made-in-canada,
  .footer-bottom > span:last-child {
    justify-self: center;
  }
}
