@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/outfit-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/outfit-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #faf8f5;
  --bg-2: #f3efe8;
  --white: #ffffff;
  --ink: #111111;
  --muted: #5c5c5c;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.16);
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  --shadow-sm: 0 10px 30px rgba(17, 17, 17, 0.06);
  --radius: 28px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Outfit", "Segoe UI", sans-serif;
  --safety: #e25b2a;
  --duerp: #2f6fdb;
  --resto: #0f8f7b;
  --trafic: #6d4ad4;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.skip {
  position: absolute; left: 12px; top: -48px; z-index: 100;
  background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 999px; font-weight: 600;
}
.skip:focus { top: 12px; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--muted); margin: 0 0 16px;
}

h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.05; font-weight: 700; }
h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.1rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--muted);
  max-width: 36rem;
  font-weight: 400;
  line-height: 1.55;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--ink); outline-offset: 3px;
}

/* Header — Squarespace / Lovable */
.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.site-header .bar {
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink);
}
.brand img { width: 48px; height: 48px; border-radius: 50%; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a, .nav-drop > button {
  color: var(--ink); text-decoration: none; font-weight: 500; font-size: 0.95rem;
  padding: 8px 14px; border-radius: 999px; background: none; border: 0; cursor: pointer;
}
.nav a:hover, .nav-drop > button:hover, .nav a[aria-current="page"] {
  background: rgba(17,17,17,0.05);
}
.nav-drop { position: relative; }
.nav-drop .panel {
  position: absolute; top: 100%; left: 0; min-width: 280px;
  background: var(--white); color: var(--ink); border-radius: 20px;
  padding: 16px 10px 10px; box-shadow: var(--shadow); border: 1px solid var(--line); display: none;
}
.nav-drop:hover .panel, .nav-drop:focus-within .panel { display: grid; gap: 2px; }
.nav-drop .panel a { color: var(--ink); display: grid; gap: 2px; padding: 10px 12px; border-radius: 12px; }
.nav-drop .panel a small { color: var(--muted); font-weight: 400; font-size: 0.8rem; }
.nav-drop .panel a:hover { background: var(--bg-2); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; text-decoration: none;
  font-weight: 600; border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-navy { background: var(--ink); color: #fff; }
.btn-navy:hover { background: #2a2a2a; }
.btn-gold { background: var(--ink); color: #fff; }
.btn-ghost, .btn-outline {
  background: transparent; color: var(--ink); border-color: var(--line-strong);
}
.btn-ghost:hover, .btn-outline:hover { background: rgba(17,17,17,0.04); }
.btn-light { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.nav .btn { min-height: 42px; padding: 0 18px; margin-left: 8px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong);
  background: transparent; border-radius: 12px; color: var(--ink);
}

/* Hero — Lovable: centered, airy, orbit chips */
.hero {
  position: relative;
  padding: 48px 0 0;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  text-align: center;
  padding: 56px 0 28px;
  z-index: 1;
}
.hero-inner h1 { max-width: 14ch; margin-inline: auto; }
.hero-inner .lead { margin: 22px auto 0; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px;
}
.hero-actions .btn { min-height: 52px; padding: 0 26px; }

.orbit { position: absolute; inset: 0; pointer-events: none; }
.orbit a { pointer-events: auto; }
.orbit-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 14px 8px 10px; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.orbit-chip .dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--accent, #111);
}
.orbit-chip:nth-child(1) { top: 8%; left: 2%; }
.orbit-chip:nth-child(2) { top: 14%; right: 0; }
.orbit-chip:nth-child(3) { bottom: 18%; left: 0; }
.orbit-chip:nth-child(4) { bottom: 8%; right: 2%; }

.hero-meta {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 28px 40px;
  margin: 48px auto 0; max-width: 720px;
  color: var(--muted); font-size: 0.9rem;
}
.hero-meta strong { display: block; color: var(--ink); font-size: 1.35rem; letter-spacing: -0.04em; }

/* Floating product windows */
.showcase {
  position: relative;
  height: 340px;
  margin: 28px auto 0;
  max-width: 980px;
}
.ui-window {
  position: absolute;
  width: min(300px, 42vw);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(var(--rot, 0deg)) translateY(var(--y, 0));
}
.ui-window:nth-child(1) { left: 2%; top: 28px; --rot: -6deg; z-index: 1; }
.ui-window:nth-child(2) { left: 24%; top: 0; --rot: 3deg; z-index: 3; }
.ui-window:nth-child(3) { right: 22%; top: 18px; --rot: -3deg; z-index: 2; }
.ui-window:nth-child(4) { right: 0; top: 48px; --rot: 7deg; z-index: 1; }
.ui-top {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; font-size: 0.75rem; font-weight: 600;
  border-bottom: 1px solid var(--line); background: #fbfbfa;
}
.ui-top .dots { display: flex; gap: 5px; }
.ui-top .dots i {
  width: 8px; height: 8px; border-radius: 50%; background: #ddd; display: block;
}
.ui-top .dots i:first-child { background: var(--accent); }
.ui-screen { padding: 14px; display: grid; gap: 8px; }
.ui-row, .ui-bars span {
  height: 8px; border-radius: 99px; background: var(--bg-2);
}
.ui-row.short { width: 62%; }
.ui-bars { display: grid; grid-template-columns: 1.2fr 0.7fr 1fr; gap: 8px; height: 48px; align-items: end; }
.ui-bars span { height: 40%; background: color-mix(in srgb, var(--accent) 28%, var(--bg-2)); }
.ui-bars span:nth-child(2) { height: 78%; }
.ui-bars span:nth-child(3) { height: 55%; }

.section { padding: 96px 0; }
.section-head { margin-bottom: 40px; max-width: 38rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lead, .section-head.center p { margin-inline: auto; }
.section-head p { color: var(--muted); }

.grid-4, .grid-2, .grid-3 { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(2, 1fr); }

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 100%; text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  display: grid; place-items: center; font-size: 1.2rem;
}
.product-card .kicker {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--accent, var(--ink));
}
.product-card p { color: var(--muted); margin: 0; flex: 1; }
.product-card .more { font-weight: 600; }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm);
}

.steps { display: grid; gap: 14px; counter-reset: step; }
.step {
  display: grid; grid-template-columns: 52px 1fr; gap: 16px; align-items: center;
  background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 18px 22px;
}
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-weight: 700; font-size: 1.15rem; color: var(--muted);
}

