/* ================================================================
   PREMIUM DESIGN SYSTEM — TechAuditPros
   Typography: Plus Jakarta Sans (headings) + Inter (body)
   Palette: Deep Navy · Indigo · Teal
   ================================================================ */

:root {
  /* Core Palette */
  --navy:        #080d1a;
  --navy-mid:    #0f172a;
  --navy-light:  #1e293b;
  --indigo:      #6366f1;
  --indigo-dark: #4f46e5;
  --teal:        #2dd4bf;
  --teal-dark:   #0d9488;
  --white:       #ffffff;
  --off-white:   #f8fafc;
  --slate-100:   #f1f5f9;
  --slate-200:   #e2e8f0;
  --slate-400:   #94a3b8;
  --slate-600:   #475569;
  --slate-800:   #1e293b;
  --text-body:   #374151;

  /* Typography */
  --font-head: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing scale */
  --section-pad: 6rem 0;
  --section-pad-sm: 4rem 0;

  /* Radii */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 48px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 32px rgba(99,102,241,0.25);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Global Body Override ---- */
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: #ffffff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   PREMIUM TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--navy-mid);
}

/* Section Label Tag */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(99,102,241,0.08);
  border: 1px solid rgba(99,102,241,0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 1rem;
}

/* Section Header Styles */
.section-header-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}
.section-header-center h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-mid);
  margin-bottom: 1rem;
}
.section-header-center p {
  font-size: 1.1rem;
  color: var(--slate-600);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.section-header-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy-mid);
  margin-bottom: 1.25rem;
}
.section-header-left p {
  font-size: 1.05rem;
  color: var(--slate-600);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Section padding */
.section-white {
  padding: var(--section-pad);
}

/* ================================================================
   PREMIUM BUTTONS
   ================================================================ */
.primary-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  border: none;
  box-shadow: 0 4px 16px rgba(99,102,241,0.35), var(--shadow-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.primary-btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(99,102,241,0.45);
  background: linear-gradient(135deg, #7c3aed 0%, var(--indigo) 100%);
}

.secondary-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy-mid) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  border: 1.5px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.secondary-btn-large:hover {
  border-color: var(--indigo);
  color: var(--indigo) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Ghost version (on dark backgrounds) */
.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white) !important;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: var(--radius-md);
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease);
  cursor: pointer;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ================================================================
   TRUST BAR
   ================================================================ */
.trust-bar-white {
  background: var(--navy-mid);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-white p {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin-bottom: 16px;
}
.logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.logos-grid img {
  height: 22px;
  width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
}
.logos-grid img:hover {
  opacity: 0.85;
}

/* ================================================================
   SERVICE CARDS (3-column clean)
   ================================================================ */
.service-cards-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.service-cards-simple .service-card-clean {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-cards-simple .service-card-clean::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--indigo), var(--teal));
  opacity: 0;
  transition: opacity 0.3s;
}
.service-cards-simple .service-card-clean:hover {
  border-color: rgba(99,102,241,0.2);
  box-shadow: 0 8px 40px rgba(99,102,241,0.12);
  transform: translateY(-4px);
}
.service-cards-simple .service-card-clean:hover::before {
  opacity: 1;
}
.icon-box {
  width: 52px;
  height: 52px;
  background: rgba(99,102,241,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.service-cards-simple .service-card-clean h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.service-cards-simple .service-card-clean p {
  font-size: 0.96rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   STATS SECTION
   ================================================================ */
.stats-section-clean {
  background: var(--navy);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.stats-section-clean::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
  pointer-events: none;
}
.stats-section-clean::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45,212,191,0.10) 0%, transparent 70%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}
.stats-section-clean .section-header-center h2 {
  color: var(--white);
}
.stats-grid-clean {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stats-item-clean {
  text-align: center;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.stats-item-clean:last-child { border-right: none; }
.stats-item-clean:hover {
  background: rgba(255,255,255,0.03);
}
.stats-item-clean h3 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--white) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.6rem;
}
.stats-item-clean p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 180px;
  margin: 0 auto;
}

/* ================================================================
   HOW IT WORKS — PROCESS STEPS
   ================================================================ */
