/* ---------- Theme / Tokens ---------- */
:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --ink: #0b1220;
  --muted: #737373;

  --primary: #05AFF2;
  --primary-cta: #0ea5e9;
  --primary-cta-hover: #0b9bdc;

  --secondary: #f1f5f9;
  --secondary-hover: #e8edf3;

  --border: rgba(0, 0, 0, 0.12);
  --ring: #0ea5e9;
  --radius: 12px;

  --hero-accent: #89e7ff;

  /* Extra tokens for the aurora */
  --aurora-blue: #3b82f6;
  /* Tailwind blue-500 approx */
  --aurora-indigo: #a5b4fc;
  /* indigo-300 */
  --aurora-blue-300: #93c5fd;
  --aurora-violet: #ddd6fe;
  /* violet-200 */
  --aurora-blue-400: #60a5fa;

  --white: #ffffff;
  --black: #000000;
  --transparent: rgba(0, 0, 0, 0);

  --insightagent-white: #ffffff;
  --insightagent-black: #000000;
  --insightagent-transparent: rgba(0, 0, 0, 0);

  /* These replicate Tailwind’s aurora values from the config */
  --insightagent-blue-500: #3b82f6;
  --insightagent-indigo-300: #a5b4fc;
  --insightagent-blue-300: #93c5fd;
  --insightagent-violet-200: #ddd6fe;
  --insightagent-blue-400: #60a5fa;
}

/* ---------- Body ---------- */
* {
  box-sizing: border-box;
}
a{
  text-decoration: none;
}

html,
body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  background: #f2f2f2;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: clamp(12px, 1.5vw, 16px);
}

h1 {
  font-size: clamp(32px, 6vw, 64px);
  margin: 0;
}

h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 0;
}

h3 {
  font-size: clamp(22px, 2.2vw, 24px);
  margin: 0;
}

h4 {
  font-size: clamp(16px, 1.2vw, 20px);
  margin: 0;
}

p {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
  margin: 0;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 12px;
}
.c-contact-item a {
    color: #737373;
}
.insightagent-cta-row a#book-demo, a#learn-more {
    display: inline-block;
    font-size: clamp(12px, 1.4vw, 14px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
}
/* ---------- Navbar ---------- */
header {
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px;
}

/* Left Navbar */
.navbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.logo {
  height: 35px;
  display: block;
}

.vertical-divider {
  height: 44px;
  width: 1px;
  background: rgba(0, 0, 0, 0.2);
}

/* Center Text Navbar*/
.nav-links {
  position: relative;
  list-style: none;
  display: flex;
  gap: 40px;
  font-weight: 400;
  flex: 1 1 auto;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.nav-links>li {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #737373;
  padding: 10px 2px;
  font-size: 1rem;
  font-weight: 500;
}

.nav-links li .popup {
  visibility: hidden;
  opacity: 0;
  transition: all 300ms linear;
  position: absolute;
  top: 149%;
  left: -49px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 5px 0 0;
  z-index: 1000;
  width: 220px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--primary);
}

.nav-links li:hover .popup {
  visibility: visible;
  opacity: 1;
}

.popup a {
  font-size: 0.9em;
  display: flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.25);
  color: #737373;
}

.popup a:hover {
  background: var(--surface);
}

/* Right Navbar*/
.navbar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding: 10px 0;
}

.top-right {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: nowrap;
}

.top-right a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #737373;
  text-decoration: none;
  font-size: clamp(12px, 1vw, 16px);
  padding-top: 6px;
}

.icon img {
  height: 26px;
  display: inline-block;
}

.bottom-right {
  display: flex;
  gap: 16px;
  height: 32px;
  align-items: center;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  /* top/right/bottom/left: 0 */
  width: 100%;
  /* no fixed height */
  display: flex;
  flex-direction: column;
  padding: 14px 12px 20px;
  background: #fff;
  z-index: 999;
  /* stays in front of page */
  border-top: 1px solid var(--border);

  /* show/hide */
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 250ms ease, opacity 200ms ease;

  /* allow content to scroll */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* smooth on iOS */
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Backdrop under the menu, above the page */
.mobile-menu.active::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  /* below the panel, above the page */
}

body.menu-open {
  overflow: hidden;
}

.mobile-section {
  display: flex;
  flex-direction: column;
  /* gap: 28px; */
  padding-top: 10px;
}

.mobile-section h4 {
  color: #444;
  font-weight: 700;
  /* border-bottom: 1px dashed rgba(0, 0, 0, 0.26); */
  /* padding-bottom: 5px; */
  padding: 10px;
}
.mobile-section>a {
    /* font-size: 20px; */
    color: #444;
    font-weight: 700;
    /* border-bottom: 1px dashed rgba(0, 0, 0, 0.26); */
    /* padding-bottom: 5px; */
    padding: 10px;
}

.mobile-list {
  text-align: center;
  list-style: none;
  padding: 10px 0px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  text-align: left;

}

.mobile-list a {
  color: #737373;
  text-decoration: none;
  padding: 8px 2px;
  display: block;
  padding: 5px 20px;

  border-bottom: 1px solid rgba(0, 0, 0, 0.32);

}

.mobile-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  font-size: 28px;
  font-weight: 400;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: #222;
  cursor: pointer;
}

.mobile-close:hover,
.mobile-close:focus {
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

/* Responsive: show hamburger, hide desktop clusters */
@media (max-width: 1060px) {

  .nav-links,
  .navbar-right {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .navbar {
    padding: 3px 10px;
  }

  .navbar-left {
    gap: 14px;
  }

  .vertical-divider {
    display: none;
  }
}

/* ---------- Hero ---------- */
.hero-wrap {
  width: 100%;
  background: var(--bg);
  background-image: url('imgs/Hero-banner.png');
  /* keep your path if needed */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-top: 1px solid transparent;
  /* spacer so sticky header shadow doesn’t overlay */
}

.hero {
  display: flex;
  gap: 2rem;
  padding: 4rem 0;
  /* comfortable on mobile */
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Hero Buttons (scoped) */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
  box-shadow: 0 0 0 0 transparent;
}

.hero-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px #fff;
}

.hero-btn:active {
  transform: scale(0.98);
}

.hero-btn-sm {
  height: 2.25rem;
  padding: 0 .9rem;
}

.hero-btn-lg {
  height: 2.9rem;
  padding: 0 1.8rem;
}

.gap-4 {
  gap: .75rem;
}

.hero-btn-primary {
  background: var(--primary-cta);
  color: #fff;
}

.hero-btn-primary:hover {
  background: var(--primary-cta-hover);
}

.hero-btn-secondary {
  background: var(--secondary);
  color: var(--ink);
}

.hero-btn-secondary:hover {
  background: var(--secondary-hover);
}

.hero-btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: #d1d5db;
}

.hero-btn-outline:hover {
  background: #f8fafc;
}

/* Hero content */
.pill {
  display: flex;
}

