/* ============================================================
   NOVARIS GLOBAL — Premium Corporate Design System
   ============================================================ */
:root {
  --navy: #082E5C;
  --navy-deep: #041D3A;
  --navy-mid: #0C3A6E;
  --gold: #C8941F;
  --gold-light: #E8C04A;
  --gold-muted: rgba(200, 148, 31, 0.15);
  --anthracite: #1A1A1A;
  --text: #3D4A5C;
  --text-light: #6B7A8D;
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --surface: #F4F6F9;
  --border: rgba(8, 46, 92, 0.08);
  --font-display: 'Montserrat', 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow-sm: 0 2px 8px rgba(4, 29, 58, 0.04);
  --shadow-md: 0 8px 32px rgba(4, 29, 58, 0.08);
  --shadow-lg: 0 24px 64px rgba(4, 29, 58, 0.12);
  --header-h: 88px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-feature-settings: 'kern' 1, 'liga' 1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.25s var(--ease); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy-deep);
  letter-spacing: -0.025em;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(200, 148, 31, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 148, 31, 0.35);
  color: var(--navy-deep);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--navy-deep);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
  padding: 14px 28px;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.text-gold { color: var(--gold) !important; }
.text-white { color: var(--white) !important; }
.text-light { color: rgba(255,255,255,0.82) !important; }
.text-center { text-align: center; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-4 { margin-bottom: 1.5rem; }
.d-none { display: none !important; }

/* ── Top Bar ── */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.topbar__left, .topbar__right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}
.topbar__item:hover { color: var(--gold-light); }
.topbar__item i { color: var(--gold); font-size: 13px; }

.topbar__social {
  display: flex;
  gap: 14px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.topbar__social a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: color 0.2s;
}
.topbar__social a:hover { color: var(--gold-light); }

.topbar__lang { display: flex; gap: 6px; align-items: center; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.lang-switch__flag { font-size: 15px; line-height: 1; }
.lang-switch:hover,
.lang-switch--active {
  color: var(--gold-light);
  border-color: rgba(232,192,74,0.35);
  background: rgba(255,255,255,0.06);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.site-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 1;
  padding: 6px 0;
}

.site-logo img {
  height: 68px;
  width: auto;
  min-width: 0;
  max-width: 280px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.main-nav__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav__list > li {
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
}

.main-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  transition: color 0.2s;
}
.main-nav__list > li > a i { font-size: 10px; opacity: 0.5; }
.main-nav__list > li > a:hover,
.main-nav__list > li:hover > a { color: var(--gold); }

/* Dropdown menus */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.25s var(--ease);
  z-index: 100;
  list-style: none;
  margin: 0;
}
.dropdown-menu--wide {
  min-width: 280px;
  max-height: 400px;
  overflow-y: auto;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown-menu li a i { color: var(--gold); font-size: 15px; width: 18px; }
.dropdown-menu li a:hover {
  background: var(--surface);
  color: var(--navy);
  padding-left: 24px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: auto;
  align-self: center;
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius);
  line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 148, 31, 0.35);
  color: #fff;
}
.btn-header-cta--block {
  display: block;
  width: 100%;
  text-align: center;
}

/* Mobile */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy-deep);
  transition: all 0.3s;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy-deep);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__inner { padding: 100px 32px 40px; max-width: 480px; }
.mobile-menu__list a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 22px;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu__list a:hover { color: var(--gold-light); }
.mobile-menu__cta { margin-top: 32px; }

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,148,31,0.2);
  z-index: 999;
  padding: 10px 0;
  justify-content: space-around;
}
.mobile-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
}
.mobile-bar__item--whatsapp {
  color: #25d366;
  font-size: 22px;
}
.mobile-bar__item--whatsapp:hover {
  color: #1ebe57;
}
.mobile-bar__item--primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(200,148,31,0.4);
}

