/* ---------- HERO LAYOUT ---------- */
.hero{
  padding:84px 0 48px; /* keep header clear */
  background: var(--hero-bg);
}

.hero-inner{
  display:grid; grid-template-columns:1.1fr 1fr; gap:36px; align-items:start;
}
@media (max-width:1080px){ .hero-inner{ grid-template-columns:1fr; } }

.hero-inner > .stage{
  align-self:start;
}

/* Make sure text paints above any decorative layers in the hero */
.hero .copy{
  position: relative;
  z-index: 1;
  isolation: isolate;        /* prevent ancestor/filter/blend leaking */
}
/* ---------- COPY ---------- */
.copy h1{
  font-size: clamp(32px, 3.6vw, 56px);
  font-weight: 800; letter-spacing:-.02em; line-height:1.06;
  margin-bottom:10px;

  /* Force visible paint using your palette with fallback */
  color: var(--text, #0e1330) !important;
  -webkit-text-fill-color: var(--text, #0e1330) !important;

  /* Neutralize any unwanted effects coming from upstream rules */
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
}
.copy h1 em{
  background: var(--grad);
  -webkit-background-clip:text; background-clip:text;
  color: transparent;
  -webkit-text-fill-color: transparent; /* keep gradient on <em> */
}

.hero-headline{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
  padding:18px 0 20px 30px;
  text-wrap:balance;
}

.hero-headline::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  bottom:12px;
  width:6px;
  border-radius:12px;
  background:var(--grad);
  box-shadow:0 18px 50px rgba(42,108,246,.28);
}

:root[data-theme="dark"] .hero-headline::before{
  box-shadow:0 18px 60px rgba(42,108,246,.35);
}

.hero-headline::after{
  content:"";
  position:absolute;
  inset:-28px -40px -34px 12px;
  background:linear-gradient(130deg, rgba(42,108,246,.12), rgba(122,61,240,.08));
  filter:blur(30px);
  opacity:.75;
  border-radius:48px;
  z-index:-1;
}

:root[data-theme="dark"] .hero-headline::after{
  background:linear-gradient(130deg, rgba(42,108,246,.32), rgba(122,61,240,.24));
  opacity:.45;
  filter:blur(42px);
}

html[dir="rtl"] .hero-headline{
  align-items:flex-end;
  padding:18px 30px 20px 0;
}

html[dir="rtl"] .hero-headline::before{
  left:auto;
  right:0;
}

html[dir="rtl"] .hero-headline::after{
  inset:-28px 12px -34px -40px;
}

html[dir="rtl"] .headline-primary,
html[dir="rtl"] .headline-secondary{
  padding-left:0;
  padding-right:6px;
}

html[dir="rtl"] .headline-secondary .headline-emphasis{
  margin-left:0;
  margin-right:4px;
}
.headline-primary{
  font-size: clamp(44px, 4.8vw, 68px);
  font-weight:900;
  letter-spacing:-0.045em;
  background:var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  -webkit-text-fill-color:transparent;
  line-height:1;
  padding-left:6px;
}

.headline-secondary{
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight:600;
  letter-spacing:-0.01em;
  line-height:1.4;
  color:var(--text);
  padding-left:6px;
  max-width:740px;
}

.headline-secondary .headline-emphasis{
  display:inline-block;
  margin-left:4px;
  padding:4px 14px;
  border-radius:999px;
  background:rgba(42,108,246,.12);
  color:var(--accent-1);
  font-weight:750;
  box-shadow:0 12px 30px rgba(20,30,75,.12);
}

:root[data-theme="dark"] .headline-secondary{
  color:#cdd4f3;
}

:root[data-theme="dark"] .headline-secondary .headline-emphasis{
  background:rgba(42,108,246,.22);
  color:#eaeefe;
  box-shadow:0 14px 36px rgba(0,0,0,.35);
}

@media (max-width: 720px){
  .hero-headline{
    padding:16px 0 18px 24px;
    gap:12px;
  }

  html[dir="rtl"] .hero-headline{
    padding:16px 24px 18px 0;
  }

  .headline-primary{
    font-size: clamp(36px, 8vw, 54px);
  }

  .headline-secondary{
    font-size: 1.05rem;
    max-width: 100%;
  }
}

/* Ensure hero text is always visible in both themes */
:root:not([data-theme="dark"]) .copy h1 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root[data-theme="dark"] .copy h1 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

.hero .copy h1 {
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
}

.sub{
  color:var(--muted); font-size:1.05rem; max-width:720px; margin-top:10px;
}

/* ---------- CTA BUTTONS ---------- */
.cta{ margin:18px 0; display:flex; gap:12px; flex-wrap:wrap; }

.btn-primary{
  background:var(--grad); color:#fff; padding:12px 20px; border-radius:999px;
  text-decoration:none; font-weight:700; transition:opacity .18s ease, transform .18s ease;
  display:inline-flex; align-items:center; justify-content:center;
  border:none; cursor:pointer; font-family:inherit;
}
.btn-primary:hover{ opacity:.9; transform: translateY(-1px); }

.hero .cta-footnote{
  margin-top: 8px;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
}

.hero .hero-secondary-cta{
  font-weight:700;
  box-shadow:0 12px 32px rgba(20,30,75,.1);
}

:root:not([data-theme="dark"]) .hero .hero-secondary-cta{
  background:#ffffff;
  border-color:rgba(14,19,48,.12);
  color:#0e1330;
}

:root:not([data-theme="dark"]) .hero .hero-secondary-cta:hover{
  border-color:var(--accent-1);
  color:var(--accent-1);
  box-shadow:0 16px 36px rgba(20,30,75,.14);
}

:root[data-theme="dark"] .hero .hero-secondary-cta{
  background:rgba(18,22,40,.92);
  border-color:rgba(255,255,255,.14);
  color:#eaeefe;
}

:root[data-theme="dark"] .hero .hero-secondary-cta:hover{
  border-color:var(--accent-1);
  color:var(--accent-1);
  box-shadow:0 16px 36px rgba(0,0,0,.4);
}

/* Ghost button adapts to theme */
/* Base ghost button */
.btn-ghost{
  border:1px solid var(--border);
  border-radius:999px;
  padding:12px 20px;
  font-weight:600;
  text-decoration:none;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

/* ----- Secondary Button ----- LIGHT MODE ---------- */
:root:not([data-theme="dark"]) .btn-ghost{
  /* default = what used to be hover */
  background: rgba(42,108,246,.08);
  border-color: var(--accent-1);
  color: var(--accent-1);
}
:root:not([data-theme="dark"]) .btn-ghost:hover{
  /* hover = subtle lift / match dark hover feel */
  background: rgba(42,108,246,.15);
  border-color: var(--accent-2);
  color: var(--accent-2);
  box-shadow: 0 6px 18px rgba(20,30,75,.12);
  transform: translateY(-1px);
}

/* ------ Secondary Button ---- DARK MODE ---------- */
:root[data-theme="dark"] .btn-ghost{
  background: var(--card);
  border-color: var(--border);
  color: var(--text);
}
:root[data-theme="dark"] .btn-ghost:hover{
  background: rgba(42,108,246,.08);
  border-color: var(--accent-1);
  color: var(--accent-1);
  box-shadow: 0 6px 18px rgba(20,30,75,.25);
  transform: translateY(-1px);
}

/* ---------- STAGE ---------- */
.stage{
  position:relative; height:520px; border-radius:22px; overflow:hidden;
  background: var(--stage-bg);
  border:1px solid var(--border); 
  box-shadow: var(--shadow);
  padding:36px 32px 96px;
}

/* Force light mode stage background */
:root:not([data-theme="dark"]) .stage {
  background: #f8faff !important;
  border-color: rgba(14, 19, 48, 0.08) !important;
}

/* Dark mode stage background */
:root[data-theme="dark"] .stage {
  background: #0f1428 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

/* Grid overlay (theme-aware via --grid-line) */
.grid-overlay{
  position:absolute; inset:0; pointer-events:none; opacity:.28;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size:40px 40px;
}

/* Force light mode grid */
:root:not([data-theme="dark"]) .grid-overlay {
  background-image:
    linear-gradient(to right, rgba(14, 19, 48, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 19, 48, 0.06) 1px, transparent 1px) !important;
}

/* Dark mode grid */
:root[data-theme="dark"] .grid-overlay {
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
}

/* ---------- FLOAT CARDS ---------- */
.float-card{
  position:absolute;
  background: var(--card);               /* palette-driven; adapts per theme */
  border:1px solid var(--border);
  border-radius:14px; 
  box-shadow: var(--shadow); 
  padding:16px 18px;
  backdrop-filter: saturate(120%) blur(6px);
  color: var(--text);
  min-width: 200px;
  max-width: 300px;
  transition: transform .25s ease, box-shadow .25s ease;
}

/* Force light mode colors for float cards */
:root:not([data-theme="dark"]) .float-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(14, 19, 48, 0.12) !important;
  color: #0e1330 !important;
  box-shadow: 0 8px 32px rgba(14, 19, 48, 0.08) !important;
}

/* Dark mode float cards */
:root[data-theme="dark"] .float-card {
  background: rgba(18, 22, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #eaeefe !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
}

/* Force light mode colors for all cards in sections */
:root:not([data-theme="dark"]) .feature-card,
:root:not([data-theme="dark"]) .step-card,
:root:not([data-theme="dark"]) .testimonial-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(14, 19, 48, 0.12) !important;
  color: #0e1330 !important;
  box-shadow: 0 8px 32px rgba(14, 19, 48, 0.08) !important;
}

/* Dark mode colors for all cards in sections */
:root[data-theme="dark"] .feature-card,
:root[data-theme="dark"] .step-card,
:root[data-theme="dark"] .testimonial-card {
  background: rgba(18, 22, 40, 0.9) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: #eaeefe !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25) !important;
}
.float-card h4{ font-size:.95rem; margin-bottom:8px; }
.float-card .row{
  display:flex; justify-content:space-between; gap:12px; font-size:.9rem; padding:6px 0;
}
.float-card .row + .row{ border-top:1px dashed var(--border); }

/* Force light mode dashed borders */
:root:not([data-theme="dark"]) .float-card .row + .row {
  border-top: 1px dashed rgba(14, 19, 48, 0.12) !important;
}

/* Dark mode dashed borders */
:root[data-theme="dark"] .float-card .row + .row {
  border-top: 1px dashed rgba(255, 255, 255, 0.12) !important;
}
.float-card .pill{
  display:inline-block; 
  padding:8px 16px; 
  border:1px solid var(--accent-1);
  border-radius:999px; 
  font-weight:600;
  background: var(--accent-1);
  color: white;
  border-color: var(--accent-1);
  transition: all 0.2s ease;
}

.float-card .pill:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
}

/* Ensure pill button is always visible */
:root:not([data-theme="dark"]) .float-card .pill {
  background: #2a6cf6 !important;
  border-color: #2a6cf6 !important;
  color: white !important;
}

:root[data-theme="dark"] .float-card .pill {
  background: #2a6cf6 !important;
  border-color: #2a6cf6 !important;
  color: white !important;
}

/* Shorter hero */
.stage{
  position: relative;
  min-height: clamp(420px, 42vw, 540px);  /* was taller */
  padding: 32px 32px max(96px, env(safe-area-inset-bottom));
  overflow: visible;
}

/* Base transform kept variable-driven */
.float-card{
  /* …your existing styles… */
  --tx: 0; --ty: 0; --rot: 0deg; --scale: 1;
  --parx: 0px; --pary: 0px;          /* parallax offsets */
  --lift: 0px; --hoverScale: 1;      /* hover/focus lift */
  transform:
    translate(var(--tx), var(--ty))
    rotate(var(--rot))
    translate3d(var(--parx), var(--pary), 0)
    translateY(var(--lift))
    scale(calc(var(--scale) * var(--hoverScale)));
  opacity: 0;
  will-change: transform, opacity;
}

/* Gentle idle drift */
@keyframes drift {
  0%   { transform: translate(var(--tx),var(--ty)) rotate(var(--rot)) translate3d(calc(var(--parx) - 1px), calc(var(--pary) - 1px),0) translateY(var(--lift)) scale(calc(var(--scale)*var(--hoverScale))); }
  50%  { transform: translate(var(--tx),var(--ty)) rotate(calc(var(--rot) + .3deg)) translate3d(calc(var(--parx) + 2px), calc(var(--pary) + 3px),0) translateY(calc(var(--lift) - 2px)) scale(calc(var(--scale)*var(--hoverScale))); }
  100% { transform: translate(var(--tx),var(--ty)) rotate(var(--rot)) translate3d(calc(var(--parx) - 1px), calc(var(--pary) - 1px),0) translateY(var(--lift)) scale(calc(var(--scale)*var(--hoverScale))); }
}

.float-card { animation: drift 6s ease-in-out infinite; }
.float-card:nth-of-type(2){ animation-duration: 7.5s; }
.float-card:nth-of-type(3){ animation-duration: 8.5s; }
.float-card:nth-of-type(4){ animation-duration: 7s; }

/* Reveal (IO adds .show) */
.reveal{ --scale:.98; }
.float-card.show{ opacity:1; --scale:1; transition: opacity .6s cubic-bezier(.2,.7,.2,1); }

/* Hover/Focus lift */
@media (hover:hover){
  .float-card:hover{ --lift:-6px; --hoverScale:1.02; }
}
.float-card:focus-visible{
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
  --lift:-6px; --hoverScale:1.02;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .float-card{ animation: none; transition: none; }
}

.fc-top  { width:240px; left:45%; top:12%; --tx:-50%; --ty:-50%; --rot:-4deg; z-index:5; }
.fc-main { width:340px; left:62%; top:32%; --tx:-50%; --ty:-50%; --rot:0deg;  z-index:4; }
.fc-left { width:260px; left:22%; top:68%; --tx:-50%; --ty:-50%; --rot:-4deg; z-index:3; }
.fc-right{ width:260px; left:82%; top:68%; --tx:-50%; --ty:-50%; --rot:5deg;  z-index:2; }


/* ========== NEW SECTIONS STYLING ========== */

/* Common section styling */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--text);
}