.title-wrap {
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.title {
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 44ch;
  font-size: clamp(2.4rem, 5.2vw, 4.25rem);
}

.accent {
  color: var(--ink);
  display: inline-block;
}

.rotator {
  /* font-size: 3.5rem; */
  position: relative;
  display: inline-flex;
  min-width: 15ch;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding-top: .3rem;
  padding-bottom: 1rem;
  min-height: 1.15em;
  color: #05AFF2
}

.rot-word {
  position: absolute;
  font-weight: 700;
  transform: translateY(150%);
  opacity: 0;
  transition: transform .6s cubic-bezier(.22, 1, .36, 1), opacity .6s ease;
  will-change: transform, opacity;
}

.rot-word.enter {
  transform: translateY(0);
  opacity: 1;
}

.rot-word.leave-up {
  transform: translateY(-150%);
  opacity: 0;
}

.rot-word.active {
  transform: translateY(0);
  opacity: 1;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: .01em;
  max-width: 750px;
}

.cta {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rot-word {
    transition: none !important;
  }
}
/* Reduced motion: stop animation, keep a subtle static gradient */
@media (prefers-reduced-motion: reduce) {
  .insightagent-aurora {
    animation: none;
    background-position: 80% 50%, 20% 50%;
  }
}

/* Aurora keyframes (matches your Tailwind config idea) */
@keyframes insightagent-aurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }

  to {
    background-position: 350% 50%, 350% 50%;
  }
}

