/* --------------------------------------------------------------------------
   PRECISA CONSULTANTS — Minimal Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #104E90;
  --navy-dark: #0B3A6B;
  --navy-light: #1A6BC4;
  --accent: #0A3DAF;
  --accent-orange: #CF4630;
  /* New Blue */
  --accent-hover: #0540cc;
  --text-dark: #121212;
  --text-body: #4A4A4A;
  --text-muted: #7A7A7A;
  --bg-cream: #F5F8FB;
  --bg-section: #F5F8FB;
  --bg-white: #ffffff;
  --bg-light: #EBF0F7;
  --bg-dark: #0F1E36;
  --border-color: #DDE6EF;
  --border-light: rgba(0, 0, 0, 0.06);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --transition: all 0.3s ease;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*,
*::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);
  color: var(--text-body);
  background: var(--bg-cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(34px, 4.5vw, 50px);
}

h2 {
  font-size: clamp(26px, 3.2vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.2vw, 26px);
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 90px 0;
}

.section-padding-sm {
  padding: 50px 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-48 {
  margin-bottom: 48px;
}

.mb-64 {
  margin-bottom: 64px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}



.problem-section,
.logo-reel-section,
.site-footer,
.breadcrumb-hero,
.features-section,
.stats-section,
.cta-section {
  background-image: none;
}

/* ---------- HERO SECTION ---------- */
.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding: 180px 10% 60px 10%;
  background-color: #0b111a;
}




/* ---------- HERO IMAGE SLIDER ---------- */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 8s ease-in-out;
  transform: scale(1.06);
  will-change: opacity, transform;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.video-overlay {
  position: absolute;
  inset: 0;
  /* Light overlay —â€ lets images show through clearly without a blue tint */
  background: linear-gradient(to right,
      rgba(10, 15, 25, 0.75) 0%,
      rgba(10, 15, 25, 0.45) 50%,
      rgba(10, 15, 25, 0.20) 100%);
  z-index: 2;
}

/* ---------- HERO SLIDER DOTS ---------- */
.hero-slider-dots {
  position: absolute;
  bottom: 40px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.4s ease;
  border: none;
  display: block;
}

.hero-dot.active {
  background: #ffffff;
  width: 28px;
  border-radius: 4px;
}

/* ---------- HERO SUBTEXT + ROTATING SERVICE NAME ---------- */
.hero-subtext {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-top: 24px;
  margin-bottom: 36px;
  line-height: 1.5;
}

/* Inline wrapper that clips the animated words */
.hero-tagline-wrap {
  display: inline-block;
  position: relative;
  height: 1.5em;
  min-width: 300px;
  vertical-align: middle;
  overflow: hidden;
}

.hero-tagline {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  color: #ffffff;
  font-weight: 700;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease;
}

.hero-tagline.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline.exit {
  opacity: 0;
  transform: translateY(-100%);
}

/* Responsive: on mobile, stack label + ticker in a single column */
@media (max-width: 768px) {
  .hero-subtext {
    display: block;
    margin-top: 16px;
    margin-bottom: 24px;
    font-size: clamp(15px, 4vw, 18px);
  }

  .hero-tagline-wrap {
    display: block;
    min-width: 0;
    width: 100%;
    height: 1.6em;
    margin-top: 6px;
  }

  .hero-tagline {
    white-space: normal;
    word-break: break-word;
  }
}

/* Keep old video-background class for compatibility if used elsewhere */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: #fff;
  max-width: 900px;
  margin: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 0;

  color: #ffffff;

  background: linear-gradient(90deg,
      rgba(247, 247, 247, 0) 0%,
      rgba(247, 247, 247, .08) 24.8%,
      rgba(247, 247, 247, .05) 61.5%,
      rgba(247, 247, 247, 0) 100%);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border: none;

  font-weight: 500;
  font-size: 16px;
  margin-bottom: 28px;
  margin-left: -18px;
}

.hero-content .hero-headline {
  color: #fff;
  margin-bottom: 28px;
}

.hero-subhead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.5;
  letter-spacing: -0.01em;
}

.hero-content .hero-description {
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-actions a {
  flex: 1;
  max-width: 240px;
  min-width: 160px;
  text-align: center;
  font-size: 16px;
}

.hero-actions .btn-outline {
  border-color: #fff;
  color: #fff;
}

.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--navy);
}

.hero-stats-counter {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1140px;
  margin: 60px 0 0 0;
}

.hero-stats-counter .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.hero-stats-counter .stat-item {
  text-align: left;
  background: transparent;
  padding: 0;
  border: none;
}

.hero-stats-counter .stat-number-wrap {
  display: flex;
  justify-content: flex-start;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.hero-stats-counter .stat-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

/* ---------- UTILITIES ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
  max-width: 100%;
  margin: 0 auto 50px;
  text-align: center;
}

.section-header.text-left {
  margin-left: 0;
  text-align: left;
}

.section-label {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 4px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  /* Starts hidden, scaled to 0 */
  transform-origin: left;
  /* Animates from left to right */
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  /* Hardware accelerated animation */
}

