:root {
  --orange: #f58220;
  --navy: #0e2a47;
  --white: #ffffff;
  --soft: #f5f6f8;
  --text: #555555;
  --dark: #1e1e1e;
  --line: #e5e8ec;
  --shadow: 0 18px 45px rgba(14, 42, 71, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Poppins, "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--navy);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 32px rgba(14, 42, 71, .08);
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease, color .25s ease;
}
.site-header.scrolled,
.site-header.solid {
  background: rgba(255, 255, 255, .98);
  color: var(--navy);
  box-shadow: 0 10px 32px rgba(14, 42, 71, .08);
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: inherit;
}
.brand-logo {
  width: 230px;
  height: 52px;
  object-fit: contain;
  padding: 4px 8px;
  border-radius: 8px;
  background: transparent;
  transition: opacity .2s ease, background .2s ease;
}
.brand-logo-white {
  display: none;
  background: var(--navy);
}
.site-header.scrolled .brand-logo,
.site-header.solid .brand-logo {
  background: transparent;
}
.site-header:not(.scrolled):not(.solid) .brand-logo-color { display: block; }
.site-header:not(.scrolled):not(.solid) .brand-logo-white { display: none; }
.footer-logo {
  width: 230px;
  height: 54px;
  background: var(--white);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  letter-spacing: 0;
}
.brand-text { font-size: 22px; color: inherit; }
.site-nav { display: flex; align-items: center; gap: 22px; font-size: 15px; font-weight: 600; }
.site-nav a { transition: color .2s ease, background .2s ease, transform .2s ease; }
.site-nav a:hover,
.site-nav .active { color: var(--orange); }
.nav-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px 6px 6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .34);
  color: inherit !important;
  background: rgba(255, 255, 255, .08);
}
.nav-action span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
}
.nav-action span img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.nav-action strong {
  padding-right: 4px;
  font-size: 14px;
}
.nav-call span { background: var(--navy); }
.nav-whatsapp span { background: #25d366; }
.site-header.scrolled .nav-action,
.site-header.solid .nav-action {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy) !important;
}
.nav-action:hover {
  border-color: rgba(245, 130, 32, .35);
  background: var(--soft);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 8px;
  background: transparent;
}
.nav-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; }

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 42, 71, .72);
}
.hero-content {
  position: relative;
  width: min(780px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 84px;
}
.eyebrow,
.section-heading span,
.page-hero span,
.cta span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
.hero h1,
.page-hero h1 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: 0;
}
.hero p { max-width: 650px; margin: 0 0 32px; font-size: 19px; color: rgba(255, 255, 255, .88); }
.hero-actions,
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-secondary { background: var(--navy); color: var(--white); border-color: rgba(255, 255, 255, .2); }
.btn-light { background: var(--white); color: var(--orange); }
.btn-outline-light { color: var(--white); border-color: rgba(255, 255, 255, .75); }

