/* =========================================================
   Exnate Teleinfra — Main Stylesheet
   Brand: Black & Red on White/Light Grey
   ========================================================= */

/* --- Variables --- */
:root {
  --white:        #FFFFFF;
  --off-white:    #F4F4F4;
  --card-bg:      #EFEFEF;
  --red:          #CC0000;
  --red-hover:    #E8001D;
  --maroon:       #7A0000;
  --black:        #111111;
  --text-grey:    #555555;
  --border:       #DDDDDD;
  --footer-bg:    #0A0A0A;
  --footer-text:  #F0F0F0;
  --font-heading: 'Barlow', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Base --- */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--black);
  background:
    radial-gradient(circle at 8% 8%, rgba(204,0,0,0.035) 0 150px, transparent 151px),
    radial-gradient(circle at 92% 20%, rgba(17,17,17,0.04) 0 110px, transparent 111px),
    var(--white);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--black);
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--red-hover); }

img { max-width: 100%; height: auto; }

/* --- Section Rhythm --- */
.section-white  { background: var(--white); }
.section-grey   { background: var(--off-white); }
section {
  padding: 80px 0;
  position: relative;
  isolation: isolate;
}

.section-white::before,
.section-grey::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  animation: patternDrift 26s linear infinite;
}

.section-white::before {
  background-image:
    radial-gradient(circle at 16% 18%, rgba(204,0,0,0.07) 0 2px, transparent 2px),
    radial-gradient(circle at 80% 70%, rgba(17,17,17,0.07) 0 1px, transparent 1px);
  background-size: 24px 24px, 28px 28px;
}

.section-grey::before {
  background-image:
    linear-gradient(135deg, rgba(17,17,17,0.05) 1px, transparent 1px),
    linear-gradient(45deg, rgba(204,0,0,0.05) 1px, transparent 1px);
  background-size: 22px 22px, 30px 30px;
}

.site-ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.site-ambient .orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(34px);
  opacity: 0.28;
  animation: floatAmbient 18s ease-in-out infinite;
}

.site-ambient .orb-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -110px;
  background: rgba(204, 0, 0, 0.18);
}

.site-ambient .orb-2 {
  width: 220px;
  height: 220px;
  top: 35%;
  right: -80px;
  background: rgba(122, 0, 0, 0.2);
  animation-delay: 2s;
}

.site-ambient .orb-3 {
  width: 240px;
  height: 240px;
  bottom: 8%;
  left: 42%;
  background: rgba(17, 17, 17, 0.1);
  animation-delay: 4s;
}

@keyframes floatAmbient {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(24px, -18px, 0); }
}

@keyframes patternDrift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 140px 110px, -90px 160px; }
}

#mainNavbar,
.hero-section,
.solution-hero,
section,
.stats-strip,
.logo-strip,
.cta-banner,
.site-footer {
  position: relative;
  z-index: 1;
}

/* --- Accent Heading Underline --- */
.heading-accent {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.heading-accent::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--red);
  transition: width 0.5s ease;
}
.heading-accent.animated::after,
.heading-accent:hover::after { width: 100%; }

/* --- Navbar --- */
#mainNavbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  transition: box-shadow 0.3s;
  z-index: 1050;
}
#mainNavbar.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }

.brand-ex   { color: var(--red); font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.brand-nate { color: var(--black); font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.brand-sub  { font-size: 0.52rem; letter-spacing: 3px; color: var(--text-grey); font-weight: 600; text-transform: uppercase; line-height: 1; margin-top: -2px; }

.navbar-nav .nav-link {
  color: var(--black);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  transition: color 0.2s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--red); }

.navbar-nav .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
  min-width: 220px;
}
.navbar-nav .dropdown-item {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 20px;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.navbar-nav .dropdown-item:hover { background: var(--off-white); color: var(--red); }

/* --- Buttons --- */
.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-dark {
  border-color: var(--black);
  color: var(--black);
  font-weight: 600;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-outline-dark:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-lg { padding: 14px 32px; font-size: 1rem; }

/* --- Hero Section --- */
.hero-section {
  min-height: 88vh;
  background: var(--white);
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-section .hero-bg-pattern {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 48%;
  background: var(--off-white);
  clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}
.hero-headline {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
}
.hero-headline span { color: var(--red); }
.hero-subtext { font-size: 1.1rem; color: var(--text-grey); max-width: 500px; margin: 20px 0 36px; }
.hero-image-wrap {
  position: relative;
  z-index: 1;
}
.hero-image-wrap img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* --- Section Labels / Tags --- */
.section-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; }
.section-subtitle { color: var(--text-grey); font-size: 1.05rem; max-width: 620px; }

/* --- Solution Cards --- */
.solution-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: border-left-color 0.2s, transform 0.2s, box-shadow 0.2s;
  border-left: 4px solid transparent;
}
.solution-card::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204,0,0,0.12) 0%, rgba(204,0,0,0) 72%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.solution-card:hover {
  border-left-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}
