/* Securify v3 — Complete Rebuild */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Space+Grotesk:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --bg:      #FFFFFF;
  --bg2:     #F5F4F0;
  --bg3:     #EDECE8;
  --black:   #0A0A0A;
  --text:    #1C1C1A;
  --muted:   #6B6B65;
  --orange:  #E04D00;
  --orange2: #FF6520;
  --line:    rgba(0,0,0,0.09);
  --shadow:  0 2px 20px rgba(0,0,0,0.07);
  --shadow2: 0 8px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
.big-head {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--black);
}
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex;
  align-items: center;
  transition: box-shadow 0.2s;
}
.site-nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  width: 100%; display: flex; align-items: center;
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0; line-height: 1;
  transition: opacity 0.18s;
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo svg { display: block; }
.nav-links {
  display: flex; align-items: center; margin-left: auto; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a, .nav-links > li > .nav-drop-toggle {
  display: flex; align-items: center; gap: 5px;
  padding: 0 16px; height: 72px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.86rem; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--text);
  transition: color 0.18s; cursor: pointer;
  border: none; background: none;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-drop-toggle:hover { color: var(--orange); }
.nav-links > li > a.active {
  color: var(--orange);
  border-bottom: 2px solid var(--orange);
}
.caret { font-size: 0.55rem; transition: transform 0.2s; margin-top: 1px; }
.nav-links > li.open .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line);
  border-radius: 8px; box-shadow: var(--shadow2);
  min-width: 230px; padding: 8px 0;
  display: none; z-index: 999;
}
.nav-links > li.open .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block; padding: 11px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 500; color: var(--text);
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg2); color: var(--orange); }
.nav-cta {
  margin-left: 14px;
  padding: 9px 20px !important; height: auto !important;
  background: var(--orange) !important; color: #fff !important;
  border-radius: 5px !important; font-size: 0.82rem !important;
  transition: background 0.18s !important;
}
.nav-cta:hover { background: var(--orange2) !important; }
.ham {
  display: none; flex-direction: column; gap: 5px;
  margin-left: auto; cursor: pointer;
  background: none; border: none; padding: 8px;
}
.ham span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px; transition: all 0.25s;
}
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── TICKER ── */
.ticker-wrap {
  background: var(--orange); overflow: hidden; height: 36px;
  display: flex; align-items: center;
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: ticker-scroll 36s linear infinite;
}
.ticker-track span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff; padding: 0 40px;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── LAYOUT ── */
.inner { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 96px 0; }
.section-pad .inner { }
.b-bot { border-bottom: 1px solid var(--line); }
.bg-off { background: var(--bg2); }
.bg-black { background: var(--black); }

