/* ============================================================
   STYLE.CSS — Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ──────────────────────────────────── */
:root {
  --color-primary:    #0A0A0A;
  --color-accent:     #E8334A;
  --color-accent-2:   #FF6B7A;
  --color-white:      #FFFFFF;
  --color-gray:       #6B7280;
  --color-light-bg:   #F8FAFC;
  --font-heading:     'Satoshi', sans-serif;
  --font-body:        'Satoshi', sans-serif;
  --radius-sm:        8px;
  --radius-md:        16px;
  --radius-lg:        24px;
  --transition:       all 0.3s ease;
  --navbar-height:    70px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background-color: var(--color-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; transition: var(--transition); }

ul { list-style: none; padding: 0; margin: 0; }

/* ── Focus Visible ──────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ── Typography ─────────────────────────────────────────────── */
.heading-xl {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.4;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.3;
}

.section-label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(14px, 2.5vw, 18px);
  color: var(--color-gray);
  max-width: 600px;
  line-height: 1.7;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary-lg,
.btn-primary-md,
.btn-primary-sm,
.btn-outline-lg,
.btn-outline-md,
.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary-lg:hover,
.btn-primary-md:hover,
.btn-primary-sm:hover,
.btn-outline-lg:hover,
.btn-outline-md:hover,
.btn-outline-sm:hover {
  transform: scale(1.03);
}

/* Filled */
.btn-primary-lg { padding: 16px 36px; font-size: 18px; background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-primary-md { padding: 12px 28px; font-size: 16px; background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn-primary-sm { padding: 8px 20px;  font-size: 14px; background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }

.btn-primary-lg:hover,
.btn-primary-md:hover,
.btn-primary-sm:hover {
  background: #c0202f;
  border-color: #c0202f;
  color: var(--color-white);
}

/* Outlined */
.btn-outline-lg { padding: 16px 36px; font-size: 18px; background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.6); }
.btn-outline-md { padding: 12px 28px; font-size: 16px; background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline-sm { padding: 8px 20px;  font-size: 14px; background: transparent; color: var(--color-accent); border-color: var(--color-accent); }

.btn-outline-lg:hover { background: rgba(255,255,255,0.1); color: var(--color-white); border-color: var(--color-white); }
.btn-outline-md:hover { background: var(--color-accent); color: var(--color-white); }
.btn-outline-sm:hover { background: var(--color-accent); color: var(--color-white); }

/* ============================================================
   SECTION 1 — NAVBAR
   ============================================================ */
.site-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--navbar-height);
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.site-navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--navbar-height);
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.navbar-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-white);
  font-family: var(--font-heading);
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
}

/* Nav links */
.navbar-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link-item {
  position: relative;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.nav-link-item:hover {
  color: var(--color-white);
}

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

/* Active nav link */
.nav-link-active {
  color: var(--color-white) !important;
}
.nav-link-active::after {
  transform: scaleX(1) !important;
}

/* Keep underline visible when dropdown is open */
.nav-item-dropdown.open .nav-link-item::after {
  transform: scaleX(1);
}

/* Hamburger */
.navbar-toggler-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--color-white);
  font-size: 24px;
}

/* Mobile drawer */
.navbar-mobile-drawer {
  display: none;
  flex-direction: column;
  background: rgba(10, 15, 30, 0.97);
  padding: 0 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.navbar-mobile-drawer.open {
  max-height: 600px;
  padding: 16px 24px 24px;
}

.navbar-mobile-drawer .nav-link-item {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: block;
}

.navbar-mobile-drawer .nav-link-item::after { display: none; }

@media (max-width: 991px) {
  .navbar-nav-links { display: none; }
  .navbar-cta       { display: none; }
  .navbar-toggler-btn { display: flex; align-items: center; }
  .navbar-mobile-drawer { display: flex; }
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.80);
  z-index: 1;
}

