/* Fortis Consultancy — Shared Styles */
:root {
  --purple: #6B5FA5;
  --purple-light: #9B8FD5;
  --purple-bright: #B8A8F0;
  --purple-dim: #F0EEF8;
  --purple-dark: #3B2D8F;
  --accent: #E9D69E;
  --accent-warm: #F4C75A;
  --dark: #0E0C18;
  --dark2: #07060F;
  --dark3: #14111E;
  --mid: #444054;
  --grey: #888399;
  --grey-2: #5C586D;
  --light: #F7F6FC;
  --white: #FFFFFF;
  --border: rgba(155,143,213,0.13);
  --border-strong: rgba(155,143,213,0.28);
  --glass: rgba(255,255,255,0.04);
  --glass-strong: rgba(255,255,255,0.07);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
::selection { background: var(--purple); color: var(--white); }
a { color: inherit; }

/* Subtle dot grid backdrop */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle at 1px 1px, rgba(155,143,213,0.06) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 78%);
}

/* NAVBAR */
nav.topbar {
  position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; gap: 12px;
  padding: 8px 8px 8px 22px;
  background: rgba(14,12,24,0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: top 0.35s ease;
  width: max-content; max-width: calc(100% - 24px);
}
nav.topbar.scrolled { top: 12px; }
.nav-logo {
  font-family: 'DM Serif Display', serif; font-size: 20px;
  color: var(--white); display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.nav-logo .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 12px var(--purple-light);
  animation: pulse 2.5s ease-in-out infinite;
}
.nav-logo span { color: var(--purple-light); }
.nav-links {
  display: flex; gap: 4px; list-style: none;
  padding: 0 8px; border-left: 1px solid var(--border);
}
.nav-links a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.65); text-decoration: none;
  padding: 8px 14px; border-radius: 999px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--white); background: rgba(155,143,213,0.08); }
.nav-links a.active { color: var(--white); background: rgba(155,143,213,0.14); }
.nav-cta {
  font-size: 13px; font-weight: 600;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white); padding: 10px 18px;
  border-radius: 999px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.2s; position: relative; overflow: hidden;
  box-shadow: 0 4px 14px rgba(107,95,165,0.35);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(107,95,165,0.45); }
.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-strong);
  color: var(--white); width: 38px; height: 38px; border-radius: 50%;
  align-items: center; justify-content: center; cursor: pointer;
}

/* MOBILE DRAWER */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(7,6,15,0.96); backdrop-filter: blur(20px);
  display: none; flex-direction: column; padding: 80px 28px 28px;
  transform: translateY(-30px); opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-drawer.open { display: flex; opacity: 1; transform: translateY(0); }
.drawer-close {
  position: absolute; top: 22px; right: 22px;
  width: 44px; height: 44px; border-radius: 50%;
  background: none; border: 1px solid var(--border-strong); color: var(--white);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.mobile-drawer a {
  font-family: 'DM Serif Display', serif; font-size: 30px;
  color: var(--white); text-decoration: none;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.mobile-drawer a span { color: var(--purple-light); }

/* MAIN CONTAINER */
main { flex: 1; position: relative; z-index: 1; }
section { padding: 120px 60px; position: relative; z-index: 2; }
.wrap { max-width: 1200px; margin: 0 auto; }
.wrap-narrow { max-width: 860px; margin: 0 auto; }

/* TYPOGRAPHY */
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--purple-light); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: ''; width: 24px; height: 1px; background: var(--purple-light);
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.4vw, 60px); line-height: 1.05;
  letter-spacing: -1px; color: var(--white); margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-body {
  font-size: 16px; line-height: 1.72;
  color: rgba(255,255,255,0.5); max-width: 640px;
}

/* BUTTONS */
.btn-primary {
  font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: var(--white); padding: 14px 24px; border-radius: 10px;
  text-decoration: none; transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 24px rgba(107,95,165,0.32), inset 0 1px 0 rgba(255,255,255,0.12);
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(107,95,165,0.45); }
.btn-secondary {
  font-size: 14px; font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-strong);
  color: var(--white); padding: 13px 22px; border-radius: 10px;
  text-decoration: none; transition: all 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); border-color: var(--purple-light); }
.btn-secondary i, .btn-primary i { width: 14px; height: 14px; }

/* HERO — VIDEO */
.video-hero {
  position: relative; min-height: 92vh;
  padding: 130px 60px 80px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; overflow: hidden;
}
.video-hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107,95,165,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 18% 90%, rgba(59,45,143,0.18) 0%, transparent 60%);
}
.video-frame {
  position: relative; z-index: 1;
  width: 100%; max-width: 1100px;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: linear-gradient(135deg, rgba(155,143,213,0.05), rgba(59,45,143,0.08));
  box-shadow: 0 30px 80px rgba(0,0,0,0.45), 0 0 0 1px rgba(155,143,213,0.08), 0 0 80px rgba(107,95,165,0.12);
}
.video-frame video,
.video-frame img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.video-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(155,143,213,0.18), transparent 60%),
    linear-gradient(180deg, var(--dark3), var(--dark2));
  text-align: center; padding: 24px;
}
.video-placeholder .play-circle {
  width: 92px; height: 92px; border-radius: 50%;
  background: rgba(155,143,213,0.10);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 0 80px rgba(155,143,213,0.18);
  animation: pulse-soft 3s ease-in-out infinite;
}
.video-placeholder .play-circle i {
  width: 28px; height: 28px; color: var(--purple-light);
}
.video-placeholder p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--grey); letter-spacing: 0.05em;
}
.video-placeholder p strong {
  color: var(--white); font-weight: 600;
}
.video-placeholder .hint {
  margin-top: 10px; font-size: 11px;
  color: var(--grey-2);
}