/* Force proper contrast for section titles in both themes */
:root:not([data-theme="dark"]) .section-header h2 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root[data-theme="dark"] .section-header h2 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header .section-lead {
  margin-bottom: 14px;
}

.section-header .section-bridge {
  font-size: 1.1rem;
  max-width: 640px;
}

.section-header .section-highlights {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px auto 0;
  max-width: 720px;
}

.section-header .section-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(42, 108, 246, 0.12);
  color: var(--accent-1);
  font-weight: 650;
  letter-spacing: 0.01em;
}

:root[data-theme="dark"] .section-header .section-highlights span {
  background: rgba(42, 108, 246, 0.22);
  color: #eaeefe;
}

/* Force proper contrast for section subtitles in both themes */
:root:not([data-theme="dark"]) .section-header p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .section-header p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 100px 0;
  background: var(--bg);
}

/* Force light mode background */
:root:not([data-theme="dark"]) .features {
  background: #ffffff !important;
}

/* Dark mode background */
:root[data-theme="dark"] .features {
  background: #070a12 !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-1);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 16px 32px rgba(16, 26, 56, 0.14);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Force proper contrast for feature cards in both themes */
:root:not([data-theme="dark"]) .feature-card h3 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root:not([data-theme="dark"]) .feature-card p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .feature-card h3 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .feature-card p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== USE CASES SECTION ========== */
.use-cases {
  padding: 100px 0;
  background: var(--fg);
}

:root:not([data-theme="dark"]) .use-cases {
  background: #f4f6ff !important;
}

:root[data-theme="dark"] .use-cases {
  background: #0b1124 !important;
}

.use-cases-header {
  position: relative;
}

.use-cases-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(42, 108, 246, 0.1);
  color: var(--accent-1);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

:root[data-theme="dark"] .use-cases-header .section-eyebrow {
  background: rgba(42, 108, 246, 0.18);
  color: #dfe8ff;
}

.use-cases-header h2 {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.use-cases-header .section-highlight {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  background: linear-gradient(120deg, rgba(42, 108, 246, 0.16), rgba(122, 61, 240, 0.14));
  border-radius: 14px;
  color: inherit;
  z-index: 0;
  overflow: hidden;
}

.use-cases-header .section-highlight::after {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--grad);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.18;
  filter: blur(6px);
}

.use-cases-header p {
  font-size: 1.05rem;
  max-width: 640px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.case-card:hover {
  border-color: var(--accent-1);
  box-shadow: 0 18px 42px rgba(16, 26, 56, 0.14);
  transform: translateY(-4px);
}

.case-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--grad);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-icon svg {
  width: 32px;
  height: 32px;
}

.case-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
}

