:root {
  --bg: #070a08;
  --surface: #0b0f0c;
  --text: #0b0f0c;
  --text-on-dark: #f7faf8;
  --muted: rgba(11, 15, 12, 0.7);
  --muted-on-dark: rgba(247, 250, 248, 0.75);

  --green-1: #16a34a;
  --green-2: #22c55e;

  --card: #ffffff;
  --border: rgba(2, 6, 23, 0.12);
  --shadow: 0 18px 40px rgba(2, 6, 23, 0.12);

  --radius: 18px;
  --radius-lg: 26px;

  --container: 1120px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 14px);
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.55;
  color: var(--text);
  background: #ffffff;
}

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

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

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 0.95em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: #fff;
  color: #000;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  z-index: 9999;
}
.skip-link:focus {
  left: 16px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease,
    color 160ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  color: #08130c;
  background: linear-gradient(135deg, var(--green-2), var(--green-1));
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.28);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 38px rgba(34, 197, 94, 0.32);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
}
.btn--block {
  width: 100%;
}

.btn--ghost-on-light {
  color: rgba(2, 6, 23, 0.9);
  border-color: rgba(2, 6, 23, 0.14);
  background: rgba(2, 6, 23, 0.02);
  backdrop-filter: none;
}
.btn--ghost-on-light:hover {
  background: rgba(34, 197, 94, 0.08);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(2, 6, 23, 0.08);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.9), rgba(22, 163, 74, 0.45)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
  box-shadow: 0 12px 28px rgba(34, 197, 94, 0.22);
  border: 1px solid rgba(22, 163, 74, 0.25);
}
.brand-name {
  font-size: 15px;
  letter-spacing: 0.2px;
}

.nav {
  position: relative;
}

.nav-check {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.nav-menu {
  display: none;
  gap: 14px;
  align-items: center;
}
.nav-menu a {
  font-weight: 600;
  font-size: 14px;
  color: rgba(2, 6, 23, 0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 160ms ease, color 160ms ease;
}
.nav-menu a:hover {
  background: rgba(34, 197, 94, 0.1);
  color: rgba(2, 6, 23, 0.92);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.14);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle-lines {
  width: 18px;
  height: 12px;
  position: relative;
}
.nav-toggle-lines::before,
.nav-toggle-lines::after,
.nav-toggle-lines span {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(2, 6, 23, 0.86);
  border-radius: 999px;
}
.nav-toggle-lines::before {
  top: 0;
}
.nav-toggle-lines span {
  top: 5px;
}
.nav-toggle-lines::after {
  bottom: 0;
}

.header-cta {
  display: none;
  gap: 10px;
  align-items: center;
}

/* Mobile menu popup (CSS-only) */
.nav-check:checked ~ .nav-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  display: grid;
  gap: 6px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(2, 6, 23, 0.1);
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.12);
  min-width: 220px;
}

/* HERO */
.hero {
  position: relative;
  min-height: calc(92vh - var(--header-h));
  display: grid;
  align-items: center;
  overflow: clip;
  color: var(--text-on-dark);
  background: #050806;
}
.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #050806;
}
.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw; /* 16:9 */
  min-width: 177.78vh; /* 16:9 */
  min-height: 100vh;
  border: 0;
  filter: saturate(1.05) contrast(1.02) brightness(0.86);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.22), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(34, 197, 94, 0.12), transparent 60%),
    radial-gradient(circle at 30% 80%, rgba(34, 197, 94, 0.1), transparent 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 76px 0 70px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(247, 250, 248, 0.9);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 14px;
}
.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.6px;
}
.subheading {
  margin: 0 0 20px;
  color: var(--muted-on-dark);
  font-size: clamp(15px, 1.8vw, 18px);
  max-width: 58ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 26px;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 560px;
}
.metric {
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}
.metric-value {
  font-weight: 700;
  font-size: 16px;
}
.metric-label {
  color: rgba(247, 250, 248, 0.78);
  font-size: 12px;
}