/* ---------- Typography ---------- */
.insightagent-eyebrow {
  display: inline-block;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.insightagent-title {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 14px;
}

.insightagent-accent {
  background: linear-gradient(90deg, var(--primary), var(--hero-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.insightagent-subcopy {
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 24px;
}

/* ===== InsightAgent.AI — CTA Styles (uses your tokens) ===== */



.insightagent-cta-accent {
  background: linear-gradient(90deg, var(--primary), var(--hero-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Lead copy */
.insightagent-cta-lead {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 820px;
}

.insightagent-cta-linebreak {
  display: none;
}

/* CTA button */
/* ---------- CTA Section ---------- */
.insightagent-cta-section {
  background-color: var(--surface);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.insightagent-cta-container {
  max-width: 800px;
  color: var(--ink);
}

.insightagent-cta-heading {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.insightagent-cta-subtext {
  font-size: 1.1rem;
  color: var(--ink);
}

.insightagent-cta-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}



.insightagent-cta-button {
  background-color: var(--primary-cta);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 14px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.insightagent-cta-button:hover {
  background-color: var(--primary-cta-hover);
  transform: translateY(-2px);
}

.insightagent-cta-footer {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ========== PARTNERS ========== */
.partners-txt {
  padding-top: 20px;
  text-align: center;
}

.partners-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.10);
  margin: 20px auto;
}

.partners-container {
  display: flex;
  width: min-content;
  animation: scroll 30s linear infinite;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 100px;
  padding: 0 20px;
  margin: 0 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.partner-logo {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: filter 0.3s ease;
}

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

  100% {
    transform: translateX(-50%);
  }
}

/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .partners-carousel {
    margin: 15px auto;
    padding: 10px;
  }

  .partner-item {
    min-width: 160px;
    height: 90px;
    margin: 0 10px;
    padding: 0 15px;
  }

  .partner-logo {
    max-width: 75%;
    max-height: 75%;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .partners-carousel {
    box-shadow: none;
    border-radius: 0;
    margin: 10px auto;
    padding: 5px;
  }

  .partners-container {
    animation: scroll 20s linear infinite;
  }

  .partner-item {
    min-width: 120px;
    height: 70px;
    margin: 0 8px;
    padding: 0 10px;
  }

  .partner-logo {
    max-width: 70%;
    max-height: 70%;
  }

  .partners-txt {
    font-size: 14px;
    padding-top: 10px;
  }
}

/* ===== Interactive Image Accordion (ia-) ===== */
.ia-section {
  max-width: 1200px;
  margin: 20px auto 60px;
  padding: 20px 10px;
  background: var(--bg);
  color: var(--muted);
  border-radius: 12px;
}

.ia-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* Left column */
.ia-col-text {
  width: 100%;
  text-align: center;
}

.ia-title {
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.ia-lead {
  margin-top: 5px;
  color: black;
}

.ia-cta {
  margin-top: 2rem;
}

.ia-btn {
  font-size: 1rem;
  display: inline-block;
  background: #05AFF2;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
  text-decoration: none;
}

.ia-btn:hover {
  border: 1px solid #05AFF2;
  background: #fff;
  color: #05AFF2;
  transform: none;
}

/* Right column */
.ia-col-accordion {
  width: 100%;
}

.ia-accordion-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem;
  -webkit-overflow-scrolling: touch;
}

.ia-item {
  position: relative;
  height: 450px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  transition: width .7s ease-in-out, transform .2s ease;
  width: 60px;
  flex: 0 0 auto;
}

.ia-item.active {
  width: 400px;
}

.ia-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ia-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.ia-caption {
  position: absolute;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all .3s ease-in-out;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  bottom: 6rem;
}

.ia-item.active .ia-caption {
  bottom: 1.5rem;
  transform: translateX(-50%) rotate(0deg);
}

/* Touch targets */
@media (hover: none) {
  .ia-item {
    width: 120px;
  }

  .ia-item.active {
    width: 320px;
  }
}

/* Nice scrollbars for the strip */
.ia-accordion-strip::-webkit-scrollbar {
  height: 8px;
}

.ia-accordion-strip::-webkit-scrollbar-thumb {
  background: #e5e7eb;
  border-radius: 9999px;
}

.ia-accordion-strip:hover::-webkit-scrollbar-thumb {
  background: #d1d5db;
}

/* Tablet (≤ 1024px) */
@media (max-width: 1024px) {
  .ia-row {
    flex-direction: column;
    gap: 2rem;
  }

  .ia-col-text,
  .ia-col-accordion {
    width: 100%;
  }

  .ia-item {
    height: 380px;
  }

  .ia-item.active {
    width: 300px;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .ia-section {
    margin: 10px auto 40px;
  }

  .ia-title {
    font-size: 1.5rem;
  }

  .ia-lead {
    padding: 0 10px;
  }

  .ia-btn {
    width: 50%;
    font-size: 0.95rem;
    padding: 0.65rem 1.5rem;
  }

  .ia-accordion-strip {
    gap: 0.75rem;
    padding: 0.5rem;
  }

  .ia-item {
    width: 80px;
    height: 280px;
  }

  .ia-item.active {
    width: 220px;
  }

  .ia-caption {
    font-size: 0.9rem;
    bottom: 4rem;
  }

  .ia-item.active .ia-caption {
    bottom: 1rem;
  }
}

/* ===== Stack Feature (sf-) ===== */
.sf-wrap {
  position: relative;
  max-width: 72rem;
  margin: 1rem auto;
  padding-left: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30rem;
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  border-radius: 1.5rem;
  color: var(--ink);
}

.sf-left {
  width: 50%;
  position: relative;
  z-index: 1;
  color: #737373;
}

.sf-title {
  font-size: clamp(1.8rem, 1.5vw, 3.75rem);
  line-height: 1.1;
  margin: 0 0 0.75rem 0;
}

.sf-lead {
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.sf-cta {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease, box-shadow .15s ease;
}

.sf-btn:active {
  transform: scale(0.98);
}

.sf-btn-primary {
  background: var(--primary);
  color: #fff;
}

.sf-btn-primary:hover {
  background-color: #fff;
  color: #05AFF2;
  border: 1px solid #05AFF2;
  transform: none;
}

.sf-btn-outline {
  background: transparent;
  color: inherit;
  border-color: #737373;
}

.sf-btn-outline:hover {
  background: #f8fafc;
}

/* Right quarter with cropped orbit */
.sf-right {
  position: relative;
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.sf-orbit-stage {
  position: relative;
  width: 50rem;
  height: 50rem;
  transform: translateX(50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-center {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: #f9fafb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-react {
  width: 3rem;
  height: 3rem;
  color: #60a5fa;
}

/* Dotted orbit rings */
.sf-ring {
  position: absolute;
  border: 2px dotted #d1d5db;
  border-radius: 9999px;
  animation-name: sf-spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.sf-icon {
  position: absolute;
  background: #fff;
  border-radius: 9999px;
  padding: .25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sf-icon img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

@keyframes sf-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ===== Base Section ===== */
/* ===== Base Section ===== */
.industry-section {
  max-width: 1220px;
  margin: auto;
  padding: 40px 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

/* ===== Header ===== */
.industry-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.industry-header h2 {
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: bold;
  flex: 1 1 20%;
  margin: 0;
  line-height: 1.3;
}

.industry-header span {
  color: #A0B524;
}

.industry-header p {
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: justify;
  padding-top: 10px;
  flex: 1 1 40%;
  margin: 0;
  color: #737373;
}

/* ===== Tabs ===== */
.industry-tabs-container {
  border-bottom: 2px solid #e0e0e0;
  position: relative;
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: clamp(14px, 1.2vw, 16px);
}

.industry-tabs::-webkit-scrollbar {
  height: 4px;
}

.industry-tabs::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.industry-tabs::-webkit-scrollbar-thumb {
  background: #0378A6;
  border-radius: 4px;
}

.industry-tab {
  background: transparent;
  border: none;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 500;
  padding: 12px 20px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  position: relative;
}

.industry-tab:hover {
  color: #0378A6;
  background-color: rgba(3, 120, 166, 0.05);
}

.industry-tab.active {
  color: #0378A6;
  border-bottom-color: #0378A6;
  font-weight: 600;
}

.view-more-link {
  margin-top: 15px;
  display: inline-block;
  font-weight: bold;
  color: #0378A6;
  text-decoration: none;
  font-size: clamp(14px, 1.4vw, 16px);
  padding-left: 20px;
}

.view-more-link:hover {
  text-decoration: underline;
}

/* ===== Content Area ===== */
.industry-content {
  position: relative;
  margin-top: 30px;
}

/* Panels arranged side by side for desktop */
.industry-panel {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
  animation: fadeIn 0.4s ease;
}

.industry-panel.is-hidden {
  display: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.industry-image-wrapper {
  flex: 0 1 35%;
  padding-left: 20px;
  /* max-width: 500px; */
}

.industry-image-wrapper img {
  width: 90%;
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.industry-info {
  flex: 1 1 50%;
}

.industry-info p {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: clamp(14px, 1.5vw, 16px);
  text-align: justify;
}

.industry-explore-btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: clamp(15px, 1.4vw, 16px);
  font-weight: 600;
  color: #0378A6;
  border: 1px solid #0378A6;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 50px;
  box-shadow: 0 4px 8px rgba(3, 120, 166, 0.2);
}

.industry-explore-btn:hover {
  background: #0378A6;
  color: #fff;
  /* transform: translateY(-2px); */
}

/* ===== Responsive ===== */
/* Tablet (≤ 992px) */
@media (max-width: 992px) {
  .industry-header {
    flex-direction: column;
  }

  .industry-panel {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .industry-image-wrapper {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .industry-image-wrapper img {
    height: 280px;
  }

  .industry-info {
    width: 90%;
    margin: 0 auto;
  }

  .industry-explore-btn {
    align-self: center;
    text-align: center;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .industry-header {
    text-align: center;
  }

  .industry-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    gap: 5px;
  }

  .industry-tab {
    padding: 10px 16px;
    font-size: clamp(13px, 1.5vw, 14px);
  }

  .industry-panel {
    flex-direction: column;
    gap: 20px;
  }

  .industry-image-wrapper img {
    height: 240px;
  }

  .industry-info {
    width: 90%;
    margin: 0 auto;
  }
}

/* Small Mobile (≤ 576px) */
@media (max-width: 576px) {
  .industry-tabs-container {
    margin-left: -15px;
    margin-right: -15px;
    padding: 0 15px;
  }

  .industry-tab {
    padding: 10px 12px;
    font-size: clamp(12px, 1.7vw, 13px);
  }

  .industry-image-wrapper img {
    height: 200px;
    border-radius: 12px;
  }

  .industry-info p {
    font-size: clamp(14px, 1.8vw, 15px);
    line-height: 1.7;
  }
}


/* Clients */
.clients-txt {
  text-align: center;
  padding-top: 10px;
}

/* ========== CASE STUDIES ========== */
.case-studies-section {
  padding: 40px 20px;
  background: #fff;
  max-width: 100%;
  margin: auto;
}

.case-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}

.case-studies-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.home-case-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(25% - 20px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
}

.case-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.home-case-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.home-case-card p {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* View More button */
.view-more-btn {
  margin-top: 15px;
  display: inline-block;
  padding: 8px 16px;
  font-weight: bold;
  border: 2px solid #0378A6;
  border-radius: 8px;
  color: #0378A6;
  text-decoration: none;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: #0378A6;
  color: #fff;
}

/* ========== Responsive Mobile Scroller ========== */
@media (max-width: 768px) {
  .case-studies-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
  }

  .home-case-card {
    flex: 0 0 80%;
    max-width: 80%;
  }

  .home-case-card h3 {
    font-size: 16px;
  }

  .home-case-card p {
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 900px) {
  .case-studies-grid {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 10px;
  }

  .home-case-card {
    flex: 0 0 30%;
    max-width: 80%;
  }
}

/* ====== Testimonials ======= */
.testimonial-section {
  border-bottom: 2px solid rgba(0, 0, 0, 0.08);
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  padding: 5px 50px;
  background: #fff;
}

.testimonial-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 80%;
  margin: auto;
  gap: 10px;
}

.testimonial-left {
  flex: 1 1 40%;
  position: relative;
  margin-top: 60px;
}

.testimonial-left h2 {
  color: #000;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 16px;
}

.highlight-green {
  color: #A0B524;
  font-size: clamp(22px, 2.5vw, 28px);
}

.testimonial-left .subheading {
  color: #888;
  font-weight: 600;
  margin-bottom: 20px;
}

.testimonial-left .explore-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  color: #0378A6;
  border: 2px solid #0378A6;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-right {
  flex: 1 1 55%;
  position: relative;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #ddd;
  display: none;
}

.testimonial-card.active {
  display: block;
}

.testimonial-icon {
  width: 60px;
  height: 60px;
  border: 1px solid #00a4ef;
  border-radius: 50%;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-icon img {
  width: 30px;
  height: 30px;
}

.testimonial-text {
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.author {
  font-weight: bold;
  color: #000;
}

.author small {
  display: block;
  font-weight: normal;
  margin-top: 2px;
  color: #666;
}

/* ===== Responsive: Testimonials ===== */
@media (max-width: 1200px) {
  .testimonial-wrapper {
    max-width: 90%;
    gap: 16px;
  }

  .testimonial-left {
    flex: 1 1 45%;
    margin-top: 40px;
  }

  .testimonial-right {
    flex: 1 1 50%;
  }

  .testimonial-card {
    padding: 26px;
  }
}

@media (max-width: 992px) {
  .testimonial-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .testimonial-wrapper {
    flex-direction: column;
    align-items: stretch;
    max-width: 94%;
    gap: 20px;
  }

  .testimonial-left,
  .testimonial-right {
    display: grid;
    place-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1 1 100%;
    margin-top: 0;
    text-align: center;
  }

  .testimonial-left h2 {
    font-size: clamp(22px, 3.2vw, 28px);
    line-height: 1.3;
  }

  .testimonial-left .subheading {
    font-size: 0.975rem;
  }

  .testimonial-card {
    padding: 22px;
  }

  .testimonial-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }

  .testimonial-icon img {
    width: 26px;
    height: 26px;
  }

  .testimonial-text {
    font-size: 0.98rem;
    line-height: 1.7;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .testimonial-left h2 {
    margin-bottom: 12px;
  }

  .testimonial-left .explore-btn {
    padding: 10px 18px;
    border-radius: 6px;
  }

  .testimonial-card {
    border-radius: 12px;
    padding: 20px;
  }

  .author {
    font-size: 0.98rem;
  }

  .author small {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .testimonial-wrapper {
    max-width: 96%;
    gap: 16px;
  }

  .testimonial-left h2 {
    font-size: 1.25rem;
  }

  .highlight-green {
    font-size: clamp(18px, 5vw, 22px);
  }

  .testimonial-left .subheading {
    font-size: 0.92rem;
    margin-bottom: 16px;
  }

  .testimonial-left .explore-btn {
    display: block;
    width: 80%;
    text-align: center;
    padding: 12px;
    font-weight: 600;
  }

  .testimonial-card {
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .testimonial-icon {
    width: 46px;
    height: 46px;
  }

  .testimonial-icon img {
    width: 22px;
    height: 22px;
  }

  .testimonial-text {
    font-size: 0.95rem;
    margin-bottom: 16px;
    line-height: 1.65;
  }
}

@media (max-width: 380px) {
  .testimonial-left h2 {
    font-size: 1.125rem;
  }

  .testimonial-left .subheading {
    font-size: 0.88rem;
  }

  .testimonial-card {
    padding: 16px;
  }
}

/* Accessibility: Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {

  .explore-btn,
  .testimonial-card {
    transition: none !important;
  }
}

/* ====== Contact Us ======= */
.c-main {
  padding: 0.5rem 0;
}

.c-container {
  max-width: 1110px;
  margin: 0 auto;
  padding: 0 1rem;
  color: black;
  background-color: white;
  border-radius: 20px;
}

.c-layout {
  display: flex;
  flex-direction: column;
}

.c-title {
  color: #737373;
  font-size: 0.5rem;
}

@media (min-width: 1024px) {
  .c-layout {
    flex-direction: row;
    justify-content: space-between;
  }
}

.c-info {
  max-width: 32rem;
  padding: 30px 0 10px 20px;
}

.c-subtitle {
  padding-top: 20px;
  font-weight: 700;
}

.c-title {
  color: #737373;
  font-size: 1rem;
}

@media (min-width: 640px) {
  .c-title {
    font-size: 1.4rem;
  }

  .c-layout {
    display: flex;
  }
}

.c-text {
  margin-top: 0.75rem;
  line-height: 1.6;
}

.c-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin-top: 1.5rem;
}

.c-contact-item {
  display: flex;
  gap: 0.75rem;
}

.c-icon {
  flex: none;
  color: #9ca3af;
}

.c-svg {
  width: 1.5rem;
  height: 1.5rem;
}

.c-form-wrap {
  flex: 1;
  padding: 30px 20px 20px 20px;
  border: #000000;
  color: #000;
  border-radius: 20px;
  margin: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.c-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.c-field {
  display: flex;
  flex-direction: column;
}

.c-label {
  font-weight: 700;
}

.c-input,
.c-textarea {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  color: #737373;
  border: 1px solid #000;
  border-radius: 0.5rem;
  background: transparent;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color 0.2s;
}

.c-input:focus,
.c-textarea:focus {
  border-color: #05AFF2;
}

.c-textarea {
  resize: none;
  min-height: 9rem;
}

.c-btn {
  height: 40px;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #024059;
  background-color: #fff;
  color: #024059;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: background 0.2s;
  cursor: pointer;
}

.c-btn:hover {
  border: 1px solid #fff;
  background-color: #024059;
  color: #fff;
}

/* Footer Header */
.footer-header {
  background: #ffffff;
  padding: 10px 20px;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  border-bottom: 2px solid #f2f2f2;
  color: #737373;
  text-align: center;
}

.footer-header h2 {
  flex: 1;
  margin: 0;
}

.social-icons {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.email-link {
  flex: 1;
  text-align: right;
  color: #1a4d6d;
  text-decoration: none;
  font-size: 15px;
}

/* Social icon styling */
.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #737373;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #737373;
  color: #fff;
  border-color: #737373;
}

.footer {
  background: #ffffff;
  padding: 60px 60px 10px;
  color: #737373;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: #737373;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-column ul li {
  margin-bottom: 12px;
  display: block;
}

.footer-column ul li a {
  color: #737373;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #1a4d6d;
}

.office-info {
  margin-bottom: 25px;
}

.office-info h4 {
  color: #737373;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
}

.office-info p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
  margin: 4px 0;
}

.connect-section {
  display: flex;
  flex-direction: column;
}

.connect-section p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.email-input {
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 12px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #1a4d6d;
}

.contact-submit-btn {
  width: 100%;
}

.map-container {
  height: 150px;
  width: 100%;
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.map-container img {
  object-fit: fill;
}

.copyright {
  text-align: center;
  padding: 15px 0;
  color: #666;
  font-size: 14px;
  border-top: 2px solid #e0e0e0;
}

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

@media (max-width: 768px) {
  .footer-header {
    flex-direction: column;
    gap: 15px;
    padding: 20px 30px;
  }

  .footer {
    padding: 40px 30px 30px;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}






/* ===================== CONTACT US PAGE ===================== */

/* Hero Banner */
.contact-hero {
  width: 100%;
  height: 430px;
  background-color: #024059;
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.hero-content h2 {
  color: #fff;
  font-weight: bold;
}

#contactForm {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

/* Design Section */
.contact-dsgn {
  width: 100%;
  overflow: hidden;
  background-color: #f8f8f8;
}

.contact-dsgn img {
  width: 100%;
  height: auto;
  display: block;
}

/* Contact & Address */
.contact-form-section {
  background-color: #f2f2f2;
  padding: 10px 5%;
}

.form-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.form-left {
  flex: 1 1 60%;
}

.form-left .highlight-blue {
  color: #05aff2;
  font-size: clamp(22px, 2.5vw, 28px);
}

.form-left h2,
p {
  padding-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.form-row input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.114);
  border-radius: 4px;

}

textarea {
  height: 100px;
}

.checkbox-group {
  margin: 15px 0;
}

.checkbox-group label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.privacy-policy {
  display: block;
  margin-bottom: 15px;
  text-decoration: underline;
  color: #666;
}

.submit-btn {
  background-color: white;
  border: 2px solid #0378A6;
  color: #0378A6;
  /* border: none; */
  padding: 12px 25px;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #0378A6;
  color: white;
}

.form-right {
  margin-top: 70px;
  flex: 1 1 30%;
}

.office-info {
  margin-bottom: 20px;
}

.office-info h3 {
  color: #737373;
}

.office-info strong {
  font-size: clamp(16px, 1.2vw, 20px);
  display: block;
  margin: 5px 0;
}

/* Global presence */

.global-presence {
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 20px;
  padding: 50px 50px;
  font-family: Arial, sans-serif;
  max-width: 1100px;
  margin: 15px 62px;
}

.global-presence h2 {
  font-weight: bold;
  margin-bottom: 30px;
  /* color:  */
}

.accordion-item {
  /* margin-bottom: 10px; */
  border: 1px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  text-align: left;
  font-size: 16px;
  background: white;
  border: none;
  cursor: pointer;
  outline: none;
  position: relative;
}

.accordion-btn::after {
  content: '⌄';
  position: absolute;
  right: 20px;
  font-size: 16px;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.accordion-btn.active::after {
  transform: rotate(180deg);
}





/* Media Query */
@media (max-width: 1024px) {
  .contact-hero {
    height: 500px;
    padding: 30px;
  }

  /* Design */
  .contact-dsgn img {
    max-height: 150px;
  }

  /* Contact & Address */
  .form-container {
    flex-direction: column;
    gap: 0px;
  }

  #contactForm {
    width: 90%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-right {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
    gap: 80px;
    margin-top: 3%;
    padding-left: 10px;
  }

  .global-presence {
    width: 80%;
    padding: 30px 30px;
    margin: 20px auto;
  }

  .global-presence h2 {
    margin-bottom: 10px;
  }

  .accordion-btn {
    padding: 10px;
    font-size: 13px;
  }
}


@media (max-width: 728px) {
  .contact-hero {
    height: 400px;
    padding: 30px;
  }

  /* Design Section */
  .contact-dsgn img {
    max-height: 100px;
  }

  /* Contact & Address */
  .contact-form-section {
    padding: 10px 5%;
  }

  .submit-btn {
    width: 40%;
    height: 40px;
    text-align: center;
  }

  /* Contact & Address */
  .form-right {
    display: flex;
    flex-direction: column;
    align-items: normal;
    gap: 0px;
    margin-top: 3%;
    width: 100%;
    padding-left: 10px;
  }

  .office-info h3 {
    font-size: 18px;
  }
}

/* =================== GENERATIVE AI PAGE ===================== */
.genai-banner {
  --waves-offset: 200px;
}

.genai-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(var(--border) 1px, transparent 1px) 0 0/48px 48px,
    linear-gradient(90deg, var(--border) 1px, transparent 1px) 0 0/48px 48px,
    linear-gradient(180deg, color-mix(in srgb, var(--hero-accent) 12%, transparent) 0%, transparent 60%);
  padding: 70px 0 clamp(40px, 6vh, 56px);
  min-height: clamp(530px, 55vh, 560px);
}

.genai-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  transform: translateY(-18px);
}

.genai-banner-title {
  background: linear-gradient(to bottom, #111, #9aa0a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.genai-banner-desc {
  color: var(--muted);
  margin-top: 10px;
  margin-inline: auto;
  max-width: 720px;
}

.genai-banner-buttons {
  margin-top: 28px;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border-radius: 999px;
  padding: 16px 50px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: background .2s ease, border-color .2s ease, transform .06s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: #fff;
  color: #000;
}

.btn--primary:hover {
  background: var(--secondary-hover);
}

.btn--secondary {
  background: var(--secondary);
  color: #111;
}

.btn--secondary:hover {
  background: var(--secondary-hover);
}

/* --- Waves --- */
.genai-banner-waves {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  pointer-events: none;
  transform: translateY(var(--waves-offset));
}

.genai-banner-svg {
  width: 100%;
  height: auto;
  display: block;
}


/* Section - AI Interaction */
.ai-explore-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  color: #0378A6;
  background-color: white;
  border: 2px solid #0378A6;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ai-explore-btn:hover {
  background: #0378A6;
  color: #fff;
  box-shadow: 0 4px 8px rgba(3, 120, 166, 0.2);
}

.ai-interaction {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.ai-interaction p {
  margin: 10px auto 20px;
  color: #737373;
}

.ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.ai-card {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ai-card img {
  height: 25px;
  margin-bottom: 15px;
}

.ai-card h3 {
  margin-bottom: 10px;
  font-weight: 700;
  color: #444;
}

.ai-card h3 span {
  color: #0378A6;
}

.ai-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 20px;
  text-align: justify;
}







/* Built Differently */
.built-differently {
  padding: 60px 20px 0px 20px;
  background-color: #fff;
}

.built-differently h2 {
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

.container .highlight-green {
  color: #A0B524;
  font-size: clamp(22px, 2.5vw, 28px);
}


.content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.accordion-section {
  flex: 1;
  min-width: 300px;
}

.image-section {
  flex: 1;
  min-width: 150px;
  background-image: url(imgs/intellidoc-workflow.jpg);
  background-size: contain;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  background-color: #ffffff;
}

.accordion-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 15px;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toggle-icon {
  font-size: 20px;
  font-weight: bold;
}

.accordion-content {
  padding: -1px 15px 15px 15px;
  background-color: white;
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.137);
}

.accordion-content p {
  margin: 10px 15px;
}

.accordion-item.active .accordion-content {
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  max-height: 150px;
  padding: 15px;
}

.accordion-item.active .toggle-icon {
  transform: rotate(45deg);
}

/* Bottom color line */
.bottom-line {
  display: flex;
  width: 100%;
  height: 6px;
  margin-top: 20px;
}

.line-grey {
  background-color: #737373;
  width: 33%;
}

.line-orange {
  background-color: #F24C27;
  width: 33%;
}

.line-blue {
  background-color: #05AFF2;
  width: 33%;
}

/* ========== GENAI CASE STUDIES ========== */
.genai-case-studies-section {
  padding: 40px 10px;
  background: #fff;
  max-width: 100%;
  margin: auto;
  overflow: hidden;
}

.genai-case-heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.genai-carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.genai-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.genai-case-card {
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 35px;
}

.genai-case-icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.genai-case-card h3 {
  font-weight: bold;
  margin-bottom: 10px;
}

.genai-case-card p {
  flex-grow: 1;
  line-height: 1.6;
  color: #333;
}

.genai-view-more-btn {
  margin-top: 15px;
  padding: 8px 16px;
  font-weight: bold;
  border: 2px solid #0378A6;
  border-radius: 8px;
  color: #0378A6;
  text-decoration: none;
  transition: 0.3s ease;
}

.genai-view-more-btn:hover {
  background: #0378A6;
  color: #fff;
}

.genai-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}

.genai-carousel-dots .genai-dot {
  width: 2px;
  height: 12px;
  border: 1px solid #737373;
  background: white;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.genai-carousel-dots .genai-dot.active {
  background: #737373;
}

.genai-carousel-container {
  position: relative;
}

.genai-arrow {
  position: absolute;
  top: 89%;
  transform: translateX(100%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #dcdcdc;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.genai-prev {
  left: 10px;
}

.genai-next {
  right: 50px;
}

.genai-arrow:hover {
  background: #fff;
}

/* Responsive: 2 cards on tablets, 1 on mobile */
@media (max-width: 992px) {
  .genai-case-card {
    flex: 0 0 calc(50% - 20px);
  }

  .genai-banner-waves {
    --waves-offset: 50px;
  }

  .ai-cards {
    width: 90%;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .genai-case-card {
    flex: 0 0 calc(100% - 20px);
    align-items: center;
  }

  .container {
    align-items: center;
  }
}



/* ================= INSIGHTAGENT AI Page ==================== */
/* ---------- IntelliDoc.AI — CTA ---------- */
.intellidoc-cta-section {
  background: var(--surface);
  padding: 20px 20px;
  text-align: center;
  color: var(--ink);
}

.intellidoc-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.intellidoc-cta-subtext {
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 16px);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.intellidoc-cta-heading {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.4;
}

.intellidoc-cta-heading span {
  color: black;
}

.intellidoc-cursor {
  display: inline-block;
  color: var(--primary);
  font-weight: bold;
  animation: intellidoc-blink 1s infinite;
}

@keyframes intellidoc-blink {
  50% {
    opacity: 0;
  }
}

.intellidoc-cta-description {
  color: var(--muted);
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 32px;
}

.intellidoc-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.intellidoc-btn {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: clamp(14px, 1.2vw, 16px);
}

.intellidoc-btn-primary {
  background-color: var(--primary-cta);
  color: #fff;
  border: 2px solid transparent;
}

.intellidoc-btn-primary:hover {
  background-color: var(--primary-cta-hover);
}

.intellidoc-btn-outline {
  background: #fff;
  border: 2px solid var(--primary-cta);
  color: var(--primary-cta);
}

.intellidoc-btn-outline:hover {
  background: var(--secondary-hover);
  color: var(--primary-cta-hover);
}

@media (max-width: 768px) {
  .intellidoc-cta-section {
    padding: 60px 16px;
  }

  .intellidoc-cta-heading {
    font-size: clamp(22px, 6vw, 36px);
  }
}

/* ---------- IntelliDoc.AI — Business Section ---------- */
.intellidoc-business-section {
  background: var(--bg);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intellidoc-business-container {
  max-width: 1220px;
  margin: 0 auto;
}

.intellidoc-business-heading {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 38px;
}

/* ---------- Grid Layout ---------- */
.intellidoc-business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Default: 3 cards in a row (desktop) */
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}

/* ---------- Card ---------- */
.intellidoc-business-card {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  background: #fff;
  padding: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 360px;
}

.intellidoc-business-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: 0 10px 24px rgba(5, 175, 242, 0.15);
}

/* ---------- Icon ---------- */
.intellidoc-business-icon {
  text-align: center;
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ---------- Text ---------- */
.intellidoc-business-card h3 {
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  width: 100%;
}

.intellidoc-business-card p {
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  max-width: 95%;
  text-align: justify;
}

/* ---------- Responsive ---------- */

/* Medium screens (Tablets) — 2 cards per row */
@media (max-width: 1024px) {
  .intellidoc-business-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .intellidoc-business-card {
    max-width: 420px;
  }
}

/* Small screens (Mobile) — 1 card per row */
@media (max-width: 768px) {
  .intellidoc-business-section {
    padding: 60px 16px;
  }

  .intellidoc-business-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intellidoc-business-card {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
  }
}

/* ---------- IntelliDoc.AI — Custom Pilot Slice ---------- */
.intellidoc-cpilot-slice {
  background: #f6f6f7;
  border-radius: 18px;
  padding: 28px;
}

.intellidoc-cpilot-slice__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}

.intellidoc-cpilot-slice__copy {
  padding: 20px 8px;
}

.intellidoc-cpilot-title {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3vw, 56px);
  line-height: 1.1;
  font-weight: 600;
  color: var(--ink);
}

.intellidoc-cpilot-desc {
  color: #6b7280;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.8;
  max-width: 48ch;
}

.intellidoc-cpilot-btn {
  display: inline-block;
  margin-top: 22px;
  background: #111;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.08s ease, background 0.2s ease;
}

.intellidoc-cpilot-btn:hover {
  background: #1f2937;
}

.intellidoc-cpilot-btn:active {
  transform: translateY(1px);
}

.intellidoc-cpilot-slice__media {
  background: #e9e9ea;
  border-radius: 16px;
  padding: 32px;
  display: grid;
  place-items: center;
}

.intellidoc-cpilot-img {
  width: 100%;
  max-width: 520px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .intellidoc-cpilot-slice__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intellidoc-cpilot-slice__media {
    order: 2;
  }

  .intellidoc-cpilot-slice__copy {
    order: 1;
  }
}

/* ---------- IntelliDoc.AI — Hero ---------- */
.intellidoc-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  place-items: center;
}

.intellidoc-hero-inner {
  position: relative;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 24px);
  z-index: 2;
}

.intellidoc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1200px 600px at 80% 10%, color-mix(in oklab, var(--primary) 18%, transparent) 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 20%, color-mix(in oklab, var(--hero-accent) 20%, transparent) 0%, transparent 60%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 60%);
}

.intellidoc-blob {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1);
  animation: intellidoc-float 12s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.intellidoc-blob-a {
  left: 20%;
  top: 25%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--hero-accent) 80%, white) 0%, transparent 70%);
  animation-delay: 0.2s;
}

.intellidoc-blob-b {
  right: -10%;
  top: 10%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--primary) 80%, white) 0%, transparent 70%);
  animation-duration: 14s;
}

@keyframes intellidoc-float {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-45%, -48%) scale(1.06);
  }
}

.intellidoc-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,\
  <svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'>\
    <filter id='n'>\
      <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/>\
      <feColorMatrix type='saturate' values='0'/>\
      <feComponentTransfer><feFuncA type='table' tableValues='0 0 0 0.05 0.08 0.05 0'/></feComponentTransfer>\
    </filter>\
    <rect width='100%' height='100%' filter='url(%23n)'/>\
  </svg>");
  opacity: 0.30;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.intellidoc-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 85%, white);
  backdrop-filter: saturate(120%) blur(6px);
  width: fit-content;
  transform: translateY(-6px);
  ;
  /* can be faded in via JS */
}

.intellidoc-badge-label {
  font: 600 10px/1 ui-sans-serif, system-ui, -apple-system;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

.intellidoc-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: 0.6;
}

.intellidoc-badge-text {
  font: 400 12px/1 ui-sans-serif, system-ui, -apple-system;
  color: var(--ink);
  opacity: 0.75;
}

.intellidoc-hero-title {
  width: max-content;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-size: clamp(34px, 6vw, 56px);
  margin: 0;
  ;
  transform: translateY(12px);
  isolation: isolate;
}

.intellidoc-hero-desc {
  max-width: 60ch;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  font-size: clamp(16px, 2.2vw, 18px);
  margin: 0;
  ;
  transform: translateY(10px);
}

/* Hero CTAs – kept separate from general .intellidoc-btn to avoid overlap */
.intellidoc-hero-cta {
  display: flex;
  gap: 12px;
  padding-top: 6px;
  ;
  transform: translateY(8px);
}

.intellidoc-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font: 400 14px/1 ui-sans-serif, system-ui, -apple-system;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  color: var(--ink);
  background: var(--bg);
}

.intellidoc-hero-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.06);
}

.intellidoc-hero-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.intellidoc-hero-btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: transparent;
}

.intellidoc-hero-btn-primary:hover {
  background: var(--primary-cta);
}

.intellidoc-hero-btn-ghost {
  background: var(--bg);
}

.intellidoc-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font: 200 12px/1.4 ui-sans-serif, system-ui, -apple-system;
  ;
  transform: translateY(6px);
}

.intellidoc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
  margin-right: 8px;
}

.intellidoc-bottom-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to top, color-mix(in oklab, var(--bg) 92%, white), transparent);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 640px) {
  .intellidoc-hero-cta {
    flex-wrap: wrap;
  }
}