/* ── BUTTONS ── */
.btn-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 13px 28px; border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.18s, transform 0.15s; text-decoration: none;
}
.btn-main:hover { background: var(--orange2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  padding: 12px 27px; border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1.5px solid var(--black);
  cursor: pointer; transition: all 0.18s; text-decoration: none;
}
.btn-outline:hover { background: var(--black); color: #fff; }
.btn-white {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--black);
  padding: 13px 28px; border-radius: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.18s; text-decoration: none;
}
.btn-white:hover { background: var(--orange); color: #fff; }

/* ── HOME HERO ── */
.home-hero {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  align-items: center;
}
.home-hero-text {
  padding: 80px 64px 80px 48px;
  max-width: 600px;
}
.home-hero-text h1 {
  font-size: clamp(4rem, 6.5vw, 8rem);
  margin-bottom: 28px;
}
.home-hero-text h1 .o { color: var(--orange); }
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.hero-badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--orange); color: #fff; padding: 4px 10px; border-radius: 3px;
}
.hero-flag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); line-height: 1.8;
  font-weight: 300; max-width: 440px; margin-bottom: 40px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.home-hero-img {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.home-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-img-caption {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(10,10,10,0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 10px 16px;
  border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.5;
}
.hero-img-caption strong { color: var(--orange); display: block; font-size: 0.88rem; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--black);
  padding: 0 32px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 28px 44px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.4rem; color: var(--orange); line-height: 1; }
.stat-lbl {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 5px;
}

/* ── SECTION HEADER ── */
.sec-head { margin-bottom: 56px; }
.sec-head .label { margin-bottom: 12px; display: block; }
.sec-head h2 { font-size: clamp(2.4rem, 4vw, 4rem); }
.sec-head p {
  color: var(--muted); font-size: 0.92rem; line-height: 1.8;
  font-weight: 300; max-width: 540px; margin-top: 16px;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.product-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  background: #fff;
}
.product-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }
.pc-img {
  height: 260px;
  overflow: hidden;
  background: var(--bg2);
}
.pc-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s;
}
.product-card:hover .pc-img img { transform: scale(1.04); }
.pc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.pc-body .label { margin-bottom: 10px; }
.pc-body h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: var(--black); line-height: 1; margin-bottom: 10px;
}
.pc-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-weight: 300; flex: 1; margin-bottom: 20px; }
.pc-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  display: inline-flex; align-items: center; gap: 6px; transition: gap 0.15s;
}
.product-card:hover .pc-link { gap: 10px; }
.pc-dark {
  background: var(--black);
  border-color: var(--black);
}
.pc-dark .pc-body h3 { color: #fff; }
.pc-dark .pc-body p { color: rgba(255,255,255,0.45); }
.pc-dark .pc-body .label { color: rgba(255,255,255,0.35); }

/* ── HOW IT WORKS ── */
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 48px;
}
.hiw-step {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  background: var(--bg);
}
.hiw-step:last-child { border-right: none; }
.hiw-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem; color: var(--orange); line-height: 1; margin-bottom: 16px;
}
.hiw-step h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--black); margin-bottom: 10px;
}
.hiw-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}
.feature-item { display: flex; gap: 18px; align-items: flex-start; }
.f-icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: rgba(224,77,0,0.08);
  border: 1px solid rgba(224,77,0,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-top: 3px;
}
.feature-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; display: block; margin-bottom: 6px; color: var(--black);
}
.feature-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 500px;
}
.split-img {
  overflow: hidden;
  position: relative;
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.split-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg2);
}
.split-text .label { margin-bottom: 16px; display: block; }
.split-text h2 { font-size: clamp(2.4rem, 3.5vw, 4rem); margin-bottom: 20px; }
.split-text p { font-size: 0.9rem; color: var(--muted); line-height: 1.85; font-weight: 300; margin-bottom: 14px; }
.split-text p:last-of-type { margin-bottom: 0; }
.split-text .btn-main { margin-top: 32px; align-self: flex-start; }
.split.flip .split-img { order: 2; }
.split.flip .split-text { order: 1; background: var(--bg); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--black);
  padding: 96px 32px;
  text-align: center;
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  color: #fff; margin-bottom: 16px; line-height: 1;
}
.cta-section p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 40px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-btns .btn-outline { color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-btns .btn-outline:hover { background: #fff; color: var(--black); border-color: #fff; }

/* ── BREADCRUMB ── */
.breadcrumb {
  margin-top: 72px;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.breadcrumb-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 32px;
  font-size: 0.78rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: var(--muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(0,0,0,0.2); }

/* ── PRODUCT HERO (product pages) ── */
.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 76vh;
}
.ph-img {
  position: relative;
  overflow: hidden;
  min-height: 460px;
}
.ph-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.ph-text {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--bg2);
}
.ph-text .label { margin-bottom: 16px; }
.ph-text h1 { font-size: clamp(2.8rem, 4vw, 5rem); margin-bottom: 18px; }
.ph-text .tagline {
  font-size: 0.97rem; color: var(--muted);
  line-height: 1.8; font-weight: 300;
  margin-bottom: 24px; max-width: 400px;
}
.ph-text .ddd {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem; color: var(--orange); letter-spacing: 0.08em; margin-bottom: 28px;
}
.product-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.ptag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1.5px solid var(--line); padding: 5px 12px; border-radius: 3px; color: var(--muted);
}
.ptag.o { border-color: var(--orange); color: var(--orange); background: rgba(224,77,0,0.05); }

