/* ============================================================
   LeadAutomation.net — Main Stylesheet v1.0
   Structure: Variables → Reset → Layout → Components → Sections → Responsive
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --bg-primary: #F8FAFC;
  --bg-secondary: #F1F5F9;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --card-bg: #FFFFFF;
  --card-border: #E2E8F0;
  --accent: #6366F1;
  --accent-dark: #4F46E5;
  --accent-indigo: #7C3AED;
  --accent-teal: #22D3EE;
  --dark-hero: #000B1A;
  --lavender: #E0E7FF;
  --success: #10B981;
  --danger: #EF4444;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1200px;
  --pad: 2rem;
  --r: 12px;
  --r-sm: 6px;
  --r-lg: 20px;
  --r-full: 9999px;
  --shadow: 0 4px 16px rgba(0, 0, 0, .08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
  --shadow-accent: 0 4px 24px rgba(99, 102, 241, .28);
  --tr: .2s ease;
  --tr-slow: .4s ease;
}

[data-theme="dark"] {
  --bg-primary: #060C1A;
  --bg-secondary: #0D1526;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #64748B;
  --card-bg: #0F1B2D;
  --card-border: #1E3A5F;
  --lavender: #1E1B4B;
  --shadow: 0 4px 16px rgba(0, 0, 0, .4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .5);
}

/* ────────────────────────────────────────────────────────────
   ANIMATIONS: VERTICAL SCROLLING TEXT
   ──────────────────────────────────────────────────────────── */
.scrolling-text-container {
  display: inline-flex;
  flex-direction: column;
  height: 1.25em;
  overflow: hidden;
  vertical-align: bottom;
  position: relative;
  margin-left: 8px;
}

.scrolling-text-list {
  display: flex;
  flex-direction: column;
  animation: vertical-scroll 12s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.scrolling-text-item {
  height: 1.25em;
  line-height: 1.25em;
  white-space: nowrap;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes vertical-scroll {
  0%, 16.66% { transform: translateY(0); }
  20%, 36.66% { transform: translateY(-1.25em); }
  40%, 56.66% { transform: translateY(-2.5em); }
  60%, 76.66% { transform: translateY(-3.75em); }
  80%, 96.66% { transform: translateY(-5em); }
  100% { transform: translateY(-6.25em); }
}

/* Responsive adjustments for the animated text */
@media (max-width: 768px) {
  .scrolling-text-container {
    display: block;
    margin-left: 0;
    margin-top: 0.25rem;
    height: 1.3em;
  }
  .scrolling-text-item {
    height: 1.3em;
    line-height: 1.3em;
    font-size: 0.9em;
  }
  @keyframes vertical-scroll {
    0%, 16.66% { transform: translateY(0); }
    20%, 36.66% { transform: translateY(-1.3em); }
    40%, 56.66% { transform: translateY(-2.6em); }
    60%, 76.66% { transform: translateY(-3.9em); }
    80%, 96.66% { transform: translateY(-5.2em); }
    100% { transform: translateY(-6.5em); }
  }
}

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

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: background var(--tr-slow), color var(--tr-slow);
}

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

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

a:hover {
  color: var(--accent-dark);
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font);
}

/* ── LAYOUT ────────────────────────────
─────────────────────── */
.container {
  max-width: 80%;
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: 5rem 0;
}

.section-tag {
  display: inline-block;
  background: var(--lavender);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: .75rem;
}

.section-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 2.5rem;
}

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

.text-center .section-sub {
  margin-inline: auto;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  transition: all var(--tr);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-indigo));
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, .42);
  color: #fff;
}

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

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--accent);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--lavender);
  color: var(--accent-dark);
}

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .35);
}

.btn-ghost-white:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.0625rem;
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: all var(--tr);
}

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

/* ── GRIDS ──────────────────────────────────────────────────── */
.g2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── SKIP LINK ──────────────────────────────────────────────── */
.skip {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 6px 0;
}

.skip:focus {
  top: 0;
}

/* ────────────────────────────────────────────────────────────
   HEADER
   ──────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
  transition: all var(--tr-slow);
}

[data-theme="dark"] .site-header {
  background: rgba(6, 12, 26, .95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5rem var(--pad);
  max-width: 80%;
  margin: 0 auto;
  gap: 1.5rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  background: url('../images/logo.png') no-repeat left center;
  background-size: contain;
  height: 48px;
  width: 130px;
  transition: opacity var(--tr);
}

.logo:hover {
  opacity: 0.9;
}

.logo .logo-mark,
.logo .logo-text {
  display: none !important;
}

.header-tagline {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--lavender);
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-style: normal;
  margin: 0 auto;
  white-space: nowrap;
}

[data-theme="dark"] .header-tagline {
  background: rgba(139, 92, 246, 0.2);
  color: #E2E8F0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: .875rem;
  font-weight: 600;
  color: #000;
  padding: .5rem .25rem;
  display: inline-block;
}

[data-theme="dark"] .nav a {
  color: #fff;
}

.nav a:hover {
  color: var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.theme-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--tr);
  font-size: 1rem;
}

.theme-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--tr);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
  padding: 1.5rem var(--pad);
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: .875rem 0;
  border-bottom: 1px solid var(--card-border);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, #000B1A 0%, #0D1B3E 55%, #0A0E27 100%);
  color: #fff;
  padding: 2rem 0;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99, 102, 241, .14) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(99, 102, 241, .18);
  border: 1px solid rgba(99, 102, 241, .35);
  color: #A5B4FC;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  font-size: .75rem;
  font-weight: 600;
  margin-bottom: .5rem;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22D3EE;
  animation: pulse 2s infinite;
}

.hero-title {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: .5rem;
  color: #fff;
}

.hero-title .hl {
  background: linear-gradient(135deg, #A78BFA, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: .9375rem;
  color: #94A3B8;
  margin-bottom: .75rem;
  line-height: 1.5;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: .75rem;
}

.hstat-val {
  font-size: 1.125rem;
  font-weight: 800;
  color: #A78BFA;
  display: block;
}

.hstat-lbl {
  font-size: .6875rem;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: .5rem;
}

/* Hero Visual */
.hero-visual {
  background: rgba(99, 102, 241, .08);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}

.flow-section {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.flow-label {
  font-size: .8125rem;
  font-weight: 800;
  color: #fff;
  opacity: .9;
  margin-bottom: .125rem;
}

.flow-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: .625rem .875rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  position: relative;
  transition: transform var(--tr);
}

.flow-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateX(4px);
}

.flow-card-group {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
}

.flow-card-group .flow-card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.flow-card-group .flow-card:last-child {
  border-bottom: none;
}

.flow-card-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.flow-card-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  flex-grow: 1;
}

.flow-card-title {
  font-size: .8125rem;
  font-weight: 600;
  color: #fff;
}

.flow-card-subtitle {
  font-size: .6875rem;
  color: #94A3B8;
  margin-top: 1px;
}

.flow-card-dots {
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: .4;
  margin-left: .5rem;
}

.flow-card-dots span {
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}