/* ---------- IntelliDoc.AI — Feature Section ---------- */
.intellidoc-feature-section {
  background-color: var(--surface);
  padding: clamp(48px, 6vw, 96px) 16px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.intellidoc-feature-container {
  max-width: 1120px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .intellidoc-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.intellidoc-feature-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.intellidoc-feature-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 28px;
  height: 26px;
  width: 3px;
  background: #d4d4d8;
  border-top-right-radius: 999px;
  border-bottom-right-radius: 999px;
  transition: height 0.25s ease, background 0.25s ease;
}

.intellidoc-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(2, 6, 23, 0.08);
}

.intellidoc-feature-card:hover::after {
  height: 36px;
  background: var(--primary);
}

.intellidoc-feature-icon {
  color: #6b7280;
  margin-bottom: 12px;
}

.intellidoc-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  transition: transform 0.2s ease;
}

.intellidoc-feature-card:hover .intellidoc-feature-title {
  transform: translateX(6px);
}

.intellidoc-feature-desc {
  font-size: 0.9375rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 34ch;
}

/* accessibility */
.intellidoc-feature-card:focus-within {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

/* ---------- Navbar small icon wrapper used in HTML ---------- */
.intellidoc-icon {
  color: var(--muted);
}

/* */
.gent-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  min-height: clamp(560px, 78vh, 820px);
  display: grid;
  place-items: center;
}