/* Trigger animation when section header is revealed */
.section-header.visible .section-label::after,
.reveal.visible .section-label::after,
.section-header.active .section-label::after,
.reveal.active .section-label::after {
  transform: scaleX(1);
}

.section-title {
  margin-bottom: 16px;
  font-weight: 500;
}

.section-desc {
  font-size: 16px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- PROBLEM STATEMENT SECTION (Typography Split) ---------- */
.problem-section {
  background: var(--bg-white);
  padding: 120px 0;
  /* Gave it a bit more breathing room */
  border-bottom: 1px solid var(--border-color);
}

.text-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
  padding: 0;
}

.statement-text {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.25;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

/* The lighter, thinner part of the headline */
.statement-text .muted-text {
  color: var(--accent);
  font-weight: 500;
}

/* The darker, heavier punchline */
.statement-text .bold-text {
  color: var(--accent);
  /* Deep brand color */
  font-weight: 500;
}

.statement-body {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 800px;
  /* Keeps the body copy from stretching too far and looking like shit */
}

/* Responsive adjustments for mobile so it doesn't break */
@media (max-width: 992px) {
  .text-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0;
  }

  .split-left {
    margin-bottom: 0px;
  }

  .statement-text {
    font-size: 32px;
  }
}

/* ---------- FEATURES / WHAT WE DELIVER ---------- */
.features-section {
  background-color: var(--bg-cream);
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  /* Centered text */
}

.feature-icon {
  margin-bottom: 24px;
  perspective: 1200px;
  opacity: 1;
  /* Reduced opacity */
  transition: opacity 0.4s ease;
  display: flex;
  justify-content: center;
  /* Center the image horizontally */
}

.feature-icon img {
  height: 140px;
  /* Increased from 100px */
  width: auto;
  object-fit: contain;
}

.feature-card:hover .feature-icon {
  opacity: 0.55;
  /* Bring opacity back on hover */
}

/* Global Flip Animation */
.global-flip-hover {
  display: inline-block !important;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease !important;
  transform-style: preserve-3d;
  transform: rotateY(0deg) !important;
  /* Establish base transform */
}

.global-flip-trigger:hover .global-flip-hover,
.global-flip-hover:hover,
.feature-card:hover .global-flip-hover {
  transform: rotateY(360deg) !important;
  opacity: 1 !important;
}

.feature-card h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p {
  color: var(--text-body);
  font-size: 15px;
  margin: 0;
}

/* ---------- HOW IT WORKS / PROCESS ---------- */
.process-section {
  background-color: var(--bg-cream);
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: process-step-counter;
}

.process-step {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 48px 32px;
  text-align: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
  z-index: 1;
  counter-increment: process-step-counter;
}

.process-step::after {
  content: "0" counter(process-step-counter);
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 140px;
  font-family: var(--font-heading);
  line-height: 1;
  color: var(--text-dark);
  opacity: 0.03;
  z-index: 0;
  transition: all 0.5s ease;
  pointer-events: none;
}

.process-step:hover::after {
  opacity: 0.15;
  color: #fff;
  transform: translateY(-10px);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--navy);
  background-image:
    radial-gradient(at 0% 0%, var(--accent) 0px, transparent 50%),
    radial-gradient(at 100% 0%, var(--navy-light) 0px, transparent 50%),
    radial-gradient(at 100% 100%, var(--navy-light) 0px, transparent 50%),
    radial-gradient(at 0% 100%, var(--navy-light) 0px, transparent 50%);
  background-size: 150% 150%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: scale(0.95);
}

@keyframes meshMovement {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

.process-step:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 24px 48px rgba(16, 78, 144, 0.15);
}

.process-step:hover::before {
  opacity: 1;
  transform: scale(1);
  animation: meshMovement 8s ease-in-out infinite alternate;
}