/* Sections */
.section {
  padding: 72px 0;
}
.section--light {
  background: #ffffff;
}
.section--dark {
  background: linear-gradient(180deg, #060906, #030504);
  color: var(--text-on-dark);
}
.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: -0.4px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.section-head--on-dark p {
  color: var(--muted-on-dark);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.product-card {
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 14px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  display: grid;
  gap: 12px;
  overflow: hidden;
  position: relative;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.35), transparent 60%);
  transform: rotate(12deg);
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 163, 74, 0.28);
  box-shadow: 0 22px 60px rgba(2, 6, 23, 0.14);
}
.product-media {
  border-radius: 18px;
  border: 1px solid rgba(2, 6, 23, 0.08);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(0, 0, 0, 0.02));
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
}
.product-media--photo {
  place-items: stretch;
  background-image: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(0, 0, 0, 0.02)),
    var(--media);
  background-size: cover;
  background-position: center;
  filter: saturate(1.02) contrast(1.02);
}
.product-media svg {
  width: 62%;
  height: auto;
  color: rgba(2, 6, 23, 0.82);
}
.product-title {
  display: grid;
  gap: 6px;
}
.product-title h3 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}
.product-title p {
  margin: 0;
  color: rgba(2, 6, 23, 0.68);
  font-size: 13px;
}
.product-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-ctas {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.pill {
  font-size: 12px;
  font-weight: 700;
  color: rgba(2, 6, 23, 0.74);
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
}
.btn--mini {
  padding: 10px 12px;
  font-size: 13px;
}
.btn--icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-2), var(--green-1));
  border: 1px solid rgba(22, 163, 74, 0.28);
  color: #08130c;
  box-shadow: none;
}
.btn--icon svg {
  width: 18px;
  height: 18px;
}
.btn--icon:hover {
  border-color: rgba(22, 163, 74, 0.38);
  transform: translateY(-1px);
}
.btn--mini.btn--primary {
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.26);
}
.btn--mini.btn--primary:hover {
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.3);
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.feature-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 18px;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.25);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.34);
  background: rgba(255, 255, 255, 0.075);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.24), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(34, 197, 94, 0.18);
  margin-bottom: 12px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
  color: rgba(247, 250, 248, 0.95);
}
.feature-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}
.feature-card p {
  margin: 0;
  color: var(--muted-on-dark);
  font-size: 13px;
}

/* About */
.about {
  display: grid;
  gap: 18px;
  align-items: center;
}
.about-copy h2 {
  margin: 0 0 10px;
}
.about-copy p {
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 70ch;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.about-visual {
  min-height: 320px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 6, 23, 0.1);
  overflow: hidden;
  background-image: radial-gradient(circle at 30% 20%, rgba(34, 197, 94, 0.22), transparent 55%),
    radial-gradient(circle at 75% 40%, rgba(34, 197, 94, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(2, 6, 23, 0.06), rgba(2, 6, 23, 0));
  position: relative;
  background-color: #050806;
}

.about-video {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.about-video-frame {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #050806;
  border: 0;
  box-shadow: none;
}
.about-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* If the embed shows black bars, this zoom helps it feel "full box". */
.about-video-frame iframe {
  transform: scale(1.06);
  transform-origin: center;
}
.about-video-hint {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(247, 250, 248, 0.86);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  backdrop-filter: blur(10px);
}

/* Testimonials slider */
.slider {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}
.slider-track {
  display: flex;
  transition: transform 360ms ease;
  will-change: transform;
}
.testimonial {
  flex: 0 0 100%;
  padding: 20px;
  display: grid;
  gap: 12px;
}
.stars {
  letter-spacing: 2px;
  color: rgba(34, 197, 94, 0.95);
  font-size: 14px;
}
.testimonial p {
  margin: 0;
  color: rgba(247, 250, 248, 0.86);
  font-size: 14px;
  max-width: 74ch;
}
.who {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(34, 197, 94, 0.26), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.who strong {
  display: block;
  font-size: 14px;
}
.who span {
  display: block;
  color: rgba(247, 250, 248, 0.68);
  font-size: 12px;
}
.slider-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 12px 14px 16px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.slider-arrows {
  display: flex;
  justify-content: center;
}
.arrows {
  display: none;
  gap: 10px;
}
.icon-btn {
  display: grid;
  place-items: center;
  user-select: none;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 250, 248, 0.92);
  font-size: 24px;
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}
.icon-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(34, 197, 94, 0.3);
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: transform 150ms ease, background 150ms ease, border-color 150ms ease;
}

/* CSS-only testimonial slider state */
.t-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#t1:checked ~ .slider .slider-track--css {
  transform: translateX(0%);
}
#t2:checked ~ .slider .slider-track--css {
  transform: translateX(-100%);
}
#t3:checked ~ .slider .slider-track--css {
  transform: translateX(-200%);
}
#t4:checked ~ .slider .slider-track--css {
  transform: translateX(-300%);
}