.video-hero-copy {
  position: relative; z-index: 2;
  margin-top: 60px; max-width: 680px;
}
.video-hero-copy h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(40px, 5vw, 64px); line-height: 1.05;
  letter-spacing: -1.4px; color: var(--white);
  margin-bottom: 20px;
}
.video-hero-copy h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.video-hero-copy p {
  font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,0.55); margin-bottom: 32px;
}
.video-hero-actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

/* PAGE HERO (non-video pages) */
.page-hero {
  padding: 180px 60px 80px;
  position: relative; overflow: hidden;
  text-align: left;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(107,95,165,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(233,214,158,0.04) 0%, transparent 60%);
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(48px, 6vw, 80px); line-height: 1.04;
  letter-spacing: -1.6px; color: var(--white);
  margin-bottom: 22px; max-width: 900px;
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.page-hero p.lead {
  font-size: 18px; line-height: 1.65;
  color: rgba(255,255,255,0.55); max-width: 620px;
}

/* CARDS / GRIDS */
.card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 30px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.card-strong { background: var(--glass-strong); border-color: var(--border-strong); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* METHOD STEPS */
.method-top {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; max-width: 1200px; margin: 0 auto 80px;
}
.method-steps {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; max-width: 1200px; margin: 0 auto;
  position: relative;
}
.method-steps::before {
  content: ''; position: absolute; top: 36px; left: 6%; right: 6%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong) 20%, var(--border-strong) 80%, transparent);
}
.method-step {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 30px;
  transition: all 0.35s; position: relative; backdrop-filter: blur(8px);
}
.method-step:hover { border-color: var(--border-strong); background: var(--glass-strong); transform: translateY(-3px); }
.step-num-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.step-num-circle {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(155,143,213,0.12);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--purple-light); font-weight: 500; position: relative; z-index: 2;
}
.step-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--grey); letter-spacing: 0.05em; }
.step-title { font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.step-body { font-size: 14px; line-height: 1.65; color: var(--grey); }
.step-icon { width: 28px; height: 28px; color: var(--purple-light); margin-bottom: 24px; }

/* SERVICES BENTO */
.services-header { max-width: 1200px; margin: 0 auto 56px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
.services-bento { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; max-width: 1200px; margin: 0 auto; }
.svc-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 32px;
  position: relative; overflow: hidden; transition: all 0.35s;
  display: flex; flex-direction: column; gap: 18px;
}
.svc-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx,50%) var(--my,50%), rgba(155,143,213,0.10), transparent 40%);
  opacity: 0; transition: opacity 0.35s; pointer-events: none;
}
.svc-card:hover::before { opacity: 1; }
.svc-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.svc-card.span-3 { grid-column: span 3; }
.svc-card.span-6 { grid-column: span 6; }
.svc-icon-wrap {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(155,143,213,0.12);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.svc-icon-wrap i { width: 22px; height: 22px; }
.svc-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--purple-light); letter-spacing: 0.04em; }
.svc-title { font-family: 'DM Serif Display', serif; font-size: 30px; line-height: 1.15; color: var(--white); letter-spacing: -0.5px; }
.svc-title em { font-style: italic; color: var(--purple-light); }
.svc-body { font-size: 14px; line-height: 1.7; color: var(--grey); }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 1px; margin-top: auto; }
.svc-list li {
  font-size: 13px; color: rgba(255,255,255,0.55);
  padding: 10px 0; border-top: 1px solid var(--border);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.5;
}
.svc-list li i { width: 14px; height: 14px; color: var(--purple-light); flex-shrink: 0; margin-top: 3px; }

/* MARKETING BOT */
.bot-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(155,143,213,0.10);
  border: 1px solid var(--border-strong);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 28px;
}
.bot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 10px var(--purple-light);
  animation: pulse 2.2s ease-in-out infinite;
}
.bot-badge-txt { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 500; color: var(--purple-light); letter-spacing: 0.04em; }
.bot-grid { display: grid; grid-template-columns: 1fr 460px; gap: 64px; align-items: start; margin-top: 60px; }
.bot-features { display: flex; flex-direction: column; gap: 4px; }
.bot-feat {
  padding: 22px; border-radius: 14px;
  border: 1px solid transparent;
  display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start;
  transition: all 0.3s;
}
.bot-feat:hover { background: var(--glass); border-color: var(--border); transform: translateX(4px); }
.bot-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(155,143,213,0.12);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); flex-shrink: 0;
}
.bot-icon i { width: 18px; height: 18px; }
.bot-feat-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 5px; }
.bot-feat-body { font-size: 13px; line-height: 1.62; color: var(--grey); }
.bot-panel {
  position: sticky; top: 120px;
  background: linear-gradient(180deg, rgba(155,143,213,0.05), rgba(155,143,213,0.02));
  border: 1px solid var(--border-strong);
  border-radius: 20px; padding: 28px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
}
.panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 18px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.panel-title { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--white); letter-spacing: 0.04em; }
.panel-status { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--purple-light); }
.panel-status .dot { width: 6px; height: 6px; border-radius: 50%; background: #6BE3A0; box-shadow: 0 0 8px #6BE3A0; animation: pulse 1.8s infinite; }
.pipe-row {
  display: grid; grid-template-columns: 28px 1fr auto;
  align-items: center; gap: 14px; padding: 10px 8px;
  border-radius: 8px; transition: background 0.2s;
}
.pipe-row:hover { background: rgba(155,143,213,0.06); }
.pipe-n {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  font-weight: 600; color: var(--white);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 0 12px rgba(107,95,165,0.4);
}
.pipe-name { font-size: 13px; font-weight: 500; color: var(--white); }
.pipe-detail { font-size: 11px; color: var(--grey); margin-top: 2px; }
.pipe-time { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--grey-2); }
.pipe-line {
  width: 1px; height: 14px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  margin-left: 21px; margin-block: 1px;
}