.solution-card:hover::after { opacity: 1; }
.solution-card .card-icon {
  width: 52px; height: 52px;
  background: #fff0f0;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--red);
}
.solution-card h5 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.solution-card p  { font-size: 0.9rem; color: var(--text-grey); margin: 0; }

.solution-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
  background: var(--off-white);
  transition: transform 0.45s ease, filter 0.35s ease;
  will-change: transform;
  animation: imageFloat 8s ease-in-out infinite;
}

.solution-card:hover .solution-thumb {
  transform: scale(1.03) translateY(-2px);
  filter: contrast(1.03) saturate(1.04);
}

.solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0 0;
}

.solution-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  color: #5a5a5a;
  background: #fafafa;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.solution-tag i { color: var(--red); }

.solution-card:hover .solution-tag {
  transform: translateY(-1px);
  background: #fff4f4;
}

/* --- Why Exnate / Differentiators --- */
.differentiator-block {
  text-align: center;
  padding: 32px 20px;
}
.differentiator-block .icon-wrap {
  width: 64px; height: 64px;
  background: #fff0f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--red);
}
.differentiator-block h5 { font-weight: 700; margin-bottom: 10px; }
.differentiator-block p  { font-size: 0.9rem; color: var(--text-grey); margin: 0; }

/* --- Industry Tiles --- */
.industry-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
  color: var(--black);
}
.industry-tile:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(204,0,0,0.1);
  color: var(--black);
}
.industry-tile .tile-thumb {
  width: 100%;
  height: 98px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  background: var(--off-white);
  transition: transform 0.4s ease, filter 0.3s ease;
  animation: imageFloat 9.5s ease-in-out infinite;
}

.industry-tile:hover .tile-thumb {
  transform: scale(1.04);
  filter: contrast(1.04);
}
.industry-tile .ind-icon { font-size: 2.2rem; color: var(--red); margin-bottom: 12px; display: block; }
.industry-tile h6 { font-weight: 700; font-size: 0.95rem; margin: 0; }

/* --- Stats Strip --- */
.stats-strip { background: var(--off-white); padding: 60px 0; }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--black);
  font-family: var(--font-heading);
  line-height: 1;
}
.stat-number span { color: var(--red); }
.stat-label { font-size: 0.9rem; color: var(--text-grey); margin-top: 6px; font-weight: 500; }

/* --- Client / Partner Logos --- */
.logo-strip { background: var(--white); padding: 50px 0; }
.partner-logo {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.2s, opacity 0.2s;
}
.partner-logo:hover { filter: grayscale(0%); opacity: 1; }
.partner-logo img { max-height: 50px; max-width: 130px; object-fit: contain; }
.partner-logo-placeholder {
  background: var(--off-white);
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--text-grey);
  white-space: nowrap;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 36px 32px;
  position: relative;
}
.testimonial-card .quote-mark {
  font-size: 4rem;
  color: var(--red);
  line-height: 0.5;
  font-family: Georgia, serif;
  margin-bottom: 20px;
  display: block;
}
.testimonial-card p { font-size: 1rem; color: var(--black); font-style: italic; }
.testimonial-card .t-author { font-weight: 700; color: var(--black); font-size: 0.95rem; margin-top: 20px; }
.testimonial-card .t-role { font-size: 0.82rem; color: var(--text-grey); }