/* Orbs */
.hero-orb-1 {
  width: clamp(200px, 40vw, 500px);
  height: clamp(200px, 40vw, 500px);
  background: radial-gradient(circle, rgba(232,51,74,0.3) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation-delay: 0s;
  z-index: 1;
}

.hero-orb-2 {
  width: clamp(150px, 30vw, 400px);
  height: clamp(150px, 30vw, 400px);
  background: radial-gradient(circle, rgba(255,107,122,0.2) 0%, transparent 70%);
  bottom: -80px;
  right: -100px;
  animation-delay: 2s;
  z-index: 1;
}

.hero-orb-3 {
  width: clamp(120px, 25vw, 300px);
  height: clamp(120px, 25vw, 300px);
  background: radial-gradient(circle, rgba(232,51,74,0.15) 0%, transparent 70%);
  top: 40%;
  right: 20%;
  animation-delay: 4s;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(60px, 10vw, 120px) 24px clamp(40px, 8vw, 80px);
  max-width: 900px;
  margin: 0 auto;
}

.hero-content .section-label { color: var(--color-accent-2); }

.hero-content .heading-xl {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero-content .section-subtitle {
  color: rgba(255,255,255,0.75);
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary-lg,
  .hero-buttons .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .hero-buttons {
    gap: 12px;
  }

  .hero-buttons .btn-primary-lg,
  .hero-buttons .btn-outline-lg {
    padding: 12px 24px;
    font-size: 16px;
  }
}

/* Trust stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.hero-stat {
  padding: 0 32px;
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

@media (max-width: 767px) {
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-stat {
    padding: 4px;
    width: 100%;
    margin: 0 auto;
  }

  .hero-stat-number {
    font-size: 18px;
  }

  .hero-stat-label {
    font-size: 12px;
  }

  .hero-stat-divider { display: none; }
}

@media (max-width: 576px) {
  /* .hero-stat { padding: 12px 20px; } */
  .hero-stat-divider { display: none; }
}

/* ============================================================
   SECTION 3.5 — SKILLS
   ============================================================ */
/* ============================================================
   SECTION 3.5 — SKILLS MARQUEE
   ============================================================ */
.skills-section {
  background: #0a0a0a;
  padding: clamp(60px, 10vw, 90px) 0 clamp(50px, 8vw, 80px);
  overflow: hidden;
}

.skills-header {
  text-align: center;
  margin-bottom: 56px;
}

.skills-header .section-label { color: var(--color-accent); }
.skills-header .section-title { color: #ffffff; margin-bottom: 16px; }

.skills-subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Marquee wrapper — clips overflow */
.skills-marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 56px;
  /* justify-content: center;
  align-items: center; */
}

/* Each row is a flex container that scrolls */
.skills-marquee-row {
  display: flex;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* The UL list — inline flex, no wrap */
.skills-marquee-list {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 0;
  margin: 0 6px;
  list-style: none;
  animation: marquee-left 30s linear infinite;
}

/* Reverse row: both lists animate right */
.skills-marquee-reverse .skills-marquee-list {
  animation: marquee-right 30s linear infinite;
}

/* Pause on hover */
.skills-marquee-row:hover .skills-marquee-list {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes marquee-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

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

/* Individual pill */
.skill-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  white-space: nowrap;
  cursor: default;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.skill-pill:hover {
  background: rgba(232,51,74,0.15);
  border-color: var(--color-accent);
}

.skill-pill-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
}

.skill-pill span {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body);
}

/* CTA button */
.skills-cta {
  text-align: center;
  margin-top: 8px;
}

.btn-skills-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  background: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.btn-skills-cta:hover {
  background: #FF6B7A;
  border-color: #FF6B7A;
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,51,74,0.35);
}



/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
.services-section {
  background: var(--color-primary);
  padding: 100px 0;
}

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

.services-section .section-header .section-label {
  color: var(--color-accent);
}

.services-section .section-header .section-title {
  color: var(--color-white);
}

.services-section .section-subtitle {
  margin: 16px auto 0;
  color: rgba(255,255,255,0.7);
}

.service-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm); 
  padding: 36px 28px;
  border: 1px solid rgba(232,51,74,0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1),
              border-color 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(232,51,74,0.2);
  border-color: rgba(232,51,74,0.5);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(232,51,74,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.service-card .heading-md {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-white);
}

.service-card p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.service-learn-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease, color 0.2s ease;
  margin-top: auto;
}

.service-learn-more:hover {
  gap: 8px;
  color: #FF6B7A;
}

/* ============================================================
   SECTION 4 — DRIVING SUCCESS
   ============================================================ */
#driving-success {
  background: var(--color-white);
  padding: 90px 0;
}

.ds-header {
  text-align: center;
  margin-bottom: 64px;
}

.ds-header .section-label {
  color: var(--color-accent);
}

.ds-header .section-title {
  color: var(--color-primary);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

/* 3-column grid with vertical dividers */
.ds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.ds-col {
  padding: 0 48px;
  border-right: 1px solid #E8EAF0;
}

.ds-col:first-child { padding-left: 0; }
.ds-col:last-child  { padding-right: 0; border-right: none; }

/* Stat row: big number + icon side by side */
.ds-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.ds-stat-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--color-accent);
  line-height: 1;
  font-family: var(--font-body);
}