/* PRICING */
.pricing-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pricing-head .section-body { margin: 0 auto; text-align: center; }
.pricing-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 64px; flex-wrap: wrap;
}
.pricing-tabs {
  display: inline-flex; gap: 4px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px; padding: 5px;
  backdrop-filter: blur(10px);
}
.pricing-tab {
  background: none; border: none;
  font-family: inherit; font-size: 13px; font-weight: 500;
  color: var(--grey); padding: 10px 18px;
  border-radius: 999px; cursor: pointer;
  transition: all 0.25s; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
}
.pricing-tab i { width: 14px; height: 14px; }
.pricing-tab.active {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  box-shadow: 0 4px 14px rgba(107,95,165,0.4);
}
.pricing-tab:not(.active):hover { color: var(--white); background: rgba(155,143,213,0.06); }
.billing-toggle {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--glass); border: 1px solid var(--border);
  padding: 6px; border-radius: 999px;
}
.billing-btn {
  background: none; border: none; font-family: inherit;
  font-size: 12px; font-weight: 500; color: var(--grey);
  padding: 7px 14px; border-radius: 999px; cursor: pointer;
  transition: all 0.25s; display: inline-flex; align-items: center; gap: 6px;
}
.billing-btn.active { background: rgba(155,143,213,0.15); color: var(--white); }
.billing-save {
  font-family: 'JetBrains Mono', monospace; font-size: 9px;
  background: var(--accent); color: var(--dark2);
  padding: 2px 6px; border-radius: 4px; font-weight: 700;
}
.pricing-pane { display: none; max-width: 1200px; margin: 0 auto; }
.pricing-pane.active { display: block; animation: paneIn 0.45s ease; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.p-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 36px 30px;
  position: relative; transition: all 0.3s;
  backdrop-filter: blur(10px);
  display: flex; flex-direction: column;
}
.p-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 18px 48px rgba(0,0,0,0.3); }
.p-card.hot {
  background: linear-gradient(180deg, rgba(155,143,213,0.16), rgba(107,95,165,0.06));
  border-color: var(--purple-light);
  box-shadow: 0 12px 50px rgba(107,95,165,0.18);
}
.p-pop {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white); padding: 6px 14px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(107,95,165,0.5);
}
.p-tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: 0.06em; color: var(--purple-light); display: block; margin-bottom: 14px; }
.p-name { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); margin-bottom: 6px; }
.p-tagline { font-size: 13px; font-style: italic; color: var(--grey); margin-bottom: 26px; }
.p-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.p-cur { font-size: 18px; font-weight: 600; color: var(--white); align-self: flex-start; margin-top: 12px; }
.p-num { font-family: 'DM Serif Display', serif; font-size: 56px; line-height: 1; color: var(--white); letter-spacing: -2px; }
.p-setup { font-size: 13px; color: var(--grey); margin-bottom: 4px; }
.p-mo { font-size: 14px; color: var(--grey); margin-bottom: 28px; }
.p-mo strong { color: var(--white); font-weight: 600; }
.p-hr { height: 1px; background: var(--border); margin-bottom: 22px; }
.p-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.p-feats li { display: flex; gap: 10px; font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.62); }
.p-feats li i { width: 14px; height: 14px; color: var(--purple-light); flex-shrink: 0; margin-top: 3px; }
.p-feats li.dim { color: rgba(255,255,255,0.25); }
.p-feats li.dim i { color: rgba(255,255,255,0.18); }
.p-btn {
  width: 100%; padding: 14px; border-radius: 10px;
  border: none; cursor: pointer; font-family: inherit;
  font-size: 14px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all 0.25s;
}
.p-btn i { width: 14px; height: 14px; }
.p-btn-outline { background: transparent; border: 1px solid var(--border-strong); color: var(--white); }
.p-btn-outline:hover { background: rgba(155,143,213,0.1); border-color: var(--purple-light); }
.p-btn-solid { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); color: var(--white); box-shadow: 0 8px 22px rgba(107,95,165,0.35); }
.p-btn-solid:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(107,95,165,0.5); }

.combo-card {
  max-width: 1200px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(155,143,213,0.18), rgba(107,95,165,0.04) 60%);
  border: 1px solid var(--purple-light);
  border-radius: 24px; padding: 48px;
  position: relative; overflow: hidden;
}
.combo-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 32px; position: relative; z-index: 1; }
.combo-saving {
  background: rgba(255,255,255,0.06); border: 1px solid var(--purple-light);
  border-radius: 14px; padding: 16px 24px;
  font-family: 'DM Serif Display', serif; font-size: 24px;
  color: var(--accent); line-height: 1.1;
}
.combo-saving span {
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  color: var(--grey); font-weight: 400; display: block;
  margin-top: 6px; letter-spacing: 0.04em; text-transform: uppercase;
}
.combo-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; position: relative; z-index: 1; }

/* COMPARE TABLE */
.compare-wrap { max-width: 1200px; margin: 88px auto 0; background: var(--glass); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.compare-head { padding: 28px 32px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); flex-wrap: wrap; gap: 12px; }
.compare-head h3 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--white); }
.compare-head h3 em { font-style: italic; color: var(--purple-light); }
.compare-head p { font-size: 13px; color: var(--grey); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 13px; }
.compare-table th { background: rgba(155,143,213,0.04); color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; padding: 18px 20px; }
.compare-table td { color: rgba(255,255,255,0.7); }
.compare-table td.feat-name { color: var(--white); font-weight: 500; }
.compare-table td i { color: var(--purple-light); width: 16px; height: 16px; }
.compare-table td.no i { color: rgba(255,255,255,0.18); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(155,143,213,0.03); }

