/* ============================================================
   OCULAB — Laboratório Óptico
   style.css — Folha principal
   Paleta: coral #ef552c | navy #242e3d | navy-l #2f4560
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&display=swap');

/* ── Reset & Base ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Sora', sans-serif;
  color: #1e2a3a;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ── Custom Properties ────────────────────── */
:root {
  --coral:    #ef552c;
  --coral-d:  #c73d18;
  --coral-l:  #f26642;
  --navy:     #242e3d;
  --navy-l:   #2f4560;
  --navy-xl:  #1a2332;
  --light:    #f5f7fa;
  --border:   #e8ecf2;
  --text:     #1e2a3a;
  --muted:    #6b7a8d;
  --white:    #ffffff;
  --shadow-s: 0 2px 12px rgba(0,0,0,.06);
  --shadow-m: 0 6px 28px rgba(0,0,0,.09);
  --shadow-l: 0 16px 48px rgba(0,0,0,.12);
  --radius:   10px;
  --radius-l: 16px;
  --trans:    .22s ease;
}

/* ── Utilities ────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 28px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Labels estilo branding */
.label {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  color: var(--coral);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* Botões */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 7px;
  font-size: 13.5px; font-weight: 700;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  line-height: 1;
}
.btn:hover { transform: translateY(-2px); }
.btn-coral { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-d); box-shadow: 0 6px 20px rgba(239,85,44,.35); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-l); }
.btn-outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn-outline-coral {
  background: transparent; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline-coral:hover { background: var(--coral); color: #fff; }
.btn-wa { background: #22c55e; color: #fff; }
.btn-wa:hover { background: #16a34a; box-shadow: 0 6px 20px rgba(34,197,94,.35); }
.btn-sm { padding: 8px 18px; font-size: 12px; }

/* ── TOP BAR ──────────────────────────────── */
#topbar {
  background: var(--navy);
  box-shadow: inset 0 -3px 0 0 var(--coral);
  padding: 9px 0;
  font-size: 11.5px;
  color: rgba(255,255,255,.65);
}
#topbar .tb-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 6px;
}
#topbar .tb-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
#topbar .tb-left a { color: inherit; transition: color var(--trans); }
#topbar .tb-left a:hover { color: var(--coral); }
#topbar .tb-right { display: flex; gap: 14px; align-items: center; }
#topbar .tb-right a {
  color: rgba(255,255,255,.5); font-size: 14px;
  transition: color var(--trans);
}
#topbar .tb-right a:hover { color: var(--coral); }
#topbar .tb-sep { opacity: .25; }

/* ── HEADER / NAV ─────────────────────────── */
#header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow-s);
  transition: box-shadow var(--trans);
}
#header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.1); }
#header .hd-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
#header .hd-logo img { height: 46px; width: auto; }
#header .hd-logo { display: flex; align-items: center; }

/* Nav desktop */
#header nav { display: flex; align-items: center; gap: 6px; }
#header nav a.nav-link {
  font-size: 12.5px; font-weight: 600; color: var(--muted);
  letter-spacing: .4px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px;
  transition: color var(--trans), background var(--trans);
}
#header nav a.nav-link:hover { color: var(--coral); }
#header nav a.nav-link.active { color: var(--coral); }
#header nav .nav-cta { margin-left: 10px; }

/* Dropdown Catálogo */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { display: flex; align-items: center; gap: 4px; }
.nav-dropdown > .nav-link::after {
  content: '';
  display: inline-block; width: 7px; height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform var(--trans);
}
.nav-dropdown:hover > .nav-link::after { transform: rotate(-135deg) translateY(2px); }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  min-width: 220px; padding: 8px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--trans), transform var(--trans), visibility var(--trans);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--text);
  transition: background var(--trans), color var(--trans);
}
.nav-dropdown-menu a:hover { background: var(--light); color: var(--coral); }
.nav-dropdown-menu .ddm-sep {
  height: 1px; background: var(--border); margin: 6px 0;
}

/* Mobile menu */
.hd-hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; justify-content: center; align-items: center;
  background: none; border-radius: 6px; cursor: pointer;
  transition: background var(--trans);
}
.hd-hamburger:hover { background: var(--light); }
.hd-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}
.hd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hd-hamburger.open span:nth-child(2) { opacity: 0; }
.hd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; inset: 0; top: 0;
  background: #fff; z-index: 300;
  flex-direction: column;
  padding: 24px 28px;
  overflow-y: auto;
}
#mobile-menu.open { display: flex; }
#mobile-menu .mm-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 36px;
}
#mobile-menu .mm-header img { height: 40px; }
#mobile-menu .mm-close {
  background: var(--light); border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--navy); cursor: pointer;
}
#mobile-menu nav { display: flex; flex-direction: column; gap: 4px; flex: 1; }
#mobile-menu nav a {
  font-size: 17px; font-weight: 600; color: var(--text);
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
#mobile-menu nav a:hover { color: var(--coral); }
#mobile-menu .mm-sub { padding: 8px 0 4px 16px; display: flex; flex-direction: column; gap: 2px; }
#mobile-menu .mm-sub a { font-size: 14px; font-weight: 500; color: var(--muted); border: none; padding: 8px 0; }
#mobile-menu .mm-cta { margin-top: 24px; }

