/* ============================================
   GeanyAI — Complete Stylesheet
   Brand: #F8981D #E31E24 #9E2A8D #1E2B31
   ============================================ */

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

:root {
  --orange: #F8981D;
  --red: #E31E24;
  --purple: #9E2A8D;
  --charcoal: #1E2B31;
  --grad: linear-gradient(135deg, #F8981D, #E31E24, #9E2A8D);
  --grad-btn: linear-gradient(135deg, #F8981D, #E31E24);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.1);
  --white: #fff;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --radius: 16px;
  --radius-lg: 32px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.1);
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;
  --font-bj: 'Bai Jamjuree', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  width: 100%
}

body {
  font-family: var(--font-b);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

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

@media(max-width:768px) {
  .container {
    padding: 0 14px
  }
}

@media(max-width:480px) {
  .container {
    padding: 0 10px
  }
}

.section {
  padding: 40px 0 120px;
  width: 100%
}

@media(max-width:768px) {
  .section {
    padding: 30px 0 80px
  }
}

@media(max-width:480px) {
  .section {
    padding: 20px 0 60px
  }
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  margin-bottom: 80px
}

.section-tag {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .1));
  color: var(--red);
  margin-bottom: 20px
}

@media(max-width:480px) {
  .section-tag {
    padding: 6px 16px;
    font-size: 0.7rem;
    margin-bottom: 16px
  }
}

.section-header h2 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--charcoal);
  letter-spacing: -1px
}

@media(max-width:480px) {
  .section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 16px
  }
}

.section-sub {
  font-family: var(--font-bj);
  font-size: 1.15rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6
}

.sub-heading {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 32px;
  color: var(--charcoal)
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  border: none;
  font-family: var(--font-b)
}

.btn-primary {
  background: var(--grad-btn);
  color: #fff;
  box-shadow: 0 8px 25px rgba(227, 30, 36, .2)
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(227, 30, 36, .3)
}

.btn-outline {
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  background: transparent
}

.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-3px)
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1.05rem
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  background: transparent
}

@media(max-width:768px) {
  .navbar {
    padding: 12px 0
  }
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .9);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .05);
  border-bottom: 1px solid rgba(0, 0, 0, .05)
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px
}

@media(max-width:768px) {
  .nav-container {
    padding: 0 14px
  }
}

@media(max-width:480px) {
  .nav-container {
    padding: 0 10px
  }
}

.nav-logo {
  font-family: var(--font-h);
  font-size: 1.7rem;
  font-weight: 800
}

.nav-logo img.logo-img {
  height: 2rem;
  width: auto;
  display: block
}

.logo-geany {
  color: var(--charcoal);
  transition: color .3s
}

.logo-ai {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--gray-600);
  font-weight: 500;
  font-size: .9rem;
  transition: color .3s;
  position: relative;
  text-decoration: none;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red)
}

/* Transparent state for Dark Hero (Home Page) */
.nav-transparent .logo-geany {
  color: #fff
}

.nav-transparent .nav-links a {
  color: rgba(255, 255, 255, 0.9)
}

.nav-transparent .nav-links a:hover {
  color: #fff
}

.nav-transparent .nav-toggle span {
  background: #fff
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad);
  transition: width .3s
}

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

.nav-transparent .nav-links .dropdown-menu a {
  color: var(--charcoal)
}

.nav-transparent .nav-links .dropdown-menu a:hover {
  color: var(--orange)
}

.nav-cta {
  padding: 10px 24px;
  font-size: .9rem
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  transition: .3s
}

/* ============ MOBILE NAV (≤1100px) ============ */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
    z-index: 1000
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 40px;
    gap: 4px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, .12);
    transition: right .35s cubic-bezier(.16, 1, .3, 1);
    z-index: 999;
    overflow-y: auto
  }

  .nav-links.open {
    right: 0
  }

  /* Force dark text regardless of nav-transparent */
  .nav-links a,
  .nav-transparent .nav-links a {
    color: var(--charcoal) !important;
    font-size: 1rem;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, .05)
  }

  .nav-links a:hover,
  .nav-links a.active,
  .nav-transparent .nav-links a:hover {
    color: var(--red) !important
  }

  /* Underline indicator off in mobile */
  .nav-links a::after {
    display: none
  }

  /* Dropdown stays inline */
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: var(--gray-50) !important;
    border-radius: 8px;
    padding: 6px 0 6px 16px;
    margin-top: 4px;
    display: none;
    pointer-events: auto !important
  }

  .dropdown.active .dropdown-menu {
    display: block
  }

  .nav-transparent .nav-links .dropdown-menu a,
  .dropdown-menu a {
    color: var(--charcoal) !important;
    border-bottom: none;
    font-size: .9rem;
    padding: 8px 0
  }

  .dropdown-menu a:hover {
    color: var(--red) !important
  }

  /* Hamburger bar colours */
  .nav-transparent .nav-toggle span {
    background: #fff
  }

  .navbar.scrolled .nav-toggle span {
    background: var(--charcoal)
  }

  /* Overlay backdrop when menu open */
  .nav-links.open::before {
    content: '';
    position: fixed;
    inset: 0;
    left: auto;
    right: 280px;
    background: rgba(0, 0, 0, .4);
    z-index: -1
  }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 40%, #1E2B31 100%);
  overflow: hidden;
  padding-top: 80px
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.hero-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 152, 29, .4);
  animation: float var(--d) ease-in-out infinite
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .3
}

.hero-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -100px;
  right: -100px
}

.hero-glow-2 {
  width: 400px;
  height: 400px;
  background: var(--purple);
  bottom: -100px;
  left: -50px
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-30px) scale(1.5)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: .9rem;
  font-weight: 500;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 28px;
  animation: fadeInDown .8s
}

.hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp .8s
}

.hero-sub {
  font-family: var(--font-bj);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, .7);
  max-width: 1100px;
  margin: 0 auto 40px;
  animation: fadeInUp .8s .1s both
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp .8s .2s both
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  animation: fadeInUp .8s .3s both
}

.stat-item {
  text-align: center
}

.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.stat-label {
  font-size: .85rem;
  color: rgba(255, 255, 255, .5)
}

/* ============ ABOUT ============ */
.about {
  background: var(--gray-50)
}

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

.about-text h3 {
  font-family: var(--font-h);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal)
}

.about-text p {
  margin-bottom: 16px;
  color: var(--gray-600)
}

.about-text .btn {
  margin-top: 8px
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

.about-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
  transition: all .3s;
  border: 1px solid rgba(0, 0, 0, .04)
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1)
}

.about-card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px
}

.about-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px
}

.about-card p {
  font-size: .85rem;
  color: var(--gray-400)
}

/* ============ MISSION & VISION CARDS ============ */
.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px
}

.mission-vision-card {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
  transition: all .4s;
  border: 1px solid rgba(0, 0, 0, .04);
  position: relative;
  overflow: hidden
}

.mission-vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .4s
}

.mission-vision-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  border-color: rgba(248, 152, 29, .2)
}

.mission-vision-card:hover::before {
  transform: scaleX(1)
}

.mission-vision-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block
}

.mission-vision-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--charcoal)
}

.mission-vision-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto
}

/* ============ GEANYAI / HOW IT WORKS ============ */
.geanyai-section {
  background: var(--white)
}

.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
  flex-wrap: wrap
}

.step-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  max-width: 300px;
  flex: 1;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
  transition: all .3s;
  position: relative
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  border-color: var(--orange)
}

.step-icon {
  font-size: 2.8rem;
  margin-bottom: 12px
}

.step-num {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, .04)
}

.step-card h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px
}

.step-card p {
  font-size: .9rem;
  color: var(--gray-600)
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px
}

.connector-line {
  width: 48px;
  height: 2px;
  background: var(--grad);
  position: relative
}

.connector-line::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: -10px;
  color: var(--red);
  font-size: 1.2rem
}

/* Integrations */
.integrations {
  margin-top: 40px
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 800px;
  margin: 32px auto 0
}

.integration-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: all .3s;
  cursor: default
}

.integration-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(248, 152, 29, .15);
  border-color: var(--orange)
}

.integration-card span {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px
}

.integration-card p {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-800)
}

/* Create Agent */
.create-agent {
  margin-top: 40px
}

.create-agent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center
}

.create-steps {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.create-step {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.step-badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.create-step h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px
}

.create-step p {
  font-size: .9rem;
  color: var(--gray-600)
}

.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center
}

.video-box {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1E2B31, #2a1a3e);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, .08)
}

.play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .3s;
  box-shadow: 0 4px 24px rgba(227, 30, 36, .4)
}

.play-btn:hover {
  transform: scale(1.1)
}

/* ============ SOLUTIONS ============ */
.solutions {
  background: var(--gray-50)
}

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

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--gray-200);
  background: transparent;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .3s;
  font-family: var(--font-b);
  color: var(--gray-600)
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--grad-btn);
  color: #fff;
  border-color: transparent
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px
}

.agent-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid rgba(0, 0, 0, .04);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow)
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s
}

.agent-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(248, 152, 29, .2)
}

.agent-card:hover::before {
  transform: scaleX(1)
}

.agent-card-icon {
  font-size: 2rem;
  margin-bottom: 12px
}

.agent-card-cat {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .1));
  color: var(--purple);
  margin-bottom: 10px
}

.agent-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px
}

.agent-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6
}

.load-more {
  text-align: center;
  margin-top: 40px
}

/* ============ CASE STUDIES ============ */
.case-studies {
  background: var(--white)
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px
}

.case-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all .3s;
  border-top: 4px solid var(--accent, var(--orange))
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1)
}

.case-tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .1));
  color: var(--purple);
  margin-bottom: 12px
}

.case-card h4 {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px
}

.case-card p {
  font-size: .9rem;
  color: var(--gray-600);
  margin-bottom: 16px
}

.case-link {
  font-weight: 600;
  color: var(--red);
  font-size: .9rem;
  transition: color .3s
}

.case-link:hover {
  color: var(--orange)
}

/* ============ ROI ============ */
.roi {
  background: linear-gradient(135deg, #0f172a, #1a1035, #1E2B31);
  color: #fff
}

.roi .section-tag {
  color: var(--orange);
  background: rgba(248, 152, 29, .12)
}

.roi .section-header h2 {
  color: #fff
}

.roi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px
}

.roi-card {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  transition: all .3s
}

.roi-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .08)
}

.roi-num {
  font-family: var(--font-h);
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.roi-suffix {
  font-family: var(--font-h);
  font-size: 2rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.roi-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .6);
  font-weight: 500
}

/* ============ CONTACT ============ */
.contact {
  background: var(--gray-50)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-item span {
  font-size: 1.5rem;
  flex-shrink: 0
}

.contact-item h4 {
  font-family: var(--font-h);
  font-weight: 700;
  margin-bottom: 2px
}

.contact-item p {
  font-size: .9rem;
  color: var(--gray-600)
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.contact-form input,
.contact-form textarea {
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 1rem;
  font-family: var(--font-b);
  transition: border-color .3s;
  outline: none;
  background: #fff
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange)
}

.contact-form textarea {
  resize: vertical
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--gray-600);
  cursor: pointer
}

.checkbox-label input {
  accent-color: var(--red)
}

.form-msg {
  font-size: .9rem;
  font-weight: 500;
  min-height: 20px
}

.form-msg.success {
  color: #16a34a
}

.form-msg.error {
  color: var(--red)
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .7);
  padding: 80px 0 32px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px
}

.footer-brand .nav-logo {
  margin-bottom: 12px;
  display: inline-block
}

.footer .logo-geany {
  color: #fff
}

.footer-brand .logo-img {
  width: 200px;
  height: auto;
  max-width: none
}

.footer-brand p {
  font-size: .9rem;
  margin-bottom: 4px
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 8px
}

.footer-links h4 {
  font-family: var(--font-h);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1rem
}

.footer-links a,
.footer-links p {
  display: block;
  font-size: .9rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 10px;
  transition: color .3s
}

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

/* anchors inside contact <p> tags must stay inline so flex row works */
.footer-links p a {
  display: inline;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color .3s;
}

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

/* Contact info rows (phone & email) — these ARE <a> elements so must override .footer-links a */
.footer-contact-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px !important;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75) !important;
  text-decoration: none !important;
}

.footer-contact-row svg {
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.footer-contact-row:hover {
  color: var(--orange) !important;
}

.footer-contact-row:hover svg {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 24px;
  text-align: center;
  font-size: .85rem;
  color: rgba(255, 255, 255, .65)
}

.footer-bottom p {
  transition: color .25s ease, font-weight .25s ease
}

.footer-bottom p:hover {
  color: #fff;
  font-weight: 700
}

/* ============ footer social media icons ============ */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--grad);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(248, 152, 29, 0.25);
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  transform: scale(1.1);
}

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px)
  }

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px)
  }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all .7s cubic-bezier(.22, 1, .36, 1)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ============ ABOUT HERO REDESIGN ============ */
.about-hero-section.hero-professional {
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .1));
  color: #1a1a1a;
  padding: 80px 0;
  position: relative;
  overflow: visible;
  min-height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

@media(max-width:768px) {
  .about-hero-section.hero-professional {
    padding: 60px 0;
    display: flex;
    align-items: center;
    justify-content: center
  }
}

@media(max-width:480px) {
  .about-hero-section.hero-professional {
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center
  }
}

.about-hero-section.hero-professional .container {
  display: flex;
  align-items: center;
  justify-content: center
}

.hero-content-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
  justify-content: center
}

@media(max-width:1100px) {
  .hero-content-grid {
    gap: 32px
  }
}

@media (max-width: 768px) {
  .hero-content-grid {
    gap: 28px;
    text-align: center
  }
}

@media(max-width:480px) {
  .hero-content-grid {
    gap: 20px
  }
}

.hero-text-block {
  text-align: center;
  width: 100%;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 8px
}

@media(max-width:480px) {
  .hero-text-block {
    padding: 0
  }
}

.hero-text-block .section-tag {
  margin-bottom: 16px;
  justify-content: center;
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.75rem
}

@media(max-width:480px) {
  .hero-text-block .section-tag {
    margin-bottom: 8px;
    padding: 4px 10px;
    font-size: 0.65rem
  }
}

.hero-text-block h1 {
  font-family: var(--font-h);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.25;
  color: #1a1a1a;
  overflow-wrap: break-word;
  word-break: break-word;
  letter-spacing: -0.5px
}

@media(max-width:640px) {
  .hero-text-block h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 18px;
    line-height: 1.3
  }
}

@media(max-width:480px) {
  .hero-text-block h1 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: 16px;
    line-height: 1.25
  }
}

.hero-lead {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 18px;
  line-height: 1.7;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
  font-weight: 500
}

@media(max-width:640px) {
  .hero-lead {
    font-size: 0.95rem;
    margin-bottom: 14px
  }
}

@media(max-width:480px) {
  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.6
  }
}

.hero-detail {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 16px;
  line-height: 1.7;
  width: 100%;
  overflow-wrap: break-word;
  word-break: break-word
}

@media(max-width:640px) {
  .hero-detail {
    font-size: 0.9rem;
    margin-bottom: 14px
  }
}

@media(max-width:480px) {
  .hero-detail {
    font-size: 0.85rem;
    margin-bottom: 12px;
    line-height: 1.6
  }
}

.hero-features {
  margin: 24px 0 32px;
  width: 100%;
  text-align: center
}

@media(max-width:768px) {
  .hero-features {
    margin: 20px 0 28px
  }
}

@media(max-width:480px) {
  .hero-features {
    margin: 16px 0 20px
  }
}

.hero-conclusion {
  font-size: 0.95rem;
  color: #555;
  margin-top: 0;
  line-height: 1.7;
  width: 100%;
  font-weight: 500;
  overflow-wrap: break-word;
  word-break: break-word
}

@media(max-width:640px) {
  .hero-conclusion {
    font-size: 0.9rem
  }
}

@media(max-width:480px) {
  .hero-conclusion {
    font-size: 0.85rem;
    line-height: 1.6
  }
}

.hero-features h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.3px
}

@media(max-width:640px) {
  .hero-features h3 {
    font-size: 1.2rem;
    margin-bottom: 20px
  }
}

@media(max-width:480px) {
  .hero-features h3 {
    font-size: 1.1rem;
    margin-bottom: 16px
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 0;
  width: 100%;
  justify-items: center
}

@media(max-width:1200px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
  }
}

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