/* CASE STUDIES */
.case-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 40px 36px;
  transition: all 0.35s; position: relative; overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
}
.case-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.case-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.case-industry { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--purple-light); letter-spacing: 0.06em; }
.case-status {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(107,227,160,0.10); color: #6BE3A0;
  border: 1px solid rgba(107,227,160,0.3);
}
.case-status.scoping { background: rgba(244,199,90,0.10); color: var(--accent-warm); border-color: rgba(244,199,90,0.3); }
.case-name { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--white); }
.case-blurb { font-size: 14px; line-height: 1.65; color: var(--grey); }
.case-section { padding-top: 20px; border-top: 1px solid var(--border); }
.case-section h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--purple-light); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 12px; font-weight: 500;
}
.case-section ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.case-section ul li {
  font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.7);
  display: flex; gap: 10px;
}
.case-section ul li i { width: 14px; height: 14px; color: var(--purple-light); flex-shrink: 0; margin-top: 3px; }
.case-stack { display: flex; flex-wrap: wrap; gap: 6px; }
.case-stack span {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(155,143,213,0.10);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.65);
}

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.blog-grid.featured { grid-template-columns: 1.5fr 1fr; }
.blog-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 32px 30px;
  transition: all 0.35s; position: relative;
  display: flex; flex-direction: column; gap: 14px;
  text-decoration: none; color: inherit;
}
.blog-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.blog-card.featured { padding: 56px 48px; min-height: 360px; justify-content: flex-end; background: linear-gradient(135deg, rgba(155,143,213,0.12), rgba(59,45,143,0.08)); }
.blog-meta { display: flex; align-items: center; gap: 12px; font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--purple-light); letter-spacing: 0.06em; }
.blog-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-2); }
.blog-meta .author { color: var(--grey); }
.blog-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; line-height: 1.2; color: var(--white);
  letter-spacing: -0.3px;
}
.blog-card.featured h3 { font-size: 36px; line-height: 1.1; }
.blog-card p { font-size: 14px; line-height: 1.65; color: var(--grey); }
.blog-card .read-more { font-size: 12px; color: var(--purple-light); margin-top: auto; display: inline-flex; align-items: center; gap: 6px; }
.blog-card .read-more i { width: 12px; height: 12px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.t-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; transition: all 0.35s;
}
.t-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.t-avatar {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 30% 30%, rgba(155,143,213,0.4), transparent 60%),
    linear-gradient(140deg, rgba(107,95,165,0.32), rgba(59,45,143,0.5));
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.t-avatar::before { content:''; position:absolute; width:64px; height:64px; border-radius:50%; background:rgba(155,143,213,0.32); top:18px; left:18px; filter: blur(2px); }
.t-avatar::after { content:''; position:absolute; width:42px; height:42px; border-radius:50%; background:rgba(59,45,143,0.5); bottom:24px; right:24px; filter: blur(2px); }
.t-badge {
  position:absolute; top:12px; right:12px; z-index:2;
  font-family: 'JetBrains Mono', monospace;
  font-size:10px; letter-spacing:0.05em; text-transform:uppercase;
  background:rgba(14,12,24,0.78); color:var(--purple-light);
  padding:4px 9px; border-radius:6px;
  border: 1px solid var(--border);
}
.t-initials { font-family:'DM Serif Display',serif; font-size:48px; font-style:italic; color:var(--white); position:relative; z-index:1; text-shadow: 0 2px 14px rgba(0,0,0,0.3); }
.t-info { padding: 22px; }
.t-role { font-family: 'JetBrains Mono', monospace; font-size:10px; letter-spacing:0.06em; color:var(--purple-light); margin-bottom:6px; }
.t-name { font-size:18px; font-weight:600; color:var(--white); margin-bottom:8px; font-family: 'DM Serif Display', serif; }
.t-desc { font-size:13px; color:var(--grey); line-height:1.55; }

/* FAQ */
.faq-grid { max-width: 900px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  transition: border-color 0.25s, background 0.25s;
}
.faq-item.open { border-color: var(--border-strong); background: var(--glass-strong); }
.faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 26px; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: inherit;
  font-size: 16px; font-weight: 500; color: var(--white);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple-light); }
.faq-q i { width: 18px; height: 18px; color: var(--purple-light); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease; padding: 0 26px; font-size: 14px; line-height: 1.72; color: var(--grey); }
.faq-item.open .faq-a { max-height: 600px; padding: 0 26px 24px; }

/* FORM */
.contact-form { max-width: 580px; margin: 0 auto; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--grey); letter-spacing: 0.04em; }
.form-field input, .form-field textarea, .form-field select {
  background: var(--glass);
  border: 1px solid var(--border-strong);
  border-radius: 10px; padding: 14px 16px;
  font-family: 'DM Sans', sans-serif; font-size: 14px;
  color: var(--white); outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.22); }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--purple-light); background: rgba(155,143,213,0.06);
  box-shadow: 0 0 0 4px rgba(155,143,213,0.08);
}
.form-field select option { background: var(--dark); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 110px; font-family: inherit; }
.form-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  border: none; border-radius: 10px; font-family: inherit;
  font-size: 15px; font-weight: 600; color: var(--white);
  cursor: pointer; transition: all 0.25s; margin-top: 6px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 10px 24px rgba(107,95,165,0.32);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(107,95,165,0.5); }
.form-submit i { width: 14px; height: 14px; }
.form-divider { display: flex; align-items: center; gap: 16px; margin: 36px 0 28px; }
.form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.form-divider span { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--grey); letter-spacing: 0.04em; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1200px; margin: 0 auto; }
.contact-info-block { padding: 32px 0; border-bottom: 1px solid var(--border); }
.contact-info-block:last-child { border-bottom: none; }
.contact-info-block h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--purple-light); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
.contact-info-block .name { font-size: 18px; color: var(--white); font-weight: 600; margin-bottom: 6px; font-family: 'DM Serif Display', serif; }
.contact-info-block a { font-size: 14px; color: var(--grey); text-decoration: none; transition: color 0.2s; display: block; }
.contact-info-block a:hover { color: var(--purple-light); }