.gent-hero-inner {
  position: relative;
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 24px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.4vw, 24px);
  z-index: 2;
}

/* -------- Background (soft generative look) -------- */
.gent-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(1200px 600px at 80% 10%, color-mix(in oklab, var(--primary) 18%, transparent) 0%, transparent 60%), radial-gradient(900px 500px at 10% 20%, color-mix(in oklab, var(--hero-accent) 20%, transparent) 0%, transparent 60%), linear-gradient(180deg, var(--surface) 0%, var(--bg) 60%);
}

.gent-blob {
  position: absolute;
  width: 60vmax;
  height: 60vmax;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
  transform: translate(-50%, -50%) scale(1);
  animation: gent-float 12s ease-in-out infinite;
  pointer-events: none;
}

.gent-blob-a {
  left: 20%;
  top: 25%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--hero-accent) 80%, white) 0%, transparent 70%);
  animation-delay: 0.2s;
}

.gent-blob-b {
  right: -10%;
  top: 10%;
  background: radial-gradient(closest-side, color-mix(in oklab, var(--primary) 80%, white) 0%, transparent 70%);
  animation-duration: 14s;
}

@keyframes gent-float {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-45%, -48%) scale(1.06);
  }
}

/* subtle paper grain */
.gent-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,\ <svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'>\ <filter id='n'>\ <feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/>\ <feColorMatrix type='saturate' values='0'/>\ <feComponentTransfer><feFuncA type='table' tableValues='0 0 0 0.05 0.08 0.05 0'/></feComponentTransfer>\ </filter>\ <rect width='100%' height='100%' filter='url(%23n)'/>\ </svg>");
  opacity: .30;
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* -------- Badge -------- */
.gent-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in oklab, var(--bg) 85%, white);
  backdrop-filter: saturate(120%) blur(6px);
  width: fit-content;
  transform: translateY(-6px);
  ;
}