/* ── HERO ─────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-xl) 0%, var(--navy-l) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: -100px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(239,85,44,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: center;
  padding: 100px 0 80px;
  position: relative; z-index: 1;
}
.hero-content { max-width: 620px; }
.hero-content h1 {
  font-size: 46px; font-weight: 800; line-height: 1.1;
  letter-spacing: -.8px; color: #fff;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-graphic {
  opacity: .07;
  width: 320px; flex-shrink: 0;
}

/* Hero interno (páginas internas) */
.hero-inner-page { padding: 80px 0 64px; }
.hero-inner-page h1 { font-size: 38px; }
.hero-inner-page p { font-size: 16px; max-width: 580px; }

/* ── DELIVERY BANNER ──────────────────────── */
.delivery-banner {
  background: linear-gradient(90deg, var(--coral) 0%, var(--coral-d) 100%);
  padding: 14px 0;
}
.delivery-banner .db-inner {
  display: flex; align-items: center; gap: 14px;
}
.delivery-banner .db-icon { font-size: 22px; flex-shrink: 0; }
.delivery-banner strong {
  font-size: 13.5px; font-weight: 700; color: #fff;
}
.delivery-banner span {
  font-size: 12px; color: rgba(255,255,255,.82); margin-left: 6px;
}

/* ── BRAND BAR ────────────────────────────── */
.brand-bar { background: var(--light); padding: 20px 0; border-bottom: 1px solid var(--border); }
.brand-bar .bb-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 56px; flex-wrap: wrap;
}
.brand-bar .bb-item {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: #b0bac8;
  transition: color var(--trans);
}
.brand-bar .bb-item:hover { color: var(--coral); }