@media(max-width:480px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 14px 12px;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(248, 152, 29, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease
}

@media(max-width:640px) {
  .feature-item {
    padding: 12px 10px;
    gap: 8px
  }
}

@media(max-width:480px) {
  .feature-item {
    padding: 10px 8px;
    gap: 8px
  }
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(248, 152, 29, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(248, 152, 29, 0.1)
}

@media(max-width:480px) {
  .feature-item:hover {
    transform: none
  }
}

.feature-icon {
  font-size: 1.6rem;
  display: block
}

@media(max-width:480px) {
  .feature-icon {
    font-size: 1.4rem
  }
}

.feature-item p {
  font-size: 0.85rem;
  color: #333;
  margin: 0;
  font-weight: 500;
  line-height: 1.3
}

@media(max-width:480px) {
  .feature-item p {
    font-size: 0.8rem;
    line-height: 1.2
  }
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px
}

.hero-visual {
  display: none
}

@media(min-width:769px) {
  .hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px
  }
}

.hero-visual-bg {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .1));
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .1)
}

.floating-elements {
  position: absolute;
  inset: 0
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--purple));
  opacity: .6;
  animation: float 8s ease-in-out infinite
}

.circle-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 20%;
  animation-delay: 0s
}

.circle-2 {
  width: 60px;
  height: 60px;
  top: 60%;
  right: 25%;
  animation-delay: 2s
}

.circle-3 {
  width: 40px;
  height: 40px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s
}

@media (max-width: 768px) {
  .hero-content-grid {
    text-align: center
  }

  .hero-text-block {
    text-align: center
  }

  .hero-lead,
  .hero-detail {
    max-width: 100%
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:480px) {
  .hero-content-grid {
    gap: 28px
  }

  .hero-text-block h1 {
    font-size: clamp(1.6rem, 5vw, 2.5rem)
  }

  .hero-lead {
    font-size: 1rem
  }

  .hero-detail {
    font-size: 0.95rem
  }

  .features-grid {
    grid-template-columns: 1fr
  }
}

.mission-vision-section .section-header {
  margin-bottom: 56px
}

@media(max-width:768px) {
  .mission-vision-section .section-header {
    margin-bottom: 48px
  }
}

@media(max-width:480px) {
  .mission-vision-section .section-header {
    margin-bottom: 36px
  }
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
  width: 100%
}

@media (max-width: 960px) {
  .mission-vision-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .mission-vision-grid {
    gap: 24px
  }
}

.vision-cards {
  display: grid;
  gap: 24px
}

.mission-vision-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 20px 60px rgba(15, 23, 42, .06);
  text-align: left
}

@media(max-width:480px) {
  .mission-vision-card {
    padding: 24px 20px
  }
}

.mission-card-title {
  display: inline-flex;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(248, 152, 29, .12);
  color: var(--red);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 22px
}

.mission-vision-card h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--charcoal);
  line-height: 1.2
}

@media(max-width:480px) {
  .mission-vision-card h3 {
    font-size: 1.3rem;
    margin-bottom: 14px
  }
}

.mission-vision-card p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 680px
}

@media(max-width:480px) {
  .mission-vision-card p {
    font-size: 0.95rem;
    line-height: 1.7
  }
}

.vision-image-card .gradient-border {
  padding: 14px;
  border-radius: 32px;
  background: linear-gradient(135deg, #F8981D, #E31E24, #9E2A8D)
}

.vision-image-card img {
  width: 100%;
  display: block;
  border-radius: 26px;
  aspect-ratio: 4/5;
  object-fit: cover
}

@media (max-width: 960px) {
  .vision-image-card {
    order: -1
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 8vw, 3.6rem)
  }

  .hero-list-card ul {
    grid-template-columns: 1fr
  }

  .hero-list-card {
    padding: 28px 24px
  }
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 180px 0 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 60%, #1E2B31 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(248, 152, 29, 0.15), transparent);
  pointer-events: none
}

.page-header h1 {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto
}

.case-study-hero {
  position: relative;
  overflow: hidden
}

.case-study-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 22% 28%, rgba(248, 152, 29, 0.16), transparent 24%), radial-gradient(circle at 78% 12%, rgba(158, 42, 141, 0.16), transparent 18%);
  pointer-events: none
}

.case-study-panel {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18)
}

.case-study-panel.inverse {
  background: #111827;
  border-color: rgba(255, 255, 255, .12)
}

.case-study-panel h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: #fff
}

.case-study-panel h3 {
  font-size: 1.3rem;
  margin-bottom: 18px;
  color: #FBBF24
}

.case-study-panel p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.9;
  margin: 0
}

.case-study-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px
}

.case-study-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, .82);
  line-height: 1.9
}

.case-study-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #F8981D;
  font-size: 1.35rem;
  line-height: 1
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px
}

.case-study-grid.wide {
  grid-template-columns: repeat(3, minmax(280px, 1fr))
}

.case-study-highlight-card {
  background: #111827;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px
}

.case-study-highlight-card h3 {
  color: #fff;
  margin: 0 0 18px;
  font-size: 1.35rem;
  line-height: 1.25
}

.case-study-highlight-card p {
  color: rgba(255, 255, 255, .78);
  line-height: 1.9;
  margin: 0
}

.case-study-highlight-card strong {
  color: #FBBF24
}

.case-study-dark {
  background: #0f172a;
  color: #fff
}

.case-study-dark .section-header {
  text-align: left
}

.case-study-dark .section-header h2 {
  color: #fff
}

.case-study-dark .section-header .section-tag {
  background: rgba(248, 152, 29, .12);
  color: #F8981D
}

.case-study-dark a {
  color: #F8981D
}

@media(max-width:960px) {

  .case-study-grid,
  .case-study-grid.wide {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .case-study-panel {
    padding: 28px;
    border-radius: 24px
  }

  .case-study-highlight-card {
    padding: 26px;
    min-height: auto
  }
}

.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-image-prof {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #E2E8F0
}

.prof-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px
}

.prof-benefit-card {
  padding: 40px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  transition: all .3s
}

.prof-benefit-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05)
}

.prof-benefit-card h4 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--charcoal)
}

.prof-benefit-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6
}

.prof-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
  color: var(--orange)
}

.video-section-prof {
  background: linear-gradient(to bottom, #1E2B31, #0f172a);
  padding: 100px 0;
  color: #fff
}

.video-container-prof {
  max-width: 900px;
  margin: 40px auto 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  aspect-ratio: 16/9;
  min-height: 320px;
  background: #000;
}

.video-container-prof iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============ TESTIMONIAL SLIDER ============ */
.testimonial-slider-container {
  overflow: hidden;
  max-width: 1000px;
  margin: 50px auto 0;
  position: relative;
  padding: 10px 0
}

.testimonial-slider-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1)
}

.testimonial-slide {
  flex: 0 0 auto;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px
}

@media (min-width: 768px) {
  .testimonial-slide {
    width: 50%;
    min-width: 50%
  }
}

.testimonial-slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px
}

.testimonial-slider-controls .btn {
  padding: 12px 30px
}

.testimonial-slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px
}

.testimonial-slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: background 0.3s
}

.testimonial-slider-dots .dot.active {
  background: var(--orange)
}

.testimonial-card-prof {
  height: 100%;
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--gray-200);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column
}

.testimonial-text-prof {
  flex-grow: 1;
}

.testimonial-card-prof:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.testimonial-text-prof {
  font-size: 1rem;
  color: var(--gray-800);
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic
}

.testimonial-footer-prof {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px
}

.client-logo-prof {
  width: 45px;
  height: 45px;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  overflow: hidden
}

.testimonial-info-prof h5 {
  margin: 0;
  font-family: var(--font-h);
  font-size: 0.95rem;
  color: var(--charcoal);
  font-weight: 700
}

.testimonial-info-prof p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--gray-500)
}

/* ============ CLIENTS CAROUSEL ============ */
.clients-carousel-container {
  overflow: hidden;
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative
}

.clients-carousel-track {
  display: flex;
  animation: slide 22s linear infinite
}

.clients-carousel-track:hover {
  animation-play-state: paused
}

.client-logo-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s
}

.client-logo-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg)
}

.client-logo-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain
}

@keyframes slide {
  0% {
    transform: translateX(0)
  }

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .client-logo-item {
    width: 150px;
    margin: 0 10px;
    padding: 15px
  }

  .client-logo-item img {
    max-height: 60px
  }
}

@media (max-width: 480px) {
  .client-logo-item {
    width: 120px;
    margin: 0 8px;
    padding: 12px
  }

  .client-logo-item img {
    max-height: 50px
  }
}

/* ============ PREMIUM UTILITIES ============ */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05)
}

.gradient-border {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 2px
}

.gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  border-radius: 20px;
  z-index: -1;
  margin: -1px
}

@keyframes floating {
  0% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-15px)
  }

  100% {
    transform: translateY(0)
  }
}

.floating {
  animation: floating 6s ease-in-out infinite
}

/* ============ ABOUT REDESIGN ============ */
.about-hero-section {
  padding: 180px 0 100px;
  background: radial-gradient(circle at top right, rgba(248, 152, 29, 0.08), transparent 40%), radial-gradient(circle at bottom left, rgba(158, 42, 141, 0.08), transparent 40%);
  width: 100%
}

@media(max-width:768px) {
  .about-hero-section {
    padding: 160px 0 80px
  }
}

@media(max-width:480px) {
  .about-hero-section {
    padding: 140px 0 60px
  }
}

.mission-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  margin-top: 80px
}

.mission-text h2 {
  font-size: 3rem;
  margin-bottom: 24px
}

.mission-text p {
  font-size: 1.15rem;
  color: var(--gray-600);
  line-height: 1.8
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px
}

.value-card {
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--gray-200);
  transition: all .4s;
  box-shadow: var(--shadow)
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-lg)
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--grad-btn);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px
}

.cta-banner {
  background: var(--grad);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  border-radius: 40px;
  margin: 100px 0;
  overflow: hidden;
  position: relative
}

.cta-banner h2 {
  font-size: 3rem;
  margin-bottom: 20px
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/about-vision.png');
  background-size: cover;
  opacity: 0.1;
  mix-blend-mode: overlay
}

/* ============ WHY CHOOSE US ============ */
.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.why-text h2 {
  font-size: 3rem;
  margin-top: 15px
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.why-point-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform .3s, border-color .3s
}

.why-point-item:hover {
  transform: translateX(8px);
  border-color: var(--orange)
}

.why-point-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(248, 152, 29, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0
}

.why-point-item p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal)
}

/* ============ PILLARS GRID ============ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.pillar-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(248, 152, 29, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.pillar-card h3 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.pillar-card>p {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.pillar-content h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-500);
  margin-bottom: 16px;
  margin-top: 24px;
  font-weight: 700;
}

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

.pillar-content ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--gray-700);
}

.pillar-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: bold;
}

.outcome-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.outcome-tags span {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-700);
  font-weight: 500;
}

.chat-bubbles {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.chat-bubble {
  background: var(--gray-50);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  align-self: flex-start;
  position: relative;
  width: 85%;
}

.chat-bubble:nth-child(even) {
  background: rgba(248, 152, 29, 0.05);
  border-color: rgba(248, 152, 29, 0.2);
  border-radius: 16px 16px 4px 16px;
  align-self: flex-end;
  color: var(--charcoal);
  font-weight: 500;
}

.highlight-box {
  margin-top: 24px;
  padding: 20px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.1), rgba(217, 72, 66, 0.1));
  border: 1px solid rgba(248, 152, 29, 0.2);
  color: var(--charcoal);
  text-align: center;
}

/* ============ WHAT IS GEANYAI PAGE ============ */
.geanyai-hero {
  min-height: auto;
  padding: 150px 0 90px;
}

.geanyai-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.geanyai-hero-content {
  color: #fff;
}

.geanyai-hero-content h1 {
  margin-bottom: 22px;
}

.geanyai-hero-content .hero-sub {
  max-width: 680px;
  margin: 0 0 34px 0;
}

.geanyai-hero-actions {
  justify-content: flex-start;
  margin-bottom: 0;
}

.geanyai-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.geanyai-outline:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.geanyai-hero-visual {
  display: flex;
  justify-content: center;
}

.geanyai-visual-card {
  width: min(500px, 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.geanyai-visual-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.geanyai-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.35), rgba(158, 42, 141, 0.35));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50px;
  padding: 7px 14px;
}

.geanyai-flow-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
}

.geanyai-flow-center {
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.3), rgba(227, 30, 36, 0.3));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

.geanyai-flow-arrow {
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  margin: 8px 0;
  font-weight: 700;
}

/* ============ DROPDOWN MENU ============ */
.nav-links li {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  min-width: 250px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  list-style: none;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

/* Little pointer triangle for the dropdown */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-left: 1px solid rgba(0, 0, 0, 0.06);
  z-index: -1;
}

.dropdown-menu a {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
  margin: 2px 0;
}

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

.dropdown-menu a:hover {
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.08), rgba(227, 30, 36, 0.08));
  color: var(--red);
  padding-left: 20px;
}

.arrow {
  font-size: 0.7em;
  margin-left: 4px;
  transition: transform 0.3s;
  display: inline-block;
}

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

@media (min-width: 1101px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============ RESPONSIVE ============ */
@media(max-width:992px) {

  .about-grid,
  .create-agent-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .roi-grid {
    grid-template-columns: 1fr 1fr
  }

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

  .step-connector {
    display: none
  }

  .steps-row {
    flex-direction: column;
    align-items: center;
    gap: 20px
  }

  .mission-grid,
  .values-grid,
  .why-choose-grid,
  .pillars-grid {
    grid-template-columns: 1fr
  }
}

@media(max-width:1100px) {

  .nav-links,
  .nav-cta {
    display: none !important
  }

  .nav-toggle {
    display: flex !important
  }

  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 10px;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: flex-start
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 20px;
    background: transparent;
    border: none;
    padding: 0;
  }

  .dropdown-menu::before {
    display: none !important;
  }

  .dropdown-menu a {
    color: var(--gray-600);
    padding: 10px 0;
    margin: 0;
  }

  .dropdown-menu a:hover {
    background: transparent;
    padding-left: 0;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
  }

  .dropdown.active .arrow {
    transform: rotate(180deg);
  }
}

@media(max-width:900px) {
  .nav-toggle {
    display: flex !important
  }
}

/* ============ ABOUTUS PAGE REDESIGNED ============ */

/* ---- Premium Hero ---- */
.aboutus-hero-premium {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 45%, #1E2B31 100%);
  overflow: hidden;
  padding: 120px 0 80px
}

@media(max-width:768px) {
  .aboutus-hero-premium {
    min-height: auto;
    padding: 110px 0 60px
  }
}

@media(max-width:480px) {
  .aboutus-hero-premium {
    padding: 100px 0 50px
  }
}

.aboutus-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.aboutus-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .25
}

.aboutus-glow-1 {
  width: 600px;
  height: 600px;
  background: #F8981D;
  top: -150px;
  right: -150px
}

.aboutus-glow-2 {
  width: 500px;
  height: 500px;
  background: #9E2A8D;
  bottom: -150px;
  left: -100px
}

.aboutus-glow-3 {
  width: 350px;
  height: 350px;
  background: #E31E24;
  top: 50%;
  left: 40%;
  transform: translate(-50%, -50%);
  opacity: .12
}

.aboutus-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(248, 152, 29, .5);
  animation: float var(--d) ease-in-out infinite
}

.aboutus-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 860px;
  margin: 0 auto
}

.aboutus-hero-badge {
  display: inline-block;
  padding: 9px 26px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 28px;
  letter-spacing: .5px;
  animation: fadeInDown .8s both
}

.aboutus-hero-title {
  font-family: var(--font-h);
  font-size: clamp(4rem, 10vw, 4.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp .8s both
}

@media(max-width:768px) {
  .aboutus-hero-title {
    font-size: clamp(2rem, 5.5vw, 3.2rem)
  }
}

@media(max-width:480px) {
  .aboutus-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    line-height: 1.25
  }
}

.aboutus-hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, .68);
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 24px;
  animation: fadeInUp .8s .1s both
}

@media(max-width:480px) {
  .aboutus-hero-sub {
    font-size: .95rem;
    margin-bottom: 20px
  }
}