.section { padding: 96px 0; }
.muted { background: var(--soft); }
.section-heading { max-width: 720px; margin: 0 auto 42px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: 0;
}
.section-heading p { margin: 0; font-size: 17px; }
.category-grid,
.feature-grid,
.product-grid,
.brand-grid {
  display: grid;
  gap: 22px;
}
.category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.category-card,
.feature-card,
.product-card,
.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.visual-card {
  padding: 0;
  overflow: hidden;
}
.visual-card img,
.product-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  background: var(--soft);
}
.visual-card div {
  padding: 22px;
}
.category-card:hover,
.feature-card:hover,
.product-card:hover,
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 130, 32, .35);
}
.icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 18px;
  background: rgba(245, 130, 32, .12);
  color: var(--orange);
  font-weight: 800;
}
h2, h3 { color: var(--navy); line-height: 1.25; letter-spacing: 0; }
.category-card h3,
.feature-card h3,
.product-card h2 { margin: 0 0 10px; font-size: 20px; }
.category-card p,
.feature-card p,
.product-card p,
.brand-card p { margin: 0; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.logo-card,
.brand-card strong {
  display: grid;
  place-items: center;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
  transition: transform .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.logo-card {
  padding: 22px;
}
.logo-card img {
  width: min(100%, 190px);
  height: 72px;
  object-fit: contain;
}
.logo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(245, 130, 32, .35);
}
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 52px; align-items: start; }
.feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stats {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  text-align: center;
}
.stats strong { display: block; color: var(--orange); font-size: clamp(36px, 5vw, 58px); line-height: 1; }
.stats span { display: block; margin-top: 10px; font-weight: 600; color: rgba(255, 255, 255, .82); }
.process-band {
  background: var(--navy);
  color: var(--white);
  padding: 84px 0;
}
.process-band .section-heading h2 {
  color: var(--white);
}
.process-band .section-heading p {
  color: rgba(255, 255, 255, .78);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.process-grid article {
  min-height: 210px;
  padding: 26px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}
.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
}
.process-grid h3 {
  margin: 0 0 10px;
  color: var(--white);
}
.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .78);
}
.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
  padding: 82px 0;
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245, 130, 32, .94) 0%, rgba(245, 130, 32, .78) 42%, rgba(14, 42, 71, .82) 100%),
    radial-gradient(circle at 88% 20%, rgba(255, 255, 255, .22), transparent 28%);
}
.cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 44px;
  align-items: center;
}
.cta span { color: rgba(255, 255, 255, .78); }
.cta h2 { margin: 0; color: var(--white); font-size: clamp(30px, 4vw, 48px); }
.cta-copy p {
  max-width: 680px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: 18px;
}
.cta-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}
.cta-copy li {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .92);
  font-weight: 700;
  font-size: 14px;
}
.cta-actions {
  display: grid;
  gap: 14px;
}
.cta-contact-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(14, 42, 71, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(14, 42, 71, .24);
}
.cta-contact-card img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  padding: 9px;
  border-radius: 50%;
  background: var(--soft);
}
.cta-contact-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.1;
}
.cta-contact-card span {
  display: block;
  margin: 6px 0 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.whatsapp-card {
  border-left: 5px solid #25d366;
}
.phone-card {
  border-left: 5px solid var(--navy);
}

.page { padding-top: 76px; }
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 84px;
}
.page-hero p { max-width: 680px; margin: 0; font-size: 18px; color: rgba(255, 255, 255, .82); }
.text-block { font-size: 18px; }
.values-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 64px;
  align-items: start;
  position: relative;
}
.values-intro {
  position: sticky;
  top: 116px;
  overflow: hidden;
  padding: 34px;
  border-radius: 12px;
  background: var(--navy);
  color: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow);
}
.values-intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--orange);
}
.values-intro::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 128px;
  height: 128px;
  border: 18px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}
.values-intro span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .08em;
}
.values-intro h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
}
.values-intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 18px;
}
.values-list {
  display: grid;
  gap: 16px;
}
.values-list div {
  display: grid;
  grid-template-columns: 64px 160px 1fr;
  gap: 22px;
  align-items: center;
  min-height: 112px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(14, 42, 71, .06);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.values-list div:hover {
  transform: translateX(8px);
  border-color: rgba(245, 130, 32, .38);
  box-shadow: var(--shadow);
}
.values-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(245, 130, 32, .12);
  color: var(--orange);
  font-weight: 800;
  font-size: 15px;
}
.values-list strong {
  color: var(--navy);
  font-size: 20px;
}
.values-list p {
  margin: 0;
  font-size: 17px;
}
.legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.legal-grid article {
  padding: 26px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(14, 42, 71, .06);
}
.legal-grid h3 {
  margin: 0 0 10px;
  font-size: 19px;
}
.legal-grid p {
  margin: 0;
}
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card { padding: 0; overflow: hidden; }
.product-card h2,
.product-card p,
.product-card a { margin-left: 22px; margin-right: 22px; }
.product-card h2 { margin-top: 22px; }
.product-card a {
  display: inline-flex;
  margin-top: 18px;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 800;
}
.brand-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.brand-logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.brand-card { padding-top: 18px; }
.brand-card strong { margin-bottom: 18px; }
.brand-logo-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 24px;
}
.brand-logo-box {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid var(--line);
}
.brand-logo-box img {
  width: min(100%, 220px);
  height: 96px;
  object-fit: contain;
}
.brand-card-content strong {
  display: block;
  min-height: 0;
  margin: 0 0 10px;
  border: 0;
  background: transparent;
  place-items: start;
  text-align: left;
  font-size: 22px;
}
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.contact-info,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow);
}
.contact-info h2 { margin-top: 0; }
.contact-info a:not(.btn) { color: var(--navy); font-weight: 700; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--dark);
  background: var(--soft);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: 2px solid rgba(245, 130, 32, .35); border-color: var(--orange); }