.case-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

.case-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

.case-list li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-1);
  box-shadow: 0 0 0 3px rgba(42, 108, 246, 0.15);
  display: inline-block;
  flex-shrink: 0;
}

html[dir="rtl"] .case-list {
  direction: rtl;
}

html[dir="rtl"] .case-list li {
  position: relative;
  display: block;
  padding: 0 28px 0 0;
  text-align: right;
}

html[dir="rtl"] .case-list li::before {
  position: absolute;
  right: 0;
  left: auto;
  top: 0.6em;
  transform: translateY(-50%);
  margin: 0;
}

:root:not([data-theme="dark"]) .case-card h3 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root:not([data-theme="dark"]) .case-card p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .case-card h3 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .case-card p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== EMPOWERMENT SECTION ========== */
.home-empowerment{
  position:relative;
  padding:0;
  background:var(--fg);
}

:root:not([data-theme="dark"]) .home-empowerment{
  background:#f4f6ff !important;
}

:root[data-theme="dark"] .home-empowerment{
  background:#0b1124 !important;
}

.home-empowerment-shell{
  position:relative;
  width:min(1180px,92vw);
  margin:0 auto;
  padding:88px clamp(28px,5vw,64px);
  border-radius:40px;
  border:1px solid rgba(225,229,246,.62);
  background:linear-gradient(135deg,rgba(255,255,255,.92),rgba(240,244,255,.86));
  box-shadow:0 42px 86px rgba(18,24,56,.18);
  backdrop-filter:blur(26px);
  -webkit-backdrop-filter:blur(26px);
  color:rgba(25,32,64,.92);
  display:flex;
  flex-direction:column;
  gap:32px;
  overflow:hidden;
}

.home-empowerment-shell::before,
.home-empowerment-shell::after{
  content:"";
  position:absolute;
  pointer-events:none;
  mix-blend-mode:screen;
}

.home-empowerment-shell::before{
  inset:-34% 2% auto -6%;
  width:100%;
  height:100%;
  background:
    radial-gradient(520px 400px at 82% 10%,rgba(255,255,255,.42),transparent 74%),
    radial-gradient(360px 280px at 10% 46%,rgba(196,212,255,.28),transparent 78%);
}

.home-empowerment-shell::after{
  inset:auto -18% -46% 46%;
  width:420px;
  height:340px;
  background:
    radial-gradient(460px 320px at 78% 92%,rgba(255,255,255,.34),transparent 76%),
    radial-gradient(260px 220px at 108% 110%,rgba(206,215,255,.22),transparent 78%);
}

.home-empowerment-header{
  position:relative;
  display:flex;
  gap:28px;
  align-items:flex-start;
  max-width:820px;
  z-index:1;
}

.home-empowerment-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:70px;
  height:70px;
  border-radius:24px;
  position:relative;
  background:linear-gradient(135deg,#4d64ff,#7a4df0);
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 28px 58px rgba(35,38,82,.18);
  flex-shrink:0;
  overflow:hidden;
}

.home-empowerment-icon svg{
  width:38px;
  height:38px;
  stroke-width:1.7;
}

.home-empowerment-eyebrow{
  display:inline-flex;
  gap:8px;
  padding:6px 14px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  background:rgba(88,114,255,.14);
  color:#3142a4;
  margin-bottom:16px;
}