/* --- CTA Banner --- */
.cta-banner {
  background: var(--black);
  padding: 70px 0;
  text-align: center;
}
.cta-banner.red-banner { background: var(--red); }
.cta-banner h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 28px; }
.cta-banner .btn-primary { background: var(--red); border-color: var(--red); }
.cta-banner.red-banner .btn-primary { background: #fff; border-color: #fff; color: var(--red); }
.cta-banner.red-banner .btn-primary:hover { background: var(--black); border-color: var(--black); color: #fff; }

/* --- About Page --- */
.mission-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--red);
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
}
.mission-card h5 { font-weight: 700; margin-bottom: 14px; }

/* --- Timeline --- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  margin-bottom: 36px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--red);
}
.timeline-year { font-size: 0.8rem; color: var(--red); font-weight: 700; letter-spacing: 1px; margin-bottom: 4px; }
.timeline-item h6 { font-weight: 700; margin-bottom: 6px; }
.timeline-item p  { font-size: 0.9rem; color: var(--text-grey); margin: 0; }

/* --- Team Card --- */
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.team-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.team-card .team-photo {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 2.2rem;
  color: var(--text-grey);
  overflow: hidden;
}
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h6 { font-weight: 700; margin-bottom: 2px; }
.team-card h6 a { color: var(--black); transition: color 0.2s; }
.team-card h6 a:hover { color: var(--red); text-decoration: underline; }
.team-card .team-role { font-size: 0.82rem; color: var(--text-grey); }

/* --- Solution Sub-page Hero --- */
.solution-hero {
  background:
    linear-gradient(110deg, rgba(255,255,255,0.96), rgba(255,255,255,0.9)),
    repeating-linear-gradient(0deg, rgba(204,0,0,0.045) 0 1px, transparent 1px 26px),
    var(--white);
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--border);
}
.solution-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 20px;
}
.solution-hero h1::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 3px;
  background: var(--red);
}

.hero-visual-wrap {
  position: relative;
  max-width: 420px;
  margin-inline: auto;
  transform-style: preserve-3d;
  transition: transform 0.28s ease;
}

.hero-visual-img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.hero-visual-badge {
  position: absolute;
  right: -14px;
  bottom: 14px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  animation: pulseBadge 2.6s ease-in-out infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes imageFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.sector-mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.sector-mini {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
}

.sector-mini img {
  width: 100%;
  height: 84px;
  object-fit: cover;
}

.sector-mini span {
  display: block;
  padding: 8px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-grey);
}

/* --- Feature List --- */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fi-icon { color: var(--red); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.feature-list .fi-text strong { display: block; font-weight: 600; font-size: 0.95rem; }
.feature-list .fi-text span  { font-size: 0.87rem; color: var(--text-grey); }

/* --- Products Page --- */
.filter-tabs { border-bottom: 1px solid var(--border); margin-bottom: 36px; }
.filter-tabs .btn {
  border-radius: 0;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-grey);
  background: transparent;
  transition: color 0.2s, border-color 0.2s;
}
.filter-tabs .btn:hover, .filter-tabs .btn.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}
.product-card .product-img-wrap {
  background: var(--off-white);
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--text-grey);
}
.product-card .product-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .product-brand { font-size: 0.78rem; color: var(--text-grey); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.product-card .product-name  { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.product-card .product-spec  { font-size: 0.85rem; color: var(--text-grey); flex: 1; margin-bottom: 16px; }

/* --- Projects --- */
.project-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-top-color 0.2s, box-shadow 0.2s, transform 0.2s;
  border-top: 4px solid transparent;
  height: 100%;
}
.project-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
}
.project-card .project-img {
  height: 190px;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: var(--text-grey);
}
.project-card .project-body { padding: 24px; }
.project-card .project-tag { font-size: 0.75rem; font-weight: 700; color: var(--red); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.project-card h5 { font-weight: 700; margin-bottom: 10px; }
.project-card p  { font-size: 0.9rem; color: var(--text-grey); }

/* --- Survey / Form --- */
.survey-step-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  height: 100%;
}
.survey-step-num {
  width: 48px; height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.form-label { font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; }
.form-control, .form-select {
  border-color: var(--border);
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 8px;
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204,0,0,0.12);
}