.whatsapp-float {
  position: fixed;
  z-index: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  padding: 14px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  inset-inline-end: 1.25rem;
  inset-block-end: 1.5rem;
}
.whatsapp-float:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}
.whatsapp-float i {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}
.whatsapp-float__label {
  white-space: nowrap;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(4,29,58,0.97) 0%, rgba(8,46,92,0.85) 45%, rgba(4,29,58,0.92) 100%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C8941F' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(200,148,31,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__image { display: none; }

.hero__overlay { display: none; }

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero__content { max-width: 640px; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.hero-badge {
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(200,148,31,0.25);
  background: rgba(200,148,31,0.06);
  border-radius: 2px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: none;
}
.hero__title em {
  font-style: normal;
  color: var(--gold-light);
  font-weight: 800;
}

.hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 520px;
  font-weight: 400;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: transform 0.3s var(--ease);
}
.hero-stat-card:hover { transform: translateX(8px); }
.hero-stat-card i {
  font-size: 24px;
  color: var(--gold-light);
  margin-bottom: 12px;
  display: block;
}
.hero-stat-card h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.hero-stat-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll i {
  color: var(--gold);
  font-size: 18px;
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Sections ── */
.section { padding: clamp(80px, 10vw, 120px) 0; }
.section--gray { background: var(--surface); }
.section--navy {
  background: var(--navy-deep);
  position: relative;
}
.section--navy::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M20 0v40M0 20h40' stroke='%23C8941F' stroke-width='0.3' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.875rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy-deep);
  letter-spacing: -0.03em;
}
.section--navy .section-title { color: var(--white); }

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.8;
}
.section--navy .section-desc { color: rgba(255,255,255,0.65); }

.section-header { margin-bottom: 64px; }
.section-header.text-center .section-desc { margin: 0 auto; }

.gold-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 28px;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

.lead {
  font-size: 18px;
  color: var(--text);
  line-height: 1.85;
}

/* Row Split */
.row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.row-split--reverse .row-split__media { order: -1; }

.row-split__content p {
  color: var(--text-light);
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.85;
}

.media-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.media-frame::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  z-index: 0;
  opacity: 0.4;
}
.media-frame__inner {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-deep) 100%);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  overflow: hidden;
}
.media-frame__inner i {
  font-size: 64px;
  color: rgba(200,148,31,0.3);
}
.media-frame__accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--gold-muted);
  border-radius: var(--radius);
  z-index: -1;
}

.img-rounded { border-radius: var(--radius); }
.shadow-lg { box-shadow: var(--shadow-lg); }

/* Sector Cards */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sector-card {
  position: relative;
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.35s var(--ease);
  overflow: hidden;
  display: block;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.sector-card:hover::before { transform: scaleX(1); }

.sector-card__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-muted);
  border-radius: var(--radius);
  margin-bottom: 22px;
  transition: background 0.3s;
}
.sector-card:hover .sector-card__icon { background: rgba(200,148,31,0.22); }
.sector-card__icon i { font-size: 22px; color: var(--gold); }

.sector-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}
.sector-card__excerpt {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.65;
}
.sector-card__link {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sector-card__link i { transition: transform 0.25s; }
.sector-card:hover .sector-card__link i { transform: translateX(4px); }

/* Trade Tags */
.trade-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0; }
.trade-tag {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  border-radius: 2px;
}
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* Why Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200,148,31,0.1);
  border: 1px solid rgba(200,148,31,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.why-card {
  background: var(--navy-deep);
  padding: 40px 28px;
  text-align: center;
  transition: background 0.3s;
}
.why-card:hover { background: var(--navy-mid); }
.why-card i {
  font-size: 32px;
  color: var(--gold-light);
  margin-bottom: 18px;
  display: block;
}
.why-card h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* Counters */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.counter-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s;
}
.counter-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.counter-item__value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.counter-item__value::after {
  content: '+';
  font-size: 0.6em;
  color: var(--gold);
  margin-left: 2px;
}
.counter-item__value--zero::after { content: none; }
.counter-item__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.4;
}