.aboutus-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  padding: 22px 36px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: fadeInUp .8s .2s both;
  max-width: 680px;
  margin: 0 auto
}

@media(max-width:700px) {
  .aboutus-hero-stats {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    padding: 24px 20px;
    max-width: 100%;
    gap: 4px
  }
}

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

@media(max-width:700px) {
  .aboutus-stat {
    padding: 10px 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center
  }
}

.aboutus-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1
}

@media(max-width:480px) {
  .aboutus-stat-num {
    font-size: 1.8rem
  }
}

.aboutus-stat-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-top: 5px
}

.aboutus-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0
}

@media(max-width:700px) {
  .aboutus-stat-divider {
    width: 60%;
    height: 1px;
    margin: 4px auto
  }
}

.about-hero-redesigned {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.08), rgba(158, 42, 141, 0.06));
  width: 100%
}

@media(max-width:768px) {
  .about-hero-redesigned {
    padding: 80px 0
  }
}

@media(max-width:480px) {
  .about-hero-redesigned {
    padding: 50px 0
  }
}

.hero-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.15), rgba(227, 30, 36, 0.1));
  border: 1px solid rgba(248, 152, 29, 0.3);
  color: #E31E24;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px
}

@media(max-width:480px) {
  .hero-tag {
    padding: 6px 16px;
    font-size: 0.7rem;
    margin-bottom: 14px
  }
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: -0.8px
}

@media(max-width:768px) {
  .hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 24px
  }
}

@media(max-width:480px) {
  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 18px;
    line-height: 1.2
  }
}

.about-content-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center
}

.content-intro {
  font-size: 1.15rem;
  color: #2d3748;
  line-height: 1.8;
  font-weight: 600;
  background: rgba(248, 152, 29, 0.08);
  padding: 18px 24px;
  border-radius: 12px;
  border-left: 4px solid #F8981D
}

@media(max-width:480px) {
  .content-intro {
    font-size: 1rem;
    padding: 14px 16px
  }
}

.content-detail {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto
}

@media(max-width:480px) {
  .content-detail {
    font-size: 0.9rem;
    line-height: 1.65
  }
}

.features-section {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid rgba(248, 152, 29, 0.2)
}

@media(max-width:480px) {
  .features-section {
    margin-top: 28px;
    padding-top: 28px
  }
}

.features-title {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: -0.3px
}

@media(max-width:768px) {
  .features-title {
    font-size: 1.4rem;
    margin-bottom: 24px
  }
}

@media(max-width:480px) {
  .features-title {
    font-size: 1.2rem;
    margin-bottom: 18px
  }
}

.features-showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto
}

@media(max-width:1200px) {
  .features-showcase {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
  }
}

@media(max-width:992px) {
  .features-showcase {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
  }
}

@media(max-width:768px) {
  .features-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

@media(max-width:480px) {
  .features-showcase {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.feature-card {
  background: linear-gradient(135deg, #fff 0%, rgba(248, 152, 29, 0.04) 100%);
  border: 1px solid rgba(248, 152, 29, 0.2);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden
}

@media(max-width:480px) {
  .feature-card {
    padding: 18px 12px
  }
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(248, 152, 29, 0.5);
  box-shadow: 0 12px 32px rgba(248, 152, 29, 0.15);
  background: linear-gradient(135deg, #fff 0%, rgba(248, 152, 29, 0.08) 100%)
}

@media(max-width:480px) {
  .feature-card:hover {
    transform: none
  }
}

.feature-card:hover::before {
  transform: scaleX(1)
}

.feature-number {
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: block
}

@media(max-width:480px) {
  .feature-number {
    font-size: 2rem
  }
}

.feature-card h4 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.4
}

@media(max-width:480px) {
  .feature-card h4 {
    font-size: 0.95rem
  }
}

.impact-statement {
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.08), rgba(248, 152, 29, 0.08));
  border: 2px solid rgba(248, 152, 29, 0.3);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 40px;
  text-align: center
}

@media(max-width:768px) {
  .impact-statement {
    padding: 20px 24px;
    margin-top: 32px
  }
}

@media(max-width:480px) {
  .impact-statement {
    padding: 16px 18px;
    margin-top: 24px
  }
}

.impact-statement p {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 600;
  line-height: 1.7;
  margin: 0
}

@media(max-width:768px) {
  .impact-statement p {
    font-size: 1rem
  }
}

@media(max-width:480px) {
  .impact-statement p {
    font-size: 0.9rem;
    line-height: 1.6
  }
}

.vision-mission-section {
  padding: 100px 0;
  background: #f8fafc
}

@media(max-width:768px) {
  .vision-mission-section {
    padding: 70px 0
  }
}

@media(max-width:480px) {
  .vision-mission-section {
    padding: 50px 0
  }
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto
}

@media(max-width:992px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

@media(max-width:480px) {
  .vision-mission-grid {
    gap: 24px
  }
}

.vision-card,
.mission-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease
}

@media(max-width:768px) {

  .vision-card,
  .mission-card {
    padding: 32px
  }
}

@media(max-width:480px) {

  .vision-card,
  .mission-card {
    padding: 24px
  }
}

.vision-card:hover,
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(248, 152, 29, 0.15);
  border-color: rgba(248, 152, 29, 0.3)
}

.card-header {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px
}

@media(max-width:480px) {
  .card-header {
    flex-direction: column;
    gap: 12px;
    text-align: center
  }
}

.card-icon {
  font-size: 3rem;
  display: block;
  min-width: 60px
}

@media(max-width:480px) {
  .card-icon {
    font-size: 2.5rem
  }
}

.vision-card h2,
.mission-card h2 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.3
}

@media(max-width:768px) {

  .vision-card h2,
  .mission-card h2 {
    font-size: 1.4rem
  }
}

@media(max-width:480px) {

  .vision-card h2,
  .mission-card h2 {
    font-size: 1.2rem
  }
}

.vision-card p,
.mission-card p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin: 0
}

@media(max-width:768px) {

  .vision-card p,
  .mission-card p {
    font-size: 0.95rem;
    line-height: 1.7
  }
}

@media(max-width:480px) {

  .vision-card p,
  .mission-card p {
    font-size: 0.9rem;
    line-height: 1.6
  }
}

@media(max-width:768px) {
  .hero-stats {
    gap: 24px
  }

  .agents-grid,
  .cases-grid {
    grid-template-columns: 1fr
  }

  .roi-grid {
    grid-template-columns: 1fr
  }

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

  .section {
    padding: 60px 0
  }

  .mission-text h2,
  .cta-banner h2 {
    font-size: 2rem
  }

  .geanyai-hero {
    padding: 130px 0 70px;
  }

  .geanyai-hero-content {
    text-align: center;
  }

  .geanyai-hero-content .hero-sub {
    margin: 0 auto 30px auto;
  }

  .geanyai-hero-actions {
    justify-content: center;
  }
}

@media(max-width:480px) {
  .about-hero-section.hero-professional {
    padding: 25px 0
  }

  .about-hero-section.hero-professional .container {
    padding: 0 10px
  }

  .hero-content-grid {
    gap: 12px
  }

  .hero-text-block {
    max-width: 100%
  }

  .hero-text-block .section-tag {
    padding: 4px 12px;
    font-size: 0.65rem;
    margin-bottom: 10px
  }

  .hero-text-block h1 {
    font-size: clamp(1.2rem, 3.5vw, 1.7rem);
    margin-bottom: 10px;
    line-height: 1.2
  }

  .hero-lead {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.5
  }

  .hero-detail {
    font-size: 0.75rem;
    margin-bottom: 8px;
    line-height: 1.5
  }

  .hero-features {
    margin: 10px 0 12px
  }

  .hero-features h3 {
    font-size: 0.95rem;
    margin-bottom: 10px
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 8px
  }

  .feature-item {
    padding: 6px 4px;
    gap: 4px;
    border-radius: 8px
  }

  .feature-item:hover {
    transform: none
  }

  .feature-icon {
    font-size: 1.1rem
  }

  .feature-item p {
    font-size: 0.7rem;
    line-height: 1.15
  }

  .hero-conclusion {
    font-size: 0.75rem;
    line-height: 1.5
  }

  .section {
    padding: 30px 0
  }

  .section-tag {
    padding: 4px 12px;
    font-size: 0.65rem
  }

  .section-header h2 {
    font-size: clamp(1.4rem, 4.5vw, 2rem);
    margin-bottom: 12px
  }

  .mission-vision-section {
    padding-top: 20px !important
  }

  .mission-vision-grid {
    gap: 16px
  }

  .mission-vision-card {
    padding: 16px 12px;
    border-radius: 12px
  }

  .mission-card-title {
    padding: 6px 12px;
    font-size: 0.7rem;
    margin-bottom: 10px
  }

  .mission-vision-card h3 {
    font-size: 1rem;
    margin-bottom: 8px
  }

  .mission-vision-card p {
    font-size: 0.8rem;
    line-height: 1.5
  }
}

@media(max-width:992px) {
  .geanyai-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ============ ASSIST AI INTRO SECTION ============ */
.assistai-intro-section {
  padding: 100px 0;
  background: #fff
}

@media(max-width:768px) {
  .assistai-intro-section {
    padding: 70px 0
  }
}

@media(max-width:480px) {
  .assistai-intro-section {
    padding: 50px 0
  }
}

/* Tagline */
.assistai-tagline-wrap {
  text-align: center;
  margin-bottom: 56px
}

@media(max-width:480px) {
  .assistai-tagline-wrap {
    margin-bottom: 36px
  }
}

.assistai-tagline-badge {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.12), rgba(227, 30, 36, 0.1), rgba(158, 42, 141, 0.1));
  border: 1.5px solid rgba(248, 152, 29, 0.35);
  color: #1a1a1a;
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.2px
}

@media(max-width:768px) {
  .assistai-tagline-badge {
    font-size: 1rem;
    padding: 12px 24px
  }
}

@media(max-width:480px) {
  .assistai-tagline-badge {
    font-size: 0.9rem;
    padding: 10px 18px
  }
}

/* Description Cards */
.assistai-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 60px
}

@media(max-width:768px) {
  .assistai-desc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 44px
  }
}

@media(max-width:480px) {
  .assistai-desc-grid {
    gap: 16px;
    margin-bottom: 32px
  }
}

.assistai-desc-card {
  background: linear-gradient(135deg, #f8fafc, rgba(248, 152, 29, 0.04));
  border: 1px solid rgba(248, 152, 29, 0.18);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: all 0.35s ease;
  overflow: hidden
}

.assistai-desc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: left
}

.assistai-desc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(248, 152, 29, 0.12);
  border-color: rgba(248, 152, 29, 0.4)
}

.assistai-desc-card:hover::before {
  transform: scaleX(1)
}

@media(max-width:480px) {
  .assistai-desc-card {
    padding: 24px 20px;
    border-radius: 16px
  }
}

.assistai-desc-main {
  border-left: 4px solid #F8981D
}

.assistai-desc-icon {
  font-size: 2.4rem;
  margin-bottom: 16px
}

@media(max-width:480px) {
  .assistai-desc-icon {
    font-size: 2rem;
    margin-bottom: 12px
  }
}

.assistai-desc-card p {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.85;
  margin: 0
}

.assistai-desc-card p strong {
  color: #1a1a1a;
  font-weight: 700
}

@media(max-width:480px) {
  .assistai-desc-card p {
    font-size: 0.95rem;
    line-height: 1.7
  }
}

/* Department Pills */
.assistai-dept-section {
  text-align: center;
  margin-bottom: 64px;
  padding: 48px 40px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.06), rgba(158, 42, 141, 0.05));
  border-radius: 24px;
  border: 1px solid rgba(248, 152, 29, 0.15)
}

@media(max-width:768px) {
  .assistai-dept-section {
    padding: 36px 24px;
    margin-bottom: 48px
  }
}

@media(max-width:480px) {
  .assistai-dept-section {
    padding: 24px 16px;
    margin-bottom: 36px;
    border-radius: 16px
  }
}

.assistai-dept-label {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 28px
}

@media(max-width:480px) {
  .assistai-dept-label {
    font-size: 1rem;
    margin-bottom: 20px
  }
}

.assistai-dept-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center
}

@media(max-width:480px) {
  .assistai-dept-pills {
    gap: 8px
  }
}

.dept-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #fff;
  border: 1.5px solid rgba(248, 152, 29, 0.3);
  color: #1E2B31;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04)
}

.dept-pill:hover {
  background: linear-gradient(135deg, #F8981D, #E31E24);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(248, 152, 29, 0.25)
}

@media(max-width:480px) {
  .dept-pill {
    padding: 8px 14px;
    font-size: 0.82rem
  }
}

/* Capabilities Grid */
.assistai-capabilities {
  margin-bottom: 64px
}

@media(max-width:480px) {
  .assistai-capabilities {
    margin-bottom: 40px
  }
}

.assistai-cap-title {
  font-family: var(--font-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.4px
}

@media(max-width:768px) {
  .assistai-cap-title {
    font-size: 1.6rem;
    margin-bottom: 32px
  }
}

@media(max-width:480px) {
  .assistai-cap-title {
    font-size: 1.35rem;
    margin-bottom: 24px
  }
}

.assistai-cap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px
}

@media(max-width:1100px) {
  .assistai-cap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
  }
}

@media(max-width:768px) {
  .assistai-cap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }
}

@media(max-width:480px) {
  .assistai-cap-grid {
    grid-template-columns: 1fr;
    gap: 12px
  }
}

.assistai-cap-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden
}

.assistai-cap-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform 0.35s ease;
  transform-origin: center
}

.assistai-cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(248, 152, 29, 0.14);
  border-color: rgba(248, 152, 29, 0.3)
}

.assistai-cap-card:hover::after {
  transform: scaleX(1)
}

@media(max-width:480px) {
  .assistai-cap-card {
    padding: 20px 16px;
    border-radius: 14px
  }
}

.cap-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.12), rgba(158, 42, 141, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

@media(max-width:480px) {
  .cap-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 12px
  }
}

.cap-icon {
  font-size: 1.8rem;
  display: block
}

@media(max-width:480px) {
  .cap-icon {
    font-size: 1.5rem
  }
}

.assistai-cap-card h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.35
}

.assistai-cap-card p {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0
}

/* Impact Statement */
.assistai-impact {
  background: linear-gradient(135deg, #1E2B31 0%, #1a1035 50%, #0f172a 100%);
  border-radius: 28px;
  padding: 64px 48px;
  position: relative;
  overflow: hidden
}

.assistai-impact::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(248, 152, 29, 0.15);
  border-radius: 50%;
  filter: blur(80px)
}

.assistai-impact::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: rgba(158, 42, 141, 0.15);
  border-radius: 50%;
  filter: blur(60px)
}

@media(max-width:768px) {
  .assistai-impact {
    padding: 44px 32px;
    border-radius: 20px
  }
}

@media(max-width:480px) {
  .assistai-impact {
    padding: 32px 20px;
    border-radius: 16px
  }
}

.assistai-impact-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 48px
}

@media(max-width:768px) {
  .assistai-impact-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center
  }
}

@media(max-width:480px) {
  .assistai-impact-inner {
    gap: 24px
  }
}

.impact-stats {
  display: flex;
  gap: 36px;
  flex-shrink: 0
}

@media(max-width:768px) {
  .impact-stats {
    justify-content: center;
    gap: 28px
  }
}

@media(max-width:480px) {
  .impact-stats {
    gap: 20px
  }
}

.impact-stat {
  text-align: center
}

.impact-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1
}

@media(max-width:480px) {
  .impact-num {
    font-size: 2rem
  }
}

.impact-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px
}

.impact-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
  margin: 0
}

.impact-text strong {
  color: #fff;
  font-weight: 700
}

@media(max-width:480px) {
  .impact-text {
    font-size: 0.95rem;
    line-height: 1.65
  }
}

/* ============ VISION & MISSION REDESIGNED ============ */
.vision-mission-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%)
}

@media(max-width:768px) {
  .vision-mission-section {
    padding: 80px 0
  }
}

@media(max-width:480px) {
  .vision-mission-section {
    padding: 56px 0
  }
}

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

@media(max-width:480px) {
  .vm-header {
    margin-bottom: 44px
  }
}

.vm-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.12), rgba(158, 42, 141, 0.1));
  border: 1px solid rgba(248, 152, 29, 0.3);
  color: #E31E24;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px
}

