/* ===== RESET & VARIABLES ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #e8192c;
  --logo-green: #008b4f;
  --logo-gold: #c1922c;
  --dark: #1a1a1a;
  --charcoal: #2d2d2d;
  --light-gray: #f5f5f5;
  --mid-gray: #ebebeb;
  --text: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border: #e0e0e0;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: var(--dark);
  height: 36px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topbar-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: topbarScroll 28s linear infinite;
}

.topbar-track:hover {
  animation-play-state: paused;
}

@keyframes topbarScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.topbar-msg {
  font-size: 11.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.3px;
  padding: 0 60px;
}

.topbar-msg .highlight {
  color: var(--red);
  font-weight: 700;
}

.topbar-dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  vertical-align: middle;
  margin: 0 16px;
  opacity: 0.7;
}

/* ===== NAVBAR ===== */
nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  max-width: 82%;
}

.nav-logo img {
  max-height: 60px;
  max-width: 100%;
  height: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  height: 64px;
  margin: 0;
  padding: 0;
}

.nav-links>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-links>li>a {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  transition: color 0.2s;
  padding: 0 15px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  white-space: nowrap;
}

.nav-links>li>a:hover {
  color: var(--dark);
}

.nav-links>li>a.active {
  color: var(--dark);
  font-weight: 700;
}

.nav-links>li>a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--logo-gold);
}

.nav-super {
  font-size: 8px;
  color: var(--red);
  vertical-align: super;
  font-weight: 700;
  margin-left: 1px;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 20px;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.4px;
  border-radius: 2px;
  transition: background 0.2s !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: #c0111f !important;
}

/* ===== MEGA MENU ===== */
.has-mega {
  position: relative;
}

.has-mega>.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.13);
  border-top: 3px solid var(--logo-gold);
  z-index: 2000;
  padding: 28px 32px 0;
  min-width: 480px;
}

.has-mega:hover>.mega-menu {
  display: block;
  animation: megaFade 0.18s ease;
}

@keyframes megaFade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.mega-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--logo-gold);
  margin-bottom: 14px;
}

/* Mega Menu Flexible Layouts */
/* 2 Columns */
.has-mega>.mega-menu.mega-menu-2col {
  min-width: 500px;
}

.mega-grid-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 18px;
  margin-bottom: 20px;
}

/* 3 Columns */
.has-mega>.mega-menu.mega-menu-3col {
  min-width: 780px;
}

.mega-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 18px;
  margin-bottom: 20px;
}

/* 4 Columns */
.has-mega>.mega-menu.mega-menu-4col {
  min-width: 980px;
}

.mega-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 18px;
  margin-bottom: 20px;
}

/* 5 Columns */
.has-mega>.mega-menu.mega-menu-5col {
  min-width: 1150px;
}

.mega-grid-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px 18px;
  margin-bottom: 20px;
}

/* 6 Columns */
.has-mega>.mega-menu.mega-menu-6col {
  min-width: 1300px;
}

.mega-grid-6col {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px 18px;
  margin-bottom: 20px;
}

/* Legacy grid fallback */
.mega-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 18px;
  margin-bottom: 20px;
}

.mega-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0px;
  border-radius: 4px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.mega-item:hover {
  background: var(--light-gray);
}

.mega-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--logo-green);
  font-size: 14px;
  transition: border-color 0.2s;
}

.mega-item:hover .mega-icon {
  border-color: var(--logo-green);
}

.mega-item-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}

.mega-item-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
}

.mega-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 0 18px;
}

.mega-footer {
  display: block;
  text-align: center;
  padding: 13px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--logo-gold);
  transition: background 0.2s;
  text-decoration: none;
}

.mega-footer:hover {
  background: var(--light-gray);
}

.mega-sol-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 3px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.mega-sol-item:hover {
  background: var(--light-gray);
}

.mega-sol-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.mega-sol-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.mega-sol-desc {
  font-size: 10px;
  color: var(--text-light);
  line-height: 1.4;
}

.mega-prod-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 4px;
  transition: background 0.15s;
  text-decoration: none;
  color: inherit;
}

.mega-prod-item:hover {
  background: var(--light-gray);
}

.hero-eyebrow {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--logo-gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.mega-prod-badge {
  display: inline-block;
  background: var(--logo-green);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 2px;
}

.mega-prod-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--dark);
  margin: 5px 0 2px;
}

.mega-prod-desc {
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ===== PAGE HEADER (inner pages) ===== */
.page-header {
  margin-top: 100px;
  background: var(--dark);
  padding: 70px 60px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/guilherme-cunha-kJKcFMnkEA4-unsplash-e1695404453997.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.page-header-content {
  position: relative;
  z-index: 1;
}

.page-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

.page-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 14px;
  max-width: 560px;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--white);
}

.breadcrumb span {
  color: var(--red);
}

/* ===== COMMON BUTTONS ===== */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  padding: 11px 26px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-red:hover {
  background: #c0111f;
  transform: translateY(-1px);
}

.btn-red .arr {
  transition: transform 0.2s;
}

.btn-red:hover .arr {
  transform: translateX(4px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--red);
  padding: 11px 22px;
  font-size: 11.5px;
  font-weight: 700;
  border-radius: 2px;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-white:hover {
  background: #f5f5f5;
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s, gap 0.2s;
}

.link-more:hover {
  color: var(--red);
  gap: 10px;
}

/* ===== SECTION UTILITIES ===== */
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text-light);
}