.flow-connector {
  height: 12px;
  width: 1px;
  background: rgba(255, 255, 255, .2);
  margin: 0 auto;
}

/* ────────────────────────────────────────────────────────────
   CLIENTS
   ──────────────────────────────────────────────────────────── */
.clients {
  padding: 5rem 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--card-border);
  text-align: center;
}

.clients-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  letter-spacing: -0.02em;
}

.clients-desc {
  max-width: 640px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 576px) {
  .clients-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) {
  .clients-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.client-logo-box {
  background: #FFFFFF;
  border: 1px solid var(--card-border);
  border-radius: 8px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}

/* Force logo boxes to remain clean white in dark theme for standard branding contrast */
[data-theme="dark"] .client-logo-box {
  background: #FFFFFF;
  border-color: #E2E8F0;
}

.client-logo-box img {
  max-width: 85%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--tr);
}

.client-logo-box:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
}

.client-logo-box:hover img {
  transform: scale(1.05);
}

/* ────────────────────────────────────────────────────────────
   DEFINITION / WHAT IS
   ──────────────────────────────────────────────────────────── */
.def-section {
  background: var(--bg-secondary);
}

.def-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.def-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--lavender);
  color: var(--accent);
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  font-size: .8125rem;
  font-weight: 600;
  margin-bottom: .75rem;
}

.automation-funnel {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
}

.funnel-stage {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--card-border);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  overflow: hidden;
}

.funnel-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.funnel-stage:hover::before {
  transform: translateX(100%);
}

.funnel-stage:hover {
  transform: translateX(10px) scale(1.02);
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* Tapering Effect */
.stage-1 { width: 100%; border-left: 6px solid #6366F1; }
.stage-2 { width: 92%; border-left: 6px solid #8B5CF6; margin-left: 4%; }
.stage-3 { width: 84%; border-left: 6px solid #06B6D4; margin-left: 8%; }
.stage-4 { width: 76%; border-left: 6px solid #10B981; margin-left: 12%; }

.funnel-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
}

.funnel-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-secondary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.funnel-stage:hover .funnel-icon {
  background: var(--accent);
  color: white;
  transform: rotate(10deg);
}

.funnel-text h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.funnel-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Flow Animation */
.funnel-connector-flow {
  position: absolute;
  top: 0;
  left: 20px;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--success));
  opacity: 0.2;
  z-index: 0;
}

[data-theme="dark"] .funnel-stage,
[data-theme="dark"] .stat-box,
[data-theme="dark"] .def-quote {
  background: var(--card-bg);
}

.def-quote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  background: white;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-style: italic;
  font-size: .9375rem;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.def-quote p {
  line-height: 1.6;
}

.stats-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.stat-box .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: .5rem;
}

.stat-box .lbl {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── FEATURES ───────────────────────────────── */
#features {
  padding: 7rem 0;
}

.manual-vs {
  margin-top: 1.75rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  overflow: hidden;
}

.mvs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mvs-head {
  padding: .75rem 1.25rem;
  font-size: .8125rem;
  font-weight: 700;
  color: #fff;
}

.mvs-head.bad {
  background: #EF4444;
}

.mvs-head.good {
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
}

.mvs-item {
  display: flex;
  gap: .5rem;
  align-items: flex-start;
  padding: .625rem 1.25rem;
  border-top: 1px solid var(--card-border);
  font-size: .8125rem;
  color: var(--text-secondary);
}

.mvs-item .ico {
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   FEATURES (KEY BENEFITS)
   ──────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feat-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  transition: all var(--tr);
}

.feat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}

.feat-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.feat-title {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .375rem;
  border-left: 3px solid var(--accent);
  padding-left: 0.625rem;
  transition: border-color var(--tr);
}

.feat-card:hover .feat-title {
  border-left-color: var(--accent-teal);
}

.feat-desc {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   IMPACT / TRUST NUMBERS
   ──────────────────────────────────────────────────────────── */
.impact-section {
  background: linear-gradient(135deg, #000B1A, #0D1B3E);
  color: #fff;
}

.impact-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.impact-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .75rem;
}

.impact-sub {
  color: #94A3B8;
  font-size: 1.0625rem;
  max-width: 560px;
  margin-inline: auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.impact-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--r);
  background: rgba(255, 255, 255, .03);
  transition: all var(--tr);
}

.impact-card:hover {
  border-color: var(--accent);
  background: rgba(99, 102, 241, .1);
}

.impact-num {
  font-size: 3.75rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #A78BFA, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: .375rem;
}

.impact-label {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .375rem;
}

.impact-sub2 {
  font-size: .8125rem;
  color: #64748B;
}

/* ────────────────────────────────────────────────────────────
   OFFERINGS
   ──────────────────────────────────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.off-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: all var(--tr);
}

.off-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-teal));
  opacity: 0;
  transition: opacity var(--tr);
}

.off-card:hover::after {
  opacity: 1;
}

.off-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.off-icon {
  width: 54px;
  height: 54px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.off-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .625rem;
}

.off-desc {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.off-link {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}

/* ────────────────────────────────────────────────────────────
   PRICING
   ──────────────────────────────────────────────────────────── */
.pricing-section {
  background: var(--bg-secondary);
}

.pricing-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.popular-pill {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-indigo));
  color: #fff;
  font-size: .6875rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.price-name {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: .375rem;
}

.price-target {
  font-size: .8125rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
}

.price-period {
  font-size: .875rem;
  color: var(--text-muted);
}

.price-usd {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.price-setup {
  font-size: .8125rem;
  color: var(--text-secondary);
  margin: .25rem 0 1.5rem;
}

.price-setup-usd {
  color: var(--text-muted);
  font-weight: 600;
}

.price-features {
  margin-bottom: 2rem;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  padding: .5rem 0;
  font-size: .875rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--card-border);
}

.price-features li:last-child {
  border-bottom: none;
}

.chk {
  color: var(--success);
  flex-shrink: 0;
}

.fomo-box {
  background: var(--lavender);
  border-radius: var(--r-sm);
  padding: .875rem 1rem;
  margin-bottom: 1.5rem;
  font-size: .8125rem;
  color: var(--accent-dark);
  font-weight: 500;
  line-height: 1.5;
}

/* Enterprise / Package 3 */
.price-enterprise {
  background: linear-gradient(135deg, #000B1A, #16244E);
  border-radius: var(--r-lg);
  padding: 3rem;
  color: #fff;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 3.5rem;
  align-items: flex-start;
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.ent-left h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: .375rem;
}

.ent-left .subtitle {
  color: #94A3B8;
  font-size: .9375rem;
  margin-bottom: 1.25rem;
}

.ent-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem .75rem;
  margin-bottom: 1.5rem;
}

.ent-feat {
  font-size: .875rem;
  color: #CBD5E1;
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.ent-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255,255,255,.03);
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.05);
}

.ent-price {
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: .25rem;
}

.ent-price-usd {
  font-size: 1.5rem;
  font-weight: 700;
  color: #94A3B8;
  margin-left: 0.25rem;
  display: inline-block;
  vertical-align: middle;
}