.vm-heading {
  font-family: var(--font-h);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.8px
}

.vm-subtext {
  font-size: 1.05rem;
  color: #64748b;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7
}

.vm-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center
}

@media(max-width:960px) {
  .vm-layout {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

@media(max-width:480px) {
  .vm-layout {
    gap: 28px
  }
}

.vm-cards-col {
  display: flex;
  flex-direction: column;
  gap: 28px
}

@media(max-width:480px) {
  .vm-cards-col {
    gap: 20px
  }
}

/* VM Cards */
.vm-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1)
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(248, 152, 29, 0.14);
  border-color: rgba(248, 152, 29, 0.25)
}

@media(max-width:480px) {
  .vm-card {
    padding: 28px 24px;
    border-radius: 18px
  }
}

.vm-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #F8981D, #E31E24, #9E2A8D)
}

.vm-accent-mission {
  background: linear-gradient(90deg, #9E2A8D, #E31E24, #F8981D)
}

.vm-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 8px
}

.vm-card-top>div {
  display: flex;
  flex-direction: column;
  justify-content: center
}

@media(max-width:480px) {
  .vm-card-top {
    gap: 16px;
    margin-bottom: 16px
  }
}

.vm-icon-ring {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.15), rgba(227, 30, 36, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #F8981D;
  flex-shrink: 0;
  border: 1.5px solid rgba(248, 152, 29, 0.2)
}

.vm-icon-ring svg {
  stroke: currentColor;
}

.vm-icon-mission {
  background: linear-gradient(135deg, rgba(158, 42, 141, 0.15), rgba(227, 30, 36, 0.1));
  border-color: rgba(158, 42, 141, 0.25);
  color: #9E2A8D;
}

@media(max-width:480px) {
  .vm-icon-ring {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 1.6rem
  }
}

.vm-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #F8981D;
  margin-bottom: 0
}

.vm-label-mission {
  color: #9E2A8D
}

.vm-card-top>div>h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.25;
  margin: 0
}

@media(max-width:480px) {
  .vm-card-top>div>h3 {
    font-size: 1.15rem
  }
}

.vm-card>p {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
  margin: 0 0 24px 0
}

@media(max-width:480px) {
  .vm-card>p {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 18px
  }
}

.vm-card-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.vm-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 50px;
  background: rgba(248, 152, 29, 0.08);
  border: 1px solid rgba(248, 152, 29, 0.2);
  color: #1E2B31;
  font-size: 0.82rem;
  font-weight: 600
}

/* VM Image Column */
.vm-image-col {
  display: flex;
  align-items: center;
  justify-content: center
}

@media(max-width:960px) {
  .vm-image-col {
    order: -1
  }
}

.vm-image-frame {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 28px;
  overflow: visible
}

.vm-image-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(248, 152, 29, 0.3), rgba(158, 42, 141, 0.25));
  border-radius: 40px;
  filter: blur(40px);
  z-index: 0
}

.vm-image-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18)
}

.vm-image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 10px 22px;
  white-space: nowrap;
  font-family: var(--font-h);
  font-size: 0.88rem;
  font-weight: 700;
  color: #1E2B31;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8)
}

.vm-badge-icon {
  font-size: 1rem;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

/* ============ ABOUTUS TESTIMONIALS SECTION ============ */
.aboutus-testimonials-section {
  padding: 110px 0;
  background: var(--gray-50);
  position: relative;
  overflow: hidden
}

@media(max-width:768px) {
  .aboutus-testimonials-section {
    padding: 80px 0
  }
}

@media(max-width:480px) {
  .aboutus-testimonials-section {
    padding: 56px 0
  }
}

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

@media(max-width:480px) {
  .atm-header {
    margin-bottom: 40px
  }
}

/* Assist AI Intro two-column layout */
.assistai-intro {
  padding: 36px 0
}

.assistai-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto
}

.assistai-intro-text {
  font-family: 'Bai Jamjuree', sans-serif
}

.assistai-intro-text p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify
}

.assistai-intro-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08)
}

@media(max-width:992px) {
  .assistai-intro-grid {
    grid-template-columns: 1fr;
    padding: 0 16px
  }

  .assistai-intro-image {
    order: -1;
    margin-bottom: 18px
  }
}

/* ============ ABOUTUS CLIENTS SECTION ============ */
.aboutus-clients-section {
  padding: 100px 0 110px;
  background: #fff;
  position: relative;
  overflow: hidden
}

.aboutus-clients-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(248, 152, 29, 0.04), transparent 55%), radial-gradient(circle at 80% 50%, rgba(158, 42, 141, 0.04), transparent 55%);
  pointer-events: none
}

@media(max-width:768px) {
  .aboutus-clients-section {
    padding: 70px 0 80px
  }
}

@media(max-width:480px) {
  .aboutus-clients-section {
    padding: 50px 0 60px
  }
}

.aboutus-clients-section .atm-header {
  margin-bottom: 48px
}

@media(max-width:480px) {
  .aboutus-clients-section .atm-header {
    margin-bottom: 32px
  }
}

/* ============ LUCIDE ICON UTILITIES ============ */
.lucide-inline {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

.lucide-icon-md {
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

.lucide-icon-lg {
  display: inline-block;
  width: 2.2rem;
  height: 2.2rem;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

/* Icon color overrides for specific containers */
.assistai-desc-icon .lucide-icon-lg {
  color: #F8981D
}

.cap-icon-wrap .lucide-icon-md {
  color: #F8981D
}

.vm-icon-ring .lucide-icon-md {
  color: #E31E24
}

.vm-icon-mission .lucide-icon-md {
  color: #9E2A8D
}

.vm-chip .lucide-inline {
  color: #E31E24
}

.dept-pill .lucide-inline {
  color: #F8981D
}

.dept-pill:hover .lucide-inline {
  color: #fff
}

.aboutus-hero-badge .lucide-inline {
  color: rgba(255, 255, 255, 0.9)
}

.vm-badge-icon .lucide-inline {
  background: none;
  -webkit-text-fill-color: unset;
  color: #E31E24
}

/* ============================================
   CASE STUDIES PAGE — cs-* Components
   ============================================ */

/* ---- Hero ---- */
.cs-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 45%, #1E2B31 100%);
  overflow: hidden;
  padding: 140px 0 80px
}

.cs-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none
}

.cs-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .28
}

.cs-glow-1 {
  width: 580px;
  height: 580px;
  background: #F8981D;
  top: -160px;
  right: -130px
}

.cs-glow-2 {
  width: 480px;
  height: 480px;
  background: #9E2A8D;
  bottom: -140px;
  left: -100px
}

.cs-particle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(248, 152, 29, .45);
  animation: float var(--d) ease-in-out infinite
}

.cs-hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 860px;
  margin: 0 auto
}

/* Breadcrumb */
.cs-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 20px
}

.cs-breadcrumb-sep {
  color: rgba(255, 255, 255, .3)
}

.cs-breadcrumb-active {
  color: rgba(255, 255, 255, .85);
  font-weight: 600
}

/* Hero text */
.cs-hero-badge {
  display: inline-block;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  margin-bottom: 20px
}

.cs-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -1px
}

.cs-hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, .65);
  margin-bottom: 48px
}

/* Hero stats bar */
.cs-hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 20px;
  padding: 24px 40px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px)
}

@media(max-width:700px) {
  .cs-hero-stats {
    flex-direction: column;
    padding: 20px 24px;
    gap: 4px;
    width: 100%
  }
}

.cs-stat {
  text-align: center;
  padding: 0 28px
}

@media(max-width:700px) {
  .cs-stat {
    padding: 10px 0;
    width: 100%
  }
}

.cs-stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1
}

.cs-stat-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 5px
}

.cs-stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0
}

@media(max-width:700px) {
  .cs-stat-divider {
    width: 60%;
    height: 1px;
    margin: 2px auto
  }
}

/* ---- Section shared ---- */
.cs-section-header {
  text-align: center;
  margin-bottom: 60px
}

.cs-section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--charcoal);
  margin: 14px 0 18px;
  letter-spacing: -0.8px
}

.cs-desc {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto
}

/* ---- Two-column layout ---- */
.cs-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

@media(max-width:900px) {
  .cs-two-col {
    grid-template-columns: 1fr;
    gap: 40px
  }
}

.cs-col-text .cs-desc {
  margin: 0;
  margin-bottom: 32px
}

.cs-col-text .section-tag {
  margin-bottom: 14px
}

/* ---- Pain list ---- */
.cs-pain-list {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.cs-pain-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(227, 30, 36, .12);
  border-radius: 12px;
  padding: 14px 18px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .04)
}

.cs-pain-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(227, 30, 36, .1);
  color: #E31E24;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cs-pain-item p {
  margin: 0;
  font-size: .95rem;
  color: var(--charcoal);
  font-weight: 500
}

/* ---- Before card ---- */
.cs-before-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .09);
  border: 1px solid rgba(0, 0, 0, .06)
}

.cs-before-label {
  font-family: var(--font-h);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 20px
}

.cs-flow-old {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0
}

.cs-flow-node {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: .92rem;
  font-weight: 600;
  width: 100%;
  text-align: center
}

.cs-node-bad {
  background: rgba(227, 30, 36, .07);
  border: 1.5px solid rgba(227, 30, 36, .2);
  color: #C0182E
}

.cs-flow-arrow-down {
  font-size: 1.1rem;
  color: var(--gray-400);
  padding: 4px 0;
  line-height: 1
}

/* ---- Solution Section ---- */
.cs-solution-section {
  background: var(--gray-50)
}

.cs-agents-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px
}

.cs-agent-pill {
  background: #fff;
  border: 2px solid rgba(248, 152, 29, .3);
  border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: .92rem;
  color: var(--charcoal);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06)
}

.cs-agent-connector {
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 800
}

/* Automation cards */
.cs-automation-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
  border: 1px solid rgba(0, 0, 0, .05);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 24px;
  border-left: 5px solid var(--orange);
  transition: all .3s
}

.cs-automation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(248, 152, 29, .12)
}

.cs-auto-num {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 52px
}

.cs-auto-content {
  flex: 1
}

.cs-auto-content h3 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px
}

.cs-auto-content p {
  color: var(--gray-600);
  margin-bottom: 18px
}

@media(max-width:600px) {
  .cs-automation-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px
  }
}

/* Step flow */
.cs-steps-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px
}

.cs-step-bubble {
  background: linear-gradient(135deg, rgba(248, 152, 29, .1), rgba(158, 42, 141, .08));
  border: 1px solid rgba(248, 152, 29, .25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal)
}

.cs-step-arrow {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700
}

/* Result badge */
.cs-result-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(22, 163, 74, .1), rgba(22, 163, 74, .06));
  border: 1.5px solid rgba(22, 163, 74, .3);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: .92rem;
  font-weight: 700;
  color: #16a34a
}

/* Detail grid (Transport) */
.cs-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px
}

.cs-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .93rem;
  color: var(--charcoal)
}

.cs-detail-icon {
  font-size: 1.3rem;
  flex-shrink: 0
}

/* Chat demo */
.cs-chat-demo {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px
}

.cs-chat-q {
  background: var(--gray-100);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 18px;
  font-size: .9rem;
  color: var(--charcoal);
  font-weight: 500;
  align-self: flex-start;
  max-width: 80%;
  border: 1px solid var(--gray-200)
}

.cs-chat-a {
  background: linear-gradient(135deg, rgba(248, 152, 29, .12), rgba(158, 42, 141, .08));
  border-radius: 16px 16px 4px 16px;
  padding: 12px 18px;
  font-size: .9rem;
  color: var(--charcoal);
  font-weight: 600;
  align-self: flex-end;
  max-width: 80%;
  border: 1px solid rgba(248, 152, 29, .2)
}

/* ---- Results Section ---- */
.cs-results-section {
  background: #fff
}

.cs-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

@media(max-width:900px) {
  .cs-results-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .cs-results-grid {
    grid-template-columns: 1fr
  }
}

.cs-result-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
  transition: all .3s;
  position: relative;
  overflow: hidden
}

.cs-result-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left
}

.cs-result-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(248, 152, 29, .12);
  border-color: rgba(248, 152, 29, .2)
}

.cs-result-card:hover::before {
  transform: scaleX(1)
}

.cs-result-icon {
  font-size: 2.2rem;
  margin-bottom: 14px
}

.cs-result-card h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px
}

.cs-result-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.6
}

/* ---- Impact Section ---- */
.cs-impact-section {
  background: linear-gradient(135deg, #0f172a, #1a1035, #1E2B31);
  padding: 100px 0
}

.cs-impact-section .cs-section-header {
  margin-bottom: 50px
}

.cs-impact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center
}

@media(max-width:800px) {
  .cs-impact-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }
}

.cs-impact-highlight {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 28px;
  padding: 48px 36px;
  text-align: center;
  min-width: 220px
}

.cs-impact-num {
  font-family: var(--font-h);
  font-size: 4.5rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1
}

.cs-impact-unit {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  margin-top: 4px
}

.cs-impact-desc {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .4);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-top: 8px
}

/* Compare bars */
.cs-impact-compare {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.cs-compare-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap
}

.cs-compare-label {
  font-size: .88rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  min-width: 100px
}

.cs-compare-bar-wrap {
  flex: 1;
  background: rgba(255, 255, 255, .08);
  border-radius: 50px;
  height: 12px;
  overflow: hidden;
  min-width: 80px
}

.cs-compare-bar {
  height: 100%;
  border-radius: 50px;
  transition: width 1s cubic-bezier(.16, 1, .3, 1)
}

.cs-bar-ai {
  background: linear-gradient(90deg, #22c55e, #16a34a)
}

.cs-bar-human {
  background: linear-gradient(90deg, #E31E24, #F8981D)
}

.cs-compare-value {
  font-size: .92rem;
  font-weight: 700;
  white-space: nowrap
}

.cs-value-good {
  color: #4ade80
}

.cs-value-bad {
  color: #f87171
}

.cs-savings-tag {
  margin-top: 12px;
  display: inline-block;
  background: rgba(248, 152, 29, .15);
  border: 1px solid rgba(248, 152, 29, .35);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: .92rem;
  font-weight: 700;
  color: #F8981D
}

/* ---- Problem section background ---- */
.cs-problem-section {
  background: #fff;
  padding-top: 50px;
}

@media(max-width:768px) {
  .cs-problem-section {
    padding-top: 30px;
  }
}

/* ---- Responsive tweaks ---- */
@media(max-width:768px) {
  .cs-hero {
    padding: 120px 0 60px;
    min-height: auto
  }

  .cs-hero-stats {
    width: 100%
  }

  .cs-impact-section {
    padding: 70px 0
  }

  .cs-automation-card {
    padding: 24px
  }

  .cs-steps-flow {
    flex-direction: column;
    align-items: flex-start
  }

  .cs-step-arrow {
    transform: rotate(90deg)
  }
}

@media(max-width:480px) {
  .cs-hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem)
  }

  .cs-hero-sub {
    font-size: .95rem
  }

  .cs-section-title {
    font-size: clamp(1.5rem, 4.5vw, 2.2rem)
  }

  .cs-impact-num {
    font-size: 3rem
  }

  .cs-agent-pill {
    padding: 10px 16px;
    font-size: .82rem
  }
}

/* ---- Case Studies SVG Icon Sizing ---- */
.cs-node-svg {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 6px;
  flex-shrink: 0
}

.cs-pill-svg {
  display: inline-block;
  width: 17px;
  height: 17px;
  vertical-align: -4px;
  margin-right: 8px;
  flex-shrink: 0;
  stroke: var(--orange)
}

.cs-detail-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: var(--orange)
}

.cs-chat-svg {
  display: inline-block;
  width: 14px;
  height: 14px;
  vertical-align: -2px;
  margin-right: 5px;
  stroke: var(--orange);
  flex-shrink: 0
}

.cs-result-icon svg {
  width: 44px;
  height: 44px;
  display: block;
  margin: 0 auto;
  stroke: var(--orange)
}

/* ---- Dual logo switching (navbar) ---- */
.navbar .nav-logo .logo-img-black {
  display: block
}

.navbar .nav-logo .logo-img-white {
  display: none
}

.navbar.nav-transparent .nav-logo .logo-img-black {
  display: none
}

.navbar.nav-transparent .nav-logo .logo-img-white {
  display: block
}