/* ===== WE ARE BANNER ===== */
.we-are-banner {
  background: var(--red);
  padding: 50px 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.we-are-banner::before {
  content: '';
  position: absolute;
  left: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.we-are-left .lbl {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.we-are-left h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.5px;
}

.we-are-right p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

/* ===== SOLUTION CARDS ===== */
.solutions-section {
  background: var(--white);
  padding: 60px 60px 70px;
  border-top: 1px solid var(--border);
}

.solutions-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.solutions-header h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
}

.slider-arrows {
  display: flex;
  gap: 8px;
}

.slider-arrows button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  border-radius: 1px;
}

.slider-arrows button:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.solutions-track-wrap {
  overflow: hidden;
}

.solutions-track {
  display: flex;
  transition: transform 0.4s ease;
}

.solution-card {
  flex: 0 0 calc(33.333% - 1px);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-right: 1px;
  padding: 30px 26px;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s, background 0.3s;
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.solution-card:hover {
  box-shadow: 0 4px 22px rgba(0,0,0,0.07);
  z-index: 1;
  border-top-color: var(--logo-gold);
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.solution-card:hover::before {
  opacity: 1;
}

.card-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 14px;
}

.solution-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  margin-bottom: 14px;
}

.solution-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

.solution-card p {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.card-link {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s, gap 0.2s;
}

.card-link:hover {
  color: var(--red);
  gap: 10px;
}

/* ===== LEADING BANNER ===== */
.leading-banner {
  background: var(--light-gray);
  padding: 90px 60px;
  text-align: center;
}

.leading-banner h2 {
  font-size: clamp(28px, 4.2vw, 54px);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: -1px;
}

.leading-banner h2 em {
  font-style: italic;
  font-weight: 800;
}

.ul-red {
  position: relative;
  display: inline-block;
}

.ul-red::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
}

.with-dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  vertical-align: middle;
}

.with-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.5;
  animation: dotPulse 1.5s ease infinite;
}

.with-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.with-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }

  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

/* ===== FOOTER ===== */
footer {
  background: var(--red);
  color: var(--white);
  padding: 70px 60px 36px;
  position: relative;
  overflow: hidden;
}

.footer-wm {
  position: absolute;
  left: -20px;
  bottom: -20px;
  opacity: 0.12;
  width: 180px;
  height: 180px;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.footer-left h2 {
  font-size: 23px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0;
}

.footer-left p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 4px;
}

.footer-left a.mail-link {
  color: var(--white);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-col .fphone {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.58);
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  margin-left: 20px;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 3000;
  position: relative;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: absolute;
}

.hamburger span:nth-child(1) {
  transform: translateY(-7px);
}

.hamburger span:nth-child(2) {
  transform: translateY(0);
}

.hamburger span:nth-child(3) {
  transform: translateY(7px);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.active {
  opacity: 1;
}

/* ===== MOBILE MENU PANEL ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 2500;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header .mob-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  max-width: 70%;
}

.mobile-menu-header .mob-logo img {
  max-height: 32px;
  max-width: 100%;
  height: auto;
  display: block;
}

.mobile-menu-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--dark);
  transition: all 0.2s;
}

.mobile-menu-close:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.mobile-nav-list {
  list-style: none;
  padding: 12px 0;
}

.mobile-nav-list>li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list>li>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav-list>li>a:hover {
  background: var(--light-gray);
  color: var(--red);
}

.mobile-nav-list>li>a.active {
  color: var(--red);
}

.mobile-nav-list>li>a .mob-arrow {
  font-size: 10px;
  color: #999;
  transition: transform 0.3s;
}

.mobile-nav-list>li.open>a .mob-arrow {
  transform: rotate(180deg);
  color: var(--red);
}

/* Mobile Sub-menu */
.mobile-submenu {
  display: none;
  background: var(--light-gray);
  padding: 0;
  list-style: none;
}

.mobile-nav-list>li.open>.mobile-submenu {
  display: block;
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 36px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-submenu li a:hover {
  color: var(--red);
  padding-left: 42px;
}

.mobile-submenu .mob-sub-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  color: var(--red);
  background: var(--white);
}

.mobile-submenu .mob-sub-label {
  font-size: 8px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 1px;
}

.mobile-menu-cta {
  padding: 20px 24px;
}

.mobile-menu-cta .btn-red {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px) {
  nav {
    padding: 0 20px;
  }

  .nav-logo img {
    max-height: 60px;
  }

  .we-are-banner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .solution-card {
    flex: 0 0 calc(50% - 1px);
  }

  .solutions-section {
    padding: 50px 24px;
  }

  .leading-banner {
    padding: 70px 24px;
  }

  footer {
    padding: 50px 24px 30px;
  }

  .page-header {
    padding: 50px 24px;
  }
}

@media(max-width:991px) {
  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-overlay {
    display: block;
    pointer-events: none;
  }

  .mobile-overlay.active {
    pointer-events: auto;
  }

  .nav-links {
    display: none !important;
  }

  .nav-cta {
    display: none !important;
  }
}

@media(max-width:600px) {
  .solution-card {
    flex: 0 0 calc(100% - 1px);
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media(max-width:480px) {
  .nav-logo img {
    max-height: 36px;
  }
}