.ent-period {
  font-size: .9375rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}

.ent-fomo {
  font-size: .8125rem;
  color: #A78BFA;
  background: rgba(167,139,250,.1);
  padding: .75rem 1rem;
  border-radius: var(--r-sm);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
  color: #A78BFA;
  margin-bottom: 1.25rem;
  font-weight: 500;
  background: rgba(99, 102, 241, .12);
  border-radius: var(--r-sm);
  padding: .625rem .875rem;
}
/* ────────────────────────────────────────────────────────────
   OFFERINGS (Redesigned)
   ──────────────────────────────────────────────────────────── */
.offerings-list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  margin-top: 5rem;
}

.off-row {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.off-row:nth-child(even) {
  flex-direction: row-reverse;
}

.off-text {
  flex: 1;
}

.off-text .off-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.off-text .off-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.off-text .off-desc {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.off-text .off-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: gap var(--tr);
}

.off-text .off-link:hover {
  gap: .75rem;
}

.off-graphic {
  flex: 1.2;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15), 0 18px 36px -18px rgba(0,0,0,0.1);
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: transform var(--tr);
}

.off-graphic:hover {
  transform: translateY(-8px);
}

.off-graphic img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .offerings-list {
    gap: 5rem;
  }
  .off-row, .off-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }
  .off-text .off-icon {
    margin-inline: auto;
  }
  .off-graphic {
    width: 100%;
  }
}
.process-section {
  background: var(--bg-primary);
}

.process-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  position: relative;
}

.process-wrap::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-teal));
  z-index: 0;
}

.proc-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.proc-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-indigo));
  color: #fff;
  font-size: 1.375rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
}

.proc-icon {
  font-size: 1.5rem;
  margin-bottom: .375rem;
  display: block;
}

.proc-title {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .375rem;
}

.proc-desc {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   SECURITY
   ──────────────────────────────────────────────────────────── */
.security-section {
  background: var(--bg-secondary);
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.sec-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
}

.sec-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.375rem;
}

.sec-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .75rem;
}

.sec-list {
  list-style: disc;
  padding-left: 1.125rem;
}

.sec-list li {
  font-size: .875rem;
  color: var(--text-secondary);
  padding: .3rem 0;
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────── */
.testimonials-section {
  background: var(--bg-primary);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  min-height: 420px;
  overflow: hidden;
}

.testi-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.08);
}

/* Featured card layout spans 2 columns on desktop */
.testi-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
}