/* FOOTER */
footer.site-footer {
  padding: 64px 60px 40px;
  background: var(--dark2);
  border-top: 1px solid var(--border);
  position: relative; z-index: 5;
}
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.f-brand p { font-size: 14px; line-height: 1.6; color: var(--grey); margin-bottom: 22px; max-width: 320px; }
.f-brand .nav-logo { font-size: 28px; margin-bottom: 16px; }
.f-socials { display: flex; gap: 10px; }
.f-social {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey); transition: all 0.25s; text-decoration: none;
}
.f-social:hover { border-color: var(--purple-light); color: var(--white); }
.f-social i { width: 16px; height: 16px; }
.f-col h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; color: var(--white); margin-bottom: 18px; text-transform: uppercase; font-weight: 500; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.f-col a { font-size: 13px; color: var(--grey); text-decoration: none; transition: color 0.2s; }
.f-col a:hover { color: var(--white); }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 28px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.f-copy { font-size: 13px; color: var(--grey-2); }
.f-tagline { font-size: 12px; color: var(--grey-2); font-style: italic; }

/* TRUST MARQUEE */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 38px 0; background: var(--dark); position: relative; z-index: 2; }
.trust-label { text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-2); margin-bottom: 24px; }
.marquee { display: flex; overflow: hidden; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-track { display: flex; gap: 64px; flex-shrink: 0; animation: marquee 38s linear infinite; padding-right: 64px; }
.marquee-item { font-family: 'DM Serif Display', serif; font-size: 22px; color: rgba(255,255,255,0.32); white-space: nowrap; display: flex; align-items: center; gap: 16px; transition: color 0.3s; }
.marquee-item:hover { color: rgba(255,255,255,0.6); }
.marquee-item .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--purple); opacity: 0.5; }

/* ANIMATIONS */
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.85); } }
@keyframes pulse-soft { 0%,100% { box-shadow: 0 0 80px rgba(155,143,213,0.18); } 50% { box-shadow: 0 0 120px rgba(155,143,213,0.32); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes paneIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.fade { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade.in { opacity: 1; transform: translateY(0); }

/* BLOG POST */
.post-hero { padding: 160px 24px 60px; position: relative; overflow: hidden; text-align: center; }
.post-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(107,95,165,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 90% 80%, rgba(233,214,158,0.05) 0%, transparent 60%);
}
.post-hero > * { position: relative; z-index: 1; }
.post-meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--purple-light); letter-spacing: 0.06em;
  padding: 6px 14px; background: var(--glass);
  border: 1px solid var(--border); border-radius: 999px;
  margin-bottom: 24px;
}
.post-meta .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--grey-2); }
.post-meta .meta-item { color: var(--grey); }
.post-meta .meta-item.cat { color: var(--purple-light); font-weight: 600; }
.post-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5.5vw, 68px); line-height: 1.05;
  letter-spacing: -1.5px; color: var(--white);
  max-width: 900px; margin: 0 auto 22px;
}
.post-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--purple-light), var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.post-lede {
  font-size: 19px; line-height: 1.6;
  color: rgba(255,255,255,0.6); max-width: 640px; margin: 0 auto;
}
.post-author {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 28px;
}
.post-author .a-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-light), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif; font-style: italic;
  color: var(--white); font-size: 14px;
}
.post-author .a-name { font-size: 13px; font-weight: 600; color: var(--white); }
.post-author .a-role { font-size: 11px; color: var(--grey); }

.post-body {
  max-width: 720px; margin: 0 auto;
  padding: 40px 24px 100px;
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.78);
}
.post-body h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 32px; line-height: 1.15; letter-spacing: -0.5px;
  color: var(--white); margin: 56px 0 18px; padding-top: 12px;
}
.post-body h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; line-height: 1.2;
  color: var(--white); margin: 36px 0 12px;
}
.post-body p { margin-bottom: 22px; }
.post-body p:first-child::first-letter {
  font-family: 'DM Serif Display', serif; font-size: 64px;
  float: left; line-height: 0.9; padding: 6px 14px 0 0;
  color: var(--purple-light); font-style: italic;
}
.post-body strong { color: var(--white); font-weight: 600; }
.post-body em { color: var(--purple-light); font-style: italic; }
.post-body a {
  color: var(--purple-light); text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  transition: all 0.2s;
}
.post-body a:hover { color: var(--accent); border-color: var(--accent); }
.post-body ul, .post-body ol { margin: 22px 0 22px 22px; padding-left: 16px; }
.post-body li { margin-bottom: 10px; }
.post-body ul li::marker { color: var(--purple-light); }
.post-body code {
  font-family: 'JetBrains Mono', monospace; font-size: 0.86em;
  background: rgba(155,143,213,0.10);
  border: 1px solid var(--border);
  padding: 2px 8px; border-radius: 6px;
  color: var(--accent);
}
.post-body pre {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 22px;
  overflow-x: auto; margin: 28px 0;
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  line-height: 1.65; color: var(--grey);
}
.post-body pre code {
  background: none; border: none; padding: 0; border-radius: 0;
  color: inherit; font-size: inherit;
}
.post-body blockquote {
  border-left: 3px solid var(--purple-light);
  padding: 8px 0 8px 24px; margin: 28px 0;
  font-family: 'DM Serif Display', serif;
  font-style: italic; font-size: 22px;
  line-height: 1.5; color: rgba(255,255,255,0.85);
}