/* ── PRODUCT SPECS STRIP ── */
.specs-strip {
  background: var(--black);
  padding: 0;
  display: flex;
  overflow-x: auto;
}
.spec-pill {
  flex: 1;
  min-width: 140px;
  padding: 22px 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.spec-pill:last-child { border-right: none; }
.spec-pill-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem; color: var(--orange); line-height: 1; display: block; margin-bottom: 4px;
}
.spec-pill-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

/* ── DETECT GRID ── */
.detect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 40px;
}
.detect-item {
  background: var(--bg);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: background 0.18s;
}
.detect-item:hover { background: var(--bg2); }
.detect-num {
  flex-shrink: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; color: rgba(224,77,0,0.25); line-height: 1;
  width: 32px;
}
.detect-item strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--black); display: block; line-height: 1.3;
}

/* ── BENEFITS LIST ── */
.benefits-list { list-style: none; margin-top: 28px; }
.benefits-list li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.benefits-list li:last-child { border-bottom: none; }
.b-check {
  flex-shrink: 0; width: 20px; height: 20px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.55rem; font-weight: 700; margin-top: 3px;
}
.benefits-list li span { font-size: 0.9rem; color: var(--text); line-height: 1.65; }

/* ── SPEC TABLE ── */
.spec-table {
  width: 100%; border-collapse: collapse; font-size: 0.87rem;
  border-radius: 8px; overflow: hidden; border: 1px solid var(--line);
}
.spec-table th {
  background: var(--black); color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 14px 20px; text-align: left;
}
.spec-table td { padding: 13px 20px; border-bottom: 1px solid var(--line); vertical-align: top; }
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: var(--bg2); }
.spec-table td:first-child { color: var(--muted); font-size: 0.82rem; font-weight: 600; width: 42%; }
.spec-table td:last-child { font-weight: 500; color: var(--black); }

/* ── INSTALL / APP GRID ── */
.install-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.install-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg);
  border-radius: 6px; border: 1px solid var(--line);
  transition: border-color 0.18s;
}
.install-item:hover { border-color: rgba(224,77,0,0.3); }
.i-dot {
  flex-shrink: 0; width: 8px; height: 8px;
  background: var(--orange); border-radius: 50%; margin-top: 7px;
}
.install-item span { font-size: 0.87rem; color: var(--text); line-height: 1.6; }
.app-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.app-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px;
  border: 1.5px solid var(--line); color: var(--text);
  transition: all 0.15s;
}
.app-tag:hover { border-color: var(--orange); color: var(--orange); background: rgba(224,77,0,0.04); }

/* ── CALLOUT BANNER ── */
.callout-banner {
  background: var(--black);
  padding: 52px 32px;
  text-align: center;
}
.callout-banner h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  color: var(--orange); line-height: 1; letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.callout-banner p { color: rgba(255,255,255,0.55); font-size: 0.92rem; font-weight: 300; line-height: 1.7; }

/* ── FORM (contact page) ── */
.form-wrap { display: flex; flex-direction: column; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--bg); border: 1.5px solid var(--line);
  border-radius: 5px; padding: 12px 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem; color: var(--text);
  transition: border-color 0.18s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--orange);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.76rem; color: var(--muted); text-align: center; }