.ds-stat-pct {
  font-size: 0.55em;
  font-weight: 900;
  color: var(--color-accent);
}

.ds-stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,51,74,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.ds-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--color-gray);
  text-transform: uppercase;
  margin: 0 0 20px;
}

.ds-divider {
  height: 2px;
  background: #E8EAF0;
  margin-bottom: 20px;
}

.ds-detail-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 12px;
}

.ds-detail-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.75;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ds-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ds-col {
    padding: 0 0 40px;
    border-right: none;
    border-bottom: 1px solid #E8EAF0;
  }

  .ds-col:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================================
   SECTION 4.5 — CUSTOM AI SOLUTIONS
   ============================================================ */
.ai-section {
  background: var(--color-primary);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle grid background */
.ai-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(232,51,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,51,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Two-column layout */
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* LEFT */
.ai-left .section-label { color: var(--color-accent); }

.ai-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.15;
  margin: 16px 0 24px;
}

.ai-heading-accent {
  color: var(--color-accent);
  position: relative;
  display: inline-block;
}

.ai-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 420px;
}

.ai-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.ai-checklist li i {
  color: var(--color-accent);
  font-size: 18px;
  flex-shrink: 0;
}

.btn-ai-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--color-accent);
  color: var(--color-white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: var(--font-body);
}

.btn-ai-cta:hover {
  background: var(--color-accent-2);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,51,74,0.4);
}

/* RIGHT: Cards grid */
.ai-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.ai-card:hover {
  background: rgba(232,51,74,0.08);
  border-color: rgba(232,51,74,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(232,51,74,0.12);
}

.ai-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(232,51,74,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
  color: var(--color-accent);
  transition: background 0.3s ease;
}

.ai-card:hover .ai-card-icon {
  background: rgba(232,51,74,0.25);
}

.ai-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.ai-card-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  margin: 0;
}

/* Highlight stats card */
.ai-card-highlight {
  background: linear-gradient(135deg, rgba(232,51,74,0.18) 0%, rgba(232,51,74,0.06) 100%);
  border-color: rgba(232,51,74,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-card-highlight:hover {
  background: linear-gradient(135deg, rgba(232,51,74,0.28) 0%, rgba(232,51,74,0.12) 100%);
}

.ai-card-stat {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 4px;
}

.ai-card-stat span {
  color: var(--color-accent);
  font-size: 2rem;
}

.ai-card-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ai-heading { font-size: 2.4rem; }
  .ai-desc { max-width: 100%; }
}

@media (max-width: 576px) {
  .ai-layout {
    gap: 32px;
  }

  .ai-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SECTION 6 — TESTIMONIALS (Slick Slider)
   ============================================================ */
.testimonials-section {
  background: var(--color-primary);
  padding: 100px 0;
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,51,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,107,122,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.testimonials-section .section-header {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.testimonials-section .section-label { color: var(--color-accent); }
.testimonials-section .section-title { color: var(--color-white); }

/* Slider wrapper */
#testimonialsSlider {
  position: relative;
  z-index: 1;
}

/* Slider viewport wrapper */
.testimonials-slider-wrap {
  margin: 0 -12px;
}

#testimonialsSlider .slick-list {
  overflow: hidden;
  padding: 12px 0 !important;
}

#testimonialsSlider .slick-track {
  display: flex !important;
}

/* Each slide — equal height */
#testimonialsSlider .slick-slide {
  display: flex !important;
  flex-direction: column;
  height: auto !important;
  padding: 0;
  float: none !important;
}

#testimonialsSlider .slick-slide > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  margin: 0 12px;
}

/* Card fills full slide height */
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(232,51,74,0.2);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  display: flex !important;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(232,51,74,0.45);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(232,51,74,0.18);
}

.testimonial-quote-mark {
  font-size: 32px;
  line-height: 0.8;
  color: var(--color-accent);
  margin-bottom: 16px;
  display: block;
  opacity: 0.8;
}

.testimonial-quote-mark i {
  display: inline-block;
}

.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 28px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0;
}

.testimonial-avatar {
  display: none;
}

.testimonial-author-info { 
  flex: 1;
  width: 100%;
}

.testimonial-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.testimonial-author-company {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.testimonial-stars {
  color: var(--color-accent);
  font-size: 13px;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ── Slick arrow buttons ─────────────────────────────────────── */
#testimonialsSlider .slick-prev,
#testimonialsSlider .slick-next {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(232,51,74,0.3);
  border-radius: 50%;
  z-index: 10;
  transition: all 0.25s ease;
  top: 50%;
}

#testimonialsSlider .slick-prev { left: -22px; }
#testimonialsSlider .slick-next { right: -22px; }

#testimonialsSlider .slick-prev:hover,
#testimonialsSlider .slick-next:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

#testimonialsSlider .slick-prev::before,
#testimonialsSlider .slick-next::before {
  font-family: 'bootstrap-icons';
  font-size: 18px;
  color: var(--color-white);
  opacity: 1;
  line-height: 1;
}