.navbar.scrolled .nav-logo .logo-img-black {
  display: block
}

.navbar.scrolled .nav-logo .logo-img-white {
  display: none
}

/* ---- Assist AI Intro Theme Accent ---- */
.assistai-intro-text {
  position: relative;
  padding-left: 50px;
}

.assistai-intro-text::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--grad);
  border-radius: 6px;
}

/* ============================================================
   COLLECTION AI PAGE — cai-* Components
   ============================================================ */

/* ---- Hero ---- */
.cai-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
}

.cai-hero .cai-hero-badge {
  animation: fadeInDown 0.8s cubic-bezier(.22, 1, .36, 1) both;
}

.cai-hero .cs-hero-title {
  animation: fadeInUp 0.8s cubic-bezier(.22, 1, .36, 1) 0.15s both;
}

.cai-hero .cs-hero-sub {
  font-family: 'Bai Jamjuree', sans-serif;
  animation: fadeInUp 0.8s cubic-bezier(.22, 1, .36, 1) 0.3s both;
}

.cai-glow-3 {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: #E31E24;
  filter: blur(130px);
  opacity: .15;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none
}

.cai-grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none
}

.cai-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(248, 152, 29, .12);
  border: 1px solid rgba(248, 152, 29, .3);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #F8981D;
  margin-bottom: 22px
}

.cai-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #F8981D;
  animation: cai-pulse 2s ease-in-out infinite
}

@keyframes cai-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1
  }

  50% {
    transform: scale(1.5);
    opacity: .6
  }
}

/* ---- Section tag colour variants ---- */
.cai-tag-red {
  background: linear-gradient(135deg, rgba(227, 30, 36, .1), rgba(227, 30, 36, .05)) !important;
  color: #E31E24 !important
}

.cai-tag-green {
  background: linear-gradient(135deg, rgba(22, 163, 74, .12), rgba(22, 163, 74, .05)) !important;
  color: #16a34a !important
}

.cai-tag-purple {
  background: linear-gradient(135deg, rgba(158, 42, 141, .12), rgba(158, 42, 141, .05)) !important;
  color: #9E2A8D !important
}

/* ---- Challenge section ---- */
.cs-problem-section .cs-section-header {
  margin-bottom: 24px;
}

.cai-challenge-block {
  margin-bottom: 56px
}

.cai-challenge-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
  padding: 14px 24px;
  background: var(--gray-50);
  border-radius: 12px;
  border-left: 4px solid var(--red)
}

.cai-email-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

@media(max-width:900px) {
  .cai-email-types {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .cai-email-types {
    gap: 12px
  }
}

.cai-email-card {
  background: #fff;
  border: 1px solid rgba(227, 30, 36, .12);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden
}

.cai-email-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E31E24, #F8981D);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease
}

.cai-email-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(227, 30, 36, .1);
  border-color: rgba(227, 30, 36, .25)
}

.cai-email-card:hover::before {
  transform: scaleX(1)
}

.cai-email-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px
}

.cai-email-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8
}

.cai-icon-red {
  background: rgba(227, 30, 36, .08);
  color: #E31E24
}

.cai-email-card h4 {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4
}

.cai-challenge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start
}

@media(max-width:768px) {
  .cai-challenge-grid {
    grid-template-columns: 1fr
  }
}

.cai-block-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gray-100)
}

.cai-heading-red {
  color: #E31E24;
  border-bottom-color: rgba(227, 30, 36, .15)
}

.cai-must-do {
  background: var(--gray-50);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--gray-200)
}

.cai-must-list {
  display: flex;
  flex-direction: column;
  gap: 12px
}

.cai-must-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid var(--gray-200);
  font-size: .93rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: all .2s;
  font-family: 'Bai Jamjuree', sans-serif;
}

.cai-must-item:hover {
  border-color: rgba(248, 152, 29, .3);
  box-shadow: 0 4px 16px rgba(248, 152, 29, .08);
  transform: translateX(4px)
}

.cai-must-item div {
  display: flex;
  align-items: center;
  gap: 8px
}

.cai-must-num {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 28px
}

.cai-caused {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(227, 30, 36, .12);
  box-shadow: 0 8px 32px rgba(227, 30, 36, .06)
}

.cai-caused-list {
  display: flex;
  flex-direction: column;
  gap: 0
}

.cai-caused-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(227, 30, 36, .05);
  border: 1.5px solid rgba(227, 30, 36, .18);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: .93rem;
  font-weight: 600;
  color: #C0182E;
  font-family: 'Bai Jamjuree', sans-serif;
}

.cai-caused-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0
}

.cai-caused-arrow {
  text-align: center;
  color: #E31E24;
  font-size: 1.2rem;
  padding: 6px 0;
  opacity: .5
}

/* ---- Solution section ---- */
.cai-solution-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, #fff 100%);
  position: relative
}

.cai-solution-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(248, 152, 29, .3), transparent)
}

.cai-pipeline {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column
}

.cai-pipe-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 32px;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .04)
}

.cai-pipe-center {
  align-items: center;
}

.cai-pipe-step:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .08);
  border-color: rgba(248, 152, 29, .35)
}

.cai-pipe-final {
  border-color: rgba(248, 152, 29, .3);
  background: linear-gradient(135deg, #fff, rgba(248, 152, 29, .03));
  box-shadow: 0 8px 32px rgba(248, 152, 29, .1)
}

.cai-pipe-arrow {
  text-align: center;
  padding: 10px 0;
  color: var(--gray-400);
  font-size: 1.1rem
}

.cai-pipe-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cai-pipe-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.8
}

.cai-pipe-blue {
  background: rgba(59, 130, 246, .1);
  color: #3B82F6
}

.cai-pipe-orange {
  background: rgba(248, 152, 29, .1);
  color: #F8981D
}

.cai-pipe-purple {
  background: rgba(158, 42, 141, .1);
  color: #9E2A8D
}

.cai-pipe-teal {
  background: rgba(20, 184, 166, .1);
  color: #14B8A6
}

.cai-pipe-green {
  background: rgba(22, 163, 74, .12);
  color: #16a34a
}

.cai-pipe-body {
  flex: 1
}

.cai-pipe-body h4 {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px
}

.cai-sub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.cai-sub-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'Bai Jamjuree', sans-serif;
}

.cai-identify-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.cai-id-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--charcoal);
  font-family: 'Bai Jamjuree', sans-serif;
}

@media(max-width:480px) {
  .cai-identify-grid {
    grid-template-columns: 1fr
  }
}

.cai-accuracy-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px auto 0;
  padding: 24px 36px;
  background: linear-gradient(135deg, rgba(22, 163, 74, .08), rgba(22, 163, 74, .04));
  border: 1.5px solid rgba(22, 163, 74, .25);
  border-radius: 16px;
  max-width: 780px
}

.cai-check-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(22, 163, 74, .15);
  border: 1.5px solid rgba(22, 163, 74, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.cai-check-badge svg {
  width: 24px;
  height: 24px;
  stroke: #16a34a;
  stroke-width: 2
}

.cai-accuracy-banner p {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: #16a34a;
  margin: 0
}

/* ---- Results section ---- */
.cai-results-section {
  background: var(--gray-50);
  position: relative
}

.cai-results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(158, 42, 141, .3), transparent)
}

.cai-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px
}

@media(max-width:900px) {
  .cai-results-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:500px) {
  .cai-results-grid {
    grid-template-columns: 1fr
  }
}

.cai-result-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden
}

.cai-result-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease
}

.cai-result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(158, 42, 141, .12);
  border-color: rgba(158, 42, 141, .2)
}

.cai-result-card:hover::after {
  transform: scaleX(1)
}

.cai-result-wide {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px 36px
}

@media(max-width:500px) {
  .cai-result-wide {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px
  }
}

.cai-result-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(158, 42, 141, .1), rgba(248, 152, 29, .08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 auto 16px;
  transition: transform .3s
}

.cai-result-wide .cai-result-icon-wrap {
  margin: 0
}

.cai-result-card:hover .cai-result-icon-wrap {
  transform: scale(1.1) rotate(-5deg)
}

.cai-result-icon-wrap svg {
  width: 28px;
  height: 28px;
  stroke: #9E2A8D;
  stroke-width: 1.8
}

.cai-result-card h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 0
}

.cai-highlight-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 50%, #1E2B31 100%);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cai-highlight-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(248, 152, 29, .12);
  filter: blur(60px);
  pointer-events: none
}

.cai-highlight-banner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(158, 42, 141, .12);
  filter: blur(60px);
  pointer-events: none
}

.cai-highlight-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px
}

.cai-highlight-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(248, 152, 29, .15);
  border: 1px solid rgba(248, 152, 29, .3);
  display: flex;
  align-items: center;
  justify-content: center
}

.cai-highlight-icon svg {
  width: 28px;
  height: 28px;
  stroke: #F8981D;
  stroke-width: 1.8
}

.cai-highlight-quote {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.35;
  margin: 0;
  max-width: 700px
}

/* ---- CAI Responsive ---- */
@media(max-width:768px) {
  .cai-hero {
    padding: 120px 0 70px;
    min-height: auto
  }

  .cai-pipe-step {
    padding: 20px;
    gap: 16px;
    flex-direction: column
  }

  .cai-pipeline {
    max-width: 100%
  }

  .cai-highlight-banner {
    padding: 40px 24px
  }

  .cai-must-do,
  .cai-caused {
    padding: 22px
  }

  .cai-accuracy-banner {
    padding: 20px 24px;
    flex-direction: column;
    gap: 10px
  }
}

@media(max-width:480px) {
  .cai-email-card {
    padding: 20px 14px
  }

  .cai-result-card {
    padding: 24px 18px
  }

  .cai-highlight-quote {
    font-size: 1.2rem
  }
}

/* ==========================================================================
   how_it_works.css merged - Dedicated styling for Assist AI process page
   Theme: #F8981D (Orange) | #E31E24 (Red) | #9E2A8D (Purple) | #1E2B31 (Charcoal)
   ========================================================================== */

/* --- Hero Banner Redesigned --- */
.how-hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 45%, #1E2B31 100%);
  overflow: hidden;
  padding: 160px 0 100px;
}

@media (max-width: 992px) {
  .how-hero-premium {
    padding: 130px 0 80px;
    min-height: 100vh;
  }
}

.how-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.tech-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.8;
}

.how-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.how-glow-1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -150px;
  right: -100px;
}

.how-glow-2 {
  width: 450px;
  height: 450px;
  background: var(--purple);
  bottom: -150px;
  left: -100px;
}

.how-glow-3 {
  width: 300px;
  height: 300px;
  background: var(--red);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.how-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  left: var(--x);
  top: var(--y);
  animation: float-particle var(--d) ease-in-out infinite;
}

@keyframes float-particle {

  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }

  50% {
    transform: translateY(-20px) scale(1.4);
    opacity: 0.7;
  }
}

.how-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .how-hero-inner {
    flex-direction: column;
    text-align: center;
  }
}

.how-hero-text {
  flex: 1.2;
}

.how-hero-graphic {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-tag-premium {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(248, 152, 29, 0.1);
  border: 1px solid rgba(248, 152, 29, 0.25);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: fadeInDown 0.8s cubic-bezier(.22, 1, .36, 1) both;
}

.how-hero-title {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  animation: fadeInUp 0.8s cubic-bezier(.22, 1, .36, 1) 0.15s both;
}

.how-hero-desc {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 992px) {
  .how-hero-desc {
    margin: 0 auto;
  }
}

/* Hero Interactive Graphic */
.hero-interactive-graphic {
  position: relative;
  width: 340px;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-brain-node {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 0 40px rgba(248, 152, 29, 0.45);
  z-index: 5;
}

.core-brain-node svg {
  width: 36px;
  height: 36px;
}

.pulse-ring-outer,
.pulse-ring-inner {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(255, 255, 255, 0.15);
}

.pulse-ring-outer {
  width: 270px;
  height: 270px;
  animation: pulse-ring-graphic 8s linear infinite;
}

.pulse-ring-inner {
  width: 180px;
  height: 180px;
  animation: pulse-ring-graphic 5s linear infinite reverse;
}

@keyframes pulse-ring-graphic {
  from {
    transform: rotate(0deg);
  }

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

.orbiting-node {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(30, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  z-index: 4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.orbiting-node svg {
  width: 18px;
  height: 18px;
}

.orbiting-node:hover {
  transform: scale(1.1);
  border-color: currentColor;
  box-shadow: 0 0 15px currentColor;
}

.orbit-1 {
  top: 25px;
  left: 25px;
  animation: float-orbit-1 6s ease-in-out infinite;
}

.orbit-2 {
  bottom: 25px;
  right: 25px;
  animation: float-orbit-2 7s ease-in-out infinite;
  color: var(--purple);
}

.orbit-3 {
  top: 145px;
  right: 10px;
  animation: float-orbit-3 5s ease-in-out infinite;
  color: var(--red);
}

@keyframes float-orbit-1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(15px, -18px);
  }
}

@keyframes float-orbit-2 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-18px, 15px);
  }
}

@keyframes float-orbit-3 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-12px, -12px);
  }
}

/* --- Workflow Timeline --- */
.workflow-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
}

.workflow-timeline {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Central vertical line on desktop */
@media (min-width: 992px) {
  .workflow-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    bottom: 40px;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--orange) 0%, var(--red) 50%, var(--purple) 100%);
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 1;
  }
}

.workflow-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.workflow-item:last-child {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .workflow-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .workflow-item>div {
    width: 46%;
  }

  .workflow-item.reverse {
    flex-direction: row-reverse;
  }
}

/* --- Workflow Content Side --- */
.workflow-content {
  padding: 20px;
}

.step-num-badge {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.workflow-content h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.step-desc {
  font-size: 1.1rem;
  color: var(--gray-800);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.5;
}

.step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.step-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--gray-600);
  font-size: 0.98rem;
  line-height: 1.6;
}