.home-empowerment h2{
  margin:0 0 12px;
  font-size:clamp(1.8rem,2.8vw,2.2rem);
  letter-spacing:-.01em;
  color:#1d255a;
  text-shadow:0 12px 28px rgba(21,29,70,.12);
}

.home-empowerment-lead{
  margin:0;
  font-size:1.08rem;
  line-height:1.7;
  color:rgba(46,58,110,.72);
  max-width:680px;
}

.home-empowerment-points{
  position:relative;
  z-index:1;
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}

.home-empowerment-points li{
  position:relative;
  padding:18px 22px 18px 48px;
  border-radius:22px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(205,212,240,.55);
  box-shadow:0 22px 48px rgba(28,32,70,.12);
  font-weight:600;
  color:rgba(28,34,74,.92);
  transition:transform .18s ease, box-shadow .18s ease;
}

.home-empowerment-points li::before{
  content:"";
  position:absolute;
  left:22px;
  top:20px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,#4d76ff,#7a58f2);
  box-shadow:0 0 0 6px rgba(82,122,255,.16);
}

html[dir="rtl"] .home-empowerment-points li{
  padding:18px 48px 18px 22px;
  text-align:right;
}

html[dir="rtl"] .home-empowerment-points li::before{
  left:auto;
  right:22px;
}

.home-empowerment-points li:hover{
  transform:translateY(-6px);
  box-shadow:0 32px 66px rgba(32,18,84,.22);
}

:root[data-theme="dark"] .home-empowerment-shell{
  background:linear-gradient(150deg,rgba(15,20,42,.92),rgba(10,14,30,.9));
  border-color:rgba(122,61,240,.32);
  box-shadow:0 56px 110px rgba(0,0,0,.6);
  color:rgba(240,243,255,.94);
}

:root[data-theme="dark"] .home-empowerment-shell::before,
:root[data-theme="dark"] .home-empowerment-shell::after{
  mix-blend-mode:normal;
  opacity:.82;
  filter:saturate(1.1);
}

:root[data-theme="dark"] .home-empowerment-shell::before{
  inset:auto -16% -44% 62%;
  width:360px;
  height:300px;
  background:
    radial-gradient(360px 280px at 88% 100%,rgba(110,134,255,.3),transparent 76%),
    radial-gradient(220px 200px at 116% 110%,rgba(148,102,255,.24),transparent 82%);
}

:root[data-theme="dark"] .home-empowerment-shell::after{
  inset:auto -24% -54% 78%;
  width:320px;
  height:260px;
  background:
    radial-gradient(340px 260px at 86% 104%,rgba(94,132,255,.4),transparent 78%),
    radial-gradient(200px 190px at 122% 108%,rgba(78,112,246,.32),transparent 80%),
    radial-gradient(180px 180px at 58% 90%,rgba(214,128,206,.22),transparent 78%);
}

:root[data-theme="dark"] .home-empowerment-icon{
  background:linear-gradient(135deg,rgba(86,115,255,.92),rgba(160,110,255,.94));
  color:#fefbff;
  border-color:rgba(255,255,255,.18);
  box-shadow:0 36px 78px rgba(0,0,0,.55);
}

:root[data-theme="dark"] .home-empowerment-icon::after{
  background:radial-gradient(140% 140% at 32% 24%,rgba(255,255,255,.48),rgba(255,255,255,0));
  opacity:.85;
}

:root[data-theme="dark"] .home-empowerment h2{
  color:#eef1ff;
  text-shadow:0 12px 28px rgba(0,0,0,.45);
}

:root[data-theme="dark"] .home-empowerment-eyebrow{
  background:rgba(58,96,226,.28);
  color:#e9edff;
}

:root[data-theme="dark"] .home-empowerment-lead{
  color:rgba(223,230,255,.8);
}

:root[data-theme="dark"] .home-empowerment-points li{
  background:rgba(18,22,52,.92);
  border-color:rgba(122,61,240,.3);
  color:#f4f6ff;
  box-shadow:0 32px 68px rgba(0,0,0,.52);
}

:root[data-theme="dark"] .home-empowerment-points li::before{
  background:linear-gradient(135deg,#6d8ffc,#9b6bff);
  box-shadow:0 0 0 6px rgba(122,61,240,.24);
}

/* ========== INTEGRATIONS SECTION ========== */
.integrations {
  padding: 100px 0;
  background: var(--bg);
}

:root:not([data-theme="dark"]) .integrations.integrator {
  background: linear-gradient(180deg, rgba(244, 247, 255, 0.85) 0%, #ffffff 65%) !important;
}

:root[data-theme="dark"] .integrations.integrator {
  background: linear-gradient(180deg, rgba(6, 12, 26, 0.85) 0%, #050816 65%) !important;
}

:root:not([data-theme="dark"]) .integrations {
  background: #ffffff !important;
}

:root[data-theme="dark"] .integrations {
  background: #060912 !important;
}

.integrations.integrator {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.integrations.integrator::before,
.integrations.integrator::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
}

.integrations.integrator::before {
  background: radial-gradient(60% 80% at 20% 15%, rgba(42, 108, 246, 0.18), transparent 70%);
  mix-blend-mode: screen;
}

.integrations.integrator::after {
  background: radial-gradient(55% 70% at 85% 85%, rgba(122, 61, 240, 0.16), transparent 72%);
  mix-blend-mode: screen;
}

:root[data-theme="dark"] .integrations.integrator::before,
:root[data-theme="dark"] .integrations.integrator::after {
  mix-blend-mode: normal;
  opacity: 0.45;
  filter: blur(4px);
}

.integrations.integrator .section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.integrator-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(42, 108, 246, 0.14);
  color: var(--accent-1);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

:root[data-theme="dark"] .integrator-label {
  background: rgba(42, 108, 246, 0.22);
  color: #e1e7ff;
}

.integrations.integrator h2 {
  margin-top: 22px;
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.integrations.integrator p {
  color: var(--muted);
  text-wrap: balance;
}

:root[data-theme="dark"] .integrations.integrator p {
  color: #a5b0d5;
}

.integrator-grid {
  position: relative;
  z-index: 1;
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 36px;
  align-items: stretch;
}

.integrator-main,
.integrator-visual {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(104, 124, 182, 0.12);
  border-radius: 28px;
  padding: 36px 40px;
  box-shadow: 0 24px 60px -28px rgba(13, 24, 62, 0.42);
  backdrop-filter: blur(14px);
}

:root[data-theme="dark"] .integrator-main,
:root[data-theme="dark"] .integrator-visual {
  background: rgba(10, 14, 28, 0.85);
  border-color: rgba(111, 135, 201, 0.18);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6);
}

.integrator-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.integrator-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.integrator-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 20px;
  border: 1px solid rgba(42, 108, 246, 0.16);
  background: rgba(42, 108, 246, 0.04);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.integrator-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 61, 240, 0.32);
  box-shadow: 0 22px 44px -24px rgba(24, 44, 96, 0.5);
}

:root[data-theme="dark"] .integrator-feature {
  background: rgba(42, 108, 246, 0.12);
  border-color: rgba(122, 61, 240, 0.28);
}

.integrator-feature .feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(216, 225, 255, 0.45));
  color: #1f2d5c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 12px 25px -18px rgba(21, 32, 72, 0.8);
}