.gent-badge-label {
  font: 600 10px/1 ui-sans-serif, system-ui, -apple-system;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: .7;
}

.gent-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
  opacity: .6;
}

.gent-badge-text {
  font: 400 12px/1 ui-sans-serif, system-ui, -apple-system;
  color: var(--ink);
  opacity: .75;
}

/* -------- Heading / Copy -------- */
.gent-hero-title {
  width: max-content;
  ;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.06;
  font-size: clamp(34px, 6vw, 56px);
  margin: 0;
  ;
  transform: translateY(12px);
}

.gent-hero-desc {
  max-width: 60ch;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
  font-size: clamp(16px, 2.2vw, 18px);
  margin: 0;
  ;
  transform: translateY(10px);
}

/* -------- CTAs -------- */
.gent-cta {
  display: flex;
  gap: 12px;
  padding-top: 6px;
  ;
  transform: translateY(8px);
}

.gent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font: 400 14px/1 ui-sans-serif, system-ui, -apple-system;
  text-decoration: none;
  transition: box-shadow .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
  color: var(--ink);
  background: var(--bg);
}

.gent-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(2, 6, 23, 0.06);
}

.gent-btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--ring);
}

.gent-btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: transparent;
}

.gent-btn-primary:hover {
  background: var(--primary-cta);
}