/* CALLOUT */
.callout {
  background: var(--glass); border: 1px solid var(--border-strong);
  border-radius: 14px; padding: 24px 26px;
  margin: 32px 0; display: grid;
  grid-template-columns: 36px 1fr; gap: 16px; align-items: flex-start;
}
.callout-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(155,143,213,0.12);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); flex-shrink: 0;
}
.callout-icon i { width: 16px; height: 16px; }
.callout-body { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.callout-body strong { display: block; margin-bottom: 4px; color: var(--white); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.callout.warm { background: linear-gradient(180deg, rgba(244,199,90,0.08), rgba(244,199,90,0.02)); border-color: rgba(244,199,90,0.28); }
.callout.warm .callout-icon { background: rgba(244,199,90,0.10); border-color: rgba(244,199,90,0.3); color: var(--accent-warm); }
.callout.warm .callout-body strong { color: var(--accent-warm); }

/* COMPARISON TABLE in post */
.post-table {
  width: 100%; border-collapse: collapse;
  margin: 28px 0; font-size: 14px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.post-table th, .post-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.post-table th { background: rgba(155,143,213,0.05); color: var(--white); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.post-table td { color: rgba(255,255,255,0.7); }
.post-table tr:last-child td { border: none; }
.post-table .check { color: var(--purple-light); }
.post-table .x { color: rgba(255,255,255,0.18); }

/* HERO ILLUSTRATION (animated svg badge for posts) */
.post-illus {
  position: absolute; top: 50%; right: -120px;
  transform: translateY(-50%);
  width: 360px; height: 360px;
  opacity: 0.7; pointer-events: none;
  animation: illus-spin 30s linear infinite;
}
.post-illus circle, .post-illus path {
  stroke: var(--purple-light); fill: none;
  stroke-width: 0.5; opacity: 0.3;
}
@keyframes illus-spin { from { transform: translateY(-50%) rotate(0); } to { transform: translateY(-50%) rotate(360deg); } }

/* FLOATING ORNAMENTS */
.orn {
  position: absolute; pointer-events: none; opacity: 0.4;
  animation: orn-float 6s ease-in-out infinite;
}
.orn.o1 { top: 15%; left: 10%; }
.orn.o2 { top: 60%; right: 12%; animation-delay: 1.5s; animation-duration: 8s; }
.orn.o3 { bottom: 20%; left: 20%; animation-delay: 3s; }
.orn-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--purple-light); box-shadow: 0 0 14px var(--purple-light); }
.orn-cross {
  width: 14px; height: 14px; position: relative;
}
.orn-cross::before, .orn-cross::after {
  content: ''; position: absolute; background: var(--purple-light);
}
.orn-cross::before { top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%); }
.orn-cross::after { left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%); }
@keyframes orn-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* SCROLL PROGRESS BAR */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--accent));
  z-index: 110; transition: width 0.05s linear;
  box-shadow: 0 0 12px var(--purple-light);
}

/* RELATED POSTS strip */
.related {
  border-top: 1px solid var(--border);
  padding: 64px 24px;
  background: var(--dark2);
}
.related-head {
  max-width: 1200px; margin: 0 auto 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.related-head h3 { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--white); }
.related-head h3 em { font-style: italic; color: var(--purple-light); }
.related-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}

/* AUTHOR CARD */
.author-card {
  margin: 64px 0 0;
  padding: 28px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 16px; display: grid;
  grid-template-columns: 56px 1fr; gap: 18px; align-items: center;
}
.author-card .a-avatar { width: 56px; height: 56px; font-size: 20px; }
.author-card .a-bio { font-size: 14px; color: var(--grey); line-height: 1.55; margin-top: 6px; }
.author-card .a-name { font-size: 16px; }

/* CTA BLOCK in post */
.post-cta {
  margin: 64px 0 0;
  padding: 36px 32px; text-align: center;
  background: linear-gradient(135deg, rgba(155,143,213,0.18), rgba(59,45,143,0.06));
  border: 1px solid var(--purple-light);
  border-radius: 18px;
}
.post-cta h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px; color: var(--white); margin-bottom: 8px;
}
.post-cta h4 em { font-style: italic; color: var(--accent); }
.post-cta p { font-size: 14px; color: var(--grey); margin-bottom: 22px; }