.testi-card.featured .testi-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testi-card.featured .testi-featured-badge-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(34, 211, 238, 0.04));
  border: 1px dashed var(--card-border);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.testi-card.featured .testi-featured-badge-wrap .featured-metric {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.testi-card.featured .testi-featured-badge-wrap .featured-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.testi-co-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.testi-co-name {
  font-size: .875rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.testi-grid .testi-card:nth-child(1) .testi-co-name { color: #6366F1; } /* NovaStar - Indigo */
.testi-grid .testi-card:nth-child(2) .testi-co-name { color: #EC4899; } /* GlowSpa - Pink */
.testi-grid .testi-card:nth-child(3) .testi-co-name { color: #10B981; } /* HireEdge - Emerald */
.testi-grid .testi-card:nth-child(4) .testi-co-name { color: #8B5CF6; } /* CartMax - Violet */
.testi-grid .testi-card:nth-child(5) .testi-co-name { color: #D97706; } /* SwiftStay - Amber */
.testi-grid .testi-card:nth-child(6) .testi-co-name { color: #3B82F6; } /* ClickSoft - Blue */
.testi-grid .testi-card:nth-child(7) .testi-co-name { color: #0EA5E9; } /* SmileCare - Sky Blue */

[data-theme="dark"] .testi-grid .testi-card:nth-child(5) .testi-co-name { color: #F59E0B; } /* Brighter Amber in dark mode */

.testi-stars {
  color: #F59E0B;
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  letter-spacing: .05em;
}

.testi-metric {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
  margin-bottom: 1.25rem;
  color: #fff;
}

.testi-metric.metric-boost {
  background: linear-gradient(135deg, var(--accent), var(--accent-indigo));
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.18);
}

.testi-metric.metric-save {
  background: linear-gradient(135deg, #10B981, #059669);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.18);
}

.testi-text {
  font-size: .9375rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.75rem;
  position: relative;
  z-index: 1;
}

.testi-quote-mark {
  position: absolute;
  right: 1rem;
  bottom: 3.5rem;
  font-size: 7rem;
  color: var(--card-border);
  opacity: 0.12;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.author-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  border: 1px solid var(--card-border);
  object-fit: cover;
}

.author-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  display: block;
}

.author-role {
  font-size: .8125rem;
  color: var(--text-muted);
}

.testi-footer-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

/* Call To Action Card */
.testi-cta-card {
  background: linear-gradient(135deg, #0f172a, #1e1b4b);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #ffffff;
  padding: 2.25rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.testi-cta-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-teal);
  box-shadow: 0 20px 40px rgba(34, 211, 238, 0.15);
}

.testi-cta-card .cta-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testi-cta-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.testi-cta-card p {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.testi-cta-card .btn-white {
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

/* Media Queries for Testimonials Grid */
@media (max-width: 1024px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testi-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testi-card.featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .testi-card.featured .testi-featured-badge-wrap {
    padding: 1.5rem;
    order: -1; /* Display badge at the top */
  }
  .testi-card {
    min-height: auto;
  }
  .testi-cta-card {
    min-height: auto;
  }
}

/* ────────────────────────────────────────────────────────────
   CTA / FREE ADVICE
   ──────────────────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #000B1A, #0D1B3E);
  color: #fff;
  text-align: center;
}

.cta-tag {
  display: inline-block;
  background: rgba(99, 102, 241, .2);
  border: 1px solid rgba(99, 102, 241, .3);
  color: #A5B4FC;
  font-size: .75rem;
  font-weight: 700;
  padding: .375rem 1rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 1.25rem;
}

.cta-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .875rem;
}

.cta-sub {
  font-size: 1.0625rem;
  color: #94A3B8;
  max-width: 520px;
  margin: 0 auto 2rem;
}

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

/* ────────────────────────────────────────────────────────────
   NEEDS / WHEN YOU NEED AUTOMATION
   ──────────────────────────────────────────────────────────── */
/* ────────────────────────────────────────────────────────────
   NEEDS / BENTO GRID
   ──────────────────────────────────────────────────────────── */
.needs-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
  margin-top: 4rem;
}

.need-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.need-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
  background: linear-gradient(135deg, var(--card-bg), rgba(99, 102, 241, 0.05));
}

/* ────────────────────────────────────────────────────────────
   GUARANTEED OUTCOMES / TABS
   ──────────────────────────────────────────────────────────── */
#results-detail {
  padding: 3rem 0; /* Reduced section padding */
}

#results-detail .container {
  max-width: 1300px;
  width: 95%;
}

.achieve-tabs-wrap {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem; /* Tighter top margin */
  align-items: stretch;
}

.achieve-tabs-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* Tighter tab gap */
}

.achieve-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem; /* Compact padding */
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.achieve-tab-metric {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--accent);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 6px;
  margin-right: 0.75rem;
  min-width: 50px;
  text-align: center;
}

.achieve-tab-text {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s ease;
  line-height: 1.2;
}

.achieve-tab .chevron {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: var(--accent);
  flex-shrink: 0;
}

.achieve-tab.active {
  border-color: var(--accent);
  background: var(--lavender);
  box-shadow: 0 8px 16px rgba(99, 102, 241, 0.04);
}

.achieve-tab.active .achieve-tab-text {
  color: var(--accent);
}

.achieve-tab.active .chevron {
  opacity: 1;
  transform: translateX(0);
}

/* Right Panel Content */
.achieve-content-panel {
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem 3rem; /* Compact padding */
  min-height: 480px; /* Reduced min-height for fold fitting */
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.achieve-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.achieve-pane.active {
  display: block;
}

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

.achieve-pane-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: stretch;
}

.achieve-bullets h4 {
  font-size: 1.75rem; /* Reduced heading size */
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lined-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* Tighter bullet spacing */
}

.lined-list li {
  position: relative;
  padding-left: 2.5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.lined-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236366F1' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Testimonial Block - Refined */
.achieve-testimonial {
  background: #F8FAFC;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

[data-theme="dark"] .achieve-testimonial {
  background: var(--card-bg);
}

.testi-quote {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  position: relative;
  font-weight: 500;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
  object-fit: cover;
  overflow: hidden;
  border: 1px solid var(--card-border);
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.testi-name {
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.testi-role {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (max-width: 1280px) {
  .achieve-tabs-wrap {
    gap: 2rem;
    grid-template-columns: 260px 1fr;
  }
  .achieve-pane-grid {
    gap: 2rem;
    grid-template-columns: 1fr 260px;
  }
  .achieve-bullets h4 {
    font-size: 1.5rem;
  }
}

@media (max-width: 1024px) {
  .achieve-tabs-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .achieve-pane-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .achieve-content-panel {
    padding: 2.5rem 1.5rem;
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .achieve-tab {
    padding: 0.75rem 1rem;
  }
  .achieve-tab-metric {
    min-width: 40px;
  }
  .achieve-bullets h4 {
    font-size: 1.4rem;
  }
}

.need-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.need-content h3 {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.need-content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.bento-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

@media (max-width: 992px) {
  .needs-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide {
    grid-column: span 2;
  }
  .bento-tall {
    grid-row: span 1;
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .needs-bento {
    grid-template-columns: 1fr;
  }
  .bento-wide, .bento-tall {
    grid-column: span 1;
  }
  .need-card {
    padding: 1.5rem;
  }
}

/* ────────────────────────────────────────────────────────────
   DEPARTMENTS
   ──────────────────────────────────────────────────────────── */
/* ────────────────────────────────────────────────────────────
   DEPARTMENTS / MODERN 3D CARDS
   ──────────────────────────────────────────────────────────── */
.dept-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.dept-card-v2 {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 4 / 5.2;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.dept-card-v2.yellow { background: #FFFBEB; color: #92400E; }
.dept-card-v2.pink { background: #FFF1F2; color: #9D174D; }
.dept-card-v2.blue { background: #F0F9FF; color: #075985; }

[data-theme="dark"] .dept-card-v2 {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
}

[data-theme="dark"] .dept-card-v2.yellow {
  background: rgba(245, 158, 11, 0.04);
  border-color: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

[data-theme="dark"] .dept-card-v2.pink {
  background: rgba(244, 63, 94, 0.04);
  border-color: rgba(244, 63, 94, 0.2);
  color: #F43F5E;
}

[data-theme="dark"] .dept-card-v2.blue {
  background: rgba(14, 165, 233, 0.04);
  border-color: rgba(14, 165, 233, 0.2);
  color: #38BDF8;
}

[data-theme="dark"] .dept-card-overlay {
  background: rgba(15, 27, 45, 0.95);
}

.dept-card-top {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.dept-icon-v2 {
  opacity: 0.8;
}

.dept-title-v2 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dept-card-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 -1.5rem -2.5rem -1.5rem; /* Let it bleed out slightly */
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dept-card-visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.1));
}

.dept-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  pointer-events: none;
}

.dept-card-v2:hover .dept-card-overlay {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dept-card-v2:hover .dept-card-visual {
  transform: scale(1.05) translateY(-10px);
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dept-row-v2 {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dept-num-v2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.dept-row-v2 span:last-child {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .dept-grid-modern {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .dept-grid-modern {
    grid-template-columns: 1fr;
  }
  .dept-card-v2 {
    aspect-ratio: auto;
    min-height: 450px;
  }
}

.dept-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
}

.dept-hd h3 {
  font-size: 1.125rem;
  font-weight: 800;
}

.dept-row {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--card-border);
  font-size: .875rem;
  color: var(--text-secondary);
}

.dept-row:last-child {
  border-bottom: none;
}

.dept-num {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--accent);
  min-width: 3.5rem;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────
   ACHIEVE SECTION
   ──────────────────────────────────────────────────────────── */
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.achieve-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 1.5rem;
  align-items: center;
  transition: all var(--tr);
}

.achieve-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.achieve-metric {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: .25rem;
}

.achieve-title {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: .375rem;
}

.achieve-desc {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.achieve-visual {
  background: var(--bg-secondary);
  border-radius: var(--r-sm);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

/* ────────────────────────────────────────────────────────────
   COMPARISON
   ──────────────────────────────────────────────────────────── */
/* ────────────────────────────────────────────────────────────
   COMPARISON
   ──────────────────────────────────────────────────────────── */
.comparison-wrap {
  position: relative;
  margin-top: 4rem;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}

/* Central Line & Badge */
.vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #0F172A;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8125rem;
  z-index: 10;
  box-shadow: 0 0 0 10px var(--bg-primary);
}

.comparison-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--card-border);
  z-index: 1;
}

.cmp-col {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  z-index: 2;
  transition: all var(--tr);
}

.cmp-col.manual {
  background: #F8FAFC;
  opacity: 0.85;
}

[data-theme="dark"] .cmp-col.manual {
  background: var(--bg-secondary);
  opacity: 0.9;
}

.cmp-col.automation {
  border: none;
  background: #fff;
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.1);
  padding: 2px; /* For gradient border effect */
  background: linear-gradient(135deg, #6366F1, #A78BFA, #22D3EE);
}

[data-theme="dark"] .cmp-col.automation {
  box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.cmp-col.automation .cmp-inner {
  background: #fff;
  border-radius: 22px;
  padding: 2.4rem;
  height: 100%;
}

[data-theme="dark"] .cmp-col.automation .cmp-inner {
  background: var(--card-bg);
}

.cmp-head {
  margin-bottom: 2rem;
}

.cmp-head h3 {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-primary);
}

.cmp-head .logo-box {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cmp-head .logo-box img {
  height: 32px;
}

.cmp-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cmp-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cmp-ico {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.manual .cmp-ico {
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
}

.automation .cmp-ico {
  background: rgba(99, 102, 241, 0.1);
  color: #6366F1;
}

.automation .cmp-item {
  font-weight: 500;
  color: var(--text-primary);
}

/* ── BEYOND WHATSAPP COMPARISON SECTION ────────── */
#beyond-whatsapp {
  padding: 5rem 0;
}

.beyond-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.25fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.beyond-content h3 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.beyond-content > p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.beyond-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.beyond-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.beyond-point .point-ico {
  font-size: 1.25rem;
  padding-top: 0.15rem;
  flex-shrink: 0;
}

.beyond-point h4 {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.beyond-point p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.45;
}

.beyond-matrix-wrap {
  position: relative;
}

.matrix-table-container {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.matrix-table th, 
.matrix-table td {
  padding: 1.125rem 1.25rem;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--card-border);
}

.matrix-table th {
  background: var(--bg-secondary);
  font-weight: 800;
  color: var(--text-primary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.matrix-table tbody tr:last-child td {
  border-bottom: none;
}

.matrix-table tr {
  transition: background var(--tr);
}

.matrix-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.02);
}

.feat-name {
  font-weight: 700;
  color: var(--text-primary);
  width: 32%;
}

.other-col {
  color: var(--text-secondary);
  width: 30%;
  font-weight: 500;
}

.winner-col {
  width: 38%;
  font-weight: 700;
  color: var(--accent-indigo);
  background: rgba(99, 102, 241, 0.02);
}

.matrix-table th.winner-col-head {
  background: var(--lavender);
  color: var(--accent-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.matrix-table td.winner-col {
  border-left: 1.5px dashed rgba(99, 102, 241, 0.15);
  border-right: 1.5px dashed rgba(99, 102, 241, 0.15);
}

.matrix-table tbody tr:last-child td.winner-col {
  border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

.cross, 
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-right: 0.375rem;
}

.cross {
  background: rgba(239, 68, 68, 0.08);
  color: #EF4444;
}

.check {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

/* Dark Mode Overrides for beyond-whatsapp comparison */
[data-theme="dark"] .matrix-table tbody tr:hover {
  background: rgba(99, 102, 241, 0.04);
}

[data-theme="dark"] .winner-col {
  color: #A78BFA;
  background: rgba(99, 102, 241, 0.04);
}

[data-theme="dark"] .matrix-table th.winner-col-head {
  background: rgba(99, 102, 241, 0.15);
  color: #A78BFA;
  border-bottom: 2px solid #8B5CF6;
}

@media (max-width: 991px) {
  .beyond-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Responsive V/S */
@media (max-width: 991px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .vs-badge {
    top: 50%;
    box-shadow: 0 0 0 10px var(--bg-primary);
  }
  .comparison-wrap::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 1px;
    height: 100%;
  }
}

/* ────────────────────────────────────────────────────────────
   INDUSTRY
   ──────────────────────────────────────────────────────────── */
#industries {
  padding: 3rem 0 2rem;
  background: var(--bg-secondary);
}

#industries .section-tag {
  margin-bottom: 0.5rem;
}

#industries .section-title {
  margin-bottom: 0.5rem;
}

#industries .section-sub {
  margin-bottom: 1.5rem;
}

.ind-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.ind-tab {
  padding: 0.5rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-full);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all var(--tr);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.ind-tab-ico {
  color: var(--accent);
  transition: color 0.3s ease;
  flex-shrink: 0;
}

.ind-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--lavender);
}

.ind-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}

.ind-tab.active .ind-tab-ico {
  color: #fff;
}

/* Tab Variant Active Colors */
.ind-tab.tab-hotels.active { background: #0062ff; border-color: #0062ff; }
.ind-tab.tab-ecommerce.active { background: #f59e0b; border-color: #f59e0b; }
.ind-tab.tab-spa.active { background: #10b981; border-color: #10b981; }
.ind-tab.tab-hr.active { background: #8b5cf6; border-color: #8b5cf6; }
.ind-tab.tab-it.active { background: #6366f1; border-color: #6366f1; }
.ind-tab.tab-realestate.active { background: #16a34a; border-color: #16a34a; }

/* ────────────────────────────────────────────────────────────
   INDUSTRY CASE STUDY SLIDER
   ──────────────────────────────────────────────────────────── */
.case-slider-wrap {
  position: relative;
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 40px;
}

.case-slider-container {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.case-slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}

.case-slide {
  min-width: 100%;
  display: flex;
  min-height: 400px;
}

/* Sidebar (Left) */
.case-sidebar {
  flex: 0 0 35%;
  background: linear-gradient(135deg, #0062ff 0%, #002d72 100%);
  padding: 2rem 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-sidebar::after {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}

.case-stat {
  margin-bottom: 1.25rem;
}

.case-stat:last-child {
  margin-bottom: 0;
}

.case-stat-val {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: block;
}

.case-stat-lbl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: block;
}

.case-stat-desc {
  font-size: 0.9375rem;
  opacity: 0.8;
  line-height: 1.5;
}

.case-sidebar-hr {
  height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1.25rem 0;
}

/* Main Content (Right) */
.case-main {
  flex: 1;
  padding: 2.5rem;
  background: #f8fbff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-client-logo {
  max-width: 180px;
  margin-bottom: 2rem;
}

.case-quote {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.case-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.case-meta-item svg {
  color: #0062ff;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0062ff;
  font-weight: 700;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.case-link:hover {
  gap: 0.75rem;
}

/* Navigation */
.case-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.case-nav:hover {
  background: #0062ff;
  color: #fff;
  border-color: #0062ff;
}

.case-nav-prev { left: 10px; }
.case-nav-next { right: 10px; }

/* Slider Variants - Unique Colors for Each Industry */
.case-slide.slide-hotels .case-sidebar { background: linear-gradient(135deg, #0062ff 0%, #002d72 100%); }
.case-slide.slide-hotels .case-main { background: #f0f7ff; }
.case-slide.slide-hotels h3, .case-slide.slide-hotels .case-meta-item svg, .case-slide.slide-hotels .case-link { color: #0062ff !important; }

.case-slide.slide-ecommerce .case-sidebar { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }
.case-slide.slide-ecommerce .case-main { background: #fffbeb; }
.case-slide.slide-ecommerce h3, .case-slide.slide-ecommerce .case-meta-item svg, .case-slide.slide-ecommerce .case-link { color: #b45309 !important; }

.case-slide.slide-spa .case-sidebar { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.case-slide.slide-spa .case-main { background: #f0fdf4; }
.case-slide.slide-spa h3, .case-slide.slide-spa .case-meta-item svg, .case-slide.slide-spa .case-link { color: #047857 !important; }

.case-slide.slide-hr .case-sidebar { background: linear-gradient(135deg, #8b5cf6 0%, #5b21b6 100%); }
.case-slide.slide-hr .case-main { background: #f5f3ff; }
.case-slide.slide-hr h3, .case-slide.slide-hr .case-meta-item svg, .case-slide.slide-hr .case-link { color: #5b21b6 !important; }

.case-slide.slide-it .case-sidebar { background: linear-gradient(135deg, #6366f1 0%, #3730a3 100%); }
.case-slide.slide-it .case-main { background: #eef2ff; }
.case-slide.slide-it h3, .case-slide.slide-it .case-meta-item svg, .case-slide.slide-it .case-link { color: #3730a3 !important; }

.case-slide.slide-realestate .case-sidebar { background: linear-gradient(135deg, #16a34a 0%, #14532d 100%); }
.case-slide.slide-realestate .case-main { background: #f0fdf4; }
.case-slide.slide-realestate h3, .case-slide.slide-realestate .case-meta-item svg, .case-slide.slide-realestate .case-link { color: #14532d !important; }

/* Dark Mode Support for Industry Case Study Slider */
[data-theme="dark"] .case-slider-container {
  background: var(--card-bg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
}

[data-theme="dark"] .case-main {
  background: transparent;
}

[data-theme="dark"] .case-slide.slide-hotels .case-main { background: rgba(0, 98, 255, 0.05); }
[data-theme="dark"] .case-slide.slide-ecommerce .case-main { background: rgba(245, 158, 11, 0.05); }
[data-theme="dark"] .case-slide.slide-spa .case-main { background: rgba(16, 185, 129, 0.05); }
[data-theme="dark"] .case-slide.slide-hr .case-main { background: rgba(139, 92, 246, 0.05); }
[data-theme="dark"] .case-slide.slide-it .case-main { background: rgba(99, 102, 241, 0.05); }
[data-theme="dark"] .case-slide.slide-realestate .case-main { background: rgba(22, 163, 74, 0.05); }

[data-theme="dark"] .case-slide.slide-hotels h3,
[data-theme="dark"] .case-slide.slide-hotels .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-hotels .case-link {
  color: #3b82f6 !important;
}

[data-theme="dark"] .case-slide.slide-ecommerce h3,
[data-theme="dark"] .case-slide.slide-ecommerce .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-ecommerce .case-link {
  color: #f59e0b !important;
}

[data-theme="dark"] .case-slide.slide-spa h3,
[data-theme="dark"] .case-slide.slide-spa .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-spa .case-link {
  color: #10b981 !important;
}

[data-theme="dark"] .case-slide.slide-hr h3,
[data-theme="dark"] .case-slide.slide-hr .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-hr .case-link {
  color: #a78bfa !important;
}

[data-theme="dark"] .case-slide.slide-it h3,
[data-theme="dark"] .case-slide.slide-it .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-it .case-link {
  color: #818cf8 !important;
}

[data-theme="dark"] .case-slide.slide-realestate h3,
[data-theme="dark"] .case-slide.slide-realestate .case-meta-item svg,
[data-theme="dark"] .case-slide.slide-realestate .case-link {
  color: #22c55e !important;
}

[data-theme="dark"] .case-nav {
  background: var(--card-bg);
  border-color: var(--card-border);
  color: var(--text-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

[data-theme="dark"] .case-nav:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (max-width: 991px) {
  .case-slide {
    flex-direction: column;
  }
  .case-sidebar {
    padding: 2.5rem;
  }
  .case-main {
    padding: 2.5rem;
  }
  .case-nav {
    top: auto;
    bottom: -60px;
    transform: none;
  }
  .case-nav-prev { left: calc(50% - 60px); }
  .case-nav-next { right: calc(50% - 60px); }
  .case-slider-wrap {
    margin-bottom: 80px;
  }
}

/* ────────────────────────────────────────────────────────────
   ROI SECTION
   ──────────────────────────────────────────────────────────── */
.roi-banner {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-indigo));
  padding: 2.5rem;
  border-radius: var(--r-lg);
  color: #fff;
  text-align: center;
}

.roi-formula {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--r-sm);
  font-family: monospace;
  font-size: 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  margin: 1rem 0;
}

.roi-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.roi-pt {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
}

/* ────────────────────────────────────────────────────────────
   WHY US
   ──────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.5rem;
  transition: all var(--tr);
}

.why-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.why-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.why-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ────────────────────────────────────────────────────────────
   VIDEO / SERVICE HIGHLIGHTS
   ──────────────────────────────────────────────────────────── */
.video-section {
  background: linear-gradient(135deg, #000B1A, #0D1B3E);
  color: #fff;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.video-wrap {
  position: relative;
  cursor: pointer;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
}

.video-thumbnail-bg {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, rgba(99, 102, 241, .2), rgba(34, 211, 238, .1));
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-accent);
  transition: transform var(--tr);
}

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

.play-btn svg {
  width: 28px;
  height: 28px;
  color: #fff;
  margin-left: 4px;
}

.video-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 1.75rem;
}

.video-quote p {
  font-size: .9375rem;
  color: #94A3B8;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: .625rem;
}

.video-quote cite {
  font-size: .875rem;
  color: #A5B4FC;
  font-weight: 600;
  font-style: normal;
}

/* ────────────────────────────────────────────────────────────
   CONTACT FORM
   ──────────────────────────────────────────────────────────── */
.contact-section {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, rgba(99, 102, 241, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  z-index: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-grp.full {
  grid-column: 1/-1;
}

.form-grp label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.125rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1.125rem;
  background: var(--bg-primary);
  border: 2px solid var(--card-border);
  border-radius: 12px;
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text-primary);
  transition: all var(--tr);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.25rem;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: var(--text-muted);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.btn-submit-form {
  width: 100%;
  justify-content: center;
  padding: 1.125rem;
  font-weight: 800;
  margin-top: 1rem;
}

/* Consent Styles */
.consent-container {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: rgba(99, 102, 241, 0.03);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px dashed rgba(99, 102, 241, 0.25);
}

.consent-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  cursor: pointer;
}

.consent-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  cursor: pointer;
  accent-color: var(--accent);
  border-radius: 6px;
  flex-shrink: 0;
}

.consent-text {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.consent-bold {
  font-weight: 700;
  color: var(--accent);
}

.consent-text a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.contact-info {
  padding: 1rem 0;
}

.contact-info h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.ci-ico-new {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.03);
}

.ci-ico-new svg {
  width: 20px;
  height: 20px;
}

.ci-row strong {
  font-size: 1.0625rem;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.ci-row span {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ────────────────────────────────────────────────────────────
   FAQ
   ──────────────────────────────────────────────────────────── */
.faq-section {
  background: var(--bg-primary);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  margin-bottom: .875rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.5rem;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all var(--tr);
  flex-shrink: 0;
}

.faq-item.open .faq-plus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid var(--card-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1.8fr 0.9fr 0.8fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-grid .footer-col:first-of-type .footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  min-width: 360px;
}

@media (max-width: 900px) {
  .footer-grid .footer-col:first-of-type .footer-links {
    grid-template-columns: 1fr;
    min-width: auto;
  }
}

.footer-brand .logo-text {
  color: var(--text-primary);
}

.footer-desc {
  font-size: .875rem;
  line-height: 1.75;
  margin: 1rem 0 1.5rem;
  color: var(--text-secondary);
}

.social-row {
  display: flex;
  gap: .625rem;
}

.social-a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: .875rem;
  transition: all var(--tr);
}

.social-a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(99, 102, 241, .1);
}

.footer-col h4 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.125rem;
}

.footer-links a {
  display: block;
  font-size: .875rem;
  color: var(--text-secondary);
  padding: .3125rem 0;
  transition: color var(--tr);
}

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

.footer-bottom {
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .875rem;
  font-size: .8125rem;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────────
   BLOG LISTING
   ──────────────────────────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.blog-sidebar {
  position: sticky;
  top: 80px;
}

.sidebar-hed {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.sidebar-topics a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  transition: all var(--tr);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.sidebar-topics a:hover {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

.sidebar-topics a.active {
  background: var(--lavender);
  color: var(--accent);
  font-weight: 700;
}

.sidebar-topics .count {
  font-size: 0.8125rem;
  opacity: 0.6;
  font-weight: 600;
}

.sidebar-topics a.active .count {
  opacity: 1;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: all var(--tr);
  display: flex;
  flex-direction: column;
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--accent);
  color: var(--text-primary);
}

.blog-thumb {
  aspect-ratio: 16 / 9;
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--card-border);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.blog-tag {
  background: var(--lavender);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
}

.blog-date,
.blog-read {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-a:hover {
  transform: translateY(-3px);
  color: #fff;
}
.social-a[aria-label="LinkedIn"]:hover { background: #0077b5; border-color: #0077b5; }
.social-a[aria-label="Facebook"]:hover { background: #1877f2; border-color: #1877f2; }
.social-a[aria-label="WhatsApp"]:hover { background: #25D366; border-color: #25D366; }
.social-a[aria-label="Telegram"]:hover { background: #24A1DE; border-color: #24A1DE; }
.social-a[aria-label="X (Twitter)"]:hover { background: #000000; border-color: #000000; }
.social-a[aria-label="Twitter"]:hover { background: #000000; border-color: #000000; }




.blog-body {
  padding: 1.25rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .625rem;
  flex-wrap: wrap;
}

.blog-tag {
  background: var(--lavender);
  color: var(--accent);
  font-size: .6875rem;
  font-weight: 700;
  padding: .1875rem .5625rem;
  border-radius: var(--r-full);
}

.blog-date,
.blog-read {
  font-size: .75rem;
  color: var(--text-muted);
}

.blog-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .5rem;
}

.blog-excerpt {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ────────────────────────────────────────────────────────────
   BLOG POST
   ──────────────────────────────────────────────────────────── */
.reading-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-teal));
  z-index: 9999;
  width: 0;
  transition: width .1s;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 3rem;
  align-items: start;
}

.post-toc {
  position: sticky;
  top: 80px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.5rem;
}

.toc-hed {
  font-size: .9375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.toc-list a {
  display: block;
  font-size: .8125rem;
  color: var(--text-secondary);
  padding: .3125rem 0 .3125rem .875rem;
  border-left: 2px solid var(--card-border);
  margin-left: .25rem;
  transition: all var(--tr);
}

.toc-list a:hover,
.toc-list a.active {
  color: var(--accent);
  border-left-color: var(--accent);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-breadcrumb a {
  color: var(--text-muted);
}

.article-breadcrumb a:hover {
  color: var(--accent);
}

.bc-sep {
  color: var(--text-muted);
}

.article-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: .875rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 2rem;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  scroll-margin-top: 88px;
}

.article-body h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2rem 0 .875rem;
  scroll-margin-top: 88px;
}

.article-body p {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.125rem;
}

.article-body ul,
.article-body ol {
  margin-bottom: 1.125rem;
  padding-left: 1.5rem;
}

.article-body ul {
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: .375rem;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

.article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 1rem 1.5rem;
  margin: 1.75rem 0;
  background: var(--lavender);
  border-radius: 0 var(--r) var(--r) 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0;
  font-size: .875rem;
}

.article-body th {
  background: var(--bg-secondary);
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 700;
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.article-body td {
  padding: .75rem 1rem;
  border: 1px solid var(--card-border);
  color: var(--text-secondary);
}

.article-body tr:nth-child(even) td {
  background: var(--bg-secondary);
}

.key-box {
  background: var(--lavender);
  border: 1px solid rgba(99, 102, 241, .2);
  border-radius: var(--r);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
}

.key-box-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: .5rem;
}

.author-card {
  display: flex;
  gap: 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  margin-top: 3rem;
}

.author-av-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-secondary);
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.875rem;
}

.author-av-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-card-name {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: .1875rem;
}

.author-card-role {
  font-size: .8125rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .625rem;
}

.author-card-bio {
  font-size: .875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.related-posts {
  margin-top: 3rem;
}

.related-posts h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

/* ────────────────────────────────────────────────────────────
   BLOG CONTACT SECTION
   ──────────────────────────────────────────────────────────── */
.blog-contact {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: var(--card-bg);
  padding: 3.5rem;
  border-radius: 24px;
  border: 1px solid var(--card-border);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
}

.contact-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-primary);
}

.contact-text h2 span {
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-text p {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-form,
.contact-form-el {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-grp {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-grp label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}

.contact-form input, 
.contact-form select,
.contact-form textarea,
.contact-form-el input, 
.contact-form-el select,
.contact-form-el textarea,
.form-row input,
.form-row select {
  width: 100%;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  border: 1px solid var(--card-border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: all var(--tr);
}

.contact-form input:focus, 
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form-el input:focus, 
.contact-form-el select:focus,
.contact-form-el textarea:focus,
.form-row input:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  background: var(--card-bg);
}

.contact-form select,
.contact-form-el select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

.contact-form .btn,
.contact-form-el .btn {
  padding: 1.125rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  width: 100%;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 992px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
  }
  
  .contact-text {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .contact-split {
    padding: 1.5rem;
  }
}

/* ────────────────────────────────────────────────────────────
   PAGE HERO (inner pages)
   ──────────────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #000B1A, #0D1B3E);
  color: #fff;
  padding: 3.5rem 0;
}

.page-hero .section-tag {
  background: rgba(99, 102, 241, .2);
  color: #A5B4FC;
}

/* ────────────────────────────────────────────────────────────
   ROI CALCULATOR PAGE
   ──────────────────────────────────────────────────────────── */
.calc-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#calc {
  position: relative;
  background: var(--bg-primary);
}

#calc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.calc-step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: transform var(--tr), box-shadow var(--tr);
}

.calc-step:hover {
  box-shadow: var(--shadow-lg);
}

.calc-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--text-primary);
}

.calc-step-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lavender);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Category Specific Themes */
.calc-step.step-leads { border-left: 5px solid #6366F1; background: linear-gradient(to right, rgba(99, 102, 241, 0.02), var(--card-bg)); }
.calc-step.step-revenue { border-left: 5px solid #10B981; background: linear-gradient(to right, rgba(16, 185, 129, 0.02), var(--card-bg)); }
.calc-step.step-time { border-left: 5px solid #F59E0B; background: linear-gradient(to right, rgba(245, 158, 11, 0.02), var(--card-bg)); }
.calc-step.step-lost { border-left: 5px solid #F43F5E; background: linear-gradient(to right, rgba(244, 63, 94, 0.02), var(--card-bg)); }
.calc-step.step-spend { border-left: 5px solid #8B5CF6; background: linear-gradient(to right, rgba(139, 92, 246, 0.02), var(--card-bg)); }

.calc-step.step-leads .calc-step-ico { background: rgba(99, 102, 241, 0.1); color: #6366F1; }
.calc-step.step-revenue .calc-step-ico { background: rgba(16, 185, 129, 0.1); color: #10B981; }
.calc-step.step-time .calc-step-ico { background: rgba(245, 158, 11, 0.1); color: #F59E0B; }
.calc-step.step-lost .calc-step-ico { background: rgba(244, 63, 94, 0.1); color: #F43F5E; }
.calc-step.step-spend .calc-step-ico { background: rgba(139, 92, 246, 0.1); color: #8B5CF6; }

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
}

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

.calc-field label {
  font-size: .875rem;
  font-weight: 700;
  display: block;
  margin-bottom: .625rem;
  color: var(--text-primary);
}

.calc-field input[type="number"],
.calc-field select {
  width: 100%;
  padding: .875rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--card-border);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  transition: all var(--tr);
  outline: none;
  margin-top: auto;
}

.calc-field input[type="number"]:hover,
.calc-field select:hover {
  border-color: var(--accent);
  background: var(--card-bg);
}

.calc-field input[type="number"]:focus,
.calc-field select:focus {
  border-color: var(--accent);
  background: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Chrome, Safari, Edge, Opera */
.calc-field input::-webkit-outer-spin-button,
.calc-field input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.calc-field input[type=number] {
  -moz-appearance: textfield;
}

.slider-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  min-height: 44px; /* Ensure sliders have a consistent height similar to inputs */
}

input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 10px;
  background: var(--bg-primary);
  border: 1px solid var(--card-border);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  transition: transform var(--tr);
  border: 2px solid #fff;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-val {
  font-size: .875rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 3rem;
  text-align: right;
}

.calc-cta-wrap {
  text-align: center;
  margin: 2rem 0;
}

.calc-results {
  display: none;
  animation: fadeUp .4s ease;
}

.calc-results.show {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.result-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.result-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  color: var(--text-primary);
  box-shadow: var(--shadow);
  text-align: center;
}

.result-big {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), var(--accent-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: .5rem;
}

.result-label {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: .625rem;
  justify-content: center;
}

.result-label svg {
  color: var(--accent);
  background: var(--lavender);
  padding: 6px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.result-breakdown {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 2;
  list-style: none;
  border-top: 1px solid var(--card-border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.result-breakdown li strong {
  color: var(--text-primary);
}


.roi-summary-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  gap: .75rem;
  justify-content: center;
  color: #fff;
}

.roi-summary-title svg {
  color: #22D3EE;
}
.roi-summary-box {
  background: linear-gradient(135deg, #000B1A, #0D1B3E);
  border-radius: var(--r-lg);
  padding: 3rem 2rem;
  color: #fff;
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.roi-summary-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.roi-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.rs-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.rs-num {
  font-size: 1.75rem;
  font-weight: 900;
  display: block;
  margin-bottom: .25rem;
  background: linear-gradient(135deg, #A78BFA, #22D3EE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rs-lbl {
  font-size: .75rem;
  opacity: .8;
}

.chart-wrap {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  height: 180px;
  padding: 0 1rem;
}

.chart-bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .375rem;
  flex: 1;
}

.bar {
  border-radius: 6px 6px 0 0;
  width: 60px;
  transition: height .8s ease;
}

.bar-label {
  font-size: .75rem;
  color: var(--text-muted);
  text-align: center;
}

.bar-val {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* lead popup */
.lead-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.lead-overlay.open {
  display: flex;
}

.lead-popup {
  background: var(--card-bg);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  max-width: 460px;
  width: 100%;
  position: relative;
}

.lead-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.375rem;
  color: var(--text-muted);
  transition: color var(--tr);
}

.lead-close:hover {
  color: var(--text-primary);
}

/* ────────────────────────────────────────────────────────────
   UTILITIES
   ──────────────────────────────────────────────────────────── */
.mt-sm {
  margin-top: .75rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.gap-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge-purple {
  background: var(--lavender);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: .1875rem .5625rem;
  border-radius: var(--r-full);
}

.closing-stmt {
  font-size: .9375rem;
  color: var(--text-secondary);
  font-style: italic;
  text-align: center;
  margin-top: 2.5rem;
  padding: 1.25rem 2rem;
  background: var(--lavender);
  border-radius: var(--r);
  max-width: 680px;
  margin-inline: auto;
}

[data-theme="dark"] .closing-stmt {
  color: var(--text-secondary);
}

/* ────────────────────────────────────────────────────────────
   ANIMATIONS
   ──────────────────────────────────────────────────────────── */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .5;
  }
}

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
   ──────────────────────────────────────────────────────────── */
@media (max-width:1024px) {
  :root {
    --pad: 1.5rem;
  }

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

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

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

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

  .process-wrap::before {
    display: none;
  }

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

@media (max-width:768px) {
  :root {
    --pad: 1rem;
  }

  section {
    padding: 3.5rem 0;
  }

  .header-tagline {
    display: none;
  }

  .nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-visual {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
  }

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

  .funnel-stage {
    width: 100% !important;
    margin-left: 0 !important;
    padding: 1rem;
  }

  .funnel-connector-flow {
    display: none;
  }

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

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

  .pricing-duo {
    grid-template-columns: 1fr;
  }

  .price-enterprise {
    grid-template-columns: 1fr;
  }

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

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

  .testi-inner {
    grid-template-columns: 1fr;
  }

  .testi-image {
    display: none;
  }

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

  .ind-panel.active {
    grid-template-columns: 1fr;
  }

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

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

  .achieve-card {
    grid-template-columns: 1fr;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    display: none;
  }

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

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-toc {
    display: none;
  }

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

  .calc-fields {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

/* ────────────────────────────────────────────────────────────
   FOOTER BOTTOM ENHANCEMENTS
   ──────────────────────────────────────────────────────────── */
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: .8125rem;
  color: var(--text-muted);
  transition: color var(--tr);
}

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

/* ────────────────────────────────────────────────────────────
   ABOUT US / TEAM STYLES
   ──────────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--tr);
}

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

.team-img-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--bg-secondary);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 3px solid var(--lavender);
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.125rem;
  font-weight: 800;
  margin-bottom: .25rem;
}

.team-member-role {
  font-size: .875rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-member-bio {
  font-size: .8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  
  .footer-copyright {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width:480px) {
  .hero-title {
    font-size: 1.875rem;
  }

  .impact-num {
    font-size: 2.75rem;
  }

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

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

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

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

@media print {

  .site-header,
  .site-footer,
  .cta-section,
  .testimonials-section {
    display: none;
  }
}