#testimonialsSlider .slick-prev::before { content: '\F12F'; }
#testimonialsSlider .slick-next::before { content: '\F138'; }

/* ── Custom dots ─────────────────────────────────────────────── */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  list-style: none;
  padding: 0;
}

.testimonials-dots li button {
  width: 8px; height: 8px;
  border-radius: 99px;
  background: rgba(255,255,255,0.2);
  border: none;
  padding: 0;
  font-size: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials-dots li.slick-active button {
  width: 28px;
  background: var(--color-accent);
}

@media (max-width: 768px) {
  .testimonial-card { padding: 28px 22px; }
  #testimonialsSlider .slick-prev { left: -8px; }
  #testimonialsSlider .slick-next { right: -8px; }
}



/* ============================================================
   SECTION 6 — CASE STUDIES
   ============================================================ */
#case-studies {
  background: var(--color-light-bg);
  padding: 100px 0;
}

#case-studies .section-header {
  text-align: center;
  margin-bottom: 60px;
}

#case-studies .section-subtitle { margin: 16px auto 0; }

.case-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--color-primary);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.35s cubic-bezier(0.22,1,0.36,1);
  cursor: pointer;
  height: 100%;
}

.case-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 0 2px var(--color-accent), 0 24px 48px rgba(37,99,235,0.2);
}

.case-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-card:hover .case-card-img { transform: scale(1.04); }

.case-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,0.92) 0%, rgba(10,15,30,0.4) 60%, transparent 100%);
  transition: background 0.35s ease;
}

.case-card:hover .case-card-overlay {
  background: linear-gradient(to top, rgba(10,15,30,0.97) 0%, rgba(10,15,30,0.6) 60%, rgba(10,15,30,0.2) 100%);
}

.case-card-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card-tag {
  display: inline-block;
  background: rgba(37,99,235,0.85);
  color: var(--color-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 5px 12px;
  border-radius: 100px;
  align-self: flex-start;
}



.case-card-metric {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 4px;
}

.case-card-company {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.case-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.case-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-2);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.case-card-link:hover { gap: 8px; color: var(--color-accent-2); }

/* Featured card */
.case-card-featured {
  min-height: 480px;
  margin-bottom: 24px;
}

.case-card-featured .case-card-metric { font-size: 40px; }
.case-card-featured .case-card-company { font-size: 24px; }
.case-card-featured .case-card-desc { font-size: 16px; max-width: 500px; }

/* Grid cards */
.case-card-grid { min-height: 340px; }

/* Make grid columns equal height */
#case-studies .row > [class*='col-'] {
  display: flex;
}

.case-studies-cta {
  text-align: center;
  margin-top: 48px;
}

/* ============================================================
/* ============================================================
   SECTION 6.5 — INSIGHTS / BLOG SLIDER
   ============================================================ */
.insights-section {
  background: var(--color-light-bg);
  padding: 100px 0;
}

.insights-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.insights-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.insights-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  background: transparent;
  color: var(--color-accent);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.insights-arrow:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.insights-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.insights-view-all {
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Slider viewport */
.insights-slider-wrap {
  margin: 0 -12px;
}

.insights-slider .slick-list {
  overflow: hidden;
  padding: 12px 0 !important;
}

.insights-slider .slick-track {
  display: flex !important;
}

.insights-slider .slick-slide {
  padding: 0;
  height: auto !important;
  float: none !important;
  display: flex !important;
  flex-direction: column;
}

/* Override slick's inline display:block on hidden clones */
.insights-slider .slick-slide[aria-hidden="true"] {
  visibility: hidden;
}

.insights-slider .slick-slide > div {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}

/* Each card */
.insight-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid #EAECF0;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex !important;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(232,51,74,0.12);
  border-color: rgba(232,51,74,0.3);
}

/* Image */
.insight-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
  flex-shrink: 0;
}

.insight-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-img {
  transform: scale(1.05);
}


.insights-slider-wrap .insight-card{margin: 0 12px;}
/* Tag */
.insight-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 1;
}

/* Body */
.insight-card-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0; /* allow flex children to shrink */
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.insight-date,
.insight-read-time {
  font-size: 11px;
  color: var(--color-gray);
  display: flex;
  align-items: center;
  gap: 4px;
}