/* Checkboxes multi-select pills */
.interest-options { display: flex; flex-wrap: wrap; gap: 8px; }
.interest-options input[type=checkbox] { display: none; }
.interest-options label {
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.interest-options input[type=checkbox]:checked + label {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* --- Contact --- */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 24px;
}
.contact-info-item .ci-icon {
  width: 44px; height: 44px;
  background: #fff0f0;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--red);
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 700; margin-bottom: 2px; font-size: 0.9rem; }
.contact-info-item p  { font-size: 0.9rem; color: var(--text-grey); margin: 0; }

/* --- Careers --- */
.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.job-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); border-color: var(--red); }
.job-tag {
  display: inline-block;
  background: var(--off-white);
  color: var(--text-grey);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

/* --- Industry Page --- */
.pain-point-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.pain-point-item:last-child { border-bottom: none; }
.pain-point-item .pp-icon { color: var(--red); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.pain-point-item p { font-size: 0.95rem; margin: 0; }

.trust-item {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.trust-item i { color: var(--red); font-size: 1.1rem; }
.trust-item span { font-size: 0.95rem; font-weight: 500; }

/* --- Footer --- */
.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}
.footer-brand-ex   { color: var(--red); font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.footer-brand-nate { color: #fff; font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: 2px; }
.footer-brand-sub  { font-size: 0.5rem; letter-spacing: 3px; color: #888; font-weight: 600; text-transform: uppercase; }
.footer-tagline    { font-size: 0.88rem; color: #888; margin: 0; }

.footer-heading {
  color: #fff;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a  { color: #888; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--red); }
.footer-links.footer-contact li { color: #888; font-size: 0.88rem; }
.footer-links.footer-contact a  { color: #888; }
.footer-links.footer-contact a:hover { color: var(--red); }

.footer-divider { border-color: var(--red); opacity: 1; }
.footer-copy { font-size: 0.82rem; color: #666; margin: 0; }

.social-icons a { color: #666; font-size: 1.1rem; transition: color 0.2s; }
.social-icons a:hover { color: var(--red); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 52px; height: 52px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  z-index: 9999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(0,0,0,0.22); color: #fff; }

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 90px; right: 28px;
  width: 38px; height: 38px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  z-index: 9998;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 14px rgba(204,0,0,0.3);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-card,
.industry-tile,
.differentiator-block,
.project-card,
.product-card { animation: cardBreath 6.5s ease-in-out infinite; }

@keyframes cardBreath {
  0%, 100% { box-shadow: 0 0 0 rgba(0,0,0,0); }
  50% { box-shadow: 0 10px 26px rgba(0,0,0,0.05); }
}

/* --- Utilities --- */
.text-red { color: var(--red) !important; }
.bg-red   { background: var(--red) !important; }
.border-red { border-color: var(--red) !important; }
.fw-800 { font-weight: 800; }
.ls-wide { letter-spacing: 2px; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #f0f0f0;
  z-index: 10000;
  padding: 16px 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  animation: slideUpCookie 0.4s ease;
}
@keyframes slideUpCookie {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cookie-banner a { color: var(--red); }
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  section { padding: 60px 0; }
  .hero-section { min-height: auto; padding: 80px 0 60px; }
  .hero-section .hero-bg-pattern { display: none; }
  .hero-visual-wrap { max-width: 360px; }
  .hero-visual-badge { right: 6px; }
}
@media (max-width: 767.98px) {
  section { padding: 50px 0; }
  .cta-banner { padding: 50px 0; }
  .stats-strip { padding: 40px 0; }
  .site-ambient .orb-3 { display: none; }
  .sector-mini-gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .section-white::before,
  .section-grey::before,
  .site-ambient .orb,
  .hero-visual-badge,
  .solution-thumb,
  .industry-tile .tile-thumb,
  .solution-card,
  .industry-tile,
  .differentiator-block,
  .project-card,
  .product-card {
    animation: none !important;
  }
}