.gent-btn-ghost {
  background: var(--bg);
}

/* -------- Micro details -------- */
.gent-micro {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font: 200 12px/1.4 ui-sans-serif, system-ui, -apple-system;
  ;
  transform: translateY(6px);
}

.gent-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  display: inline-block;
  margin-right: 8px;
}

/* -------- Bottom Fade -------- */
.gent-bottom-fade {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 90px;
  background: linear-gradient(to top, color-mix(in oklab, var(--bg) 92%, white), transparent);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Leadership Page ---------- */
.leadership-team-section {
  background: var(--bg);
  color: var(--ink);
  padding: 10px;
}

/* Inner width */
.leadership-team-container {
  width: min(1200px, 94%);
  margin-inline: auto;
}

/* Header (non-sticky) */
.leadership-team-header {
  text-align: center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.leadership-team-eyebrow {
  display: inline-block;
  font-weight: 700;
  color: var(--primary);
  background: rgba(5, 175, 242, 0.1);
  border: 1px solid rgba(5, 175, 242, 0.25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.leadership-team-title {
  font-size: clamp(28px, 4.8vw, 40px);
  line-height: 1.1;
  margin: 0;
  background: linear-gradient(180deg, var(--ink), #3b4656);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.leadership-team-desc {
  max-width: 70ch;
  margin: 10px auto 0;
  color: #2a3442;
  opacity: 0.9;
  line-height: 1.6;
  font-size: clamp(14px, 1.7vw, 16px);
}

/* Grid — exactly 3 per row on desktop */
.leadership-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 3 cards in a row */
  gap: clamp(16px, 1.5vw, 18px);
  margin-top: clamp(16px, 2vw, 28px);
}

/* Responsive: fall back to 2 and 1 columns for smaller screens */
@media (max-width: 980px) {
  .leadership-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .leadership-team-grid { grid-template-columns: 1fr; }
}
.leadership-team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  display: flex;
  flex-direction: column;
  max-width: 270px;
  margin-inline: auto;
  min-height: 208px;
}

.leadership-team-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 175, 242, 0.35);
  box-shadow: 0 16px 36px rgba(5, 175, 242, 0.15);
}

/* Avatar — square box; image fits with cover */
.leadership-team-avatar {
  aspect-ratio: 1 / 1;
  /* square box */
  background: #e9eef3;
  position: relative;
  overflow: hidden;
}
.leadership-team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;    
}