.insight-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.45;
  margin-bottom: 10px;
  transition: color 0.2s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.insight-card:hover .insight-title {
  color: var(--color-accent);
}

.insight-excerpt {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.footer-logo img{max-width: 185px;}
.insight-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F0F2F5;
  margin-top: auto;
}

.insight-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.insight-author-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(232,51,74,0.2);
}

.insight-author-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
}

.insight-read-more {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.insight-read-more:hover { gap: 8px; }

/* Slick dots — custom theme */
.insights-slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 0;
  list-style: none;
}

.insights-slick-dots li {
  margin: 0;
}

.insights-slick-dots li button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  border: none;
  cursor: pointer;
  padding: 0;
  font-size: 0;
  transition: all 0.25s ease;
}

.insights-slick-dots li button:hover,
.insights-slick-dots li.slick-active button {
  background: var(--color-accent);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 767px) {
  .section-title { font-size: 1.6rem; }
  .insights-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   SECTION 6.7 — CLIENTS & PARTNERS
   ============================================================ */
.clients-section {
  background: #F4F6FB;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232,51,74,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(232,51,74,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.clients-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.clients-header .section-label { color: var(--color-accent); }

.clients-header .section-title {
  color: var(--color-primary);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.clients-grid.slick-initialized {
  display: block;
}

.clients-grid .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
}

.clients-grid .slick-prev,
.clients-grid .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(31, 45, 61, 0.15);
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.2s ease;
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.clients-grid .slick-prev {
  left: -22px;
}

.clients-grid .slick-next {
  right: -22px;
}

.clients-grid .slick-prev:hover,
.clients-grid .slick-next:hover {
  border-color: rgba(232, 51, 74, 0.35);
  color: var(--color-accent);
  background: var(--color-white);
}

.clients-grid .slick-prev::before,
.clients-grid .slick-next::before {
  display: none;
}

.clients-grid .slick-arrow i {
  font-size: 1rem;
}

.clients-grid > a {
  text-decoration: none;
  display: block;
}

.client-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  transition: all 0.3s ease;
  min-height: 100px;
  position: relative;
  cursor: pointer;
  background: var(--color-white);
  border: 1px solid #E4E7F0;
  border-radius: var(--radius-sm);
}

.client-logo-item:hover {
  background: var(--color-white);
  border-color: rgba(232,51,74,0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,51,74,0.12);
}

.client-logo {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.client-logo-item:hover .client-logo {
  opacity: 1;
}

/* Brand name text fallback for own products */
.client-logo-text {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -0.3px;
  font-family: var(--font-body);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.client-logo-item:hover .client-logo-text {
  color: var(--color-accent);
}

/* Center glow effect */
.clients-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232,51,74,0.25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {
  .clients-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px 24px;
  }

  .clients-glow {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 16px;
  }

  .client-logo-item {
    min-height: 80px;
    padding: 12px;
  }

  .client-logo {
    max-height: 50px;
  }

  .clients-glow {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .client-logo-item {
    min-height: 70px;
  }

  .client-logo {
    max-height: 40px;
  }
}

/* ============================================================
   SECTION 7 — CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A 0%, #3D1018 100%);
  padding: 100px 0;
  overflow: hidden;
  text-align: center;
}

.cta-band-orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232,51,74,0.2) 0%, transparent 65%);
  top: -200px;
  right: -100px;
  animation-delay: 1s;
}

.cta-band-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,122,0.15) 0%, transparent 65%);
  bottom: -150px;
  left: -80px;
  animation-delay: 3s;
}

/* Animated grid pattern */
.cta-band-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-band .section-label { color: var(--color-accent-2); }
.cta-band .heading-lg { color: var(--color-white); margin-bottom: 16px; }

.cta-band-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

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

@media (max-width: 576px) {
  .cta-band-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-band-buttons .btn-primary-lg,
  .cta-band-buttons .btn-outline-lg {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   SECTION 8 — FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  padding: 80px 0 0;
}

.footer-top { padding-bottom: 60px; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  background: var(--color-accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: var(--color-white);
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-white);
}

.footer-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 260px;
}

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

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray);
  font-size: 18px;
  transition: background 0.25s ease, color 0.25s ease;
  text-decoration: none;
}

.footer-social-link:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer-col-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--color-white); }

/* Newsletter */
.footer-newsletter-label {
  font-size: 14px;
  color: var(--color-gray);
  margin-bottom: 14px;
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 10px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--color-white);
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s ease;
  min-width: 0;
}