:root[data-theme="dark"] .integrator-feature .feature-icon {
  background: linear-gradient(145deg, rgba(33, 43, 82, 0.85), rgba(14, 22, 46, 0.85));
  color: #f5f7ff;
  box-shadow: inset 0 1px 0 rgba(208, 220, 255, 0.3), 0 12px 24px -16px rgba(0, 0, 0, 0.8);
}

.integrator-feature h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.integrator-feature p {
  margin: 0;
  font-size: 0.98rem;
}

.integrator-outcomes {
  position: relative;
  margin: 34px 0 0;
  padding: 24px 28px;
  border-radius: 22px;
  background: linear-gradient(140deg, rgba(42, 108, 246, 0.08), rgba(122, 61, 240, 0.06));
  border: 1px solid rgba(64, 104, 206, 0.16);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.integrator-outcomes::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 20px;
  right: 20px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(42, 108, 246, 0), rgba(42, 108, 246, 0.3), rgba(122, 61, 240, 0));
}

.integrator-outcomes h4 {
  margin: 0;
  font-size: 1.14rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--text);
}

.integrator-outcomes-list {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
  align-items: flex-start;
  flex-wrap: wrap;
}

.integrator-outcomes-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 140px;
  flex: 1 1 0;
}

.outcome-metric {
  font-size: clamp(28px, 3.8vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent-1);
  background: linear-gradient(120deg, rgba(42, 108, 246, 0.95), rgba(122, 61, 240, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-flex;
}

.integrator-outcomes-list p {
  margin: 0;
  font-size: 1.04rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 460px;
  text-align: left;
}

:root[data-theme="dark"] .integrator-outcomes {
  background: linear-gradient(140deg, rgba(26, 38, 84, 0.65), rgba(18, 26, 62, 0.52));
  border-color: rgba(104, 140, 240, 0.22);
}

:root[data-theme="dark"] .integrator-outcomes::before {
  background: linear-gradient(90deg, rgba(122, 61, 240, 0), rgba(122, 61, 240, 0.55), rgba(42, 108, 246, 0));
}

:root[data-theme="dark"] .integrator-outcomes h4 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .integrator-outcomes-list p {
  color: #b8c1e6 !important;
  -webkit-text-fill-color: #b8c1e6 !important;
}

html[dir="rtl"] .integrator-outcomes {
  text-align: right;
}

html[dir="rtl"] .integrator-outcomes::before {
  left: auto;
  right: 0;
}

html[dir="rtl"] .integrator-outcomes-list li {
  justify-content: flex-end;
}

.integrator-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  padding: 30px 34px;
  border-radius: 26px;
  background: linear-gradient(140deg, rgba(42, 108, 246, 0.18), rgba(122, 61, 240, 0.14));
  border: 1px solid rgba(86, 116, 210, 0.28);
  box-shadow: 0 26px 54px -28px rgba(26, 44, 102, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  overflow: hidden;
}

.integrator-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120% 120% at 100% 0%, rgba(122, 61, 240, 0.18), transparent 45%), radial-gradient(110% 150% at 0% 100%, rgba(42, 108, 246, 0.25), transparent 52%);
  opacity: 0.9;
  pointer-events: none;
}

.integrator-cta::after {
  content: "";
  position: absolute;
  top: -28%;
  left: 18%;
  width: 120%;
  height: 90%;
  background: linear-gradient(95deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0));
  opacity: 0.35;
  transform: rotate(-6deg);
  filter: blur(10px);
}

.integrator-cta::before,
.integrator-cta::after {
  mix-blend-mode: screen;
}

.integrator-cta .btn-primary {
  position: relative;
  z-index: 1;
  padding: 14px 36px;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: 0.01em;
  box-shadow: 0 22px 46px -22px rgba(42, 108, 246, 0.75);
}

:root[data-theme="dark"] .integrator-cta {
  background: linear-gradient(140deg, rgba(26, 44, 102, 0.6), rgba(14, 24, 62, 0.6));
  border-color: rgba(88, 124, 214, 0.35);
  box-shadow: 0 32px 60px -26px rgba(0, 0, 0, 0.78), inset 0 1px 0 rgba(170, 188, 255, 0.1);
}

:root[data-theme="dark"] .integrator-cta::before {
  background: radial-gradient(120% 120% at 100% 0%, rgba(122, 61, 240, 0.32), transparent 45%), radial-gradient(110% 150% at 0% 100%, rgba(42, 108, 246, 0.35), transparent 52%);
  opacity: 0.85;
}

:root[data-theme="dark"] .integrator-cta::after {
  opacity: 0.25;
}

.integrator-cta-note {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.96rem;
  color: var(--muted);
  text-align: center;
  max-width: 420px;
}

.integrator-tagline {
  margin: 24px 0 0;
  display: flex;
  justify-content: flex-start;
}

.integrator-tagline span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px 14px 46px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(42, 108, 246, 0.95), rgba(122, 61, 240, 0.9));
  box-shadow: 0 22px 48px -24px rgba(28, 46, 110, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  color: #f9fbff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-wrap: balance;
  overflow: hidden;
}

.integrator-tagline span::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(140deg, #ffffff, rgba(215, 226, 255, 0.42));
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.14), 0 0 22px 8px rgba(255, 255, 255, 0.14);
  animation: integrator-pulse 3.2s ease-in-out infinite;
}

.integrator-tagline span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 60%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

:root[data-theme="dark"] .integrator-tagline span {
  background: linear-gradient(135deg, rgba(42, 108, 246, 0.88), rgba(122, 61, 240, 0.82));
  color: #ffffff;
  box-shadow: 0 24px 52px -22px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

:root[data-theme="dark"] .integrator-tagline span::before {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(180, 197, 255, 0.5));
  box-shadow: 0 0 0 6px rgba(122, 61, 240, 0.28), 0 0 22px 8px rgba(42, 108, 246, 0.35);
}

html[dir="rtl"] .integrator-tagline {
  justify-content: flex-start;
}

html[dir="rtl"] .integrator-tagline span {
  padding: 14px 46px 14px 28px;
}

html[dir="rtl"] .integrator-tagline span::before {
  left: auto;
  right: 18px;
}

@keyframes integrator-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.22);
    opacity: 0.6;
  }
}