.process-step h3,
.process-step h4 {
  font-size: 24px;
  margin-bottom: 16px;
  transition: color 0.5s ease, transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.process-step p {
  font-size: 16px;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
  transition: color 0.5s ease, transform 0.5s ease;
  position: relative;
  z-index: 2;
}

.process-step:hover h3,
.process-step:hover h4,
.process-step:hover p {
  color: #fff;
  transform: translateY(-4px);
}

/* ---------- SERVICES CARDS ---------- */
.services-section {
  background-color: var(--bg-white);
  padding: 90px 0;
  border-bottom: 1px solid var(--border-color);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-section {
  padding: 90px 0;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.client-logos-section {
  padding: 60px 0;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide img {
  height: 400px !important;
  width: auto !important;
  object-fit: contain;
}

.service-card {
  padding: 32px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.service-card h4 {
  display: inline-block;
  position: relative;
  margin-bottom: 8px;
}

.service-card h4::after {
  display: none;
}

/* ---------- ANIMATED COMMITMENT CARDS ---------- */
.commitment-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

@media (max-width: 768px) {
  .commitment-cards-grid {
    grid-template-columns: 1fr;
  }
}

.commitment-card {
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.3;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 0;
  min-height: 54px;
  box-sizing: border-box;
}

.commitment-card:hover {
  transform: translateY(-3px);
  background: var(--bg-white);
  border-color: var(--navy);
}

.commitment-card i {
  color: var(--navy);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.35s ease;
}

.commitment-card:hover i {
  transform: scale(1.2);
}

/* ---------- TRUST PANEL WITH BACKGROUND ---------- */
.trust-panel {
  position: relative;
  overflow: hidden;
  background: var(--bg-cream);
  border: 1px solid var(--border-color);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.trust-panel>* {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  border-color: var(--accent);
}

.service-card-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.service-card-icon i,
.feature-icon i {
  display: inline-block;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.service-card:hover .service-card-icon i,
.feature-card:hover .feature-icon i {
  transform: rotateY(360deg);
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 14px;
  line-height: 1.5;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
  color: var(--navy);
  text-decoration: underline;
}

.service-card .learn-more:hover {
  color: var(--accent);
}

/* ---------- STATS / COUNTER SECTION ---------- */
.stats-section {
  background: var(--bg-white);
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-item {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
}

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.stat-prefix,
.stat-suffix {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 500;
}

.stat-label {
  font-size: 16px;
  color: var(--text-body);
  margin: 0;
  font-weight: 600;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-section {
  background: var(--bg-cream);
  padding: 90px 0;
}

.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.testimonial-carousel:active {
  cursor: grabbing;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  text-align: left;
}

.quote-icon {
  font-family: serif;
  font-size: 48px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 24px;
  display: block;
}

.testimonial-quote {
  font-size: 22px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 32px;
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author .name {
  font-weight: 500;
  font-size: 16px;
  color: var(--navy);
}

.testimonial-author .role {
  font-size: 14px;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  padding: 10px 0;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

/* ---------- PROBLEM SECTION IMAGE ---------- */
.problem-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 511px;
  min-width: 51px;
  overflow: hidden;
}

.skeleton-loader {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.problem-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-image-wrapper:hover .problem-image {
  transform: scale(1.05);
}

/* ---------- TESTIMONIAL QUOTE ICON ---------- */
.quote-icon-svg {
  display: inline-block;
  color: var(--accent);
  margin-bottom: 24px;
}

.quote-icon-svg svg {
  fill: currentColor;
}

/* ---------- CLIENT LOGO REEL ---------- */
.logo-reel-section {
  padding: 80px 0;
  background: var(--bg-white);
  /* Flipped from --bg-cream to maintain the alternating scheme */
  overflow: hidden;
}

.logo-reel-container {
  display: flex;
  overflow-x: auto;
  /* Allows native horizontal scrolling */
  white-space: nowrap;
  scrollbar-width: none;
  /* Hides scrollbar in Firefox */
  -ms-overflow-style: none;
  /* Hides scrollbar in IE/Edge */
  cursor: grab;
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.logo-track {
  display: inline-flex;
  gap: 60px;
  /* Tightened the gap slightly since the logos will be bigger */
  padding-right: 60px;
  flex-shrink: 0;
  align-items: center;
}

.logo-track img {
  height: 180px;
  /* Cranked up from 140px */
  width: auto;
  object-fit: contain;
  filter: none;
  /* Kills the greyscale effect */
  opacity: 1;
  /* Forces full visibility by default */
  transition: transform 0.3s ease;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* New hover effect since the color change is gone */
.logo-track img:hover {
  transform: scale(1.05);
}




@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* ---------- BRAILIE SWIPER LOGO CAROUSEL COMPONENT ---------- */
.swiper-container-wrapper {
  position: relative;
  width: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  /* Forces seamless linear scrolling animation */
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.swiper-slide img {
  height: 165px;
  /* Further scaled up to match navbar logo presence */
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: none;
  /* No grayscale */
  opacity: 1;
  /* Fully visible */
  transition: all 0.35s ease;
}

.swiper-slide img:hover {
  transform: scale(1.06);
}

.swiper-pagination {
  position: relative !important;
  margin-top: 24px;
}

.swiper-pagination-bullet-active {
  background: var(--navy) !important;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  position: relative;
  padding: 72px 0;
  background-color: #F5F8FB;
  background-image: none;
  color: var(--text-dark);
  overflow: hidden;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

/* Hide the old overlay —â€ CTA is now light */
.cta-overlay {
  display: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  text-align: left;
}

.cta-content h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--navy);
  line-height: 1.2;
}

.cta-content h2 em {
  color: var(--accent-orange);
  font-style: normal;
}

.cta-content p {
  font-size: 16px;
  color: var(--text-body);
  margin-bottom: 24px;
  line-height: 1.65;
  max-width: 600px;
}

.cta-content p:last-of-type {
  margin-bottom: 32px;
}

.btn-cta {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  font-size: 16px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-cta:hover {
  background: var(--navy-dark);
  color: #fff;
  border-color: var(--navy-dark);
}

/* CTA align wrapper */
.cta-align-wrapper {
  width: 100%;
  padding: 0 10%;
}

/* Override hero-actions outline button for light CTA background */
.cta-section .hero-actions .btn-outline,
.cta-section .hero-actions .btn-hero-secondary {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.cta-section .hero-actions .btn-outline:hover,
.cta-section .hero-actions .btn-hero-secondary:hover {
  background: var(--navy);
  color: #fff;
}

@media (max-width: 900px) {
  .cta-align-wrapper {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .cta-align-wrapper {
    padding: 0 16px;
  }
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-white);
  color: var(--text-body);
  padding: 70px 0 0;
}

.footer-base {
  width: 100%;
  padding: 0 10%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  padding-bottom: 50px;
  align-items: start;
}

.footer-brand img {
  height: 200px;
  width: auto;
  margin-top: -60px;
  margin-left: -20px;
  margin-bottom: -60px;
  object-fit: contain;
  object-position: left;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: var(--transition);
  font-size: 15px;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-column h5 {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: var(--text-body);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer-address {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-body);
}

.footer-address a {
  color: var(--text-body);
  transition: var(--transition);
}

.footer-address a:hover {
  color: var(--accent);
}

.footer-bottom {
  background: var(--bg-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12.5px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 5%;
  }
}

/* ============================================================
   PRECISA NAVIGATION CONVERTED STYLES
   ============================================================ */
.precisa-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--bg-white);
  border: none;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.precisa-shell.scrolled {
  background: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.precisa-nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
}

.precisa-base {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10%;
}

.precisa-logo {
  display: flex !important;
  align-items: center !important;
  flex-shrink: 0 !important;
  height: auto !important;
  max-height: none !important;
  text-decoration: none;
}

.precisa-logo-img {
  height: 150px !important;
  width: auto !important;
  max-height: none !important;
  max-width: none !important;
  flex-shrink: 0 !important;
  object-fit: contain !important;
  margin: 0;
  transition: transform 0.2s ease;
}

@media (max-width: 991px) {
  .precisa-logo-img {
    height: 100px !important;
  }
}

.precisa-logo-img:hover {
  transform: scale(1.05);
}

.precisa-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.precisa-link,
.precisa-pages {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: color 0.2s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}



.precisa-link:hover,
.precisa-pages:hover,
.precisa-link.active,
.precisa-pages[aria-expanded='true'] {
  color: var(--accent);
  outline: none;
}

.precisa-link::after,
.precisa-pages::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.precisa-link:hover::after,
.precisa-pages:hover::after,
.precisa-link.active::after,
.precisa-pages[aria-expanded='true']::after {
  transform: scaleX(1);
}

.precisa-link:focus-visible,
.precisa-pages:focus-visible,
.precisa-menu a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.precisa-pages svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.precisa-pages[aria-expanded='true'] svg {
  transform: rotate(180deg);
}

.precisa-page-wrap {
  position: relative;
}

.precisa-menu {
  position: absolute;
  z-index: 100;
  top: 100%;
  right: -18px;
  width: 240px;
  padding: 12px 8px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(16, 78, 144, 0.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.precisa-page-wrap:hover .precisa-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.precisa-page-wrap:hover .precisa-pages svg {
  transform: rotate(180deg);
}

.precisa-menu a {
  display: block;
  padding: 9px 12px;
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.precisa-menu a:hover,
.precisa-menu a.active {
  background: var(--bg-light);
  color: var(--accent);
  outline: none;
}

.precisa-mobile-toggle {
  display: none;
  border: none;
  background: transparent;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1002;
  min-width: 44px;
  min-height: 44px;
  transition: all 0.2s ease;
}

.precisa-mobile-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.precisa-mobile-toggle:hover,
.precisa-mobile-toggle:active {
  background: transparent;
  color: var(--accent);
}

.precisa-mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.precisa-mobile-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 20px 28px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--accent);
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  z-index: 9999;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.precisa-mobile-panel.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.precisa-mobile-panel>a {
  padding: 12px 0;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 48px;
}

.precisa-mobile-panel>a:hover {
  color: var(--accent);
}

.mobile-submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s ease;
  min-height: 52px;
  text-align: left;
}

.mobile-submenu-trigger:hover,
.mobile-submenu-trigger.active {
  color: var(--navy);
  font-weight: 700;
}

.precisa-mobile-submenu {
  display: flex;
  flex-direction: column;
  background: #FAFAFA;
  border-left: none;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.precisa-mobile-submenu.open {
  max-height: 500px;
  /* arbitrary large enough height */
}

.precisa-mobile-submenu a {
  font-size: 15px;
  font-weight: 500;
  padding: 12px 16px 12px 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  color: #4A4A4A;
  font-family: var(--font-body);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  min-height: 48px;
}

.precisa-mobile-submenu a:hover,
.precisa-mobile-submenu a.active {
  color: #104E90;
}

/* Specific Mobile Styling Overrides */
#siteNavbar,
.precisa-nav,
.precisa-shell,
.precisa-base {
  border-bottom: none !important;
}

.precisa-mobile-panel {
  border-top: none !important;
  border-bottom: none !important;
}

.precisa-mobile-submenu a,
.precisa-mobile-submenu a:hover,
.precisa-mobile-submenu a:focus,
.precisa-mobile-submenu a.active {
  font-weight: 400 !important;
}

.precisa-mobile-panel>a:last-of-type {
  border-bottom: none !important;
}

@media (max-width: 900px) {
  .precisa-base {
    padding: 0 20px;
  }

  .precisa-links {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .precisa-shell {
    top: 0;
    width: 100%;
    position: fixed;
  }

  .precisa-nav {
    height: 70px !important;
    min-height: 70px;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
  }

  .precisa-base {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }

  .precisa-links,
  .precisa-base>.precisa-btn {
    display: none;
  }

  .precisa-mobile-toggle {
    display: inline-flex;
    padding: 10px;
  }

  .precisa-mobile-toggle svg {
    width: 24px;
    height: 24px;
  }
}

/* ============================================================
   PRECISA BUTTON COMPONENT (NEW 0 RADIUS)
   ============================================================ */
.precisa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 0 !important;
  /* Force Sharp Edges */
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  line-height: 1;
}

.precisa-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.precisa-btn:active {
  transform: scale(0.98);
}

/* Base outline button for secondary actions */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 130px 40px 60px;
    max-width: 100%;
  }

  .hero-right-video {
    height: 450px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 110px 24px 50px;
  }

  .hero-left .hero-title {
    font-size: 32px;
  }

  .hero-right-video {
    height: 350px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .precisa-logo-img {
    height: 36px;
    margin: 0;
  }

  .cta-box {
    padding: 40px 24px;
  }

  /* Shrinks the massive testimonial cards on phones */
  .testimonial-slide {
    padding: 24px;
    /* Drops down from the desktop 40px padding */
  }

  .testimonial-quote {
    font-size: 16px;
    /* Shrinks the text so it doesn't wrap into 20 lines */
    margin-bottom: 20px;
  }

  .quote-icon-svg {
    margin-bottom: 16px;
    /* Tightens the gap under the quote marks */
  }
}

/* Blur-in Typewriter Effect */
.blur-char,
.blur-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  -webkit-filter: blur(8px);

  /* Use longhand to prevent shorthand from overriding inline delays */
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
  animation-fill-mode: forwards;

  -webkit-animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.11, 0, 0.5, 0);
  -webkit-animation-fill-mode: forwards;
}

.hero-headline .blur-word,
.reveal.visible .blur-word {
  animation-name: blurIn;
  -webkit-animation-name: blurIn;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translateY(8px) scale(0.95);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@-webkit-keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    transform: translateY(8px) scale(0.95);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    -webkit-filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

/* Scroll-linked Editorial Reading Animation */
.scroll-word {
  position: relative;
  display: inline-block;
  color: #b0b0b0;
  /* Light gray fallback */

  /* Creates a smooth fill effect that moves from left to right per word */
  background: linear-gradient(to right, #000 calc(var(--word-progress, 0) * 100%), #b0b0b0 calc(var(--word-progress, 0) * 100%));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Global Image Hover Effect */
.global-img-hover {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-img-hover:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}


/* ============================================================
   SERVICES LIST LAYOUT (NEW ROW-BASED DESIGN)
   ============================================================ */
.service-list-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
}

.service-row-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  border: 1px solid var(--border-color);
  padding: 40px;
  background: var(--bg-white);
  align-items: stretch;
  transition: border-color 0.3s ease;
  /* Stretch to allow perfect top/bottom alignment */
}

.service-row-item:hover {
  border-color: var(--navy);
}

.service-row-img-wrap {
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  background: var(--bg-cream);
}

/* Smooth Zoom Hover Effect with Lower Opacity */
.service-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
  display: block;
  opacity: 1;
  /* GPU compositing —â€ eliminates jitter completely */
  transform: scale(1) translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition: transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row-img-wrap:hover .service-img-hover {
  transform: scale(1.05) translateZ(0);
}

.service-row-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  /* Pushes button to bottom, title to top */
  padding: 8px 0;
  /* Tiny bit of padding so text isn't completely flush with absolute mathematical edge */
}

.service-row-title {
  display: inline-block;
  position: relative;
  width: fit-content;
  font-size: clamp(20px, 2.5vw, 26px);
  color: var(--navy);
  margin: 0 0 16px 0;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 4px;
}

.service-row-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}

.reveal.visible .service-row-title::after,
.service-row-item:hover .service-row-title::after {
  transform: scaleX(1);
}

.service-row-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  /* Brought closer to list */
}

.service-row-subtitle {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 16px;
  font-weight: 500;
}

.service-row-list {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 2;
  column-gap: 24px;
  font-size: 15px;
  color: var(--text-body);
}

.service-row-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  margin-bottom: 14px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.service-row-list li::before {
  content: "•";
  color: var(--accent-orange);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .service-row-list {
    column-count: 1;
  }
}

@media (max-width: 991px) {
  .service-row-item {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .flip-img-hover {
    aspect-ratio: 16/9;
  }
}

/* ============================================================
   PRECISA BUTTON COMPONENT (NEW 0 RADIUS)
   ============================================================ */
.precisa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: none;
  border-radius: 0 !important;
  /* Force Sharp Edges */
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  text-decoration: none;
  line-height: 1;
}

.precisa-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.precisa-btn:active {
  transform: scale(0.98);
}

/* Base outline button for secondary actions */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: transparent;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid var(--border-color);
  border-radius: 0 !important;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ---------- SCROLL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.reveal-delay-4 {
  transition-delay: 0.32s;
}

/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: 130px 40px 60px;
    max-width: 100%;
  }

  .hero-right-video {
    height: 450px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-left {
    padding: 110px 24px 50px;
  }

  .hero-left .hero-title {
    font-size: 32px;
  }

  .hero-right-video {
    height: 350px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .precisa-logo-img {
    height: 130px;
    margin: -40px -10px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  /* Shrinks the massive testimonial cards on phones */
  .testimonial-slide {
    padding: 24px;
    /* Drops down from the desktop 40px padding */
  }

  .testimonial-quote {
    font-size: 16px;
    /* Shrinks the text so it doesn't wrap into 20 lines */
    margin-bottom: 20px;
  }

  .quote-icon-svg {
    margin-bottom: 16px;
    /* Tightens the gap under the quote marks */
  }
}

/* Blur-in Typewriter Effect */
.blur-char {
  opacity: 0;
  filter: blur(8px);
  display: inline-block;
  animation: blurInChar 0.4s forwards;
}

@keyframes blurInChar {
  to {
    opacity: 1;
    filter: blur(0);
  }
}

/* Accessibility: Prefers Reduced Motion Fallback */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .blur-char {
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Fix jitter on hover images */
.service-img-hover {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Fix navbar mobile panel */
.nav-mobile-panel {
  max-height: 100vh;
  overflow-y: auto;
}

/* ============================================================
   SMOOTH SWIPER MARQUEE —â€ continuous linear ticker
   ============================================================ */
.swiper-container-wrapper {
  overflow: hidden;
}

/* Force linear easing for seamless continuous scroll */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ---------- TABLET: 1024px and below ---------- */
@media (max-width: 1024px) {

  /* Hero */
  .hero-fullbleed {
    padding: 140px 6% 60px;
  }

  .hero-stats-counter .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* About / Problem Section */
  .text-split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 5%;
  }

  /* Features / Industries 5-col → 3-col */
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* Approach / Process 4-col → 2-col */
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Services 2-col stays */
  .services-grid {
    gap: 20px;
  }

  /* Commitment cards 1-col */
  .commitment-cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Vision / Mission 2-col stays */
}

/* ---------- MOBILE: 768px and below ---------- */
@media (max-width: 768px) {

  /* Global spacing resets */
  .section-padding {
    padding: 60px 0;
  }

  .container {
    padding: 0 18px;
  }

  /* ---- Hero ---- */
  .hero-fullbleed {
    padding: 100px 5% 80px;
    min-height: 100svh;
    justify-content: center;
    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Smaller, tighter headline on mobile */
  .hero-content h1,
  .hero-content .hero-headline {
    font-size: clamp(26px, 7vw, 38px);
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  /* Hide badge on mobile — saves vertical space */
  .hero-badge {
    display: none;
  }

  /* Hide BOTH description paragraphs on mobile — keep hero clean */
  .hero-description-primary,
  .hero-description-secondary {
    display: none !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    width: 100%;
  }

  .hero-actions a {
    max-width: 100%;
    width: 100%;
    min-width: unset;
    text-align: center;
    padding: 14px 18px;
    font-size: 15px;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  /* Stats: 2×2 grid, compact numbers */
  .hero-stats-counter {
    margin-top: 32px;
  }

  .hero-stats-counter .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .hero-stats-counter .stat-number-wrap {
    font-size: clamp(24px, 6vw, 34px);
  }

  .hero-stats-counter .stat-label {
    font-size: 13px;
  }

  /* ---- About / Problem Statement ---- */
  .problem-section {
    padding: 60px 0;
  }

  .text-split-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 18px;
  }

  .statement-text {
    font-size: clamp(24px, 6vw, 32px);
  }

  .scroll-reveal-container {
    padding: 0;
  }

  /* About Us 2-col image+text → stacked on mobile */
  .about-split {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    margin-top: 24px !important;
  }

  .about-split .about-image {
    min-height: 260px !important;
    max-height: 320px;
  }

  .about-split .about-image img {
    min-height: 260px !important;
  }

  .about-split .about-text p {
    font-size: 18px !important;
  }

  /* Hero — hide second description paragraph on mobile */
  .hero-description-secondary {
    display: none !important;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.65;
  }

  /* ---- Features / Industries (5-col → 1-col) ---- */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .feature-icon img {
    height: 90px;
  }

  /* ---- Approach / Process (any-col → 1-col) ---- */
  .process-steps {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .process-step {
    padding: 32px 24px;
  }

  /* ---- Services / Why Choose Precisa ---- */
  .services-section {
    padding: 60px 0;
  }

  /* All services-grid and commitment-cards-grid → 1-col */
  .services-grid,
  .commitment-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  /* ---- Our Commitment / Trust Panel ---- */
  .trust-panel {
    padding: 28px 20px;
  }

  /* ---- Inline display:grid divs with multiple columns → 1-col ---- */
  /* Catches stats grids, why-choose-us grids, and any ad-hoc repeat() grids */
  [style*="grid-template-columns: repeat(2"],
  [style*="grid-template-columns: repeat(3"],
  [style*="grid-template-columns: repeat(4"],
  [style*="grid-template-columns: repeat(5"],
  [style*="grid-template-columns: repeat(6"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns: 2fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ---- Logo Carousel ---- */
  .logo-reel-section {
    padding: 40px 0;
  }

  .swiper-slide img {
    height: 300px;
    max-width: 400px;
  }

  /* ---- CTA Section ---- */
  .cta-section {
    padding: 56px 0;
  }

  .cta-section::after {
    width: 220px;
    height: 220px;
    right: -20px;
    top: -10px;
  }

  .cta-align-wrapper {
    padding: 0 18px;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: clamp(22px, 6vw, 32px);
  }

  .cta-content p {
    font-size: 15px;
    max-width: 100%;
  }

  /* CTA inherits hero-actions mobile styles */
  .cta-content .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .cta-content .hero-actions a {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  /* ---- Section Headers ---- */
  .section-header {
    margin-bottom: 32px;
  }
}

/* ---------- SMALL MOBILE: 480px and below ---------- */
@media (max-width: 480px) {

  .hero-fullbleed {
    padding: 100px 4% 40px;
  }

  .hero-content h1 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-stats-counter .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Industries: 2-col → 1-col on tiny screens */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-icon img {
    height: 80px;
  }

  .process-step h3,
  .process-step h4 {
    font-size: 20px;
  }

  .swiper-slide img {
    height: 200px;
    max-width: 300px;
  }

  .cta-section {
    padding: 48px 0;
  }

  .section-padding {
    padding: 48px 0;
  }
}

/* ============================================================
   GPU HARDWARE ACCELERATED ZOOM & SWIPER TICKER POLISH
   ============================================================ */
.service-img-hover,
.global-img-hover,
.problem-image,
.global-flip-hover,
.feature-icon img,
.swiper-slide img {
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform, opacity;
}

.global-img-hover {
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.global-img-hover:hover {
  transform: translate3d(0, -3px, 0) scale(1.015);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.problem-image {
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.problem-image-wrapper:hover .problem-image {
  transform: translate3d(0, 0, 0) scale(1.04);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
  -webkit-transition-timing-function: linear !important;
}

/* Vision & Mission Icon Hover (like industries) */
.vision-mission-icon-wrap {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.vision-mission-card:hover .vision-mission-icon-wrap {
  opacity: 0.55;
}

@media (max-width: 768px) {
  .vision-mission-card {
    padding: 24px !important;
  }

  .vision-mission-icon-wrap {
    height: 80px !important;
    margin-bottom: 16px !important;
  }

  .vision-mission-icon-wrap img {
    height: 80px !important;
  }

  .section-label {
    font-size: 12px !important;
    letter-spacing: 1px !important;
    white-space: nowrap !important;
  }

  .logo-reel-section {
    padding: 30px 0 !important;
  }

  .swiper-container-wrapper {
    padding: 0 !important;
  }

  .logo-reel-section .swiper-container,
  .logo-reel-section .swiper-slide {
    height: 180px !important;
  }

  .logo-reel-section .swiper-slide img {
    max-height: 120px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    transform: scale(1.4);
  }
}

.commitment-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

@media (max-width: 900px) {
  .text-split-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Swiper Logo Reel Overhaul */
.logo-reel-section .swiper-container,
.logo-reel-section .swiper-slide {
  height: 220px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  cursor: grab;
}

.logo-reel-section .swiper-slide img {
  max-height: 160px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  filter: none !important;
  opacity: 1 !important;
  transform: scale(1.35);
  transition: transform 0.3s ease;
}

.logo-reel-section .swiper-slide img:hover {
  transform: scale(1.5);
}

.swiper-pagination-bullet {
  background: #CBD5E1 !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #104E90 !important;
  width: 24px !important;
  border-radius: 5px !important;
}

.swiper-pagination-lock {
  display: block !important;
}

.logo-reel-section .swiper-pagination {
  position: relative !important;
  margin-top: 20px !important;
  bottom: 0 !important;
}

/* ===== FAQ Accordion ===== */
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: 0;
  margin-bottom: 16px;
  background: transparent;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  gap: 16px;
  background: transparent;
  border: none;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  color: #000;
  font-weight: 600;
  width: 100%;
}

.faq-question:focus {
  outline: none;
}

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.faq-item.active .faq-icon {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* ---------- INSIGHTS BLOG GRID ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 0;
}

.insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-img-wrapper img {
  transform: scale(1.05);
}

.insight-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 8px 12px;
  text-align: center;
  border-radius: 0;
  backdrop-filter: blur(4px);
  min-width: 50px;
}

.insight-date-day {
  font-size: 22px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.insight-date-month {
  font-size: 13px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

.insight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.insight-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0;
  margin-top: 16px;
  margin-bottom: 12px;
}

.insight-title {
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.insight-summary {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.insight-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.insight-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F3F4F6;
  color: var(--navy);
  border-radius: 0;
  transition: all 0.3s ease;
}

.insight-card:hover .insight-arrow-btn {
  background: #104E90;
  color: #fff;
}

/* FLOATING WIDGET */
.floating-widget-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}
.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.whatsapp-btn {
  background-color: #25D366;
}
.whatsapp-btn:hover {
  background-color: #20ba59;
  transform: scale(1.05);
}
.email-btn {
  background-color: var(--navy);
}
.email-btn:hover {
  background-color: #0b3564;
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent-orange);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  font-weight: 300;
  display: flex;
  align-items: center;
}

.faq-item.active .faq-icon {
  transform: rotate(-180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 24px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* ---------- INSIGHTS BLOG GRID ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.insight-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: transparent;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
}

.insight-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 0;
}

.insight-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-img-wrapper img {
  transform: scale(1.05);
}

.insight-date-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  padding: 8px 12px;
  text-align: center;
  border-radius: 0;
  backdrop-filter: blur(4px);
  min-width: 50px;
}

.insight-date-day {
  font-size: 22px;
  font-weight: 700;
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.insight-date-month {
  font-size: 13px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}

.insight-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.insight-tag {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 0;
  margin-top: 16px;
  margin-bottom: 12px;
}

.insight-title {
  font-size: 22px;
  color: var(--navy);
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.insight-summary {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.insight-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}

.insight-arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #F3F4F6;
  color: var(--navy);
  border-radius: 0;
  transition: all 0.3s ease;
}

.insight-card:hover .insight-arrow-btn {
  background: #104E90;
  color: #fff;
}

/* FLOATING WIDGET */
.floating-widget-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}
.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
}
.whatsapp-btn {
  background-color: #25D366;
}
.whatsapp-btn:hover {
  background-color: #20ba59;
  transform: scale(1.05);
}
.email-btn {
  background-color: var(--navy);
}
.email-btn:hover {
  background-color: #0b3564;
  transform: scale(1.05);
}

/* ADVANTAGE CARD & HOVER EFFECT CARD UTILITY */
.advantage-card,
.hover-effect-card {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.advantage-card:hover,
.hover-effect-card:hover {
  background: var(--navy) !important;
  background-color: var(--navy) !important;
  border-color: var(--navy) !important;
  color: #fff !important;
}
.advantage-card:hover *,
.hover-effect-card:hover * {
  color: #fff !important;
}
.advantage-card:hover svg,
.advantage-card:hover svg path,
.hover-effect-card:hover svg,
.hover-effect-card:hover svg path {
  stroke: #fff !important;
}

/* RESPONSIVE SINGLE-LINE SECTION TITLES */
.section-title {
  white-space: nowrap;
  font-size: clamp(16px, 3.2vw, 36px) !important;
  line-height: 1.3;
  text-align: center;
}
@media (max-width: 768px) {
  .section-title {
    font-size: clamp(13px, 4vw, 24px) !important;
  }
}
@media (max-width: 480px) {

/* Big numbering class for our-approach.html */
.approach-number {
  font-size: 64px;
  font-weight: 800;
  color: var(--bg-cream);
  -webkit-text-stroke: 1px var(--border-color);
  position: absolute;
  right: 16px;
  bottom: -10px;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.advantage-card:hover .approach-number {
  color: #fff;
  -webkit-text-stroke: 1px transparent;
  opacity: 0.2;
}

/* --- CUSTOM FIXES --- */

/* Fix Hamburger menu icon visibility before scroll */
.precisa-shell:not(.scrolled) .precisa-mobile-toggle {
  color: #fff !important;
  background: rgba(0, 0, 0, 0.1);
}
.precisa-shell.scrolled .precisa-mobile-toggle {
  color: var(--navy) !important;
  background: transparent;
}

/* Fix Ticker merging with CTA on mobile */
@media (max-width: 600px) {
  .hero-tagline-wrap {
    height: 3em !important;
  }
  .hero-subtext {
    margin-bottom: 48px !important;
  }
}

/* Fix WhatsApp Widget accessibility on mobile */
.floating-widget-wrap {
  z-index: 999999 !important;
}
@media (max-width: 768px) {
  .floating-widget-wrap {
    bottom: 24px !important;
    right: 24px !important;
  }
}

/* Disable scroll reveal animations on mobile for reliability */
@media (max-width: 768px) {
  .reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3, .reveal-delay-4, .reveal-delay-5, .reveal-delay-6 {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
  }
}

/* Universal visible Hamburger Menu styling for all backgrounds */
.precisa-mobile-toggle {
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: 4px !important;
}

/* RESTORE DELETED MEDIA QUERY FOR .section-title */
@media (max-width: 480px) {
  .section-title {
    font-size: clamp(10px, 4.8vw, 18px) !important;
  }
}

/* RESTORE & UPDATE GLOBAL MOBILE RESPONSIVENESS OVERRIDES */
@media (max-width: 768px) {
  .services-grid,
  .features-grid,
  .process-steps,
  div[style*="grid-template-columns: repeat(6, 1fr)"],
  div[style*="grid-template-columns: repeat(5, 1fr)"],
  div[style*="grid-template-columns: repeat(4, 1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns: repeat(2, 1fr)"],
  div[style*="grid-template-columns: 1fr 1.2fr"],
  div[style*="grid-template-columns: repeat(auto-fill"] {
    grid-template-columns: 1fr !important;
  }
  div[style*="grid-column: span"] {
    grid-column: span 1 !important;
  }
}