.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.footer-newsletter-input:focus { border-color: var(--color-accent); }

/* Divider */
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid rgba(232, 51, 74, 0.35);
}

.footer-copyright {
  font-size: 13px;
  color: var(--color-gray);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  font-size: 13px;
  color: var(--color-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover { color: var(--color-white); }

@media (max-width: 768px) {
  .footer-bottom { justify-content: center; }
  .footer-newsletter-form { flex-direction: column; }
  .footer-newsletter-input { width: 100%; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section-header { margin-bottom: 60px; }

.text-accent { color: var(--color-accent); }
.text-accent-2 { color: var(--color-accent-2); }
.text-white { color: var(--color-white); }
.text-gray { color: var(--color-gray); }

.bg-dark { background: var(--color-primary); }
.bg-light { background: var(--color-light-bg); }

.container-xl { max-width: 1320px; margin: 0 auto; padding: 0 24px; }

@media (max-width: 576px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }

  section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

@media (max-width: 375px) {
  .container,
  .container-fluid,
  .container-sm,
  .container-xl {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

.section-header,
.services-section .section-header,
.testimonials-section .section-header,
#case-studies .section-header {
  margin-bottom: 32px !important;
}


/* ── Hero SVG Underline ────────────────────────────────────── */
.hero-underline-text {
  position: relative;
  display: inline-block;
}

.hero-underline-text svg {
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: visible;
}

.hero-underline-text svg path {
  fill: none;
  stroke: var(--color-accent);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

 

/* ============================================================
   NAVBAR MEGA DROPDOWN
   ============================================================ */

.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown:hover .nav-dropdown-panel,
.nav-item-dropdown.open .nav-dropdown-panel {
  display: block;
}

/* Keep panel open with a slight delay on mouse-leave */
.nav-dropdown-panel {
  pointer-events: auto;
}

.nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-chevron {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.nav-item-dropdown:hover .nav-chevron,
.nav-item-dropdown.open .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown-panel {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  width: 100%;
  background: #111318;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  padding: 32px 0;
  z-index: 999;
  animation: dropdownFadeIn 0.2s ease both;
}

.nav-item-dropdown:hover .nav-dropdown-panel,
.nav-item-dropdown.open .nav-dropdown-panel {
  display: block;
}

/* Bridge gap between trigger and panel so mouse doesn't lose hover */
.nav-item-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 16px;
  background: transparent;
}

@keyframes dropdownFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Wide panel for mega menu */
.nav-dropdown-wide {
  min-width: unset;
  left: 0;
  transform: none;
}

@keyframes dropdownFadeInWide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav-dropdown-wide {
  animation: dropdownFadeInWide 0.2s ease both;
}

/* Grid layout for regular dropdowns */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Dropdown item */
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s ease;
  color: var(--color-white);
}

.nav-dropdown-item:hover {
  background: rgba(255,255,255,0.06);
  color: var(--color-white);
}

.nav-dropdown-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(232,51,74,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.nav-dropdown-item:hover .nav-dropdown-icon {
  background: rgba(232,51,74,0.22);
}

.nav-dropdown-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-dropdown-text strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.2;
}

.nav-dropdown-text small {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.3;
}

/* Mega menu layout */
.nav-dropdown-mega {
  display: grid;
  grid-template-columns: 1fr 1fr 280px;
  gap: 8px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-mega-col {
  padding: 8px 4px;
}

.nav-mega-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-gray);
  padding: 0px;
  margin-bottom: 6px;
}

/* Mega CTA column */
.nav-mega-cta-col {
  border-left: 1px solid rgba(255,255,255,0.07);
  padding-left: 20px;
}

.nav-mega-cta-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.nav-mega-cta-sub {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 12px;
}

.nav-mega-cta-box {
  margin-top: 16px;
  padding: 16px;
  background: rgba(232,51,74,0.08);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(232,51,74,0.15);
}

/* ── Mobile nav groups ──────────────────────────────────────── */
.mobile-nav-group {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-group-trigger {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
}

.mobile-nav-group-trigger .bi-chevron-down {
  font-size: 12px;
  transition: transform 0.25s ease;
}

.mobile-nav-group.open .mobile-nav-group-trigger .bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-nav-group-panel {
  display: none;
  padding-bottom: 8px;
}

.mobile-nav-group.open .mobile-nav-group-panel {
  display: block;
}

.mobile-nav-sub-item {
  display: block;
  padding: 9px 16px;
  font-size: 14px;
  color: var(--color-gray);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-nav-sub-item:hover {
  color: var(--color-white);
  background: rgba(255,255,255,0.05);
}

.mobile-nav-group-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  padding: 10px 16px 4px;
  margin: 0;
}

/* ── Nav Industry Stats ─────────────────────────────────────── */
.nav-industry-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.nav-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-stat-num {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-accent);
  font-family: var(--font-heading);
  min-width: 52px;
}

.nav-stat-label {
  font-size: 13px;
  color: var(--color-gray);
}

/* ── 4-column mega menu ─────────────────────────────────────── */
.nav-dropdown-mega-4col {
  grid-template-columns: 1fr 1fr 1fr 220px;
}

/* ── Services mega — scrollable first column ────────────────── */
.nav-dropdown-mega-5col {
  grid-template-columns: 1.4fr 1fr 1fr 200px;
  align-items: start;
}

.nav-dropdown-mega-5col .nav-mega-col:first-child {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(232,51,74,0.3) transparent;
  padding-right: 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.nav-dropdown-mega-5col .nav-mega-col:first-child::-webkit-scrollbar {
  width: 4px;
}

.nav-dropdown-mega-5col .nav-mega-col:first-child::-webkit-scrollbar-thumb {
  background: rgba(232,51,74,0.4);
  border-radius: 4px;
}

/* Smaller icon for tech items */
.nav-dropdown-icon-sm {
  width: 28px;
  height: 28px;
  font-size: 13px;
}

.mt-3 { margin-top: 16px !important; }

/* ── Services Mega — exact girnarsoft.com style ─────────────── */
.nav-services-mega {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-services-col {
  padding: 8px 24px 8px 0;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.nav-services-col:last-child {
  border-right: none;
  padding-left: 24px;
  padding-right: 0;
}

.nav-services-col:not(:first-child) {
  padding-left: 24px;
}

.nav-services-col-desc {
  font-size: 13px;
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Engagement items with icon */
.nav-services-engage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 10px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--color-white);
  transition: background 0.2s ease;
  margin-bottom: 4px;
}

.nav-services-engage-item:hover {
  background: rgba(255,255,255,0.05);
  color: var(--color-white);
}

.nav-services-engage-item .nav-dropdown-icon {
  margin-top: 2px;
  flex-shrink: 0;
}

.nav-services-engage-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.nav-services-engage-item small {
  font-size: 12px;
  color: var(--color-gray);
  line-height: 1.4;
}

/* Plain text links for Technologies & Solutions */
.nav-services-plain-item {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-services-plain-item:hover {
  color: var(--color-accent);
  background: rgba(232,51,74,0.06);
}

.nav-services-see-more {
  display: inline-block;
  margin: 8px 10px 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.nav-services-see-more:hover { color: #ff6b7a; }

/* CTA col */
.nav-services-cta-col { padding-left: 24px; }

.nav-services-cta-desc {
  font-size: 14px;
  color: var(--color-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.nav-services-cta-img {
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  max-height: 160px;
  opacity: 0.85;
}


/* ============================================================
   AI-AUGMENTED ENGINEERING POD SECTION
   ============================================================ */

.ai-pod-section {
  position: relative;
  padding: 100px 0;
  background: #0A0A0A;
  color: #fff;
  overflow: hidden;
}

.ai-pod-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 20%, rgba(232,51,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(99,102,241,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.ai-pod-section .section-title,
.ai-pod-section .section-subtitle,
.ai-pod-section h3,
.ai-pod-section h4 {
  color: #fff;
}

.ai-pod-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Problem Block ── */
.ai-pod-problem {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 70px;
}

.ai-pod-problem-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-pod-cycle-grid {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 28px;
}

.ai-pod-cycle-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  flex: 1;
  min-width: 160px;
  max-width: 200px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.ai-pod-cycle-icon {
  font-size: 22px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.ai-pod-cycle-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 20px;
  flex-shrink: 0;
}

.ai-pod-problem-callout {
  background: rgba(232,51,74,0.1);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ai-pod-problem-callout .bi-quote {
  color: var(--color-accent);
  font-size: 24px;
}

/* ── Pod Composition ── */
.ai-pod-composition {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ai-pod-comp-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
}

.ai-pod-comp-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.ai-pod-comp-human {
  background: rgba(232,51,74,0.15);
  color: var(--color-accent);
}

.ai-pod-comp-ai {
  background: rgba(99,102,241,0.15);
  color: #818cf8;
}

.ai-pod-comp-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.ai-pod-comp-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.ai-pod-comp-plus {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.2);
}

/* ── AI Agent Chips ── */
.ai-pod-agents {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ai-pod-agent-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc;
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

/* ── Results Grid ── */
.ai-pod-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.ai-pod-result-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.ai-pod-result-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}

.ai-pod-result-icon {
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.ai-pod-result-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.ai-pod-result-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.ai-pod-result-highlight {
  background: linear-gradient(135deg, rgba(232,51,74,0.15), rgba(99,102,241,0.15)) !important;
  border-color: rgba(232,51,74,0.3) !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ai-pod-result-stat {
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.ai-pod-result-stat span {
  color: var(--color-accent);
  font-size: 1.6rem;
}

/* ── Delivery Flow ── */
.ai-pod-flow {
  margin: 70px 0;
  text-align: center;
}

.ai-pod-flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.ai-pod-flow-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  text-align: center;
  min-width: 120px;
  max-width: 140px;
}

.ai-pod-flow-step-core {
  background: rgba(232,51,74,0.12);
  border-color: rgba(232,51,74,0.3);
}

.ai-pod-flow-step-deploy {
  background: rgba(99,102,241,0.12);
  border-color: rgba(99,102,241,0.3);
}

.ai-pod-flow-step-icon {
  font-size: 24px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.ai-pod-flow-step-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.ai-pod-flow-step-label small {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  margin-top: 2px;
}

.ai-pod-flow-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.3);
  font-size: 18px;
}

.ai-pod-flow-tag {
  font-size: 10px;
  font-weight: 600;
  color: #818cf8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.ai-pod-flow-note {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Engagement Cards ── */
.ai-pod-engagement {
  margin-bottom: 70px;
}

.ai-pod-engage-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
  position: relative;
}

.ai-pod-engage-traditional {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
}

.ai-pod-engage-augmented {
  background: linear-gradient(135deg, rgba(232,51,74,0.08), rgba(99,102,241,0.08));
  border: 2px solid rgba(232,51,74,0.4);
}

.ai-pod-engage-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.ai-pod-engage-badge-recommended {
  background: var(--color-accent);
  color: #fff;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
}

.ai-pod-engage-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.ai-pod-engage-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-pod-engage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

.ai-pod-engage-list li i {
  color: var(--color-accent);
  font-size: 16px;
  flex-shrink: 0;
}

.ai-pod-engage-cost {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ai-pod-engage-cost-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}

.ai-pod-engage-cost-value {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
}

.ai-pod-engage-cost-value small {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
}

.ai-pod-engage-cost-highlight {
  color: #6ee7b7 !important;
}

/* ── Impact Table ── */
.ai-pod-impact {
  margin-bottom: 70px;
}

.ai-pod-impact-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08);
}

.ai-pod-impact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ai-pod-impact-table thead tr {
  background: rgba(255,255,255,0.06);
}

.ai-pod-impact-table th {
  padding: 16px 24px;
  text-align: left;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ai-pod-impact-table td {
  padding: 16px 24px;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ai-pod-impact-table tbody tr:last-child td {
  border-bottom: none;
}

.ai-pod-impact-table tbody tr:hover td {
  background: rgba(255,255,255,0.03);
}

.ai-pod-impact-highlight {
  color: #6ee7b7 !important;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ai-pod-impact-highlight i {
  color: #6ee7b7;
}

/* ── Execution Phases ── */
.ai-pod-phases {
  margin-bottom: 60px;
}

.ai-pod-phases-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ai-pod-phase {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  transition: var(--transition);
}

.ai-pod-phase:hover {
  transform: translateY(-4px);
}

.ai-pod-phase-1 { border-top: 3px solid var(--color-accent); }
.ai-pod-phase-2 { border-top: 3px solid #818cf8; }
.ai-pod-phase-3 { border-top: 3px solid #6ee7b7; }

.ai-pod-phase-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.ai-pod-phase h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.ai-pod-phase p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.ai-pod-phase-arrow {
  color: rgba(255,255,255,0.2);
  font-size: 24px;
  flex-shrink: 0;
}

/* ── CTA ── */
.ai-pod-cta {
  text-align: center;
  padding: 50px 0 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ai-pod-cta p {
  font-size: 20px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .ai-pod-cycle-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .ai-pod-cycle-item { max-width: 100%; }
  .ai-pod-cycle-arrow { transform: rotate(90deg); }
  .ai-pod-results-grid { grid-template-columns: 1fr; }
  .ai-pod-flow-steps { flex-direction: column; }
  .ai-pod-flow-connector { transform: rotate(90deg); }
  .ai-pod-phases-grid { flex-direction: column; }
  .ai-pod-phase-arrow { transform: rotate(90deg); }
  .ai-pod-impact-highlight { display: table-cell; }
}