.integrator-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.integrator-visual-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(42, 108, 246, 0.14);
  color: var(--accent-1);
  font-size: 0.82rem;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.integrator-visual h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 750;
  letter-spacing: -0.015em;
  color: var(--text);
}

.integrator-visual-sub {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 420px;
}

.integrator-visual-steps {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.integrator-visual-steps li {
  position: relative;
  padding-left: 26px;
  border-left: 2px solid rgba(42, 108, 246, 0.18);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.integrator-visual-steps li:first-child {
  padding-top: 4px;
}

.integrator-visual-steps li:last-child {
  border-left-color: transparent;
}

.integrator-visual-steps .step-kicker {
  font-size: 0.9rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-1);
}

.integrator-visual-steps li p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--muted);
}

.integrator-visual-steps li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(42, 108, 246, 0.95), rgba(122, 61, 240, 0.85));
  box-shadow: 0 8px 18px -10px rgba(42, 108, 246, 0.7);
}

:root[data-theme="dark"] .integrator-visual-steps li {
  border-left-color: rgba(122, 61, 240, 0.28);
}

:root[data-theme="dark"] .integrator-visual-steps li p {
  color: #b8c1e6 !important;
  -webkit-text-fill-color: #b8c1e6 !important;
}

:root[data-theme="dark"] .integrator-visual-steps .step-kicker {
  color: #d9e1ff;
}

:root:not([data-theme="dark"]) .integrator-visual h3 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root[data-theme="dark"] .integrator-visual h3 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root:not([data-theme="dark"]) .integrator-visual-sub {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .integrator-visual-sub {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

:root[data-theme="dark"] .integrator-visual-label {
  background: rgba(42, 108, 246, 0.22);
  color: #eaeefe;
}

html[dir="rtl"] .integrator-visual {
  align-items: flex-end;
  text-align: right;
}

html[dir="rtl"] .integrator-visual-sub {
  text-align: right;
}

html[dir="rtl"] .integrator-visual-label {
  justify-content: flex-end;
}

html[dir="rtl"] .integrator-visual-steps {
  direction: rtl;
}

html[dir="rtl"] .integrator-visual-steps li {
  padding-left: 0;
  padding-right: 26px;
  border-left: none;
  border-right: 2px solid rgba(42, 108, 246, 0.18);
}

html[dir="rtl"] .integrator-visual-steps li::before {
  left: auto;
  right: -9px;
}

:root[data-theme="dark"] html[dir="rtl"] .integrator-visual-steps li {
  border-right-color: rgba(122, 61, 240, 0.28);
}

@media (max-width: 1080px) {
  .integrator-grid {
    grid-template-columns: 1fr;
  }

  .integrator-main,
  .integrator-visual {
    padding: 32px;
  }

  .integrator-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .integrations.integrator {
    padding: 96px 0 90px;
  }

  .integrator-main,
  .integrator-visual {
    padding: 28px;
  }

  .integrator-feature {
    grid-template-columns: auto;
    text-align: center;
  }

  .integrator-feature .feature-icon {
    margin: 0 auto;
  }

  .integrator-feature p {
    font-size: 0.95rem;
  }

  .integrator-visual {
    align-items: flex-start;
    text-align: left;
  }

  .integrator-visual-label {
    align-self: flex-start;
  }

  html[dir="rtl"] .integrator-visual {
    align-items: flex-end;
    text-align: right;
  }

  html[dir="rtl"] .integrator-visual-label {
    align-self: flex-end;
  }

  .integrator-outcomes {
    padding: 20px 24px;
  }

  .integrator-outcomes-list {
    flex-direction: column;
    gap: 16px;
  }

  .integrator-outcomes-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
  }

  .outcome-metric {
    font-size: 28px;
    background: linear-gradient(120deg, rgba(42, 108, 246, 0.95), rgba(122, 61, 240, 0.9));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .integrator-outcomes::before {
    left: 16px;
    right: 16px;
  }

  .integrator-visual-steps {
    gap: 12px;
  }
}

.integration-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 56px;
  justify-content: center;
}

.integration-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.integration-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent-1);
  box-shadow: 0 14px 32px rgba(16, 26, 56, 0.12);
}

.integration-note {
  margin-top: 48px;
  background: rgba(42, 108, 246, 0.12);
  color: var(--text);
  border-radius: 16px;
  padding: 20px 24px;
  text-align: center;
  font-weight: 500;
}

:root[data-theme="dark"] .integration-note {
  background: rgba(42, 108, 246, 0.18) !important;
  color: #d4dcff !important;
}

.integration-note strong {
  color: var(--accent-1);
}

/* ========== FAQ SECTION ========== */
.faq {
  padding: 100px 0;
  background: var(--fg);
}

:root:not([data-theme="dark"]) .faq {
  background: #f5f7ff !important;
}

:root[data-theme="dark"] .faq {
  background: #090f20 !important;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 24px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--accent-1);
  box-shadow: 0 16px 36px rgba(16, 26, 56, 0.14);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-size: 1.05rem;
}

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

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-1);
  transition: transform 0.25s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

:root:not([data-theme="dark"]) .faq-item p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .faq-item p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== HOW IT WORKS SECTION ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--fg);
}

/* Force light mode background */
:root:not([data-theme="dark"]) .how-it-works {
  background: #f7f8fc !important;
}

/* Dark mode background */
:root[data-theme="dark"] .how-it-works {
  background: #0a0f24 !important;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 60px;
  height: 60px;
  background: var(--grad);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 24px;
}

.step-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.step-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Force proper contrast for step cards in both themes */
:root:not([data-theme="dark"]) .step-card h3 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root:not([data-theme="dark"]) .step-card p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .step-card h3 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .step-card p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.step-feature {
  background: var(--accent-1);
  color: white;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ========== SOCIAL PROOF SECTION ========== */
.social-proof {
  padding: 100px 0;
  background: var(--bg);
}

.testimonials-carousel {
  position: relative;
  margin-bottom: 60px;
}

.testimonials-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 32px 32px;
  scroll-padding-left: 32px;
  scroll-padding-right: 32px;
  mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  touch-action: pan-y;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none;
  height: 0;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-viewport.is-dragging .testimonial-card {
  pointer-events: none;
  user-select: none;
}

.testimonials-viewport:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 6px;
}

/* Force light mode background */
:root:not([data-theme="dark"]) .social-proof {
  background: #ffffff !important;
}

/* Dark mode background */
:root[data-theme="dark"] .social-proof {
  background: #070a12 !important;
}

.social-proof .section-header {
  text-align: center;
}

.testimonials-grid {
  display: flex;
  gap: 32px;
  align-items: stretch;
  min-width: max-content;
  margin: 0;
}

.testimonial-card {
  flex: 0 0 clamp(260px, 32vw, 360px);
  width: clamp(260px, 32vw, 360px);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  scroll-snap-align: start;
}

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

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

