/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* ===== UTILITIES ===== */
.text-red { color: #cc0000; }

.text-gradient {
  background: linear-gradient(135deg, #1a5fa8, #cc0000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-outline {
  background: rgb(0 0 0 / 20%);;
  color: #fff;
  border-radius: 50px;
}
.btn-outline:hover {
  background: #fff;
  color: #111;
}

.btn-dark {
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  color: #fff;
  border-radius: 50px;
  border: none;
}
.btn-dark:hover {
  background: linear-gradient(90deg, #041a66 0%, #450f3a 50%, #9a0002 100%);
}

.btn-outline-sm {
  display: inline-block;
  padding: 8px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgb(0 0 0 / 20%);
  border-radius: 32px;
  color: #fff;
  transition: all 0.3s;
}
.btn-outline-sm:hover {
  background: #fff;
  color: #111;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}

.navbar.scrolled {
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: #cc0000;
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #fff;
  background: rgb(0 0 0 / 20%);
  padding: 6px 16px;
  border-radius: 20px;
}

.nav-link.active::after {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(5, 5, 15, 0.98);
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mobile-link:hover, .mobile-link.active { color: #cc0000; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('images/Asset 2.avif') center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,5,30,0.52) 0%, rgba(30,0,0,0.38) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 80px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* ===== MARQUEE ===== */
.marquee-strip {
  overflow: hidden;
  white-space: nowrap;
  padding: 14px 0;
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.marquee-track {
  display: inline-block;
  animation: marquee-scroll 28s linear infinite;
  will-change: transform;
}

.marquee-track--reverse {
  animation-direction: reverse;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  padding: 0 24px;
}

.marquee-dot {
  color: #cc0000;
  margin-left: 24px;
}

/* ===== ABOUT ===== */
.about {
  padding: 80px 0;
  background: #fff;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrap {
  border-radius: 0 24px 0 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.about-heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 28px;
}

.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 20px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.feature-card--highlight {
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  color: #fff;
}

.feature-card--highlight h3 { color: #fff; }
.feature-card--highlight p { color: rgba(255,255,255,0.8); }

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.feature-row:last-child { border-bottom: none; }

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #f0f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #062486;
  transition: background 0.3s, color 0.3s;
}

.feature-card--highlight .feature-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature-icon--sm {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  color: #cc0000;
}

.feature-icon--blue {
  color: #1a5fa8;
}

.feature-text h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #111;
}

.feature-text p {
  font-size: 0.8rem;
  color: #666;
  line-height: 1.5;
  transition: color 0.3s;
}

.feature-card--highlight .feature-text h3 { color: #fff; }

.feature-card--highlight .feature-text p { color: #fff; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 100px 0;
  background: url('images/Asset 4.avif') center center / cover no-repeat;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.1);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.cta-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-bottom: 36px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* ===== BUSINESS VERTICALS ===== */
.verticals {
  position: relative;
  padding: 80px 0 100px;
  background: #f8f9fc;
  overflow: hidden;
}

.verticals-bg-molecule {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  pointer-events: none;
  user-select: none;
}

.verticals-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}

.verticals-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  color: #111;
  margin-bottom: 20px;
}

.verticals-intro p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
}

.verticals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ===== VERTICAL CARDS ===== */
.v-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(24px);
}

.v-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s;
}

.v-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.v-card-img {
  height: 120px;
  overflow: hidden;
}

.v-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.v-card-body {
  padding: 16px 18px 18px;
}

.v-card-date {
  font-size: 0.68rem;
  color: #999;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 6px;
}

.v-card-body h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
  line-height: 1.3;
}

.v-card-body p {
  font-size: 0.76rem;
  color: #666;
  line-height: 1.55;
  margin-bottom: 12px;
}

.v-card-arrow {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #1a5fa8;
  width: 30px;
  height: 30px;
  transition: color 0.2s, transform 0.2s;
}
.v-card-arrow svg { width: 30px; height: 30px; }

.v-card-arrow:hover {
  color: #cc0000;
  transform: translateX(3px);
}

.v-card-arrow--red { color: #cc0000; }
.v-card-arrow--red:hover { color: #8b0000; }

/* ===== FOOTER ===== */
.footer {
  background: url('images/footer.avif') center center / cover no-repeat;
  position: relative;
}

.footer-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px 48px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
}

.footer-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.footer-company {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 12px 0 8px;
}

.footer-address {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 260px;
}

.footer-phone {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.footer-links-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-links-list a:hover { color: #cc0000; }

.footer-col--brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d00000;
  transition: background 0.2s, color 0.2s;
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: #cc0000; color: #fff; }

.footer-bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 16px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
}

/* ===== UTILITIES ===== */
.text-blue { color: #1a5fa8; }

/* ===== PAGE HERO (About / Products sub-pages) ===== */
.page-hero {
  padding: 140px 48px 80px;
  background: #fff;
  max-width: 1200px;
  margin: 0 auto;
  /* top padding accounts for fixed navbar (64px) + breathing room */
}

.page-hero--products {
  background: url('images/Asset 4.avif') center center / cover no-repeat;
  position: relative;
  max-width: 100%;
  padding: 140px 48px 80px;
  text-align: center;
}

.page-hero--products::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 30, 0.65);
}

.page-hero--products .page-hero-title,
.page-hero--products .page-hero-subtitle {
  position: relative;
  z-index: 2;
  color: #fff;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 12px;
}

.page-hero-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
}

/* ===== ABOUT PAGE BODY TEXT ===== */
.about--page {
  padding: 0;
}

.about-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 48px 60px;
}