/* ANIMATIONS - extra */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes drift-x { 0%,100% { transform: translateX(0); } 50% { transform: translateX(8px); } }
@keyframes blink { 0%,49% { opacity: 1; } 50%,100% { opacity: 0; } }
.cursor-blink::after {
  content: '_'; color: var(--purple-light);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
.shimmer-text {
  background: linear-gradient(90deg, var(--white) 0%, var(--purple-light) 50%, var(--white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .f-col:last-child { display: none; }
  .team-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  nav.topbar { padding: 8px 8px 8px 18px; gap: 8px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  section { padding: 80px 24px; }
  .video-hero { padding: 110px 24px 60px; min-height: auto; }
  .video-hero-copy { margin-top: 40px; }
  .page-hero { padding: 130px 24px 60px; }
  .method-top { grid-template-columns: 1fr; gap: 28px; }
  .method-steps { grid-template-columns: 1fr; gap: 16px; }
  .method-steps::before { display: none; }
  .services-header { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .services-bento { grid-template-columns: 1fr; }
  .svc-card.span-3, .svc-card.span-6 { grid-column: span 1; }
  .bot-grid { grid-template-columns: 1fr; gap: 32px; }
  .bot-panel { position: static; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-controls { flex-direction: column; gap: 18px; margin-bottom: 40px; }
  .combo-cols { grid-template-columns: 1fr; gap: 16px; }
  .combo-card { padding: 32px 24px; }
  .compare-wrap { overflow-x: auto; }
  .compare-table { min-width: 700px; }
  .grid-2, .grid-3, .grid-4, .blog-grid, .blog-grid.featured { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .f-col:last-child { display: block; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  footer.site-footer { padding: 56px 24px 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .blog-card.featured { padding: 36px 28px; min-height: 240px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE V2 — NEW STYLES
═══════════════════════════════════════════════════ */

/* Cursor glow */
.cursor-glow {
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,95,165,0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: left 0.18s ease, top 0.18s ease;
}

/* ── HERO V2 ── */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 72% 60% at 70% 35%, rgba(107,95,165,0.20) 0%, transparent 62%),
    radial-gradient(ellipse 45% 55% at 4% 80%, rgba(59,45,143,0.15) 0%, transparent 58%),
    radial-gradient(ellipse 35% 40% at 92% 8%, rgba(233,214,158,0.07) 0%, transparent 52%);
}

.hero-noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 148px 60px 88px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-left { display: flex; flex-direction: column; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(107,95,165,0.10);
  border: 1px solid var(--border-strong);
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 28px;
  width: fit-content;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.07em;
}

.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 12px var(--purple-light);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(52px, 6.5vw, 90px);
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: var(--white);
  margin-bottom: 26px;
}

.hero-cycle-wrap {
  display: block;
  overflow: hidden;
  height: 1.08em;
}

.hero-cycle {
  display: inline-block;
  background: linear-gradient(135deg, var(--purple-light) 0%, var(--accent) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic;
  will-change: transform, opacity;
  transition: transform 0.46s cubic-bezier(0.76,0,0.24,1), opacity 0.34s ease;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  padding: 18px 22px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  gap: 0;
}

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

.hero-stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; color: var(--white);
  line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}

.hero-stat-sfx { font-size: 16px; color: var(--purple-light); }

.hero-stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--grey);
  letter-spacing: 0.06em; margin-top: 4px;
}

.hero-stat-div {
  width: 1px; height: 30px;
  background: var(--border); flex-shrink: 0;
}

/* Hero right */
.hero-right {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

/* ── Agent Widget ── */
.agent-widget {
  width: 100%; max-width: 440px;
  background: linear-gradient(165deg, rgba(155,143,213,0.08) 0%, rgba(14,12,24,0.6) 100%);
  border: 1px solid rgba(155,143,213,0.24);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow:
    0 36px 90px rgba(0,0,0,0.50),
    0 0 0 1px rgba(155,143,213,0.06),
    0 0 120px rgba(107,95,165,0.09),
    inset 0 1px 0 rgba(255,255,255,0.07);
  position: relative; z-index: 1;
}

.aw-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.aw-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif; font-size: 16px; color: var(--white);
}

.aw-brand-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(107,95,165,0.45);
}
.aw-brand-icon i { width: 14px; height: 14px; color: var(--white); }

.aw-live {
  display: flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: #6BE3A0; letter-spacing: 0.06em;
}

.aw-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #6BE3A0; box-shadow: 0 0 10px #6BE3A0;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Feed */
.aw-feed { display: flex; flex-direction: column; gap: 2px; }

.aw-row {
  display: grid;
  grid-template-columns: 34px 1fr 20px;
  gap: 12px; align-items: center;
  padding: 10px 8px; border-radius: 10px;
  opacity: 0; transform: translateX(-14px);
  animation: awRowIn 0.48s ease forwards;
}
.aw-row:nth-child(1) { animation-delay: 0.5s; }
.aw-row:nth-child(2) { animation-delay: 1.15s; }
.aw-row:nth-child(3) { animation-delay: 1.8s; }
.aw-row:nth-child(4) { animation-delay: 2.45s; }
.aw-row:hover { background: rgba(155,143,213,0.06); }

@keyframes awRowIn { to { opacity: 1; transform: translateX(0); } }

.aw-ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.aw-ico i { width: 14px; height: 14px; }
.aw-ico-amber { background: rgba(244,199,90,0.14); border: 1px solid rgba(244,199,90,0.22); color: #F4C75A; }
.aw-ico-purple { background: rgba(155,143,213,0.14); border: 1px solid rgba(155,143,213,0.22); color: var(--purple-light); }
.aw-ico-teal   { background: rgba(107,227,160,0.12); border: 1px solid rgba(107,227,160,0.20); color: #6BE3A0; }

.aw-title { font-size: 13px; font-weight: 500; color: var(--white); line-height: 1.3; }
.aw-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--grey); letter-spacing: 0.02em; margin-top: 2px;
}

.aw-tick {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(107,227,160,0.12);
  border: 1px solid rgba(107,227,160,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #6BE3A0; flex-shrink: 0;
  opacity: 0; animation: awFadeIn 0.3s ease forwards;
}
.aw-row:nth-child(1) .aw-tick { animation-delay: 1.0s; }
.aw-row:nth-child(2) .aw-tick { animation-delay: 1.65s; }
.aw-row:nth-child(3) .aw-tick { animation-delay: 2.3s; }
.aw-row:nth-child(4) .aw-tick { animation-delay: 2.95s; }
.aw-tick i { width: 10px; height: 10px; }

@keyframes awFadeIn { to { opacity: 1; } }

.aw-sep { height: 1px; background: var(--border); margin: 12px 0; }

.aw-footer { display: flex; align-items: center; gap: 10px; }

.aw-dots { display: flex; gap: 3px; align-items: center; }
.aw-dot-b {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--grey-2);
  animation: awBounce 1.2s ease-in-out infinite;
}
.aw-dot-b:nth-child(2) { animation-delay: 0.2s; }
.aw-dot-b:nth-child(3) { animation-delay: 0.4s; }
@keyframes awBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.aw-footer-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--grey-2); letter-spacing: 0.04em;
}

/* Floating badges */
.hw-badge {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  background: rgba(14,12,24,0.84);
  border: 1px solid var(--border-strong);
  border-radius: 999px; padding: 8px 15px;
  font-size: 12px; font-weight: 500; color: var(--white);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  white-space: nowrap; z-index: 2;
}
.hw-badge i { width: 13px; height: 13px; color: var(--purple-light); }
.hw-b1 { top: -14px; right: -10px; animation: floatY 4s ease-in-out infinite; }
.hw-b2 { bottom: 20px; left: -28px; animation: floatY 5s ease-in-out infinite reverse; animation-delay: 1.2s; }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ── SERVICES HOME ── */
.sec-services-home { padding: 110px 60px; }

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

.shc {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 22px; padding: 36px 30px;
  position: relative; overflow: hidden;
  transition: all 0.38s cubic-bezier(0.34,1.56,0.64,1);
  display: flex; flex-direction: column;
}

.shc::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; border-radius: 22px 22px 0 0; opacity: 0.8;
  transition: opacity 0.3s;
}

.shc-amber::after { background: linear-gradient(90deg, #F4C75A, #E8B48C); }
.shc-purple::after { background: linear-gradient(90deg, var(--purple-light), var(--purple)); }
.shc-teal::after   { background: linear-gradient(90deg, #6BE3A0, #4CBBAB); }

.shc:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.32);
}

.shc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--grey-2);
  letter-spacing: 0.06em; margin-bottom: 20px;
}

.shc-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; border: 1px solid var(--border-strong);
}
.shc-icon i { width: 22px; height: 22px; }
.shc-amber .shc-icon { background: rgba(244,199,90,0.12); color: #F4C75A; }
.shc-purple .shc-icon { background: rgba(155,143,213,0.12); color: var(--purple-light); }
.shc-teal .shc-icon   { background: rgba(107,227,160,0.10); color: #6BE3A0; }

.shc h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 26px; line-height: 1.1; color: var(--white);
  margin-bottom: 12px;
}
.shc h3 em { font-style: italic; }
.shc-amber h3 em { color: #F4C75A; }
.shc-purple h3 em { color: var(--purple-light); }
.shc-teal h3 em   { color: #6BE3A0; }

.shc p {
  font-size: 14px; line-height: 1.65; color: var(--grey);
  margin-bottom: 20px; flex-grow: 1;
}

.shc-chips {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px;
}
.shc-chips span {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  padding: 4px 10px; border-radius: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.52); letter-spacing: 0.03em;
}

.shc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--purple-light); text-decoration: none;
  transition: gap 0.22s;
}
.shc-link:hover { gap: 11px; }
.shc-link i { width: 13px; height: 13px; }

/* ── PROCESS ── */
.sec-process {
  padding: 110px 60px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark3) 100%);
  position: relative;
}