/* Force proper contrast for testimonials in both themes */
:root:not([data-theme="dark"]) .testimonial-content p {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root[data-theme="dark"] .testimonial-content p {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--grad);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--text);
}

.author-info span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Force proper contrast for author info in both themes */
:root:not([data-theme="dark"]) .author-info h4 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root:not([data-theme="dark"]) .author-info span {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .author-info h4 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .author-info span {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-1);
  margin-bottom: 8px;
}

.stat-label {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
}

/* Force proper contrast for stats in both themes */
:root:not([data-theme="dark"]) .stat-label {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .stat-label {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== AGENT ARCHITECTURE SECTION ========== */
.agent-architecture {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, rgba(42, 108, 246, 0.08), rgba(11, 17, 40, 0.04));
  overflow: hidden;
}

.agent-architecture::before {
  content: "";
  position: absolute;
  inset: auto 10% -40% auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(42, 108, 246, 0.22) 0%, rgba(42, 108, 246, 0) 65%);
  opacity: 0.65;
  pointer-events: none;
}

.agent-architecture::after {
  content: "";
  position: absolute;
  inset: -35% auto auto 8%;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(123, 82, 246, 0.18) 0%, rgba(9, 13, 28, 0) 70%);
  opacity: 0.5;
  pointer-events: none;
}

.agent-architecture .container {
  position: relative;
  z-index: 1;
}

.agent-architecture .section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.agent-architecture .section-actions .btn-primary {
  padding: 12px 28px;
}

.suite-carousel {
  position: relative;
  margin-top: 60px;
  padding: 0 24px;
}

.suite-viewport {
  overflow-x: auto;
  overflow-y: visible;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 60px 28px;
  mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 36px, #000 calc(100% - 36px), transparent 100%);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.suite-viewport::-webkit-scrollbar {
  display: none;
  height: 0;
}

.suite-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 360px);
  gap: 32px;
  padding: 0 4px;
  align-items: stretch;
}

.suite-card {
  min-width: 320px;
  min-height: 100%;
  background: var(--card);
  border: 1px solid rgba(42, 108, 246, 0.16);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 0; /* allow pseudo shadows to render beneath */
  box-shadow: 0 26px 58px rgba(10, 16, 35, 0.18);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  scroll-snap-align: start;
}

.suite-card:hover {
  transform: translateY(-6px);
  border-color: rgba(42, 108, 246, 0.32);
  box-shadow: 0 36px 72px rgba(10, 16, 35, 0.22);
}

.suite-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.suite-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.32), rgba(42, 108, 246, 0.22));
  font-size: 30px;
  color: var(--accent-1);
  box-shadow: 0 18px 36px rgba(42, 108, 246, 0.28);
  border: 1px solid rgba(42, 108, 246, 0.22);
  backdrop-filter: blur(6px);
}

.suite-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent-1);
  margin: 0 0 8px 0;
}

.suite-head h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}
.suite-summary {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.agent-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.agent-item {
  padding: 0;
  border-radius: 18px;
  border: 1px solid rgba(42, 108, 246, 0.18);
  background: rgba(42, 108, 246, 0.08);
  transition: background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.agent-item:hover,
.agent-item:focus-within {
  background: rgba(42, 108, 246, 0.16);
  border-color: rgba(42, 108, 246, 0.3);
}

.agent-item.active {
  background: rgba(42, 108, 246, 0.18);
  border-color: rgba(42, 108, 246, 0.38);
}

.agent-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  padding: 18px 20px;
  text-align: left;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

html[dir="rtl"] .agent-toggle{
  flex-direction: row;
  direction: ltr;
  justify-content: flex-start;
  text-align: right;
}

.agent-toggle:focus-visible {
  outline: 2px solid var(--accent-1);
  outline-offset: 2px;
}

.agent-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  display: block;
}

.agent-caret {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 108, 246, 0.14);
  color: var(--accent-1);
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.agent-caret::before {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  display: block;
}

html[dir="rtl"] .agent-caret::before{
  transform: rotate(-45deg) scaleX(-1);
  transform-origin: center;
}

html[dir="rtl"] .agent-caret{
  order: -1;
  margin-right: 0;
  margin-left: 12px;
}

html[dir="rtl"] .agent-name{
  direction: rtl;
  flex: 1;
  text-align: right;
}

.agent-detail {
  --agent-detail-height: 0px;
  padding: 0 20px 0;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
}

.agent-name {
  margin-bottom: 0;
}

.agent-role {
  color: var(--muted);
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.55;
}

.agent-item.active .agent-detail {
  max-height: var(--agent-detail-height);
  opacity: 1;
  transform: translateY(0);
  padding: 10px 20px 18px;
}

.agent-item.active .agent-caret {
  transform: rotate(90deg);
  background: var(--accent-1);
  color: #fff;
}

html[dir="rtl"] .agent-item.active .agent-caret{
  transform: rotate(-90deg);
}

.agent-item.active .agent-name {
  color: var(--accent-1);
}

.suite-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(42, 108, 246, 0.28);
  background: var(--card);
  color: var(--accent-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 36px rgba(10, 16, 35, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  z-index: 2;
}

.suite-nav:hover {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(42, 108, 246, 0.48);
  box-shadow: 0 22px 48px rgba(10, 16, 35, 0.24);
}

.suite-nav:active {
  transform: translateY(-50%) scale(0.97);
}

.suite-nav[disabled] {
  opacity: 0.35;
  pointer-events: none;
}

.suite-nav-prev {
  left: -12px;
}

html[dir="rtl"] .suite-nav-prev{
  left: auto;
  right: -12px;
}

.suite-nav-next {
  right: -12px;
}

html[dir="rtl"] .suite-nav-next{
  right: auto;
  left: -12px;
}

.suite-nav-icon svg {
  width: 22px;
  height: 22px;
}

html[dir="rtl"] .suite-nav-prev .suite-nav-icon svg,
html[dir="rtl"] .suite-nav-next .suite-nav-icon svg{
  transform: scaleX(-1);
  transform-origin: center;
}

/* Force proper contrast for agent architecture in both themes */
:root:not([data-theme="dark"]) .suite-card {
  background: rgba(255, 255, 255, 0.98) !important;
  border-color: rgba(14, 19, 48, 0.08) !important;
  box-shadow: 0 12px 28px rgba(14, 19, 48, 0.12);
}

:root:not([data-theme="dark"]) .suite-card:hover {
  box-shadow: 0 18px 42px rgba(14, 19, 48, 0.16);
}

:root:not([data-theme="dark"]) .suite-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -26px;
  height: 52px;
  background: radial-gradient(ellipse at center, rgba(20, 30, 75, 0.18) 0%, rgba(20, 30, 75, 0) 65%);
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.35s ease;
}

:root:not([data-theme="dark"]) .suite-card:hover::after {
  opacity: 0.7;
}

:root:not([data-theme="dark"]) .suite-icon {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.42), rgba(42, 108, 246, 0.24)) !important;
}