.process-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 1rem;
}
.process-step-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.process-step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,0.15);
  transform: translateY(-2px);
}
.step-number {
  font-family: var(--font-head);
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(45,212,191,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 64px;
  padding-top: 4px;
}
.step-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-mid);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.step-info-card p {
  font-size: 0.94rem;
  color: var(--slate-600);
  line-height: 1.75;
  margin: 0;
}

/* ================================================================
   FOUNDER SECTION
   ================================================================ */
.founder-section-clean {
  background: var(--off-white);
}
.founder-grid-clean {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 5rem;
  align-items: center;
}
.founder-image-clean {
  position: relative;
}
.founder-image-clean::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  z-index: 0;
  opacity: 0.2;
}
.founder-image-clean img {
  width: 100%;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}
.founder-content-clean p {
  font-size: 1rem;
  color: var(--slate-600);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}
.founder-content-clean em {
  font-style: italic;
  color: var(--indigo);
  font-weight: 600;
}

/* ================================================================
   WHAT TO EXPECT (replaced testimonials)
   ================================================================ */
.testimonials-grid-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card-clean {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.testimonial-card-clean:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(99,102,241,0.15);
  transform: translateY(-3px);
}
.testimonial-stars {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.testimonial-card-clean p {
  font-size: 1rem;
  color: var(--navy-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate-400);
  letter-spacing: 0.02em;
}

/* ================================================================
   FREE AUDIT / CHECKLIST
   ================================================================ */
.checklist-grid-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.checklist-clean {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checklist-clean li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--slate-600);
  line-height: 1.6;
}
.checkmark-clean {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--indigo), var(--teal));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-accordion-clean {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item-clean {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}
.faq-item-clean:hover {
  box-shadow: var(--shadow-md);
}
.faq-item-clean summary {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-mid);
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-item-clean summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s;
}
.faq-item-clean[open] summary::after {
  transform: rotate(45deg);
}
.faq-item-clean p {
  font-size: 0.96rem;
  color: var(--slate-600);
  line-height: 1.8;
  padding: 0 1.6rem 1.4rem 1.6rem;
  margin: 0;
}
.faq-item-clean summary::-webkit-details-marker { display: none; }

/* ================================================================
   FINAL CTA SECTION
   ================================================================ */