/* Meta */
.leadership-team-meta {
  padding: 10px 18px 2px;
}
.leadership-team-name {
  font-size: clamp(18px, 2vw, 20px);
  line-height: 1.2;
  margin: 0 0 4px 0;
  color: var(--ink);
  letter-spacing: 0.4px;
}
.leadership-team-role {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Social — LinkedIn only */
.leadership-team-social {
  display: flex;
  gap: 10px;
  padding: 0px 18px 10px;
  list-style: none;
  margin: 0;
}
.leadership-team-iconlink {
  --_size: 38px;
  width: var(--_size);
  height: var(--_size);
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.leadership-team-iconlink:hover {
  background: var(--secondary);
  border-color: rgba(5,175,242,0.35);
  color: var(--primary-cta);
  transform: translateY(-2px);
}
.leadership-team-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ======== INSIGHTAGENT-AI- Page */
/* ===== Your existing CSS (unchanged) ===== */
.insightagent-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(540px, 80vh, 880px);
  display: grid;
  place-items: center;
  background: var(--surface);
  color: var(--ink);
  overflow: clip;
}

.insightagent-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  padding: clamp(20px, 4vw, 40px);
  text-align: center;
}

/* ---------- Background / Aurora ---------- */
.insightagent-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  background: radial-gradient(1200px 600px at 100% 0%, var(--hero-accent) 0%, transparent 60%),
    radial-gradient(1200px 600px at 0% 100%, rgba(5, 175, 242, 0.25) 0%, transparent 60%),
    var(--bg);
}

/* Moving aurora layer (blurred + masked) */
.insightagent-aurora {
  position: absolute;
  inset: -12px;
  /* bleed for smooth edges */
  pointer-events: none;
  filter: blur(10px) invert(0);
  opacity: 0.55;
  will-change: transform, background-position;

  /* Core gradients */
  --white-gradient: repeating-linear-gradient(100deg,
      var(--white) 0%,
      var(--white) 7%,
      var(--transparent) 10%,
      var(--transparent) 12%,
      var(--white) 16%);

  --dark-gradient: repeating-linear-gradient(100deg,
      var(--black) 0%,
      var(--black) 7%,
      var(--transparent) 10%,
      var(--transparent) 12%,
      var(--black) 16%);

  --aurora: repeating-linear-gradient(100deg,
      var(--blue-500) 10%,
      var(--indigo-300) 15%,
      var(--blue-300) 20%,
      var(--violet-200) 25%,
      var(--blue-400) 30%);

  background-image: var(--white-gradient), var(--aurora);
  background-size: 300%, 200%;
  background-position: 50% 50%, 50% 50%;

  /* Soft radial mask to fade edges */
  -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
  mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);

  animation: insightagent-aurora 60s linear infinite;
}

/* Reduced motion: stop animation, keep a subtle static gradient */
@media (prefers-reduced-motion: reduce) {
  .insightagent-aurora {
    animation: none;
    background-position: 80% 50%, 20% 50%;
  }
}

/* Aurora keyframes (matches your Tailwind config idea) */
@keyframes insightagent-aurora {
  from {
    background-position: 50% 50%, 50% 50%;
  }

  to {
    background-position: 350% 50%, 350% 50%;
  }
}

/* ---------- Typography ---------- */
.insightagent-eyebrow {
  display: inline-block;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
  backdrop-filter: blur(6px);
}

.insightagent-title {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 14px;
}

.insightagent-accent {
  background: linear-gradient(90deg, var(--primary), var(--hero-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.insightagent-subcopy {
  font-size: clamp(16px, 2.1vw, 22px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 820px;
  margin: 0 auto 24px;
}

/* ===== InsightAgent.AI — CTA Styles (uses your tokens) ===== */



.insightagent-cta-accent {
  background: linear-gradient(90deg, var(--primary), var(--hero-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Lead copy */
.insightagent-cta-lead {
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  line-height: 1.7;
  margin: 0 auto 22px;
  max-width: 820px;
}

.insightagent-cta-linebreak {
  display: none;
}

/* CTA button */
/* ---------- CTA Section ---------- */
.insightagent-cta-section {
  background-color: var(--surface);
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.insightagent-cta-container {
  max-width: 800px;
  color: var(--ink);
}

.insightagent-cta-heading {
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 10px;
}

.insightagent-cta-subtext {
  font-size: 1.1rem;
  color: var(--ink);
}

.insightagent-cta-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}



.insightagent-cta-button {
  background-color: var(--primary-cta);
  color: white;
  border: none;
  border-radius: var(--radius);
  padding: 14px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.insightagent-cta-button:hover {
  background-color: var(--primary-cta-hover);
  transform: translateY(-2px);
}

.insightagent-cta-footer {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 600px) {
  .insightagent-cta-heading {
    font-size: 1.5rem;
  }

  .insightagent-cta-button {
    width: 100%;
    font-size: 1rem;
  }

  .insightagent-cta-footer {
    font-size: 1rem;
  }
}
/* ---------- Responsive tweaks ---------- */
@media (max-width: 640px) {
  .insightagent-hero-inner {
    padding: 20px;
  }

  .insightagent-cta-row {
    gap: 10px;
  }
}