/* ── SECTIONS ─────────────────────────────── */
section { width: 100%; }
.section-white { background: #fff; }
.section-light { background: var(--light); }
.section-navy { background: var(--navy); }
.section-coral { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-d) 100%); }

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-pad-xs { padding: 40px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 {
  font-size: 32px; font-weight: 800; letter-spacing: -.4px;
  color: var(--text); margin-bottom: 14px; line-height: 1.25;
}
.section-header p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.section-header .label { display: block; }

/* ── QUEM SOMOS ───────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text h2 { font-size: 30px; font-weight: 800; margin-bottom: 20px; line-height: 1.25; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-text .btn { margin-top: 16px; }
.about-visual {
  background: linear-gradient(135deg, var(--navy-xl) 0%, var(--navy-l) 100%);
  border-radius: var(--radius-l); min-height: 340px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-visual::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(239,85,44,.18), transparent 55%);
}
.about-visual svg { opacity: .15; position: relative; z-index: 1; }

/* ── SERVICES GRID ────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px 28px;
  transition: box-shadow var(--trans), transform var(--trans), border-color var(--trans);
}
.service-card:hover {
  box-shadow: var(--shadow-m); transform: translateY(-4px);
  border-color: rgba(239,85,44,.2);
}
.service-icon {
  width: 48px; height: 48px; background: #fff3ef; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.service-icon svg {
  width: 22px; height: 22px; stroke: var(--coral);
  fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ── CATALOG GRID ─────────────────────────── */
.catalog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.catalog-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; display: block;
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
}
.catalog-card:hover {
  border-color: var(--coral);
  box-shadow: 0 4px 20px rgba(239,85,44,.12);
  transform: translateY(-3px);
}
.catalog-card .cc-brand {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--coral); margin-bottom: 6px;
}
.catalog-card .cc-name { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.catalog-card .cc-desc { font-size: 12.5px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.catalog-card .cc-arrow {
  font-size: 18px; color: var(--coral);
  transition: transform var(--trans);
}
.catalog-card:hover .cc-arrow { transform: translateX(4px); }

/* ── STATS ────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.stat-item { text-align: center; }
.stat-num {
  font-size: 52px; font-weight: 800; color: var(--coral);
  line-height: 1; margin-bottom: 10px;
  letter-spacing: -2px;
}
.stat-suffix { font-size: 28px; }
.stat-label {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.4);
  letter-spacing: 2.5px; text-transform: uppercase;
}

/* ── CTA SECTION ──────────────────────────── */
.cta-section { text-align: center; }
.cta-section h2 {
  font-size: 34px; font-weight: 800; color: #fff;
  margin-bottom: 14px; line-height: 1.2;
}
.cta-section p { font-size: 16px; color: rgba(255,255,255,.82); margin-bottom: 36px; }
.cta-section .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── WA BANNER ────────────────────────────── */
.wa-banner {
  background: #f0fdf4; border-top: 1px solid #bbf7d0;
  border-bottom: 1px solid #bbf7d0; padding: 16px 0;
}
.wa-banner .wb-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.wa-banner .wb-text strong { font-size: 14px; color: #14532d; }
.wa-banner .wb-text p { font-size: 12px; color: #166534; margin-top: 2px; }

/* ── PRODUCT TABLES ───────────────────────── */
.products-section { padding: 60px 0; }
.products-section:nth-child(even) { background: var(--light); }
.products-section h2 {
  font-size: 20px; font-weight: 800; color: var(--text);
  margin-bottom: 8px;
}
.products-section .ps-sub {
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.products-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.products-table thead tr {
  background: var(--navy); color: #fff;
}
.products-table thead th {
  padding: 12px 16px; text-align: left;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .8px; text-transform: uppercase;
  white-space: nowrap;
}
.products-table thead th:last-child { text-align: right; }
.products-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background var(--trans);
}
.products-table tbody tr:last-child { border-bottom: none; }
.products-table tbody tr:hover { background: #fff8f6; }
.products-section:nth-child(even) .products-table tbody tr:hover { background: #fff3ef; }
.products-table tbody td {
  padding: 11px 16px; color: var(--text); vertical-align: middle;
}
.products-table tbody td.td-specs {
  font-size: 12px; color: var(--muted); white-space: nowrap;
}
.products-table tbody td.td-action { text-align: right; }
.btn-consultar {
  display: inline-flex; align-items: center; gap: 6px;
  background: #22c55e; color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 7px 14px;
  border-radius: 5px; white-space: nowrap;
  transition: background var(--trans);
}
.btn-consultar:hover { background: #16a34a; }
.btn-consultar svg { width: 13px; height: 13px; fill: #fff; flex-shrink: 0; }

/* Notice bar (montagem especial, etc) */
.notice-bar {
  background: var(--navy); padding: 12px 0; text-align: center;
}
.notice-bar p {
  font-size: 12.5px; color: rgba(255,255,255,.6);
}
.notice-bar strong { color: #fff; }
.notice-bar .nb-badge {
  display: inline-block; background: var(--coral); color: #fff;
  font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 3px;
  margin-left: 8px;
}

/* ── SOBRE PAGE ───────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.value-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px; text-align: center;
}
.value-icon {
  width: 52px; height: 52px; background: var(--coral); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.value-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.value-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Timeline */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.tl-item { position: relative; margin-bottom: 36px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  position: absolute; left: -28px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--coral); border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(239,85,44,.2);
}
.tl-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.tl-item p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

/* ── SERVIÇOS PAGE ────────────────────────── */
.svc-full-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-full-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start;
}
.svc-full-card:hover { box-shadow: var(--shadow-m); }
.sfc-icon {
  width: 46px; height: 46px; flex-shrink: 0; background: #fff3ef;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.sfc-icon svg { width: 20px; height: 20px; stroke: var(--coral); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sfc-body h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.sfc-body p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* Serviços pricing table */
.svc-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.svc-table th, .svc-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); text-align: left; }
.svc-table thead tr { background: var(--navy); color: #fff; }
.svc-table thead th { font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.svc-table tbody tr:last-child td { border-bottom: none; }
.svc-table tbody tr:hover { background: #f9fafb; }
.svc-table .td-price { font-weight: 700; color: var(--navy); white-space: nowrap; text-align: right; }
.svc-table .td-wa { text-align: right; }

/* ── CONTATO PAGE ─────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
.contact-info h2 { font-size: 24px; font-weight: 800; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; flex-shrink: 0; background: #fff3ef;
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ci-body strong { font-size: 13.5px; font-weight: 700; color: var(--text); display: block; }
.ci-body span { font-size: 13px; color: var(--muted); }

.contact-form h2 { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: .3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--border); border-radius: 7px;
  font-family: inherit; font-size: 14px; color: var(--text);
  background: #fff;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(239,85,44,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #b0bac8; }

.map-container { background: #e8ecf0; min-height: 380px; border-radius: var(--radius-l); overflow: hidden; position: relative; }
.map-placeholder {
  position: absolute; inset: 0; display: flex; align-items: center;
  justify-content: center; flex-direction: column; gap: 8px; color: #aaa;
}
.map-placeholder .mp-icon { font-size: 40px; }
.map-placeholder p { font-size: 13px; }
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── CADASTRO PAGE ────────────────────────── */
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.benefit-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; gap: 16px; align-items: flex-start;
}
.benefit-icon {
  width: 44px; height: 44px; flex-shrink: 0; background: rgba(239,85,44,.2);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.benefit-body h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.benefit-body p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.65; }

.cad-form-wrap {
  background: #fff; border-radius: var(--radius-l);
  padding: 48px; max-width: 680px; margin: 0 auto;
  box-shadow: var(--shadow-l);
}
.cad-form-wrap h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.cad-form-wrap > p { font-size: 14px; color: var(--muted); margin-bottom: 32px; }

/* ── FOOTER ───────────────────────────────── */
#footer { background: #161e29; padding: 64px 0 28px; }
#footer .ft-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 52px; margin-bottom: 52px;
}
#footer .ft-brand img { height: 44px; width: auto; margin-bottom: 18px; }
#footer .ft-brand p {
  font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.8; margin-bottom: 16px;
}
#footer .ft-brand .ft-delivery {
  font-size: 12px; color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 7px;
}
#footer .ft-col h4 {
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,.35);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 20px;
}
#footer .ft-col ul { display: flex; flex-direction: column; gap: 10px; }
#footer .ft-col ul li a {
  font-size: 13.5px; color: rgba(255,255,255,.5);
  transition: color var(--trans);
}
#footer .ft-col ul li a:hover { color: var(--coral); }
#footer .ft-col .ft-contact-item {
  display: flex; align-items: flex-start; gap: 8px; margin-bottom: 12px;
}
#footer .ft-col .ft-contact-item .fci-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
#footer .ft-col .ft-contact-item span {
  font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.5;
}
#footer .ft-col .ft-contact-item span a { color: inherit; }
#footer .ft-col .ft-contact-item span a:hover { color: var(--coral); }
#footer .ft-social { display: flex; gap: 10px; margin-top: 16px; }
#footer .ft-social a {
  width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.4);
  transition: background var(--trans), color var(--trans);
}
#footer .ft-social a:hover { background: var(--coral); color: #fff; }
#footer .ft-divider { border: none; border-top: 1px solid rgba(255,255,255,.06); margin-bottom: 24px; }
#footer .ft-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
#footer .ft-bottom p { font-size: 12px; color: rgba(255,255,255,.22); }
#footer .ft-bottom a { color: rgba(255,255,255,.22); }
#footer .ft-bottom a:hover { color: rgba(255,255,255,.5); }