:root:not([data-theme="dark"]) .agent-item {
  background: rgba(42, 108, 246, 0.06) !important;
  border-color: rgba(42, 108, 246, 0.15) !important;
}

:root:not([data-theme="dark"]) .agent-item:hover,
:root:not([data-theme="dark"]) .agent-item:focus-within {
  background: rgba(42, 108, 246, 0.12) !important;
}

:root:not([data-theme="dark"]) .agent-item.active {
  background: rgba(42, 108, 246, 0.16) !important;
  border-color: rgba(42, 108, 246, 0.28) !important;
}

:root:not([data-theme="dark"]) .suite-nav {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(14, 19, 48, 0.12) !important;
  box-shadow: 0 16px 36px rgba(14, 19, 48, 0.18);
}

:root[data-theme="dark"] .suite-card {
  background: rgba(12, 18, 38, 0.92) !important;
  border-color: rgba(90, 140, 255, 0.18) !important;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.36);
}

:root[data-theme="dark"] .suite-icon {
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), rgba(90, 140, 255, 0.24)) !important;
  color: #f4f6ff !important;
}

:root[data-theme="dark"] .agent-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

:root[data-theme="dark"] .agent-item:hover,
:root[data-theme="dark"] .agent-item:focus-within {
  background: rgba(255, 255, 255, 0.08) !important;
}

:root[data-theme="dark"] .agent-item.active {
  background: rgba(90, 140, 255, 0.24) !important;
  border-color: rgba(112, 153, 255, 0.36) !important;
}

:root[data-theme="dark"] .suite-nav {
  background: rgba(12, 18, 38, 0.88) !important;
  border-color: rgba(90, 140, 255, 0.24) !important;
  color: #f4f6ff !important;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 100px 0;
  background: var(--hero-bg);
  text-align: center;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text);
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Force proper contrast for CTA section in both themes */
:root:not([data-theme="dark"]) .cta-content h2 {
  color: #0e1330 !important;
  -webkit-text-fill-color: #0e1330 !important;
}

:root:not([data-theme="dark"]) .cta-content p {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .cta-content h2 {
  color: #eaeefe !important;
  -webkit-text-fill-color: #eaeefe !important;
}

:root[data-theme="dark"] .cta-content p {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

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

.cta-note {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-note span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

/* Force proper contrast for CTA notes in both themes */
:root:not([data-theme="dark"]) .cta-note span {
  color: #4e5573 !important;
  -webkit-text-fill-color: #4e5573 !important;
}

:root[data-theme="dark"] .cta-note span {
  color: #94a0c0 !important;
  -webkit-text-fill-color: #94a0c0 !important;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .features,
  .use-cases,
  .how-it-works,
  .integrations,
  .social-proof,
  .faq,
  .agent-architecture,
  .cta-section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: clamp(28px, 6vw, 40px);
  }
  
  .section-header p {
    font-size: 1.1rem;
  }
  
  .features-grid,
  .steps-grid {
    gap: 24px;
    margin-top: 40px;
  }

  .testimonials-grid {
    gap: 24px;
  }

  .testimonials-viewport {
    padding: 4px 24px 28px;
    scroll-padding-left: 24px;
    scroll-padding-right: 24px;
    mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .suite-carousel {
    margin-top: 48px;
    padding: 0 32px;
  }

  .suite-viewport {
    mask-image: none;
    -webkit-mask-image: none;
    padding: 8px 0 12px;
  }

  .suite-grid {
    grid-auto-columns: minmax(260px, 80vw);
    gap: 24px;
  }

  .suite-nav {
    display: none;
  }

  .case-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }

  .case-card {
    padding: 28px 24px;
  }

  .integration-logos {
    justify-content: center;
    gap: 16px;
  }

  .integration-item {
    min-width: 160px;
    padding: 16px 20px;
  }

  .integration-note {
    margin-top: 36px;
    padding: 18px 20px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-note {
    flex-direction: column;
    gap: 12px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .feature-card,
  .step-card,
  .testimonial-card,
  .suite-card {
    padding: 24px 20px;
  }

  .agent-toggle {
    padding: 16px 18px;
  }

  .agent-detail {
    padding: 4px 18px 18px;
  }

  .home-empowerment-shell {
    padding: 72px clamp(24px, 7vw, 44px);
    border-radius: 30px;
  }

  .home-empowerment-header {
    flex-direction: column;
    gap: 24px;
  }

  .home-empowerment-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
  }

  .home-empowerment-points {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .features,
  .use-cases,
  .how-it-works,
  .integrations,
  .social-proof,
  .faq,
  .agent-architecture,
  .cta-section {
    padding: 40px 0;
  }
  
  .section-header {
    margin-bottom: 32px;
  }
  
  .section-header h2 {
    font-size: clamp(24px, 8vw, 32px);
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .features-grid,
  .steps-grid {
    gap: 20px;
    margin-top: 32px;
  }

  .testimonials-grid {
    gap: 20px;
  }

  .testimonials-viewport {
    padding: 4px 16px 24px;
    scroll-padding-left: 16px;
    scroll-padding-right: 16px;
    mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 18px, #000 calc(100% - 18px), transparent 100%);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .suite-carousel {
    padding: 0 20px;
    margin-top: 40px;
  }

  .suite-grid {
    grid-auto-columns: minmax(240px, 85vw);
    gap: 20px;
  }

  .case-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
  }

  .case-card {
    padding: 24px 20px;
  }

  .case-icon {
    width: 52px;
    height: 52px;
  }

  .integration-logos {
    justify-content: center;
    gap: 14px;
  }

  .integration-item {
    min-width: 150px;
    font-size: 0.95rem;
    padding: 14px 18px;
  }

  .integration-note {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card,
  .step-card,
  .testimonial-card,
  .suite-card {
    padding: 20px 16px;
  }

  .agent-toggle {
    padding: 16px 16px;
  }

  .agent-detail {
    padding: 4px 16px 16px;
  }

  .home-empowerment-shell {
    padding: 60px 18px;
    border-radius: 26px;
  }

  .home-empowerment-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .home-empowerment-points li {
    padding: 16px 16px 16px 40px;
  }

  .home-empowerment-points li::before {
    left: 16px;
    top: 20px;
  }

  html[dir="rtl"] .home-empowerment-points li {
    padding: 16px 40px 16px 16px;
  }

  html[dir="rtl"] .home-empowerment-points li::before {
    left: auto;
    right: 16px;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
  }
  
  .feature-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .feature-card,
  .step-card,
  .testimonial-card,
  .suite-card {
    padding: 24px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}