.process-head {
  max-width: 680px; margin: 0 auto 88px; text-align: center;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px; margin: 0 auto;
  position: relative;
}

.process-track {
  position: absolute;
  top: 28px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px; z-index: 0;
  background: var(--border);
  overflow: hidden;
}

.process-line {
  width: 0; height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--purple-light), var(--accent));
  box-shadow: 0 0 12px rgba(155,143,213,0.5);
  transition: width 1.6s cubic-bezier(0.4,0,0.2,1);
}
.process-line.drawn { width: 100%; }

.proc-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 20px; position: relative; z-index: 1;
}

.proc-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark3);
  border: 1px solid var(--border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 0 0 10px var(--dark3);
}
.proc-bubble span {
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  color: var(--purple-light); font-weight: 500;
}

.proc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(155,143,213,0.10);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); margin-bottom: 16px;
}
.proc-icon i { width: 18px; height: 18px; }

.proc-step h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 20px; color: var(--white);
  margin-bottom: 10px; letter-spacing: -0.3px;
}

.proc-step p {
  font-size: 13px; line-height: 1.65; color: var(--grey);
}

/* ── USE CASE ── */
.sec-usecase { padding: 110px 60px; }

.uc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}

.uc-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-top: 28px;
}
.uc-list li {
  display: flex; gap: 12px;
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,0.68); align-items: flex-start;
}
.uc-list li i { width: 16px; height: 16px; color: var(--purple-light); flex-shrink: 0; margin-top: 3px; }

.uc-stats { display: flex; flex-direction: column; gap: 16px; }

.uc-stat-card {
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 18px; padding: 26px 30px;
  transition: all 0.3s;
}
.uc-stat-card:hover { border-color: var(--border-strong); background: var(--glass-strong); transform: translateX(4px); }

.uc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 54px; line-height: 1;
  letter-spacing: -2px; margin-bottom: 4px;
}

.uc-stat-name { font-size: 15px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.uc-stat-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--grey); letter-spacing: 0.04em;
}

/* ── FINAL CTA ── */
.sec-cta-final {
  padding: 80px 60px 120px;
  text-align: center; position: relative; overflow: hidden;
}

.cta-final-wrap {
  position: relative; max-width: 840px; margin: 0 auto;
  padding: 88px 60px;
  background: linear-gradient(135deg, rgba(155,143,213,0.13), rgba(59,45,143,0.04));
  border: 1px solid rgba(155,143,213,0.20);
  border-radius: 30px;
}

.cta-glow-orb {
  position: absolute; inset: -60px;
  background: radial-gradient(ellipse at 50% 50%, rgba(107,95,165,0.20), transparent 65%);
  pointer-events: none; z-index: -1; border-radius: 50%;
}

.cta-final-btns {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

.cta-fine {
  margin-top: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: var(--grey-2); letter-spacing: 0.08em;
}

/* Magnetic */
.magnetic { transition: transform 0.15s ease !important; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; padding: 140px 40px 72px; gap: 60px; }
  .hero-right { justify-content: flex-start; }
  .agent-widget { max-width: 100%; }
  .svc-home-grid { grid-template-columns: 1fr; }
  .process-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-track { display: none; }
  .uc-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 900px) {
  .sec-services-home,
  .sec-process,
  .sec-usecase,
  .sec-cta-final { padding: 72px 24px; }
  .hero-grid { padding: 120px 24px 64px; }
  .hero-stats { flex-wrap: wrap; gap: 10px; }
  .hero-stat { padding: 0 10px; }
  .hw-badge { display: none; }
  .cta-final-wrap { padding: 52px 28px; }
  .process-row { grid-template-columns: 1fr; gap: 28px; }
  .uc-stats { gap: 12px; }
}