#t1:checked ~ .slider .a1,
#t2:checked ~ .slider .a2,
#t3:checked ~ .slider .a3,
#t4:checked ~ .slider .a4 {
  display: flex;
}

#t1:checked ~ .slider .slider-dots label[for="t1"],
#t2:checked ~ .slider .slider-dots label[for="t2"],
#t3:checked ~ .slider .slider-dots label[for="t3"],
#t4:checked ~ .slider .slider-dots label[for="t4"] {
  background: rgba(34, 197, 94, 0.9);
  border-color: rgba(34, 197, 94, 0.85);
  transform: scale(1.1);
}

/* Contact */
.contact {
  display: grid;
  gap: 18px;
  align-items: start;
}
.contact-copy p {
  margin: 0 0 16px;
  color: var(--muted);
}
.contact-list {
  display: grid;
  gap: 12px;
}
.contact-item {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(2, 6, 23, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  box-shadow: 0 14px 34px rgba(2, 6, 23, 0.07);
}
.contact-label {
  font-size: 12px;
  color: rgba(2, 6, 23, 0.66);
  font-weight: 700;
}
.contact-value {
  font-weight: 700;
  letter-spacing: 0.1px;
}
.contact-value:hover {
  color: var(--green-1);
}

.contact-form {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(2, 6, 23, 0.1);
  background: linear-gradient(180deg, #ffffff, #fbfdfb);
  box-shadow: 0 18px 44px rgba(2, 6, 23, 0.1);
  padding: 18px;
}
.field {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(2, 6, 23, 0.78);
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, 0.12);
  outline: none;
  font: inherit;
  background: #fff;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.field input:focus,
.field textarea:focus {
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}
.form-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: rgba(2, 6, 23, 0.64);
}

/* Footer */
.footer {
  background: #040705;
  color: rgba(247, 250, 248, 0.92);
}
.footer-inner {
  padding: 56px 0 34px;
  display: grid;
  gap: 22px;
}
.brand--footer .brand-name {
  color: #fff;
}
.footer-text {
  margin: 10px 0 0;
  color: rgba(247, 250, 248, 0.72);
  max-width: 55ch;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.footer-social a:hover {
  border-color: rgba(34, 197, 94, 0.34);
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.footer-col h3 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.2px;
}
.footer-col a {
  display: block;
  padding: 8px 0;
  color: rgba(247, 250, 248, 0.76);
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bottom-inner {
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(247, 250, 248, 0.7);
  font-size: 12px;
}
.back-to-top {
  color: rgba(247, 250, 248, 0.85);
}
.back-to-top:hover {
  color: #fff;
}

/* Sticky FABs */
.sticky-fab {
  position: fixed;
  right: 14px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 14px;
  box-shadow: 0 18px 46px rgba(2, 6, 23, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}
.sticky-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 58px rgba(2, 6, 23, 0.22);
}
.sticky-fab .fab-icon {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
}
.sticky-fab .fab-icon svg {
  width: 20px;
  height: 20px;
}
.sticky-fab .fab-text {
  font-weight: 700;
  font-size: 13px;
}
.sticky-fab--whatsapp {
  bottom: 16px;
  background: rgba(22, 163, 74, 0.92);
  color: #06140c;
  border-color: rgba(22, 163, 74, 0.5);
}
.sticky-fab--call {
  bottom: 68px;
  background: rgba(255, 255, 255, 0.92);
  color: rgba(2, 6, 23, 0.86);
  border-color: rgba(2, 6, 23, 0.08);
  display: none; /* shown on small screens */
}

/* Responsive */
@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }
  .nav-menu {
    display: flex;
  }
  .header-cta {
    display: flex;
  }
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .about {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
  }
  .contact {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 22px;
  }
  .footer-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    align-items: start;
  }
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .testimonial {
    padding: 26px;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .sticky-fab--call {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-video {
    display: none !important;
  }
  .about-video {
    display: none !important;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