.step-list li::before {
  content: "✦";
  position: absolute;
  left: 4px;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

.step-note {
  font-size: 0.95rem;
  color: var(--gray-600);
  background: #f8fafc;
  border-left: 3px solid var(--purple);
  padding: 12px 18px;
  border-radius: 0 8px 8px 0;
  margin-top: 15px;
  font-style: italic;
}

/* Examples list container styles */
.examples-list-wrap h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* --- Visual Panel Styling (Premium aesthetics, no simple cards) --- */
.workflow-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

/* Glassmorphic UI Card Windows - Light Theme Redesign */
.visual-card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.visual-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 152, 29, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.visual-card-header {
  display: flex;
  align-items: center;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.window-controls {
  display: flex;
  gap: 6px;
}

.window-controls .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.window-controls .dot.red {
  background: #ef4444;
}

.window-controls .dot.yellow {
  background: #f59e0b;
}

.window-controls .dot.green {
  background: #10b981;
}

.visual-card-title {
  margin-left: 15px;
  font-size: 0.75rem;
  font-family: monospace;
  color: #64748b;
  letter-spacing: 0.5px;
}

/* Step 1 Visual: Problem Board */
.problem-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 20px;
  background: #fdfdfd;
}

.problem-item {
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  color: #1e293b;
}

.problem-item .problem-icon {
  color: #ef4444;
  width: 16px;
  height: 16px;
}

.problem-item:hover {
  background: #fef2f2;
  border-color: #fca5a5;
  transform: translateX(4px);
}

.problem-text {
  font-size: 0.82rem;
  font-weight: 600;
}

/* Step 2 Visual: Agent Design Studio */
.agent-design-studio {
  padding: 20px;
  background: #fdfdfd;
}

.blueprint-tech {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 14px;
  color: #1e293b;
  font-family: monospace;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.tech-tag i {
  width: 14px;
  height: 14px;
}

.tech-tag.type-prompt i {
  color: var(--orange);
}

.tech-tag.type-logic i {
  color: #3b82f6;
}

.tech-tag.type-rules i {
  color: #ef4444;
}

.tech-tag.type-training i {
  color: #10b981;
}

.tech-tag:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Step 3 Visual: System Integration Grid */
.system-integration-grid {
  padding: 20px;
  background: #fdfdfd;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.sys-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 6px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.sys-item.center-node {
  background: var(--grad);
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
}

.sys-item.center-node i.spin-icon {
  animation: spin-hub 6s linear infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.sys-item:not(.center-node):hover {
  background: #f8fafc;
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Step 4 Visual: Autonomous Execution Monitor */
.execution-monitor {
  padding: 20px;
  background: #f8fafc;
}

.execution-tasks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.task-log {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-left: 3px solid #f8981d;
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  font-family: monospace;
  font-size: 0.78rem;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.task-log:hover {
  background: #f1f5f9;
  border-left-color: var(--purple);
}

.log-time {
  color: #94a3b8;
}

.task-log i {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

/* Step 5 Visual: Scalable AI Workforce Network */
.scale-workflow {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  background: #fdfdfd;
}

.single-agent-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.node-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.agent-icon-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(248, 152, 29, 0.08);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1.3rem;
  box-shadow: 0 4px 12px rgba(248, 152, 29, 0.12);
  transition: all 0.3s ease;
}

.agent-icon-badge:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(248, 152, 29, 0.25);
}

.scaling-lines {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin: 5px 0;
}

.multi-agent-nodes {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 15px;
}

.node-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.node-sub-label {
  font-size: 0.7rem;
  color: #64748b;
  font-weight: 500;
}

.agent-node-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(158, 42, 141, 0.08);
  border: 1px dashed var(--purple);
  color: var(--purple);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.agent-node-badge:hover {
  transform: translateY(-3px);
  background: rgba(158, 42, 141, 0.15);
  border-style: solid;
  box-shadow: 0 4px 10px rgba(158, 42, 141, 0.2);
}

/* --- Marketplace Section --- */
.marketplace-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e2b31 0%, #0d1619 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.marketplace-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 152, 29, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.marketplace-box {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.marketplace-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin: 0 auto 16px;
  transition: all 0.3s ease;
}

.marketplace-icon-badge svg {
  width: 26px;
  height: 26px;
}

.marketplace-box h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: #ffffff;
  letter-spacing: -1px;
}

.market-intro {
  font-size: 1.25rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.5;
}

.market-sub {
  font-size: 1.05rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* Text Center Helper */
.text-center {
  text-align: center;
}

/* --- Scroll Reveal Animations (Bottom to Up) --- */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Step 1, 2, 3, 4, 5 & Marketplace Font Customization */
.step-1-content,
.step-1-content .step-desc,
.step-1-content .examples-list-wrap h4,
.step-1-content .step-list li,
.step-2-content,
.step-2-content .step-desc,
.step-2-content .step-list li,
.step-2-content .step-note,
.step-3-content,
.step-3-content .step-desc,
.step-3-content .step-list li,
.step-3-content .step-note,
.step-4-content,
.step-4-content .step-desc,
.step-4-content .step-list li,
.step-5-content,
.step-5-content .step-desc,
.step-5-content .step-note,
.market-intro,
.market-sub {
  font-family: 'Bai Jamjuree', sans-serif;
}

/* ============================================================
   NEW CASE STUDY DETAILS SECTION (Light UI style)
   ============================================================ */
.cai-details-section {
  background: #fbfbfb;
  padding: 120px 0;
  color: #334155;
}

.cai-details-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: start;
}

.cai-details-left {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cai-section-block {
  position: relative;
}

.cai-block-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 20px;
  padding-left: 16px;
  line-height: 1.2;
}

/* Heading Accents matching brand theme colors */
.cai-block-title.accent-orange {
  border-left: 4px solid var(--orange);
}

.cai-block-title.accent-purple {
  border-left: 4px solid var(--purple);
}

.cai-block-title.accent-red {
  border-left: 4px solid var(--red);
}

.cai-block-title.accent-blue {
  border-left: 4px solid #0072CE;
}

.cai-block-title.accent-green {
  border-left: 4px solid #10B981;
}

.cai-block-text {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Lists styling */
.cai-section-block ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cai-section-block ul li {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  position: relative;
  padding-left: 24px;
}

/* Custom bullet styling with colors */
.cai-section-block ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  width: 6px;
  height: 6px;
  background-color: #64748b;
  border-radius: 50%;
}

.cai-overview-list li::before {
  background-color: #10b981;
}

.cai-challenge-list li::before {
  background-color: #f97316;
}

.cai-caused-list-new li::before {
  background-color: #ef4444;
}

.cai-solution-list-new li::before {
  background-color: #3b82f6;
}

/* Challenge Sub-blocks styling */
.cai-challenge-sub-block {
  margin-top: 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.cai-sub-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 12px;
}

.cai-sub-heading.caused-heading {
  color: #ef4444;
}

/* Results & Stats Cards */
.cai-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}

.cai-stat-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cai-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.cai-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.cai-stat-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

.cai-takeaway-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.cai-takeaway-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.cai-takeaway-text {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* Right Column Collage Styling */
.cai-details-right {
  position: sticky;
  top: 120px;
  height: fit-content;
}

.cai-collage-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
}

.cai-collage-ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border: 30px solid rgba(248, 152, 29, 0.12);
  border-radius: 50%;
  bottom: 40px;
  right: 0;
  z-index: 0;
  pointer-events: none;
}

.cai-collage-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(158, 42, 141, 0.1) 0%, rgba(158, 42, 141, 0) 70%);
  bottom: 60px;
  right: 0px;
  z-index: 0;
  pointer-events: none;
  filter: blur(30px);
}

.cai-collage-img-1-wrap {
  position: absolute;
  top: 0;
  right: 12%;
  width: 75%;
  z-index: 1;
}

.cai-collage-img-2-wrap {
  position: absolute;
  top: 160px;
  left: -8%;
  width: 60%;
  z-index: 2;
}

.cai-img-collage {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  display: block;
}

.cai-img-collage:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (max-width: 1024px) {
  .cai-details-container {
    gap: 40px;
  }

  .cai-collage-wrapper {
    height: 380px;
  }

  .cai-collage-img-2-wrap {
    top: 120px;
  }
}

@media (max-width: 768px) {
  .cai-details-section {
    padding: 80px 0;
  }

  .cai-details-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cai-details-right {
    position: relative;
    top: 0;
  }

  .cai-collage-wrapper {
    max-width: 380px;
    margin: 0 auto;
    height: 360px;
  }

  .cai-collage-img-2-wrap {
    top: 120px;
  }
}

@media (max-width: 480px) {
  .cai-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cai-collage-wrapper {
    max-width: 280px;
    height: 270px;
  }

  .cai-collage-img-2-wrap {
    top: 90px;
  }

  .cai-block-title {
    font-size: 1.4rem;
  }
}

/* Custom bullet lists for Solution steps */
.cai-solution-step {
  margin-top: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
}

.cai-step-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
}