.form-success { display: none; text-align: center; padding: 56px 32px; background: var(--bg2); border-radius: 8px; border: 1px solid var(--line); }
.form-success.show { display: block; }
.form-success h3 { font-family: 'Bebas Neue', sans-serif; font-size: 2.5rem; color: var(--orange); margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.field input.err { border-color: rgba(220,53,69,0.5); }

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.proc-list { display: flex; flex-direction: column; margin-top: 36px; }
.proc-row { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.proc-row:last-child { border-bottom: none; }
.proc-n { font-family: 'Bebas Neue', sans-serif; font-size: 2.2rem; color: rgba(0,0,0,0.12); line-height: 1; flex-shrink: 0; width: 36px; padding-top: 2px; }
.proc-text strong { display: block; font-size: 0.9rem; font-weight: 600; color: var(--black); margin-bottom: 4px; }
.proc-text span { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }
.info-strip { margin-top: 36px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.info-row:last-child { border-bottom: none; }
.info-icon { flex-shrink: 0; width: 34px; height: 34px; background: rgba(224,77,0,0.07); border: 1px solid rgba(224,77,0,0.16); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.info-text strong { display: block; font-size: 0.84rem; font-weight: 600; color: var(--black); margin-bottom: 3px; }
.info-text span { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── WHY SECTION (contact) ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.why-item {
  padding: 32px 28px;
  border: 1px solid var(--line); border-radius: 8px;
  background: var(--bg);
  transition: border-color 0.2s;
}
.why-item:hover { border-color: rgba(224,77,0,0.3); }
.why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem; color: rgba(224,77,0,0.18); line-height: 1; margin-bottom: 12px;
}
.why-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--black); margin-bottom: 8px;
}
.why-item p { font-size: 0.84rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

/* ── FOOTER ── */
.site-footer { background: var(--black); color: rgba(255,255,255,0.5); padding: 72px 32px 36px; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 20px;
}
.footer-col a { display: block; color: rgba(255,255,255,0.5); font-size: 0.85rem; padding: 5px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-logo { margin-bottom: 18px; display: block; opacity: 0.9; }
.footer-tagline { font-family: 'Bebas Neue', sans-serif; font-size: 1.1rem; color: var(--orange); letter-spacing: 0.06em; margin-bottom: 14px; }
.footer-desc { font-size: 0.83rem; line-height: 1.75; max-width: 280px; }
.footer-bottom {
  max-width: 1280px; margin: 28px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.77rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--orange); }

/* ── WHATSAPP BUTTON ── */
#whatsappBtn {
  position: fixed; bottom: 88px; right: 32px; z-index: 800;
  width: 52px; height: 52px; background: #25D366;
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
#whatsappBtn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 44px; height: 44px; background: var(--orange);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all 0.25s; box-shadow: 0 4px 16px rgba(224,77,0,0.35);
}
#backToTop.show { opacity: 1; visibility: visible; transform: none; }

/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 18px 32px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.35s;
}
#cookieBanner.show { transform: none; }
#cookieBanner p { font-size: 0.82rem; flex: 1; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button {
  padding: 8px 18px; border-radius: 4px; cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
#cookieAccept { background: var(--orange); color: #fff; border: none; }
#cookieDecline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-reveal="left"] { transform: translateX(-24px); }
[data-reveal="right"] { transform: translateX(24px); }
[data-reveal].vis { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-img { display: none; }
  .home-hero-text { padding: 72px 32px; max-width: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .product-hero { grid-template-columns: 1fr; }
  .ph-img { min-height: 380px; max-height: 460px; }
  .split { grid-template-columns: 1fr; }
  .split.flip .split-img { order: 0; }
  .split.flip .split-text { order: 1; }
  .split-text { padding: 56px 32px; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .hiw-step { border-bottom: 1px solid var(--line); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 72px 0; }
  .inner { padding: 0 20px; }
  .breadcrumb-inner { padding: 12px 20px; }
  .ph-text { padding: 48px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .install-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stat-item { padding: 20px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: #fff; padding: 24px 0;
    border-top: 1px solid var(--line); overflow-y: auto; z-index: 999;
  }
  .nav-links > li > a, .nav-links > li > .nav-drop-toggle { height: auto; padding: 16px 24px; font-size: 1rem; }
  .nav-links > li > a.active { border-bottom: none; color: var(--orange); }
  .nav-dropdown { position: static; transform: none; box-shadow: none; border: none; border-radius: 0; background: var(--bg2); border-top: 1px solid var(--line); min-width: unset; }
  .nav-cta { margin: 16px 24px 0; }
  .ham { display: flex; }
}
@media (max-width: 540px) {
  .home-hero-text h1 { font-size: 3.5rem; }
  .stats-bar { flex-direction: row; flex-wrap: wrap; }
  .stat-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .detect-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
}