/* ── BREADCRUMB ───────────────────────────── */
.breadcrumb { padding: 14px 0; background: var(--light); border-bottom: 1px solid var(--border); }
.breadcrumb .bc-inner { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); }
.breadcrumb a { color: var(--muted); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb .bc-sep { color: var(--border); font-size: 10px; }
.breadcrumb .bc-current { color: var(--text); font-weight: 600; }

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim-fade-up { animation: fadeUp .55s ease both; }
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .22s; }
.anim-delay-3 { animation-delay: .34s; }
.anim-delay-4 { animation-delay: .46s; }

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-graphic { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { min-height: 240px; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .ft-grid { grid-template-columns: 1fr 1fr !important; gap: 36px !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { font-size: 15px; }
  #topbar .tb-left { gap: 10px; font-size: 10px; }
  #topbar .tb-right { display: none; }
  #header nav { display: none; }
  .hd-hamburger { display: flex; }
  .hero-content h1 { font-size: 32px; }
  .hero-inner { padding: 72px 0 60px; }
  .hero-inner-page { padding: 60px 0 48px; }
  .hero-inner-page h1 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-full-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .cad-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .products-table { font-size: 12px; }
  .products-table thead th:nth-child(2) { display: none; }
  .products-table tbody td:nth-child(2) { display: none; }
  .ft-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .section-pad { padding: 64px 0; }
  .section-header { margin-bottom: 40px; }
  .section-header h2 { font-size: 26px; }
  .cta-section h2 { font-size: 26px; }
  .delivery-banner span { display: none; }
  .brand-bar .bb-inner { gap: 24px; }
  .wa-banner .wb-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container, .container--narrow { padding: 0 18px; }
  .hero-content h1 { font-size: 26px; }
  .hero-btns { flex-direction: column; }
  .cta-section .cta-btns { flex-direction: column; align-items: center; }
  .stat-num { font-size: 40px; }
}

/* ── MISC ─────────────────────────────────── */
.text-coral { color: var(--coral); }
.text-navy { color: var(--navy); }
.text-white { color: #fff; }
.text-muted { color: var(--muted); }
.font-bold { font-weight: 700; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* WhatsApp float button */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #22c55e; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(34,197,94,.45);
  transition: transform var(--trans), box-shadow var(--trans);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 30px rgba(34,197,94,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