.final-cta-clean {
  background: linear-gradient(135deg, var(--navy) 0%, #0f0c2e 100%);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-clean::before {
  content: '';
  position: absolute;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(99,102,241,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.final-cta-clean .container {
  position: relative;
  z-index: 1;
}
.final-cta-clean h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.final-cta-clean p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 540px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.75;
}

/* ================================================================
   BLOG CARDS
   ================================================================ */
#insights h2 {
  font-family: var(--font-head) !important;
  font-size: clamp(2rem, 3vw, 2.6rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  color: var(--navy-mid) !important;
}
#insights h3 {
  font-family: var(--font-head) !important;
  font-weight: 700 !important;
  letter-spacing: -0.02em !important;
}

/* ================================================================
   FOOTER PREMIUM
   ================================================================ */
.site-footer {
  background: var(--navy) !important;
  color: rgba(255,255,255,0.7) !important;
}
.site-footer h3 {
  font-family: var(--font-head) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  letter-spacing: 0.02em !important;
  margin-bottom: 1.25rem !important;
}
.footer-link {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.88rem !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
  line-height: 2 !important;
}
.footer-link:hover {
  color: var(--teal) !important;
}
.site-footer p {
  color: rgba(255,255,255,0.55) !important;
  font-size: 0.88rem !important;
  line-height: 1.8 !important;
}

/* ================================================================
   SCROLL REVEAL ANIMATION
   ================================================================ */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.service-card-clean,
.process-step-card,
.testimonial-card-clean,
.faq-item-clean {
  animation: slideUp 0.6s var(--ease) both;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .service-cards-simple { grid-template-columns: 1fr; }
  .stats-grid-clean      { grid-template-columns: repeat(2, 1fr); }
  .process-grid-clean    { grid-template-columns: 1fr; }
  .founder-grid-clean    { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid-clean { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stats-grid-clean      { grid-template-columns: 1fr 1fr; }
  .stats-item-clean      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2rem 1rem; }
  .checklist-grid-clean  { grid-template-columns: 1fr; gap: 0; }
  .section-white         { padding: var(--section-pad-sm); }
}

/* ================================================================
   Reset and Base Styles
   ================================================================ */

.tap-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #080c18;
}
.tap-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}
/* Dark gradient overlay — left heavier for text readability */
.tap-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(5, 10, 26, 0.80) 0%,
        rgba(5, 10, 26, 0.50) 55%,
        rgba(5, 10, 26, 0.25) 100%
    );
    z-index: 1;
    pointer-events: none;
}
/* ---- Cinematic text lines (centered, lower third) ---- */
.tap-cinematic-text {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    width: 90%;
    max-width: 820px;
    animation: tapFadeUp 1.4s ease forwards;
    pointer-events: none;
}
@keyframes tapFadeUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.tap-cinematic-top {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    line-height: 1.3;
    margin: 0 0 14px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.tap-cinematic-divider {
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.55);
    margin: 0 auto 14px auto;
}
.tap-cinematic-bottom {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: clamp(0.95rem, 1.8vw, 1.4rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    line-height: 1.5;
    margin: 0;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
/* ---- Main hero content (top-left) ---- */
.tap-hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: 0 2rem;
    margin-top: -8vh;
    align-self: center;
    margin-right: auto;
    margin-left: 6vw;
}
.tap-hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.tap-hero-highlight {
    background: linear-gradient(90deg, #6ee7b7, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.tap-hero-sub {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 560px;
}
.tap-hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.tap-hero-flags {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
}
.tap-hero-flags span:first-child {
    margin-right: 0.3rem;
}
.tap-hero-flags span:not(:first-child) {
    font-size: 1.4rem;
}
/* Responsive */
@media (max-width: 768px) {
    .tap-hero-content {
        margin-left: 0;
        padding: 0 1.2rem;
        text-align: center;
    }
    .tap-hero-btns {
        justify-content: center;
    }
    .tap-hero-flags {
        justify-content: center;
    }
    .tap-cinematic-text {
        bottom: 8%;
    }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: #ffffff;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Chameleon Color System */
:root {
    --chameleon-general: #0F172A;
    --chameleon-healthcare: #14B8A6;
    --chameleon-ayurveda: #15803D;
    --chameleon-realestate: #9F1239;
    --chameleon-logistics: #F97316;
    --chameleon-fashion: #D97706;
    --chameleon-makeup: #EC4899;
    --chameleon-tourism: #0EA5E9;
    --chameleon-artists: #18181B;
    --chameleon-techaudit: #6366F1;
    --current-chameleon: var(--chameleon-general);
}

/* Industry-Specific Chameleon Colors */
body.industry-healthcare { --current-chameleon: var(--chameleon-healthcare); }
body.industry-ayurveda { --current-chameleon: var(--chameleon-ayurveda); }
body.industry-realestate { --current-chameleon: var(--chameleon-realestate); }
body.industry-logistics { --current-chameleon: var(--chameleon-logistics); }
body.industry-fashion { --current-chameleon: var(--chameleon-fashion); }
body.industry-makeup { --current-chameleon: var(--chameleon-makeup); }
body.industry-tourism { --current-chameleon: var(--chameleon-tourism); }
body.industry-artists { --current-chameleon: var(--chameleon-artists); }
body.industry-techaudit { --current-chameleon: var(--chameleon-techaudit); }

/* Container */
.container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar - SEO Strip */
.top-bar {
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #64748b;
    display: none; /* Hidden on mobile by default */
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.verified-text {
    font-weight: 500;
}

.local-phone {
    color: #0ration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.local-phone:hover {
    color: #047857;
}

/* Main Header Bar */
.main-header-bar {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 60px; /* Mobile first - 60px */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Header Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: 1.125rem;
    transition: color 0.3s;
}

.header-logo:hover {
    color: var(--current-chameleon);
}

.header-logo img {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Inter', sans-serif;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.desktop-nav a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--current-chameleon);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--current-chameleon);
    transition: width 0.3s;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.book-audit-btn {
    background: var(--current-chameleon);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s;
    border: 1px solid var(--current-chameleon);
}

.book-audit-btn:hover {
    background: white;
    color: var(--current-chameleon);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.call-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.25rem;
    transition: all 0.3s;
    border: 2px solid #10b981;
}

.call-action:hover {
    background: white;
    color: #10b981;
    transform: scale(1.05);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    border-radius: 1px;
    transition: all 0.3s;
}

/* Industry Slider */
.industry-slider {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow: hidden;
}

/* Location Slider */
.location-slider {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 16px 0;
    overflow: hidden;
}

.location-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.location-pills::-webkit-scrollbar {
    display: none;
}

.slider-container {
    position: relative;
}

.industry-pills {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
}

.industry-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #f3f4f6;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
    scroll-snap-align: start;
    flex-shrink: 0;
    white-space: nowrap;
}

.pill:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.pill.active {
    background: var(--current-chameleon);
    color: white;
    border-color: var(--current-chameleon);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pill-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-drawer.active {
    opacity: 1;
    visibility: visible;
}

.drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s;
}

.mobile-drawer.active .drawer-content {
    transform: translateX(0);
}

.drawer-header {
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: flex-end;
}

.close-drawer {
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s;
}

.close-drawer:hover {
    background: #f3f4f6;
    color: #374151;
}

.drawer-nav {
    padding: 20px;
    flex: 1;
}

.drawer-nav a {
    display: block;
    padding: 16px 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    border-bottom: 1px solid #f3f4f6;
    transition: all 0.3s;
}

.drawer-nav a:hover {
    color: var(--current-chameleon);
    padding-left: 12px;
}

.drawer-cta {
    background: var(--current-chameleon) !important;
    color: white !important;
    padding: 16px !important;
    border-radius: 8px !important;
    text-align: center !important;
    margin-top: 20px !important;
    border: none !important;
    font-weight: 600 !important;
}

.drawer-footer {
    padding: 20px;
    border-top: 1px solid #e5e7eb;
    background: #f8fafc;
}

.local-office h4 {
    color: #1f2937;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.local-office p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.local-office p:last-child {
    margin-bottom: 0;
}

/* Dynamic Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    color: white;
}

#industryPlayer {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.background-image-mobile {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    display: none;
}

.background-image-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding: 120px 20px 40px; /* Account for header */
}

.hero-left {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    background: var(--current-chameleon);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s;
    border: 2px solid var(--current-chameleon);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: pulse-cta 3s infinite;
}

.cta-btn:hover {
    background: white;
    color: var(--current-chameleon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Ayurveda Spa Premium Glow */
body.industry-ayurveda .cta-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(217, 119, 6, 0.5);
}

body.industry-ayurveda .cta-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(217, 119, 6, 0.7);
}

/* Tech Audit Cyber Glow */
body.industry-techaudit .hero-overlay {
    background: rgba(0, 0, 0, 0.6);
}

body.industry-techaudit .cta-btn {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 20px rgba(99, 102, 241, 0.5);
}

body.industry-techaudit .cta-btn:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.7);
}

/* Full Screen Sections */
.full-screen-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
}