.form-note { margin: 0; font-size: 13px; color: #777; }
.map-section iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(15%); }

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, .78);
  padding-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 32px;
}
.footer-brand { color: var(--white); margin-bottom: 16px; }
.site-footer h3 { margin: 0 0 14px; color: var(--white); font-size: 17px; }
.site-footer a { display: block; margin: 8px 0; color: rgba(255, 255, 255, .78); }
.site-footer a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 46px;
  padding: 18px 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  text-align: center;
  font-size: 14px;
}
.cookie-consent {
  position: fixed;
  z-index: 60;
  bottom: 22px;
  left: 50%;
  width: min(940px, calc(100% - 32px));
  transform: translateX(-50%);
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  color: var(--text);
  box-shadow: var(--shadow);
}
.cookie-consent.is-visible {
  display: flex;
}
.cookie-consent p {
  margin: 0;
  font-size: 14px;
}
.cookie-consent strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.cookie-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
}
.cookie-actions button {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.cookie-actions .accept {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .category-grid,
  .product-grid,
  .brand-grid,
  .brand-logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split,
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .site-header { color: var(--navy); background: rgba(255, 255, 255, .98); box-shadow: 0 10px 32px rgba(14, 42, 71, .08); }
  .nav-toggle { display: inline-block; color: var(--navy); border-color: var(--line); }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px; color: var(--navy); }
  .nav-action {
    justify-content: flex-start;
    margin-top: 8px;
    border-color: var(--line);
    background: var(--soft);
  }
  .hero { min-height: 680px; }
  .hero-content { margin: 0 auto; padding-top: 112px; }
  .hero h1,
  .page-hero h1 { font-size: 40px; }
  .hero p { font-size: 17px; }
  .section { padding: 72px 0; }
  .category-grid,
  .feature-grid,
  .feature-grid.three,
  .product-grid,
  .brand-grid,
  .brand-logo-grid,
  .values-layout,
  .legal-grid,
  .stats-grid,
  .process-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .values-intro { position: relative; top: auto; }
  .values-list div {
    grid-template-columns: 52px 1fr;
    gap: 14px;
  }
  .values-list div:hover { transform: none; }
  .values-list div p {
    grid-column: 1 / -1;
  }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta-inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
  .cookie-consent {
    bottom: 14px;
    align-items: stretch;
    flex-direction: column;
  }
  .cookie-actions {
    width: 100%;
  }
  .cookie-actions button {
    flex: 1;
  }
}

@media (max-width: 460px) {
  .container { width: min(100% - 28px, 1180px); }
  .site-header { padding-left: 14px; padding-right: 14px; }
  .brand-logo { width: 170px; height: 42px; padding: 3px 6px; }
  .brand-mark { width: 48px; height: 38px; }
  .brand-text { font-size: 20px; }
  .hero h1,
  .page-hero h1 { font-size: 34px; }
  .hero-actions,
  .cta-actions { width: 100%; }
  .btn { width: 100%; }
  .contact-info,
  .contact-form { padding: 22px; }
}