.band {
  padding: 96px 0;
  background: var(--ink);
  color: #fff;
  border-radius: 0;
}
.band .section-head p, .band p { color: rgba(255,255,255,0.68); }
.band h2, .band h3 { color: #fff; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value {
  padding: 28px; border-radius: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
}

.faq details {
  background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 4px 20px; margin-bottom: 10px;
}
.faq summary { cursor: pointer; font-weight: 600; padding: 16px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

.prose { max-width: 46rem; }
.prose h2 { margin: 2rem 0 0.8rem; }
.prose p, .prose li { color: #444; }
.prose a { color: var(--ink); font-weight: 600; }

.page-hero {
  text-align: center;
  padding: 72px 0 40px;
}
.page-hero p { color: var(--muted); max-width: 38rem; margin-inline: auto; }
.page-hero h1 { max-width: 16ch; margin-inline: auto; }
.crumbs {
  display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
  font-size: 0.85rem; color: var(--muted); margin-bottom: 18px;
}
.crumbs a { color: var(--ink); text-decoration: none; }
.product-hero-extra { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
  border: 1px solid var(--line-strong); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-size: 0.85rem; color: var(--ink);
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; justify-content: center; }

.form {
  display: grid; gap: 14px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); text-align: left;
}
label { font-weight: 600; font-size: 0.92rem; display: grid; gap: 6px; }
input, select, textarea {
  width: 100%; border: 1px solid var(--line-strong); border-radius: 14px;
  padding: 12px 14px; background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-msg { padding: 12px 14px; border-radius: 12px; font-weight: 600; }
.form-msg.ok { background: #e5f6ee; color: #146c43; }
.form-msg.err { background: #fde8e8; color: #9b1c1c; }

.site-footer {
  background: var(--bg); color: var(--muted);
  padding: 64px 0 28px; border-top: 1px solid var(--line);
}
.site-footer a { color: var(--ink); text-decoration: none; }
.site-footer a:hover { opacity: 0.65; }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 36px;
}
.site-footer h2 {
  font-size: 0.8rem; letter-spacing: 0.04em; text-transform: none;
  color: var(--muted); margin-bottom: 14px; font-weight: 600;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.legal-line {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px;
  padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.85rem;
}

.cta-banner {
  text-align: center; padding: 72px 40px; border-radius: 32px;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.cta-banner .lead { margin: 16px auto 28px; }

.orbit-chip img {
  height: 22px; width: auto; max-width: 96px; object-fit: contain; display: block;
}
.orbit-chip.is-dark {
  background: #111; color: #fff; border-color: #111;
}
.orbit-chip.is-dark img { height: 18px; }

.product-visual {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  margin: -8px -8px 8px;
}
.product-visual img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-visual.is-contain img,
.product-visual.is-wide img {
  object-fit: contain; padding: 18px 20px; background: #fff;
}
.product-visual.is-dark {
  background: #111;
}
.product-visual.is-dark img {
  object-fit: contain; padding: 24px 20px;
}
.product-visual.is-square img {
  object-fit: cover;
}

.product-logo {
  height: 40px; width: auto; max-width: 180px; object-fit: contain;
}
.product-logo.is-dark {
  background: #111; border-radius: 10px; padding: 8px 12px; height: 44px;
}
.brand-lockup {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin-bottom: 18px;
}
.brand-lockup img { height: 56px; width: auto; max-width: 260px; object-fit: contain; }
.brand-lockup img.is-dark {
  background: #111; border-radius: 14px; padding: 10px 14px; height: 64px;
}
.brand-lockup img.is-square { height: 88px; }

.photo-frame {
  border-radius: 28px; overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); background: #fff;
}
.photo-frame img { width: 100%; height: auto; display: block; }
.photo-frame.is-dark { background: #111; }
.photo-frame.is-dark img,
.photo-frame.is-contain img,
.photo-frame.is-wide img { object-fit: contain; max-height: 320px; margin-inline: auto; padding: 24px; }
.photo-frame.is-square img { max-height: 380px; margin-inline: auto; object-fit: contain; padding: 12px; }

.ui-window img {
  width: 100%; height: 150px; object-fit: cover; display: block; background: #fff;
}
.ui-window.is-dark img { background: #111; object-fit: contain; padding: 16px; height: 150px; }
.ui-window.is-contain img,
.ui-window.is-wide img { object-fit: contain; padding: 16px; }
.ui-window.is-square img { object-fit: cover; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .values, .foot-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    position: fixed; inset: var(--nav-h) 0 auto 0;
    background: var(--bg); display: none; flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .nav .btn { margin: 8px 0 0; width: 100%; }
  .nav-drop .panel { position: static; display: grid; background: transparent; border: 0; box-shadow: none; padding: 0 0 0 8px; }
  .orbit { display: none; }
  .showcase { height: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .ui-window { position: static; width: auto; transform: none; }
  .hero, .section, .page-hero, .band { padding-block: 56px; }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .cta-row .btn, .hero-actions .btn { width: 100%; }
  .page-hero { text-align: left; }
  .page-hero h1, .page-hero p, .crumbs, .product-hero-extra, .cta-row { margin-left: 0; justify-content: flex-start; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