.container.full-height-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Trust Bar */
.trust-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    position: relative;
    z-index: 1;
}

.trust-track {
    overflow: hidden;
    position: relative;
}

.trust-scroll {
    display: flex;
    gap: 60px;
    animation: scroll 45s linear infinite;
}

.trust-icon {
    flex-shrink: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
    width: auto;
    height: 80px;
}

.trust-icon:hover {
    opacity: 1;
}

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

/* Methodology Section */
.methodology {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
}

.methodology .mono {
    color: var(--current-chameleon);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.methodology h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, white 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Bento Grid */
.bento-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.bento-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--current-chameleon);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.1);
}

.phase-tag {
    background: var(--current-chameleon);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.bento-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.bento-card .text-muted {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Timeline Section */
.timeline-section {
    background: white;
    color: #1f2937;
}

.timeline-section h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-section .text-muted {
    font-size: 1.25rem;
    color: #6b7280;
}

.timeline-scroll-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline {
    display: flex;
    gap: 4rem;
    min-width: max-content;
    padding: 2rem 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 300px;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--current-chameleon);
    border-radius: 50%;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--current-chameleon);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.1; }
    100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Kerala Spotlight */
.kerala-spotlight {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.kerala-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 
}

.spotlight-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.kerala-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Case Study */
.case-study {
    background: #f8fafc;
}

.case-study-layout-intl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.case-video-intl {
    position: relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 20px;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-content-intl {
    padding: 2rem 0;
}

.case-label {
    background: var(--current-chameleon);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 2rem;
}

.case-content-intl h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #1f2937;
}