.cai-step-icon {
  margin-right: 12px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cai-step-details-list {
  margin-top: 12px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.cai-step-details-list li {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cai-step-details-list-two-col {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  padding-left: 0;
  list-style: none;
}

.cai-step-details-list-two-col li {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Accuracy Banner styled in brand Purple */
.cai-accuracy-banner-new {
  margin-top: 24px;
  padding: 16px 24px;
  background: rgba(158, 42, 141, 0.05);
  border: 1px solid rgba(158, 42, 141, 0.2);
  border-radius: 12px;
  text-align: center;
}

.cai-accuracy-banner-new p {
  margin: 0;
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Results Cards Grid */
.cai-results-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.cai-result-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 16px;
}

.cai-result-item-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.cai-result-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.cai-result-item-title {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.4;
}

.cai-result-item-wide {
  grid-column: 1 / -1;
}

/* Custom list items with icon support */
.cai-overview-list-new,
.cai-challenge-list-new,
.cai-caused-list-new-style {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cai-overview-list-new li,
.cai-challenge-list-new li,
.cai-caused-list-new-style li {
  font-family: 'Bai Jamjuree', sans-serif;
  font-size: 0.95rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.6;
  list-style: none !important;
  list-style-type: none !important;
}

.cai-list-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Title icon styles */
.cai-title-icon {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}

/* Brand colored fonts */
.font-orange {
  color: var(--orange) !important;
}

.font-purple {
  color: var(--purple) !important;
}

.font-red {
  color: var(--red) !important;
}

/* Takeaway card update */
.cai-takeaway-card {
  background: rgba(248, 152, 29, 0.03);
  border: 1px solid rgba(248, 152, 29, 0.15);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cai-takeaway-heading {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cai-takeaway-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Responsive updates for lists and grids */
@media (max-width: 580px) {
  .cai-step-details-list-two-col {
    grid-template-columns: 1fr;
  }

  .cai-results-grid-new {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SHARED OUTCOMES / COMPARISON CARD STYLES
   (Used on Survey AI, HR AI, and future case study pages)
   ============================================================ */

.outcomes-section {
  background: var(--gray-50);
  padding: 30px 0 100px 0;
  position: relative;
}

.outcomes-grid-new *,
.outcomes-section .section-sub {
  font-family: 'Bai Jamjuree', sans-serif !important;
}

.outcomes-section .section-sub {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

.outcomes-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px !important;
}

@media (max-width: 991px) {
  .outcomes-grid-new {
    grid-template-columns: 1fr;
  }
}

.outcome-card-new {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.outcome-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(158, 42, 141, 0.05);
  border-color: rgba(158, 42, 141, 0.15);
}

.outcome-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.outcome-card-new:hover::after {
  transform: scaleX(1);
}

.outcome-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
}

.outcome-icon-new {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.outcome-icon-new.accent-orange {
  background: rgba(248, 152, 29, 0.1);
  color: var(--orange);
}

.outcome-icon-new.accent-red {
  background: rgba(227, 30, 36, 0.1);
  color: var(--red);
}

.outcome-icon-new.accent-purple {
  background: rgba(158, 42, 141, 0.1);
  color: var(--purple);
}

.outcome-icon-new.accent-blue {
  background: rgba(0, 114, 206, 0.1);
  color: #0072CE;
}

.outcome-title-new {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.outcome-comparison-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .outcome-comparison-new {
    grid-template-columns: 1fr;
  }
}

.comparison-side {
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.comparison-side.traditional {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.comparison-side.assist-ai {
  background: rgba(158, 42, 141, 0.02);
  border: 1px solid rgba(158, 42, 141, 0.08);
  position: relative;
}

.outcome-card-new:hover .comparison-side.assist-ai {
  background: rgba(158, 42, 141, 0.04);
  border-color: rgba(158, 42, 141, 0.15);
}

.comparison-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.traditional .comparison-tag {
  color: var(--gray-500);
}

.traditional .comparison-tag i {
  color: var(--gray-400);
  width: 14px;
  height: 14px;
}

.assist-ai .comparison-tag {
  color: var(--purple);
}

.assist-ai .comparison-tag i {
  color: var(--purple);
  width: 14px;
  height: 14px;
}

.comparison-content {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.traditional .comparison-content {
  color: var(--gray-600);
}

.assist-ai .comparison-content {
  color: var(--charcoal);
  font-weight: 600;
}

/* ============================================================
   HR AI PAGE — SPECIFIC STYLES
   ============================================================ */

/* Hero badge (reused from survey) */
.survey-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9E2A8D;
  background: rgba(158, 42, 141, 0.1);
  border: 1px solid rgba(158, 42, 141, 0.15);
  margin-bottom: 24px;
}

.survey-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--purple, #9E2A8D);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple);
}

.survey-hero-badge.badge-white,
.cai-hero-badge.badge-white {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
}

.survey-hero-badge.badge-white .badge-dot,
.cai-hero-badge.badge-white .cai-badge-dot {
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 0 0 10px rgba(255, 255, 255, .6);
}


/* Intro text justify */
.hrai-justify {
  text-align: justify !important;
}

/* Pipeline visual (dark card row) */
.hrai-pipeline-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 10px;
  background: #0F172A;
  border-radius: 20px;
  padding: 28px 24px;
  margin: 20px 0 28px;
  position: relative;
  overflow: hidden;
}

.hrai-pipeline-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(158, 42, 141, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(248, 152, 29, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hrai-pipeline-visual {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hrai-pipeline-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }
}

.hrai-pipeline-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.hrai-pipeline-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(158, 42, 141, 0.4);
}

.hrai-pipeline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.hrai-pipeline-label {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.hrai-pipeline-sub {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.hrai-pipeline-sub li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8rem;
  color: #ffffff !important;
  list-style: none !important;
}

.hrai-pipeline-sub li span,
.hrai-pipeline-sub li *:not(i) {
  color: #ffffff !important;
}

.hrai-pipeline-sub li::before {
  display: none !important;
  content: none !important;
}

.hrai-pipeline-sub li i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.hrai-pipeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 1.5rem;
  z-index: 1;
}

.hrai-pipeline-arrow i {
  width: 22px;
  height: 22px;
}

/* Collage image positions */
.hrai-collage-1 {
  width: 75% !important;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.hrai-collage-2 {
  width: 65% !important;
  left: -8% !important;
  top: 40% !important;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

/* Benefits grid (3-column below outcomes cards) */
.hrai-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

@media (max-width: 991px) {
  .hrai-benefits-grid {
    grid-template-columns: 1fr;
  }
}

.hrai-benefit-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hrai-benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.hrai-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(158, 42, 141, 0.06);
  border-color: rgba(158, 42, 141, 0.2);
}

.hrai-benefit-card:hover::after {
  transform: scaleX(1);
}

.hrai-benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(158, 42, 141, 0.08);
  color: var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hrai-benefit-icon i {
  width: 22px;
  height: 22px;
}

.hrai-benefit-card h4 {
  font-family: 'Bai Jamjuree', sans-serif !important;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.hrai-benefit-card p {
  font-family: 'Bai Jamjuree', sans-serif !important;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Remove default bullets/dots from HR AI Challenges section list */
.survey-list li,
.cai-overview-list-new li {
  list-style: none !important;
  list-style-type: none !important;
}

.survey-list li::marker,
.cai-overview-list-new li::marker {
  display: none !important;
  content: none !important;
}

.survey-list li::before,
.cai-overview-list-new li::before {
  display: none !important;
  content: none !important;
}

.survey-list,
.cai-overview-list-new {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Purple dots for Assist AI Solution steps (using span, works with flex) */
.cai-step-details-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.cai-step-details-list li {
  list-style: none !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.cai-step-details-list li::marker,
.cai-step-details-list li::before {
  display: none !important;
  content: none !important;
}

/* Show and color the dot span purple */
.cai-step-details-list li .cai-detail-dot,
.cai-step-details-list .cai-detail-dot {
  display: inline-block !important;
  width: 7px !important;
  height: 7px !important;
  min-width: 7px !important;
  border-radius: 50% !important;
  background-color: #9E2A8D !important;
  margin-top: 7px !important;
  flex-shrink: 0 !important;
}

/* ============================================
   AGENT DIRECTORY CATALOG STYLES
   ============================================ */

.catalog-section {
  background: #f1f5f9;
  padding: 60px 0 100px;
}

.controls-container {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  margin-bottom: 40px;
  border: 1px solid rgba(0, 0, 0, .04);
}

.search-row {
  position: relative;
  margin-bottom: 24px;
}

.search-input {
  width: 100%;
  padding: 16px 20px 16px 56px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  font-family: var(--font-bj);
  font-size: 1.05rem;
  color: #0f172a;
  background: #f8fafc;
  transition: all .3s;
  outline: none;
}

.search-input::placeholder {
  font-family: var(--font-bj);
}

.search-input:focus {
  border-color: #F8981D;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(248, 152, 29, .1);
}

.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.filter-tab {
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-bj);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  background: #f1f5f9;
  color: #64748b;
  border: 1.5px solid transparent;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  user-select: none;
}

.filter-tab:hover {
  background: #e2e8f0;
  color: #0f172a;
}

.filter-tab.active {
  background: linear-gradient(135deg, #F8981D, #E31E24);
  color: #fff;
  box-shadow: 0 6px 20px rgba(227, 30, 36, .15);
}

.count-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 0 4px;
}

.count-text {
  font-family: var(--font-bj);
  font-size: .95rem;
  color: #64748b;
  font-weight: 500;
}

.count-number {
  color: #0f172a;
  font-weight: 700;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 24px;
}

.agent-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
  border: 1px solid rgba(0, 0, 0, .05);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.agent-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.agent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  border-color: rgba(248, 152, 29, .2);
}

.agent-card:hover::before {
  transform: scaleX(1);
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.agent-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(158, 42, 141, .1);
  color: #9E2A8D;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.agent-cat-badge {
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-bj);
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: rgba(158, 42, 141, .08);
  color: #9E2A8D;
}

.agent-card h3 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.agent-card p {
  font-family: var(--font-bj);
  font-size: .9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 24px 0;
  flex-grow: 1;
}

.agent-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.deploy-btn {
  font-family: var(--font-bj);
  font-size: .85rem;
  font-weight: 700;
  color: #F8981D;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all .2s;
}

.deploy-btn:hover {
  color: #E31E24;
  transform: translateX(4px);
}

.deploy-arrow {
  transition: transform .2s;
}

.deploy-btn:hover .deploy-arrow {
  transform: translateX(2px);
}

.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 20px;
  border: 1px dashed #cbd5e1;
  display: none;
}

.no-results-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.no-results h4 {
  font-family: var(--font-h);
  font-size: 1.3rem;
  color: #0f172a;
  margin-bottom: 8px;
}

.no-results p {
  font-family: var(--font-bj);
  color: #64748b;
  font-size: .95rem;
  max-width: 400px;
  margin: 0 auto;
}

@media(max-width: 768px) {
  .controls-container {
    padding: 18px;
  }
}

/* ============================================================
   NEW HOMEPAGE DESIGN SYSTEM & SECTIONS
   ============================================================ */

/* Global Homepage Typographies */
.hp-font-bj {
  font-family: var(--font-bj), sans-serif !important;
}

/* Hero Section Enhancements */
.hero-stat-chips {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeInUp .8s .3s both;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-bj);
  font-weight: 500;
  transition: all 0.3s ease;
}

.hero-chip:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-chip-icon {
  color: var(--orange);
  font-size: 1rem;
}

/* Section 2: Trust & Stats Bar */
.trust-stats-bar {
  padding: 40px 0 20px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--gray-100);
}

.trust-label {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gray-400);
  margin-bottom: 40px;
  font-weight: 700;
}

.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

@media(max-width: 768px) {
  .stats-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media(max-width: 480px) {
  .stats-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.stat-item-new {
  padding: 20px;
}

.stat-num-new {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label-new {
  font-family: var(--font-bj);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-600);
}

/* Logos Carousel */
.logos-carousel-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

.logos-carousel-track {
  display: flex;
  width: calc(250px * 18);
  animation: scroll-logos-new 30s linear infinite;
}

.logos-carousel-track:hover {
  animation-play-state: paused;
}

.logo-item-new {
  width: 250px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.logo-item-new:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-item-new img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

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

  100% {
    transform: translateX(calc(-250px * 9));
  }
}

/* Section 3: About Assist AI / Capabilities Cards */
.capabilities-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media(max-width: 991px) {
  .capabilities-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cap-card-new {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 30px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.cap-card-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.cap-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(248, 152, 29, 0.3);
}

.cap-card-new:hover::after {
  transform: scaleX(1);
}

.cap-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(248, 152, 29, 0.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.cap-card-new:hover .cap-icon-box {
  background: var(--grad);
  color: #ffffff;
}

.cap-card-new h4 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.cap-card-new p {
  font-family: var(--font-bj);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Section 4: Agent Categories Showcase */
.cat-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media(max-width: 991px) {
  .cat-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cat-card-new {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.cat-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
}

.cat-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cat-icon-wrap-new {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cat-card-new.accent-orange .cat-icon-wrap-new {
  background: rgba(248, 152, 29, 0.1);
  color: var(--orange);
}

.cat-card-new.accent-red .cat-icon-wrap-new {
  background: rgba(227, 30, 36, 0.1);
  color: var(--red);
}

.cat-card-new.accent-purple .cat-icon-wrap-new {
  background: rgba(158, 42, 141, 0.1);
  color: var(--purple);
}

.cat-card-new.accent-blue .cat-icon-wrap-new {
  background: rgba(0, 114, 206, 0.1);
  color: #0072CE;
}

.cat-card-new.accent-green .cat-icon-wrap-new {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.cat-card-new.accent-yellow .cat-icon-wrap-new {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}

.cat-badge-new {
  font-family: var(--font-bj);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 30px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.cat-card-new.accent-orange:hover {
  border-color: rgba(248, 152, 29, 0.3);
}

.cat-card-new.accent-red:hover {
  border-color: rgba(227, 30, 36, 0.3);
}

.cat-card-new.accent-purple:hover {
  border-color: rgba(158, 42, 141, 0.3);
}

.cat-card-new.accent-blue:hover {
  border-color: rgba(0, 114, 206, 0.3);
}

.cat-card-new.accent-green:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

.cat-card-new.accent-yellow:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.cat-card-new h3 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.cat-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cat-card-list li {
  font-family: var(--font-bj);
  font-size: 0.92rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-card-list li::before {
  content: '✦';
  color: var(--gray-400);
  font-size: 0.8rem;
}

.cat-card-new.accent-orange .cat-card-list li::before {
  color: var(--orange);
}

.cat-card-new.accent-red .cat-card-list li::before {
  color: var(--red);
}

.cat-card-new.accent-purple .cat-card-list li::before {
  color: var(--purple);
}

.cat-card-new.accent-blue .cat-card-list li::before {
  color: #0072CE;
}

.cat-card-new.accent-green .cat-card-list li::before {
  color: #10B981;
}

.cat-card-new.accent-yellow .cat-card-list li::before {
  color: #F59E0B;
}

.cat-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cat-count {
  font-family: var(--font-bj);
  font-size: 0.82rem;
  color: var(--gray-400);
  font-weight: 600;
}

.cat-link {
  font-family: var(--font-bj);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.cat-card-new:hover .cat-link {
  color: var(--red);
  transform: translateX(4px);
}

/* Section 5: How It Works timeline */
.stepper-timeline {
  position: relative;
  max-width: 900px;
  margin: 50px auto 0;
  padding: 20px 0;
}

.stepper-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32px;
  width: 2px;
  background: var(--gray-200);
}

.stepper-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.stepper-step:last-child {
  margin-bottom: 0;
}

.stepper-icon-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--gray-200);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 800;
  z-index: 2;
  transition: all 0.3s ease;
}

.stepper-step:hover .stepper-icon-wrap {
  border-color: var(--orange);
  background: var(--grad);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(248, 152, 29, 0.2);
}

.stepper-content {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  transition: all 0.3s ease;
}

.stepper-step:hover .stepper-content {
  border-color: rgba(248, 152, 29, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transform: translateX(5px);
}

.stepper-content h4 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.stepper-content p {
  font-family: var(--font-bj);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin: 0;
}

/* Section 6: Case Studies Preview */
.cs-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media(max-width: 991px) {
  .cs-grid-new {
    grid-template-columns: 1fr;
  }
}

.cs-card-new {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
}

.cs-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  border-color: rgba(158, 42, 141, 0.2);
}

.cs-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 24px 24px 0 0;
}

.cs-card-new:hover::after {
  transform: scaleX(1);
}

.cs-card-tag {
  font-family: var(--font-bj);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: 16px;
}

.cs-card-new h4 {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 12px;
}

.cs-card-new p {
  font-family: var(--font-bj);
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.cs-card-link {
  font-family: var(--font-bj);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  transition: all 0.2s ease;
}

.cs-card-new:hover .cs-card-link {
  color: var(--purple);
  transform: translateX(4px);
}

/* Section 7: Why Choose Assist AI */
.why-section-dark {
  background: #0F172A;
  color: #ffffff;
  padding: 40px 0 120px;
  position: relative;
  overflow: hidden;
}

.why-section-dark::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(158, 42, 141, 0.1) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  pointer-events: none;
}

.why-section-dark::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(248, 152, 29, 0.08) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.why-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media(max-width: 991px) {
  .why-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why-card-new {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s ease;
}

.why-card-new:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(248, 152, 29, 0.25);
  transform: translateY(-5px);
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.why-card-new:hover .why-icon-wrap {
  background: var(--orange);
  color: #ffffff;
}

.why-card-new h4 {
  font-family: var(--font-h);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.why-card-new p {
  font-family: var(--font-bj);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
}

/* Section 8: Final CTA */
.final-cta-section {
  padding: 40px 0 100px;
  background: var(--grad);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta-section h2 {
  font-family: var(--font-h);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
  letter-spacing: -1px;
}

.final-cta-sub {
  font-family: var(--font-bj);
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  max-width: 650px;
  margin: 0 auto 36px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.final-cta-actions .btn-white {
  background: #ffffff;
  color: var(--red);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.final-cta-actions .btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  background: var(--gray-50);
}

.final-cta-actions .btn-outline-white {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}

.final-cta-actions .btn-outline-white:hover {
  background: #ffffff;
  color: var(--red);
  transform: translateY(-3px);
}

.final-cta-note {
  font-family: var(--font-bj);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

/* AI Prompt Terminal */


.ai-terminal {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.85rem;
  color: #334155;
  height: 400px;
  display: flex;
  flex-direction: column;
}

.terminal-header {
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dot.red {
  background: #ef4444;
}

.terminal-dot.yellow {
  background: #eab308;
}

.terminal-dot.green {
  background: #22c55e;
}

.terminal-title {
  margin-left: 10px;
  font-family: var(--font-bj);
  font-size: 0.85rem;
  color: #475569;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.terminal-body {
  padding: 20px;
  overflow-y: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.term-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
  opacity: 0;
  animation: termFadeIn 0.3s forwards;
}

@keyframes termFadeIn {
  to {
    opacity: 1;
  }
}

.term-time {
  color: #94a3b8;
  flex-shrink: 0;
}

.term-prompt {
  color: #2563eb;
  font-weight: 600;
}

.term-success {
  color: #16a34a;
}

.term-info {
  color: #475569;
}

.term-warning {
  color: #ea580c;
}

.term-system {
  color: #7c3aed;
  font-weight: 600;
}

.term-cursor {
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #2563eb;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* ============================================================
   ABOUT PAGE — Full Responsive Overhaul
   Breakpoints: 1200px | 992px | 768px | 480px | 360px
   ============================================================ */

/* ---- Hero (cai-hero) — Full Screen like Homepage ---- */
/*
  ROOT CAUSE FIX: .cs-hero sets min-height:auto at ≤768px (iPad Mini, Surface Duo).
  We must explicitly re-assert min-height:100vh on .cai-hero at EVERY breakpoint
  to prevent that rule from collapsing the hero height on tablets & small devices.
*/

/* Desktop — already 100vh from base rule, enforce padding only */
@media (max-width: 1200px) {
  .cai-hero {
    min-height: 100vh;
    padding: 150px 0 90px;
  }
}

/* iPad Pro / large tablets (992–1200px) */
@media (max-width: 992px) {
  .cai-hero {
    min-height: 100vh;
    padding: 140px 0 80px;
  }
}

/* iPad Mini (768px) & Surface Duo unfolded (~1114px wide, 720px tall) */
@media (max-width: 768px) {
  .cai-hero {
    min-height: 100vh !important;
    /* override .cs-hero min-height:auto at this bp */
    padding: 120px 0 64px;
  }

  .cs-hero-title {
    font-size: clamp(1.9rem, 5.5vw, 2.8rem);
    letter-spacing: -0.5px;
  }
}

/* Surface Duo single-pane portrait (~540px) */
@media (max-width: 600px) {
  .cai-hero {
    min-height: 100vh !important;
    padding: 110px 0 60px;
  }
}

/* Mobile phones (≤480px) */
@media (max-width: 480px) {
  .cai-hero {
    min-height: 100svh !important;
    /* svh accounts for mobile browser chrome bars */
    padding: 100px 0 56px;
  }

  .cs-hero-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    line-height: 1.25;
  }

  .cai-hero-badge {
    font-size: 0.72rem;
    padding: 7px 16px;
  }
}

/* Very small phones (≤360px) */
@media (max-width: 360px) {
  .cai-hero {
    min-height: 100svh !important;
    padding: 90px 0 44px;
  }

  .cs-hero-title {
    font-size: 1.5rem;
  }
}

/* ---- Assist AI Intro Section ---- */
@media (max-width: 992px) {
  .assistai-intro-section {
    padding: 64px 0;
  }

  .assistai-intro-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 0 8px;
  }

  .assistai-intro-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .assistai-intro-section {
    padding: 50px 0;
  }

  .assistai-intro {
    padding: 16px 0;
  }

  .assistai-intro-text {
    padding-left: 28px;
  }

  .assistai-intro-text p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin-bottom: 14px;
  }
}

@media (max-width: 480px) {
  .assistai-intro-section {
    padding: 36px 0;
  }

  .assistai-intro {
    padding: 10px 0;
  }

  .assistai-intro-text {
    padding-left: 20px;
  }

  .assistai-intro-text::before {
    width: 4px;
  }

  .assistai-intro-text p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
  }

  .assistai-intro-grid {
    gap: 20px;
  }
}

@media (max-width: 360px) {
  .assistai-intro-text {
    padding-left: 16px;
  }

  .assistai-intro-text p {
    font-size: 0.85rem;
  }
}

/* ---- Capabilities Grid ---- */
@media (max-width: 480px) {
  .assistai-capabilities {
    padding-top: 40px !important;
    margin-bottom: 32px;
  }

  .assistai-cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .assistai-cap-card {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .assistai-cap-card h4 {
    font-size: 0.88rem;
    margin-bottom: 6px;
  }

  .assistai-cap-card p {
    font-size: 0.8rem;
    line-height: 1.55;
  }

  .cap-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    margin-bottom: 10px;
  }

  .assistai-cap-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 360px) {
  .assistai-cap-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ---- Impact Statement ---- */
@media (max-width: 768px) {
  .assistai-impact {
    padding: 40px 28px;
    border-radius: 20px;
  }

  .assistai-impact-inner {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .impact-stats {
    justify-content: center;
    gap: 24px;
  }

  .impact-num {
    font-size: 2.2rem;
  }

  .impact-text {
    font-size: 1rem;
    line-height: 1.75;
  }
}

@media (max-width: 480px) {
  .assistai-impact {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .impact-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .impact-num {
    font-size: 1.9rem;
  }

  .impact-label {
    font-size: 0.75rem;
  }

  .impact-text {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

@media (max-width: 360px) {
  .impact-stats {
    gap: 12px;
  }

  .impact-num {
    font-size: 1.7rem;
  }
}

/* ---- Vision & Mission Section ---- */
@media (max-width: 768px) {
  .vision-mission-section {
    padding: 60px 0;
  }

  .vm-header {
    margin-bottom: 40px;
  }

  .vm-heading {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .vm-cards-col {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .vm-card {
    padding: 32px 26px;
  }
}

@media (max-width: 480px) {
  .vision-mission-section {
    padding: 44px 0;
  }

  .vm-header {
    margin-bottom: 28px;
  }

  .vm-heading {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .vm-badge {
    font-size: 0.72rem;
    padding: 6px 16px;
  }

  .vm-card {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .vm-card-top {
    gap: 14px;
    margin-bottom: 14px;
  }

  .vm-icon-ring {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    font-size: 1.5rem;
  }

  .vm-label {
    font-size: 0.7rem;
    letter-spacing: 1px;
  }

  .vm-card>p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
  }
}

/* ============================================================
   VISION & MISSION HORIZONTAL DESKTOP FIX
   Forces the stacked flex column back to a premium horizontal 
   side-by-side grid layout on desktop screens (>768px).
   ============================================================ */
@media (min-width: 769px) {
  .vm-layout-block {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  .vm-cards-col.vm-cards-col-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }
}

/* ============================================================
   CONTACT PAGE STYLES
   ============================================================ */
:root {
  --font-bj: 'Bai Jamjuree', sans-serif;
}

/* Hero */
.contact-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1a1035 45%, #1E2B31 100%);
  overflow: hidden;
  padding-top: 90px;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ch-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .25;
}

.ch-glow-1 {
  width: 420px;
  height: 420px;
  background: #F8981D;
  top: -120px;
  right: -80px;
}

.ch-glow-2 {
  width: 350px;
  height: 350px;
  background: #9E2A8D;
  bottom: -100px;
  left: -60px;
}

.ch-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.contact-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-hero-inner .container {
  text-align: center;
  color: #fff;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  background: rgba(248, 152, 29, .12);
  border: 1px solid rgba(248, 152, 29, .3);
  color: #F8981D;
  margin-bottom: 24px;
  animation: fadeInDown .7s both;
}

.contact-hero h1 {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px;
  animation: fadeInUp .7s .1s both;
}

.contact-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  animation: fadeInUp .7s .2s both;
}

/* Large bg text */
.hero-bg-text {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-h);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 900;
  color: rgba(255, 255, 255, .03);
  letter-spacing: 10px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ── Main Contact Section ── */
.contact-main {
  background: #f0f4ff;
  padding: 80px 0 100px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 48px;
  align-items: start;
}

/* ── Left Panel ── */
.contact-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-left-header {
  margin-bottom: 8px;
}

.contact-left-header .section-tag {
  margin-bottom: 14px;
}

.contact-left-header h2 {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 14px;
}

.contact-left-header p {
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

/* Info Cards */
.info-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 18px;
  padding: 22px 24px;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(248, 152, 29, .06), rgba(158, 42, 141, .06));
  opacity: 0;
  transition: opacity .35s;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .1);
  border-color: rgba(248, 152, 29, .25);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F8981D, #E31E24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.info-icon.purple-icon {
  background: linear-gradient(135deg, #E31E24, #9E2A8D);
}

.info-icon.dark-icon {
  background: linear-gradient(135deg, #1E2B31, #0f172a);
}

.info-text {
  position: relative;
  z-index: 1;
}

.info-text h4 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.info-text p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Social row */
.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.social-row span {
  font-size: .85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, #F8981D, #E31E24);
  border-color: transparent;
  transform: translateY(-3px);
}

/* ── Right Panel — Form Card ── */
.contact-form-card {
  background: #fff;
  border-radius: 28px;
  padding: 48px 44px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .1);
  border: 1px solid rgba(0, 0, 0, .05);
  position: relative;
  overflow: hidden;
}

.contact-form-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F8981D, #E31E24, #9E2A8D);
}

.form-title {
  font-family: var(--font-h);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: .92rem;
  color: var(--gray-600);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: #0f172a;
  letter-spacing: .3px;
}

.form-group label .opt {
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 4px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-family: var(--font-b);
  font-size: .95rem;
  color: #0f172a;
  background: #f8fafc;
  transition: all .3s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #F8981D;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(248, 152, 29, .1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.submit-btn {
  width: 100%;
  padding: 17px 32px;
  border-radius: 14px;
  border: none;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(135deg, #F8981D, #E31E24);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 8px 28px rgba(227, 30, 36, .25);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E31E24, #9E2A8D);
  opacity: 0;
  transition: opacity .4s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(227, 30, 36, .35);
}

.submit-btn:hover::before {
  opacity: 1;
}

.submit-btn span,
.submit-btn svg {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  transition: transform .3s;
}

.submit-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.form-msg {
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  text-align: center;
  border-radius: 10px;
  padding: 10px 16px;
  display: none;
}

.form-msg.success {
  background: rgba(16, 185, 129, .1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, .2);
  display: block;
}

.form-msg.error {
  background: rgba(239, 68, 68, .1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, .2);
  display: block;
}

/* ── Feature Strips below ── */
.contact-features {
  padding: 64px 0 80px;
  background: #fff;
}

.features-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feat-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all .35s;
}

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
  border-color: rgba(248, 152, 29, .2);
}

.feat-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.feat-card h4 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.feat-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ── Animations ── */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* ── Comprehensive Responsive Design ── */

/* Global overflow prevention for contact page */
.contact-hero,
.contact-main,
.contact-features {
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

@media (max-width: 1200px) {
  .contact-layout {
    gap: 36px;
  }

  .contact-form-card {
    padding: 40px 36px;
  }
}

@media (max-width: 992px) {
  .contact-hero {
    min-height: 340px;
    padding-top: 100px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-left {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .contact-form-card {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
  }

  .features-strip {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 300px;
    padding-top: 90px;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .contact-hero p {
    font-size: 0.98rem;
    padding: 0 16px;
  }

  .contact-badge {
    padding: 6px 18px;
    font-size: 0.76rem;
    margin-bottom: 18px;
  }

  .hero-bg-text {
    font-size: 6.5rem;
    bottom: -5px;
  }

  .contact-main {
    padding: 60px 0 80px;
  }

  .contact-features {
    padding: 50px 0 60px;
  }

  .features-strip {
    gap: 20px;
  }

  .feat-card {
    padding: 28px 20px;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .features-strip {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .contact-form-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .form-title {
    font-size: 1.35rem;
  }

  .form-subtitle {
    margin-bottom: 24px;
    font-size: 0.88rem;
  }

  .info-card {
    padding: 16px 18px;
    gap: 14px;
    border-radius: 14px;
  }

  .info-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
    border-radius: 10px;
  }

  .info-text h4 {
    font-size: 0.95rem;
  }

  .info-text p {
    font-size: 0.85rem;
  }

  .submit-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    min-height: 260px;
    padding-top: 80px;
  }

  .contact-hero h1 {
    font-size: 1.85rem;
  }

  .hero-bg-text {
    display: none;
    /* Hide huge text on very small screens to avoid clipping */
  }

  .contact-main {
    padding: 48px 0 60px;
  }

  .contact-left-header h2 {
    font-size: 1.7rem;
  }

  .contact-left-header p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .contact-form-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .form-group input,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 0.9rem;
  }

  .social-row {
    justify-content: center;
    margin-top: 14px;
  }
}

@media (max-width: 360px) {
  .contact-hero h1 {
    font-size: 1.65rem;
  }

  .contact-left-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-card {
    padding: 20px 12px;
  }
}

/* ── Bai Jamjuree text styles ── */
.contact-hero p,
.contact-left-header p,
.info-text p,
.form-subtitle,
.form-group label,
.form-group label .opt,
.feat-card p,
.social-row span {
  font-family: var(--font-bj);
}

.form-group textarea::placeholder {
  font-family: var(--font-bj);
}

/* ── Logo swap ── */
.logo-img-white {
  display: block;
}

.logo-img-black {
  display: none;
}

.navbar.scrolled .logo-img-white {
  display: none;
}

.navbar.scrolled .logo-img-black {
  display: block;
}

/* ============================================================
   SURVEY AI PAGE STYLES
   ============================================================ */

/* Hero badge */
.survey-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9E2A8D;
  background: rgba(158, 42, 141, 0.1);
  border: 1px solid rgba(158, 42, 141, 0.15);
  margin-bottom: 24px;
}

.survey-hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  background-color: var(--purple, #9E2A8D);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--purple);
}

/* Outcomes section */
.outcomes-section {
  background: var(--gray-50);
  padding: 30px 0 100px 0;
  position: relative;
}

.outcomes-grid-new *,
.outcomes-section .section-sub {
  font-family: 'Bai Jamjuree', sans-serif !important;
}

.outcomes-section .section-sub {
  margin-bottom: 10px !important;
  padding-bottom: 0 !important;
}

.outcomes-grid-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px !important;
}

@media (max-width: 991px) {
  .outcomes-grid-new {
    grid-template-columns: 1fr;
  }
}

.outcome-card-new {
  background: #ffffff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.outcome-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(158, 42, 141, 0.05);
  border-color: rgba(158, 42, 141, 0.15);
}

.outcome-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.outcome-card-new:hover::after {
  transform: scaleX(1);
}

.outcome-header-new {
  display: flex;
  align-items: center;
  gap: 16px;
}

.outcome-icon-new {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.outcome-icon-new.accent-orange {
  background: rgba(248, 152, 29, 0.1);
  color: var(--orange);
}

.outcome-icon-new.accent-red {
  background: rgba(227, 30, 36, 0.1);
  color: var(--red);
}

.outcome-icon-new.accent-purple {
  background: rgba(158, 42, 141, 0.1);
  color: var(--purple);
}

.outcome-icon-new.accent-blue {
  background: rgba(0, 114, 206, 0.1);
  color: #0072CE;
}

.outcome-title-new {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.outcome-comparison-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 576px) {
  .outcome-comparison-new {
    grid-template-columns: 1fr;
  }
}

.comparison-side {
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.3s ease;
}

.comparison-side.traditional {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
}

.comparison-side.assist-ai {
  background: rgba(158, 42, 141, 0.02);
  border: 1px solid rgba(158, 42, 141, 0.08);
  position: relative;
}

.outcome-card-new:hover .comparison-side.assist-ai {
  background: rgba(158, 42, 141, 0.04);
  border-color: rgba(158, 42, 141, 0.15);
}

.comparison-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.traditional .comparison-tag {
  color: var(--gray-400);
}

.traditional .comparison-tag i {
  color: var(--gray-400);
  width: 14px;
  height: 14px;
}

.assist-ai .comparison-tag {
  color: var(--purple);
}

.assist-ai .comparison-tag i {
  color: var(--purple);
  width: 14px;
  height: 14px;
}

.comparison-content {
  font-size: 0.95rem;
  line-height: 1.4;
  font-weight: 500;
}

.traditional .comparison-content {
  color: var(--gray-600);
}

.assist-ai .comparison-content {
  color: var(--charcoal);
  font-weight: 600;
}

/* Pipeline section */
.pipeline-section {
  background: #0F172A;
  color: #fff;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pipeline-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(158, 42, 141, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(248, 152, 29, 0.1) 0%, transparent 50%);
}

.pipeline-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .pipeline-flow {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pipeline-arrow {
    transform: rotate(90deg) !important;
    margin: 0 auto;
  }
}

.pipeline-step {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.pipeline-step:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(158, 42, 141, 0.4);
  transform: translateY(-5px);
}

.pipeline-step .step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.pipeline-step h4 {
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
}

.pipeline-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pipeline-sublist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.pipeline-sublist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.pipeline-sublist li i {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 3px;
}

/* Bulletproof list-style removal */
.survey-list,
.cai-overview-list-new,
.cai-challenge-list-new,
.cai-caused-list-new-style {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
}

.survey-list li,
.cai-overview-list-new li,
.cai-challenge-list-new li,
.cai-caused-list-new-style li {
  list-style: none !important;
  list-style-type: none !important;
}

.survey-list li::before,
.cai-overview-list-new li::before,
.cai-challenge-list-new li::before,
.cai-caused-list-new-style li::before {
  display: none !important;
  content: none !important;
}

/* Collage image wrapper tweaks */
.survey-collage-1 {
  width: 75% !important;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.survey-collage-2 {
  width: 65% !important;
  left: -8% !important;
  top: 40% !important;
  border-radius: 20px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

/* Solution step list alignment */
.cai-step-details-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.cai-step-details-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  line-height: 1.6 !important;
  margin-bottom: 8px !important;
  text-align: left !important;
  list-style: none !important;
}

.cai-step-details-list li:last-child {
  margin-bottom: 0 !important;
}

.cai-step-details-list li::before {
  display: none !important;
  content: none !important;
}

.cai-detail-dot {
  width: 6px;
  height: 6px;
  background-color: var(--purple, #9E2A8D);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  margin-top: 8px !important;
}

.cai-step-details-list li .cai-detail-dot {
  flex-shrink: 0 !important;
  margin-top: 7px !important;
}

/* Challenge & survey list icon alignment */
.cai-challenge-list-new li>div,
.survey-list li>div {
  align-items: flex-start !important;
}

.cai-challenge-list-new li>div .cai-list-icon,
.survey-list li>div .cai-list-icon {
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.cai-challenge-list-new li>div>div,
.survey-list li>div>div {
  flex: 1 !important;
  text-align: left !important;
}

.cai-challenge-list-new li>div>div p,
.survey-list li>div>div p {
  text-align: justify !important;
  margin: 0 !important;
}

/* ============================================================
   HOW IT WORKS PAGE — Full-Screen Hero Responsive Overhaul
   Mirrors the About page's .cai-hero pattern.
   Breakpoints: 1200px | 992px | 768px | 600px | 480px | 360px
   ============================================================ */

/* Large desktops — enforce full-screen, adjust padding */
@media (max-width: 1200px) {
  .how-hero-premium {
    min-height: 100vh;
    padding: 150px 0 90px;
  }
}

/* iPad Pro / large tablets (992–1200px) — already handled above,
   re-assert here for safety */
@media (max-width: 992px) {
  .how-hero-premium {
    min-height: 100vh !important;
    padding: 140px 0 80px;
  }

  /* Stack text above graphic, centre everything */
  .how-hero-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
  }

  .how-hero-text {
    flex: unset;
    width: 100%;
    max-width: 600px;
  }

  .how-hero-graphic {
    flex: unset;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-tag-premium {
    display: inline-flex;
    justify-content: center;
  }

  .how-hero-desc {
    margin: 0 auto;
  }
}

/* iPad Mini / medium tablets (768–992px) */
@media (max-width: 768px) {
  .how-hero-premium {
    min-height: 100vh !important;
    padding: 120px 0 70px;
  }

  .how-hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    letter-spacing: -0.8px;
  }

  /* Scale down the interactive graphic to fit narrow screens */
  .hero-interactive-graphic {
    width: 260px;
    height: 260px;
  }

  .pulse-ring-outer {
    width: 210px;
    height: 210px;
  }

  .pulse-ring-inner {
    width: 140px;
    height: 140px;
  }

  .core-brain-node {
    width: 80px;
    height: 80px;
  }

  .orbit-1 {
    top: 18px;
    left: 18px;
  }

  .orbit-2 {
    bottom: 18px;
    right: 18px;
  }

  .orbit-3 {
    top: 110px;
    right: 8px;
  }
}

/* Surface Duo single-pane / large phones (600px) */
@media (max-width: 600px) {
  .how-hero-premium {
    min-height: 100vh !important;
    padding: 110px 0 60px;
  }
}

/* Mobile phones (≤480px) */
@media (max-width: 480px) {
  .how-hero-premium {
    min-height: 100svh !important;
    /* svh accounts for mobile browser chrome/address bar */
    padding: 100px 0 56px;
  }

  .how-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .hero-tag-premium {
    font-size: 0.72rem;
    padding: 5px 14px;
    letter-spacing: 1px;
  }

  /* Shrink the graphic further on phones */
  .hero-interactive-graphic {
    width: 200px;
    height: 200px;
  }

  .pulse-ring-outer {
    width: 165px;
    height: 165px;
  }

  .pulse-ring-inner {
    width: 110px;
    height: 110px;
  }

  .core-brain-node {
    width: 65px;
    height: 65px;
  }

  .core-brain-node svg {
    width: 26px;
    height: 26px;
  }

  .orbiting-node {
    width: 40px;
    height: 40px;
  }

  .orbiting-node svg {
    width: 14px;
    height: 14px;
  }

  .orbit-1 {
    top: 12px;
    left: 12px;
  }

  .orbit-2 {
    bottom: 12px;
    right: 12px;
  }

  .orbit-3 {
    top: 85px;
    right: 5px;
  }
}

/* Very small phones (≤360px) */
@media (max-width: 360px) {
  .how-hero-premium {
    min-height: 100svh !important;
    padding: 90px 0 44px;
  }

  .how-hero-title {
    font-size: 1.6rem;
    letter-spacing: -0.3px;
  }

  .hero-interactive-graphic {
    width: 170px;
    height: 170px;
  }

  .pulse-ring-outer {
    width: 140px;
    height: 140px;
  }

  .pulse-ring-inner {
    width: 90px;
    height: 90px;
  }

  .core-brain-node {
    width: 55px;
    height: 55px;
  }

  .orbit-1 {
    top: 8px;
    left: 8px;
  }

  .orbit-2 {
    bottom: 8px;
    right: 8px;
  }

  .orbit-3 {
    top: 70px;
    right: 3px;
  }
}

/* ============================================================
   HOW IT WORKS — Workflow Steps: Visual always AFTER text on mobile
   Both .workflow-item and .workflow-item.reverse collapse to a
   single column on small screens. The visual div is first in the
   HTML (needed for desktop row-reverse), so we reorder with flex
   `order` to keep: Step text → Visual card on mobile.
   ============================================================ */
@media (max-width: 991px) {

  /* Force single-column stacking on all step rows */
  .workflow-item,
  .workflow-item.reverse {
    flex-direction: column !important;
    align-items: stretch;
  }

  /* Text block always on top */
  .workflow-item .workflow-content {
    order: 1;
  }

  /* Visual card always below the text */
  .workflow-item .workflow-visual {
    order: 2;
  }

  /* Keep visual cards readable and centred */
  .workflow-visual {
    justify-content: center;
  }

  .visual-card {
    max-width: 100%;
    width: 100%;
  }
}