/* Map */
.map-regions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.map-region {
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.map-region:hover {
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.map-region--priority {
  border-color: rgba(200,148,31,0.3);
  background: var(--gold-muted);
}
.map-region i { color: var(--gold); font-size: 14px; }

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.news-card img { width: 100%; height: 220px; object-fit: cover; }
.news-card__body { padding: 28px; }
.news-card__body time {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.news-card__body h3 {
  font-size: 1.15rem;
  margin: 10px 0;
  line-height: 1.4;
}
.news-card__body h3 a { color: var(--navy-deep); }
.news-card__body h3 a:hover { color: var(--gold); }
.news-card__body p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* CTA */
.section-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  padding: clamp(72px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at right, rgba(200,148,31,0.1), transparent 70%);
}
.cta-buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
}
.footer-main { padding: clamp(64px, 8vw, 96px) 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.footer-col h4, .footer-col h5 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-about { font-size: 14px; line-height: 1.8; margin: 20px 0; color: rgba(255,255,255,0.5); }
.footer-logo {
  margin-bottom: 4px;
  opacity: 0.95;
  height: 68px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
}
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { color: rgba(255,255,255,0.45); font-size: 17px; }
.footer-social a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 12px;
  align-items: flex-start;
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.newsletter-input { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-input input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--white);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
}
.newsletter-input input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-input input:focus { outline: none; border-color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.45); font-size: 13px; }
.footer-legal a:hover { color: var(--gold-light); }

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--surface);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  list-style: none;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb-item { color: var(--text-light); }
.breadcrumb-item + .breadcrumb-item::before { content: '›'; margin-right: 8px; color: var(--gold); }
.breadcrumb-item a { color: var(--text); }
.breadcrumb-item a:hover { color: var(--gold); }
.breadcrumb-item.active { color: var(--navy); font-weight: 600; }

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
  text-align: center;
  position: relative;
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 2px;
  background: var(--gold);
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 14px;
}
.page-header p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Forms */
.form-section { padding: clamp(64px, 8vw, 96px) 0; }
.form-card {
  background: var(--white);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: 800px;
  margin: 0 auto;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
}
.form-hint {
  font-size: 14px;
  color: var(--text-muted);
  margin: -8px 0 20px;
  line-height: 1.6;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  transition: all 0.25s;
}
.form-control:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200,148,31,0.12);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}
.alert-success { background: #EDF7F0; color: #1B5E30; border: 1px solid #B8DFC5; }
.alert-error { background: #FDF0F0; color: #7B1E1E; border: 1px solid #F0C0C0; }

/* Sector Detail */
.sector-detail { padding: clamp(48px, 6vw, 80px) 0; }
.sector-detail__intro { max-width: 760px; margin-bottom: 48px; }
.sector-detail__content { max-width: 900px; }
.sector-detail__content p { color: var(--text-light); margin-bottom: 16px; line-height: 1.85; }
.sector-detail__content h2 {
  font-size: 1.6rem;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: block;
  width: 100%;
}
.sub-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0;
}
.sub-service-item {
  padding: 14px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.sub-service-item::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.faq-list { margin: 32px 0; border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-deep);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question i { color: var(--gold); transition: transform 0.3s; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 0 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  display: none;
}
.faq-item.active .faq-answer { display: block; }

/* Cookie */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  color: var(--white);
  padding: 20px 24px;
  z-index: 3000;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
  border-top: 1px solid rgba(200,148,31,0.2);
}
.cookie-banner__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.cookie-banner__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-settings {
  position: fixed;
  bottom: 90px;
  right: 24px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3001;
  max-width: 340px;
  border: 1px solid var(--border);
}
.cookie-settings label { display: block; margin-bottom: 12px; font-size: 14px; color: var(--text); }

/* 404 */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}
.error-page h1 {
  font-size: clamp(5rem, 12vw, 8rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}
.error-page h2 { margin-bottom: 20px; }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; }

/* Responsive */
@media (max-width: 1200px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .counters-grid { grid-template-columns: repeat(3, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .main-nav__list > li > a { padding: 8px 8px; font-size: 12px; }
  .btn-header-cta { padding: 10px 14px; font-size: 10px; letter-spacing: 0.04em; }
  .site-logo img { height: 58px; max-width: 220px; }
}

@media (max-width: 992px) {
  .main-nav { display: none; }
  .site-logo img { height: 64px; min-width: 170px; max-width: 300px; }
  .mobile-toggle { display: flex; }
  .mobile-bar {
    display: flex;
    padding: 10px 8px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    z-index: 998;
  }
  body {
    padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
  }
  .whatsapp-float {
    display: flex !important;
    right: 1rem;
    left: auto;
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    inset-inline-end: 1rem;
    inset-inline-start: auto;
    inset-block-end: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    width: 3rem;
    height: 3rem;
    min-width: 3rem;
    max-width: 3rem;
    padding: 0;
    margin: 0;
    gap: 0;
    border-radius: 50%;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.45);
    transform: none;
  }
  .whatsapp-float:hover {
    transform: none;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.55);
  }
  .whatsapp-float__label {
    display: none !important;
    width: 0;
    height: 0;
    overflow: hidden;
  }
  .whatsapp-float i {
    font-size: 1.5rem;
  }
  .cookie-settings {
    bottom: calc(90px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    left: 16px;
    max-width: none;
  }
  .row-split { grid-template-columns: 1fr; gap: 40px; }
  .row-split--reverse .row-split__media { order: 0; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: 1fr; }
  .sub-services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .btn-header-cta { padding: 12px 18px; font-size: 11px; }
}

@media (min-width: 993px) {
  .d-lg-inline-flex { display: inline-flex !important; }
}

@media (min-width: 1200px) {
  .d-xl-flex { display: flex !important; }
}

@media (max-width: 576px) {
  .sectors-grid, .why-grid, .counters-grid, .sub-services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .counter-item__value::after { display: none; }
  .topbar__left { display: none; }
}