.audit-intro {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-content-intl h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.case-result-box {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: center;
}

.case-result {
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Industries */
.industries {
    background: white;
}

.industry-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.video-bg-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.industry-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.industry-card:hover .industry-image {
    transform: scale(1.05);
}

.static-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}

.industry-content {
    padding: 2rem;
}

.industry-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.industry-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Locations */
.locations {
    background: #f8fafc;
}

.loc-grid-wide {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.loc-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.loc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.loc-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.loc-card .mono {
    color: var(--current-chameleon);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.loc-card img {
    width: 100%;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.loc-card .text-muted {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.loc-testimonial {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--current-chameleon);
    font-style: italic;
    color: #4b5563;
    margin-bottom: 2rem;
}

.local-links-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.local-tag {
    background: #e5e7eb;
    color: #4b5563;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.loc-link {
    color: var(--current-chameleon);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.loc-link:hover {
    color: #1f2937;
}

/* Footer */
footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--current-chameleon);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #cbd5e1;
}

.footer-bottom a {
    color: #cbd5e1;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #1f2937;
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1f2937;
}

.modal-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Mobile Navigation */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: #0f172a;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease-in-out;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    z-index: 999;
    padding: 2rem;
}

.nav-links.active {
    right: 0;
}

.nav-links a {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--current-chameleon);
}

/* Responsive Design */
@media (max-width: 1023px) {
    .top-bar {
        display: block;
    }

    .main-header-bar {
        height: 60px;
    }

    .header-logo {
        font-size: 1.125rem;
    }

    .desktop-nav {
        display: none;
    }

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

    .hero-left h1 {
        font-size: 2.5rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .bento-grid-wide {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .timeline {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        text-align: left;
    }

    .timeline-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        min-width: auto;
    }

    .timeline-dot {
        margin-bottom: 0;
        margin-right: 2rem;
        flex-shrink: 0;
    }

    .case-study-layout-intl {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .industry-grid-wide {
        grid-template-columns: 1fr;
    }

    .loc-grid-wide {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .top-bar {
        display: block;
    }

    .main-header-bar {
        height: 80px;
    }

    .header-logo {
        font-size: 1.25rem;
    }

    .hero-left h1 {
        font-size: 3.5rem;
    }

    .hero-left p {
        font-size: 1.25rem;
    }

    .cta-btn {
        font-size: 1.125rem;
        padding: 16px 32px;
    }

    .bento-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        justify-content: center;
    }

    .case-study-layout-intl {
        grid-template-columns: 1fr 1fr;
    }

    .industry-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }

    .loc-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .bento-grid-wide {
        grid-template-columns: repeat(4, 1fr);
    }

    .industry-grid-wide {
        grid-template-columns: repeat(3, 1fr);
    }

    .loc-grid-wide {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Founder Welcome Section */
.founder-welcome {
    background: #ffffff;
    padding: 80px 0;
    color: #1f2937;
    border-bottom: 1px solid #e5e7eb;
}

.founder-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.founder-header {
    text-align: center;
    margin-bottom: 40px;
}

.founder-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.founder-header .subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 500;
}

.founder-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.founder-content p {
    margin-bottom: 24px;
}

.founder-content strong {
    color: #111827;
    font-weight: 600;
}

.founder-signature {
    margin-top: 40px;
    border-top: 1px solid #e5e7eb;
    padding-top: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.founder-avatar {
    width: 80px;
    height: 80px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--current-chameleon);
    border: 2px solid #e5e7eb;
}

.founder-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.founder-info p {
    color: #6b7280;
    font-size: 0.95rem;
    margin: 0;
}

.founder-cta {
    text-align: center;
    margin-top: 40px;
}

/* Desktop Enhancements for Founder Section */
@media (min-width: 1024px) {
    .founder-welcome {
        padding: 100px 0;
    }
    .founder-content {
        font-size: 1.25rem; /* Larger text for desktop readability */
        max-width: 900px;
    }
}

/* Certificates Section */
.certificates-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 20px;
    color: white;
}

.certificates-header {
    text-align: center;
    margin-bottom: 60px;
}

.certificates-header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.certificates-header p {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.certificate-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.certificate-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.verify-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.verify-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 16px;
    }
    
    .certificates-header h2 {
        font-size: 2rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .certificate-card {
        padding: 24px;
    }
    
    .certificate-image {
        max-width: 100%;
    }
}

/* /* ==================================================
   NEW HOMEPAGE REDESIGN (Minimalist & Premium Theme)
   ================================================== */
body.home-page-redesign {
    background: #ffffff;
    color: #0f172a;
    font-family: 'Inter', sans-serif;
}

.hero-section-white {
    padding: 140px 0 100px;
    background: #ffffff;
    background-image: radial-gradient(#e2e8f0 1.5px, transparent 1.5px);
    background-size: 40px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f5f9;
}

.hero-container-white {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-white {
    text-align: left;
}

.hero-content-white h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.75rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-content-white .text-highlight {
    color: var(--current-chameleon, #6366F1);
    background: linear-gradient(120deg, rgba(99, 102, 241, 0.06) 0%, rgba(99, 102, 241, 0.06) 100%);
    background-repeat: no-repeat;
    background-size: 100% 30%;
    background-position: 0 85%;
}

.hero-content-white p {
    font-size: 1.125rem;
    color: #475569;
    max-width: 650px;
    margin: 0 0 40px;
    line-height: 1.75;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    margin-bottom: 40px;
}

.primary-btn-large {
    background: #0f172a;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid #0f172a;
}

.primary-btn-large:hover {
    background: var(--current-chameleon, #6366F1);
    border-color: var(--current-chameleon, #6366F1);
    transform: translateY(-2px);
}

.secondary-btn-large {
    background: white;
    color: #0f172a;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.secondary-btn-large:hover {
    border-color: #0f172a;
    background: #f8fafc;
}

.hero-trust {
    font-size: 0.875rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
}

.flag-row {
    font-size: 1.5rem;
    display: flex;
    gap: 8px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(226, 232, 240, 0.8);
    backdrop-filter: blur(8px);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.06);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}

.trust-bar-white {
    background: #f8fafc;
    padding: 30px 0;
    text-align: center;
    border-bottom: 1px solid #f1f5f9;
}

.trust-bar-white p {
    font-size: 0.75rem;
    color: #94a3b8;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.075em;
    font-weight: 700;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

.logos-grid img {
    height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 0.85;
}

.section-white {
    padding: 100px 0;
    background-color: #ffffff;
    color: #0f172a;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.6;
}

.services-grid-clean, .process-grid-clean, .testimonials-grid-clean, .locations-grid-clean {
    display: grid;
    gap: 30px;
}

.services-grid-clean { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.process-grid-clean { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.testimonials-grid-clean { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.locations-grid-clean { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.service-card-clean, .process-step-card, .location-card-clean {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.01);
}

.service-card-clean:hover, .process-step-card:hover, .location-card-clean:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.04);
    border-color: #cbd5e1;
}

.icon-box {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card-clean h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card-clean p, .process-step-card p {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-number {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.process-step-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.founder-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 60px;
    align-items: center;
}

.founder-image-clean {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image-clean::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: calc(50% - 210px);
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#3b82f6 20%, transparent 20%);
    background-size: 10px 10px;
    opacity: 0.25;
    z-index: 0;
}

.founder-image-clean::after {
    content: '';
    position: absolute;
    top: -20px;
    right: calc(50% - 220px);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, rgba(59,130,246,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.founder-image-clean img {
    width: 440px;
    height: auto;
    border-radius: 20px;
    border: 8px solid #ffffff;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3);
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-image-clean img:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(15, 23, 42, 0.18);
}

.founder-content-clean .section-header-left h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: #0f172a;
}

.founder-content-clean .section-header-left p {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .founder-grid-clean {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .founder-image-clean img {
        width: 380px;
        max-width: 95%;
        height: auto;
        border-radius: 16px;
        border: 6px solid #ffffff;
    }
    .founder-image-clean::before {
        left: calc(50% - 170px);
        width: 60px;
        height: 60px;
    }
    .founder-image-clean::after {
        right: calc(50% - 180px);
        width: 90px;
        height: 90px;
    }
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.testimonial-card-clean {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 24px;
    border-left: 2px solid #e2e8f0;
    border-radius: 0;
}

.testimonial-card-clean p {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    color: #0f172a;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.checklist-grid-clean {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.checklist-clean {
    list-style: none;
}

.checklist-clean li {
    font-size: 1.05rem;
    color: #334155;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 12px;
}

.checklist-clean li:last-child {
    border-bottom: none;
}

.checkmark-clean {
    color: var(--current-chameleon, #6366F1);
    font-weight: 800;
    margin-right: 12px;
}

@media (max-width: 768px) {
    .checklist-grid-clean { grid-template-columns: 1fr; }
}

.faq-accordion-clean {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-clean {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.01);
}

.faq-item-clean summary {
    padding: 24px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item-clean summary::-webkit-details-marker { display: none; }

.faq-item-clean p {
    padding: 0 24px 24px;
    color: #475569;
    line-height: 1.6;
}

.location-card-clean {
    text-align: center;
    text-decoration: none;
    display: block;
}

.loc-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
}

.location-card-clean h3 {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.location-card-clean p {
    color: #64748b;
    font-size: 0.9rem;
}

.final-cta-clean {
    background: #0f172a;
    color: #ffffff;
    padding: 120px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta-clean h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.final-cta-clean p {
    font-size: 1.25rem;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* --- FOOTER --- */
.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.footer-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.footer-column h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-link {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
    padding-top: 30px;
    color: #64748b;
    font-size: 0.875rem;
}

/* --- SERVICE CATEGORIES DASHBOARD --- */
.category-dashboard {
    padding: 20px 0 80px;
    background: #ffffff;
}

.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.dashboard-tab-btn {
    background: transparent;
    color: #64748b;
    padding: 10px 24px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-tab-btn:hover {
    color: #0f172a;
    background: #f1f5f9;
}

.dashboard-tab-btn.active {
    background: #0f172a;
    color: white;
    border-color: #0f172a;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.dashboard-panel {
    display: none;
    opacity: 0;
}

.dashboard-panel.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    opacity: 1;
    animation: dashboardFadeIn 0.4s ease forwards;
}

@keyframes dashboardFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- HEADER MEGA DROPDOWN --- */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    transition: color 0.3s;
}

.dropdown-trigger .arrow {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-trigger .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    display: flex;
    gap: 24px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2000;
    min-width: 980px;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-silo {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dropdown-silo h4 {
    font-size: 0.75rem;
    font-weight: 800;
    color: #111827;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.075em;
    border-bottom: 2px solid #f3f4f6;
    padding-bottom: 6px;
}

.dropdown-silo a {
    font-size: 0.875rem;
    color: #4b5563;
    text-decoration: none;
    padding: 4px 0;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
    display: block;
    font-weight: 400;
}

.dropdown-silo a::after {
    display: none !important;
}

.dropdown-silo a:hover {
    color: var(--current-chameleon, #6366F1);
    padding-left: 4px;
}

@media (max-width: 1023px) {
    .dropdown-menu {
        display: none !important;
    }
}

/* ==================================================
   HOMEPAGE DESIGN & RESPONSIVENESS UPGRADES (ADDED)
   ================================================== */

/* Hero Section Responsiveness (Fix Mobile Leak) */
@media (max-width: 992px) {
    .hero-section-white {
        padding: 100px 0 60px;
    }
    .hero-container-white {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .hero-content-white {
        text-align: center;
    }
    .hero-content-white h1 {
        font-size: clamp(2rem, 6vw, 3rem);
        letter-spacing: -0.02em;
    }
    .hero-content-white p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    .hero-btns {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    .hero-trust {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }
    .flag-row {
        justify-content: center;
    }
    .hero-image-wrapper {
        max-width: 550px;
        margin: 0 auto;
    }
}

/* Header Adjustments on Mobile to Avoid Cramping */
@media (max-width: 768px) {
    .header-actions {
        display: none !important;
    }
    .main-header-bar .book-audit-btn {
        display: none !important;
    }
}

/* Testimonial Cards Premium Styling */
.testimonials-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card-clean {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03) !important;
    padding: 40px !important;
    border-radius: 16px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    border-left: 1px solid #e2e8f0 !important; /* Overriding plain style */
}
.testimonial-card-clean::before {
    content: '“';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: #e2e8f0;
    font-family: 'Outfit', serif;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}
.testimonial-card-clean:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: var(--current-chameleon, #6366F1) !important;
}
.testimonial-stars {
    color: #fbbf24;
    font-size: 1.125rem;
    margin-bottom: 16px;
}
.testimonial-card-clean p {
    font-size: 1.05rem !important;
    line-height: 1.75 !important;
    color: #334155 !important;
    margin-bottom: 24px !important;
    font-style: italic !important;
}
.testimonial-author {
    font-weight: 700 !important;
    color: #0f172a !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}