.about-page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 48px;
}

.about--page .about-inner {
  grid-template-columns: 1fr 1fr;
  max-width: none;
  padding: 0;
  margin: 0;
}

.about-body-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}

/* ===== TEAM SECTION ===== */
.team-section {
  background: #fff;
  padding: 80px 0 100px;
  overflow: hidden;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

/* Left side */
.team-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-bubbles {
  position: absolute;
  top: -40px;
  left: -60px;
  pointer-events: none;
}

.team-bubble {
  border-radius: 50%;
  background: rgba(26, 95, 168, 0.08);
  position: absolute;
}

.team-bubble--lg {
  width: 180px;
  height: 180px;
  top: 0;
  left: 0;
}

.team-bubble--sm {
  width: 80px;
  height: 80px;
  top: 60px;
  left: 100px;
  background: rgba(26, 95, 168, 0.05);
}

.team-title-wrap {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  justify-items: right;
}

.team-title-outline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px #cc0000;
  letter-spacing: 0.04em;
  line-height: 1;
}

.team-title-solid {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #cc0000;
  letter-spacing: 0.04em;
  line-height: 1;
}

.team-deco-box {
  width: 80px;
  height: 80px;
  background: repeating-linear-gradient(
    -45deg,
    #1a5fa8 0px,
    #1a5fa8 2px,
    transparent 2px,
    transparent 8px
  );
  opacity: 0.7;
}

/* Right side */
.team-right {
  position: relative;
}

.team-deco-group {
  position: absolute;
  top: 140px;
  left: 36%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}

.team-deco-lines-top, .team-deco-lines-bottom {
  width: 200px;
  height: 60px;
  background: repeating-linear-gradient(
    -45deg,
    #06218a  0px,
    #06218a  2px,
    transparent 2px,
    transparent 8px
  );
  position: absolute;
  top: 20px;
  left: -110px;
}

.team-deco-lines-bottom {
  top: 200px;
  left: 80px;
}

.team-photos-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  z-index: 2;
}

.team-photo-item {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.team-photo-item img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(100%);
}

.team-photo--1 {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
}

.team-photo--2 {
  grid-column: 1;
  grid-row: 2;
  margin-top: -120px;
  align-self: end;
}

.team-tagline {
  text-align: right;
}

.team-tagline p {
  font-size: 0.78rem;
  font-weight: 800;
  color: #cc0000;
  letter-spacing: 0.08em;
  line-height: 1.8;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/Asset 5.avif') center center / cover no-repeat;
  margin-top: 64px;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-hero-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.04em;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: transparent;
  padding: 0 48px 80px;
  margin-top: 0;
  position: relative;
  z-index: 10;
}

.contact-card {
  max-width: 900px;
  margin: -110px auto 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.15);
  padding: 48px 52px 52px;
  position: relative;
  z-index: 10;
}

.contact-card-heading {
  font-size: 1.4rem;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 36px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full {
  margin-bottom: 24px;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.02em;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: #f0f0f0;
  border: 1.5px solid transparent;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: #111;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #1a5fa8;
  background: #fff;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.form-submit-btn {
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 14px 40px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit-btn:hover {
  background: #144d8c;
}

.form-submit-btn:disabled {
  background: #6b9ecf;
  cursor: not-allowed;
}

/* ===== PRODUCTS PAGE ===== */
.products-section {
  padding: 80px 48px 100px;
  background: #fff;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.products-coming-soon {
  text-align: center;
  padding: 60px 0;
}

.coming-soon-icon {
  color: #cc0000;
  margin-bottom: 24px;
}

.coming-soon-icon svg {
  width: 72px;
  height: 72px;
}

.coming-soon-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.coming-soon-text {
  font-size: 0.95rem;
  color: #666;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.coming-soon-text a {
  color: #1a5fa8;
  font-weight: 600;
  text-decoration: underline;
}

/* ===== PRODUCTS PAGE — REDESIGN ===== */

.prod-welcome {
  padding: 40px 48px 36px;
  background: #fff;
  text-align: center;
}

.prod-welcome__eyebrow {
  font-size: 0.88rem;
  font-weight: 600;
  color: #062486;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.prod-welcome__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #111;
}

.prod-cards-section {
  padding: 48px 80px;
  background: #fff;
}

.prod-cards-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}

.prod-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.prod-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.prod-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-card__img {
  transform: scale(1.04);
}

.prod-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.prod-card__category {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #062486;
}

.prod-card__desc {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.65;
  flex: 1;
}

.prod-card__link {
  font-size: 0.78rem;
  font-weight: 700;
  color: #062486;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  align-self: flex-start;
}

.prod-card__link:hover {
  color: #c20003;
}

.prod-innovation {
  background: #f4f6f9;
  padding: 72px 48px;
  text-align: center;
}

.prod-innovation__inner {
  max-width: 760px;
  margin: 0 auto;
}

.prod-innovation__heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.prod-innovation__text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.75;
}

.prod-distributors {
  background: #fff;
  padding: 72px 48px 80px;
}

.prod-distributors__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.prod-distributors__heading {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #062486;
  text-align: center;
  margin-bottom: 40px;
}

.prod-dist-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.prod-dist-card {
  background: #fff;
  border: 1px solid #dde0e6;
  border-radius: 8px;
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 190px;
  transition: box-shadow 0.3s;
}

.prod-dist-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.prod-dist-card__logo {
  max-width: 120px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.prod-dist-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  line-height: 1.4;
}

.prod-dist-card__desc {
  font-size: 0.68rem;
  color: #777;
  text-align: center;
  line-height: 1.5;
}

.prod-bottom-banner {
  background: linear-gradient(90deg, #062486 0%, #59144b 50%, #c20003 100%);
  padding: 64px 48px;
  text-align: center;
}

.prod-bottom-banner__text {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto;
}

.prod-bottom-banner__text strong {
  font-weight: 900;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }
  .about-img { height: 300px; }

  .verticals-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    padding: 48px 24px 36px;
  }

  .footer-col--contact {
    grid-column: 1 / -1;
  }

  /* About page */
  .about--page .about-inner {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 24px 60px;
  }

  .team-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    gap: 40px;
  }

  .team-title-wrap {
    padding-top: 80px;
  }

  /* Contact page */
  .contact-section {
    padding: 0 24px 60px;
  }

  .contact-card {
    padding: 32px 24px 36px;
    margin-top: -80px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Products page */
  .products-section {
    padding: 60px 24px 80px;
  }

  /* Products redesign */
  .prod-welcome { padding: 28px 24px 32px; }
  .prod-cards-section { padding: 24px 24px; }
  .prod-cards-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .prod-innovation { padding: 56px 24px; }
  .prod-distributors { padding: 56px 24px 60px; }
  .prod-dist-card { width: 160px; padding: 20px 16px 16px; }
  .prod-bottom-banner { padding: 48px 24px; }
}

@media (max-width: 600px) {
  .hero-content { padding: 0 24px; padding-top: 80px; }

  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-title { font-size: 1.6rem; }

  /* Products redesign mobile */
  .prod-cards-inner { grid-template-columns: 1fr; }
  .prod-dist-grid { gap: 16px; }
  .prod-dist-card { width: 140px; }

  .team-title-outline,
  .team-title-solid {
    font-size: 2.4rem;
  }

  .contact-hero {
    height: 260px;
  }
}
