* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ─── CSS VARIABLES ───────────────────────────────────────────────────────── */
:root {
  --primary-red: #dc2626;
  --dark-red: #991b1b;
  --accent-red: #ef4444;
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --light-gray: #aaa4a4;
  --gradient-orange-dark: #991b1b;
  --primary-red-dark: #c62828;
  --white: #ffffff;
  --gradient-orange: #dc2626;
  /* --gradient-orange: #06b6d4; */

  --font-display: "Syne", sans-serif;
  --font-body: "Inter", sans-serif;

  --transition-smooth: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

/* ─── BASE ───────────── */
html,
body {
  overflow-x: hidden;
  width: 100%;
}


/* ========== Hero Section ========== */
.hero {
  margin-top: 60px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 6rem 5rem;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.grid-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(220, 38, 38, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 38, 38, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-red);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--dark-red);
  bottom: -150px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--gradient-orange);
  bottom: 100px;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
}

.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

/* ========== Hero Content (Left) ========== */
.hero-content {
  animation: slideInLeft 0.8s ease-out;
  text-align: left;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.status-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.status-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gradient-orange);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.status-label::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 14px;
  background: var(--gradient-orange);
  margin-right: 0.8rem;
  vertical-align: middle;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  color: var(--white);
  text-align: left;
}

.gradient-text {
  background: linear-gradient(
    135deg,
    var(--primary-red) 0%,
    var(--accent-red) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-align: left;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.btn {
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary {
  background: var(--primary-red);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.btn-primary:hover {
  background: var(--accent-red);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(170, 164, 164, 0.3);
}

.btn-secondary:hover {
  border-color: var(--light-gray);
  background: rgba(170, 164, 164, 0.05);
  transform: translateY(-2px);
}

.info-badges {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.info-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--light-gray);
  font-weight: 500;
}

.badge-dot {
  width: 5px;
  height: 5px;
  background: var(--primary-red);
  border-radius: 50%;
  display: block;
  flex-shrink: 0;
}

/* ========== Hero Visual (Right) ========== */
.hero-visual {
  position: relative;
  animation: slideInRight 0.8s ease-out;
  display: flex;
  justify-content: center;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.call-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: popIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s backwards;
  width: 100%;
  max-width: 420px;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ── Card Header ── */
.call-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.caller-name-section {
  flex: 1;
}

.caller-name-large {
  font-weight: 700;
  color: var(--white);
  text-align: left;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.caller-status-calling {
  font-size: 0.85rem;
  text-align: left;
  color: var(--light-gray);
}

.live-badge {
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  white-space: nowrap;
  letter-spacing: 0.3px;
}

/* ── CRM Context Block ── */
.call-card-context {
  margin-bottom: 1.8rem;
  padding: 1.2rem 1.3rem;
  text-align: left;
  background: rgba(220, 38, 38, 0.07);
  border-radius: 12px;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.context-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 0.7rem;
  display: block;
}

.call-card-context p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ── Metrics ── */
.call-card-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.metric-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1rem 1.1rem;
}

.metric-label {
  display: block;
  font-size: 0.65rem;
  color: var(--light-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 0.4rem;
}

.metric-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
}

/* ── Action Buttons ── */
.call-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.btn-action {
  padding: 0.9rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-transfer {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-transfer:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.btn-end {
  background: var(--gradient-orange);
  color: var(--white);
  border: none;
}

.btn-end:hover {
  background: #0891b2;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.25);
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
  .hero {
    padding: 5rem 3.5rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 5rem 3rem;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

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

  .call-card {
    max-width: 480px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-description {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 4rem 2.5rem;
    margin-top: 60px;
    min-height: auto;
  }

  .hero-container {
    gap: 3rem;
    margin-top: 2rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-buttons {
    gap: 0.75rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .call-card {
    padding: 2rem;
  }

  .info-badges {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1.5rem;
    margin-top: 56px;
  }

  .hero-container {
    gap: 2.5rem;
    margin-top: 2rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.2rem;
  }

  .call-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .caller-name-large {
    font-size: 1rem;
  }

  .caller-status-calling {
    font-size: 0.8rem;
  }

  .live-badge {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .call-card-context {
    padding: 1rem;
    margin-bottom: 1.3rem;
  }

  .call-card-context p {
    font-size: 0.82rem;
  }

  .call-card-metrics {
    gap: 0.7rem;
    margin-bottom: 1.3rem;
    padding-bottom: 1.3rem;
  }

  .metric-item {
    padding: 0.75rem 0.85rem;
  }

  .metric-value {
    font-size: 1.25rem;
  }

  .metric-label {
    font-size: 0.6rem;
  }

  .call-card-actions {
    gap: 0.6rem;
  }

  .btn-action {
    padding: 0.75rem 0.8rem;
    font-size: 0.82rem;
  }

  .gradient-orb {
    opacity: 0.08;
  }
  .orb-1 {
    width: 300px;
    height: 300px;
  }
  .orb-2 {
    width: 250px;
    height: 250px;
  }
  .orb-3 {
    width: 200px;
    height: 200px;
  }
}

/* ========== Feature Ticker Strip ========== */
.ticker-strip {
  width: 100%;
  overflow: hidden;
  background: rgba(62, 71, 72, 0.06);
  padding: 1rem 0;
  position: relative;
  z-index: 2;
}

.ticker-strip::before,
.ticker-strip::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: -1rem;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--light-gray);
  white-space: nowrap;
  padding: 0 2.5rem;
  transition: color 0.3s ease;
}

.ticker-item:hover {
  color: var(--gradient-orange);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient-orange);
  opacity: 0.6;
  flex-shrink: 0;
}

/* ========== "The Difference" Section ========== */
.diff-section {
  padding: 6rem 5rem;
  position: relative;
}

.diff-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Header ── */
.diff-header {
  margin-bottom: 3.5rem;
}

.diff-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.diff-eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--light-gray);
  flex-shrink: 0;
}

.diff-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.diff-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.diff-title-accent {
  color: var(--primary-red);
}

.diff-subtitle {
  font-size: 1rem;
  color: var(--light-gray);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Grid ── */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ── Cards ── */
.diff-card {
  border-radius: 16px;
  padding: 2rem;
  position: relative;
}

.diff-card--generic {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.07);
}

.diff-card--briefed {
  background: rgba(220, 38, 38, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.07);
}

/* ── Badges ── */
.diff-card-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.diff-card-badge--generic {
  background: rgba(255, 255, 255, 0.08);
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.diff-card-badge--briefed {
  background: rgba(220, 38, 38, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.07);
}

/* ── Card Titles ── */
.diff-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.diff-card-title--briefed {
  color: var(--white);
}

/* ── Quotes ── */
.diff-quote {
  padding: 1rem 1.2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  border-left: 3px solid transparent;
}

.diff-quote--generic {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.diff-quote--generic p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  font-style: italic;
}

.diff-quote--briefed {
  background: rgba(220, 38, 38, 0.07);
  border-color: var(--primary-red);
}
 
.diff-quote--briefed p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.65;
  font-style: italic;
}
 

/* ── Highlight marks ── */
.diff-mark {
  background: rgba(220, 38, 38, 0.07);
  color: var(--accent-red);
  padding: 0.05em 0.35em;
  border-radius: 4px;
  font-style: normal;
  font-weight: 600;
}

.diff-mark--mono {
  font-size: 0.88em;
}

/* ── Lists ── */
.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.diff-list li {
  font-size: 0.9rem;
  line-height: 1.5;
  padding-left: 1.4rem;
  position: relative;
}

.diff-list--generic li {
  color: rgba(255, 255, 255, 0.4);
}

.diff-list--generic li::before {
  content: '●';
  position: absolute;
  left: 0;
  font-size: 0.5rem;
  top: 0.45em;
  color: rgba(255, 255, 255, 0.2);
}

.diff-list--briefed li {
  color: rgba(255, 255, 255, 0.8);
}

.diff-list--briefed li::before {
  content: '+';
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  top: 0;
  color: var(--accent-red);
  font-weight: 700;
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .diff-section {
    padding: 5rem 3.5rem;
  }
}

@media (max-width: 1024px) {
  .diff-section {
    padding: 5rem 3rem;
  }
}

@media (max-width: 768px) {
  .diff-section {
    padding: 4rem 2.5rem;
  }

  .diff-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .diff-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .diff-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .diff-section {
    padding: 3rem 1.5rem;
  }

  .diff-header {
    margin-bottom: 2.5rem;
  }

  .diff-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .diff-card {
    padding: 1.5rem;
  }

  .diff-quote {
    padding: 0.85rem 1rem;
  }
}
/* ========== Smart Variables Section ========== */
.sv-section {
  padding: 6rem 5rem;
  position: relative;
}

.sv-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Header ── */
.sv-header {
  margin-bottom: 3rem;
  max-width: 560px;
}

.sv-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.sv-eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--light-gray);
  flex-shrink: 0;
}

.sv-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.sv-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.sv-title-accent {
  color: var(--primary-red);
}

.sv-subtitle {
  font-size: 0.97rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ── Editor Card ── */
.sv-editor {
  /* background: #0d1a2e; */
  border: 1px solid rgba(220, 38, 38, 0.15);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(220, 38, 38, 0.06),
    0 24px 64px rgba(0, 0, 0, 0.5);
}
 
/* regular variable chips: red tint instead of cyan */
.sv-var {
  display: inline-block;
  background: rgba(220, 38, 38, 0.15);
  color: var(--accent-red);
  border: 1px solid rgba(220, 38, 38, 0.35);
  border-radius: 5px;
  padding: 0.05em 0.45em;
  font-size: 0.88em;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.2px;
  vertical-align: baseline;
}

/* ── Editor Top Bar ── */
.sv-editor-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sv-editor-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sv-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block;
}

.sv-dot--red    { background: #ff5f57; }
.sv-dot--yellow { background: #ffbd2e; }
.sv-dot--green  { background: #28c840; }

.sv-editor-path {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
  flex: 1;
}

.sv-editor-version {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.25);
  white-space: nowrap;
}

/* ── Script Body ── */
.sv-editor-body {
  padding: 2rem 2.5rem 1.5rem;
}

.sv-script-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.9;
  font-style: italic;
}

/* ── Variable Tags Row ── */
.sv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sv-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  cursor: default;
}

.sv-var--highlight {
  background: rgba(220, 100, 30, 0.3);
   color: var(--accent-red);
  border-color: rgba(220, 100, 30, 0.5);
}
 
/* tag row hover: red instead of cyan */
.sv-tag:hover {
  background: rgba(220, 38, 38, 0.15);
  color: var(--accent-red);
  border-color: rgba(220, 38, 38, 0.3);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .sv-section {
    padding: 5rem 3.5rem;
  }
}

@media (max-width: 1024px) {
  .sv-section {
    padding: 5rem 3rem;
  }
}

@media (max-width: 768px) {
  .sv-section {
    padding: 4rem 2.5rem;
  }

  .sv-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .sv-editor-body {
    padding: 1.5rem;
  }

  .sv-script-text {
    font-size: 0.97rem;
  }

  .sv-tags {
    padding: 1rem 1.5rem 1.5rem;
  }

  .sv-editor-bar {
    padding: 0.75rem 1rem;
  }

  .sv-editor-version {
    display: none;
  }
}

@media (max-width: 480px) {
  .sv-section {
    padding: 3rem 1.5rem;
  }

  .sv-header {
    margin-bottom: 2rem;
  }

  .sv-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .sv-editor {
    border-radius: 12px;
  }

  .sv-editor-body {
    padding: 1.25rem;
  }

  .sv-script-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  .sv-tags {
    padding: 0.85rem 1.25rem 1.25rem;
    gap: 0.4rem;
  }

  .sv-tag {
    font-size: 0.68rem;
    padding: 0.2rem 0.5rem;
  }

  .sv-editor-path {
    font-size: 0.62rem;
  }
}

/* ========== Capabilities Section ========== */
.cap-section {
  padding: 6rem 5rem;
  position: relative;
}

.cap-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* ── Header ── */
.cap-header {
  margin-bottom: 3.5rem;
  max-width: 540px;
}

.cap-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.cap-eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--light-gray);
  flex-shrink: 0;
}

.cap-eyebrow-text {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
}

.cap-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.cap-title-accent {
  color: var(--primary-red);
}

.cap-subtitle {
  font-size: 0.97rem;
  color: var(--light-gray);
  line-height: 1.7;
}

/* ── Grid ── */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  overflow: hidden;
}

/* ── Cards ── */
.cap-card {
  padding: 2rem 2rem 2.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.25s ease;
  position: relative;
}

.cap-card:hover {
  background: rgba(220, 38, 38, 0.04);
}

/* Remove right border on last column */
.cap-card:nth-child(3n) {
  border-right: none;
}

/* Remove bottom border on last row */
.cap-card:nth-child(n+4) {
  border-bottom: none;
}

/* ── Card Top Row ── */
.cap-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

/* ── Icon ── */
.cap-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}

.cap-icon svg {
  width: 18px;
  height: 18px;
}

/* ── Number ── */
.cap-number {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 1px;
}

/* ── Text ── */
.cap-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.65rem;
  line-height: 1.3;
}

.cap-card-desc {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.65;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .cap-section {
    padding: 5rem 3.5rem;
  }
}

@media (max-width: 1024px) {
  .cap-section {
    padding: 5rem 3rem;
  }

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

  .cap-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
  }

  .cap-card:nth-child(2n) {
    border-right: none;
  }

  .cap-card:nth-child(n+4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .cap-card:nth-child(n+5) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .cap-section {
    padding: 4rem 2.5rem;
  }

  .cap-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
  }

  .cap-subtitle {
    max-width: 100%;
  }

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

  .cap-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .cap-section {
    padding: 3rem 1.5rem;
  }

  .cap-header {
    margin-bottom: 2.5rem;
  }

  .cap-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
  }

  .cap-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .cap-card:nth-child(2n) {
    border-right: none;
  }

  .cap-card:nth-child(n+5) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

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

  .cap-card {
    padding: 1.5rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
  }

  .cap-card:last-child {
    border-bottom: none !important;
  }
}
/* ========== Stats Section ========== */
.stats-section {
  padding: 4.5rem 5rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
}

.stats-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
  line-height: 1.2;
  flex-shrink: 0;
  max-width: 280px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  flex: 1;
}

.stats-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stats-item:first-child {
  padding-left: 2rem;
}

.stats-item:last-child {
  border-right: none;
}

.stats-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--primary-red);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
}

.stats-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .stats-section {
    padding: 4.5rem 3.5rem;
  }

  .stats-container {
    gap: 3.5rem;
  }
}

@media (max-width: 1024px) {
  .stats-section {
    padding: 4rem 3rem;
  }

  .stats-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    text-align: left;
  }

  .stats-title {
    max-width: 100%;
  }

  .stats-grid {
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
  }

  .stats-item:first-child {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .stats-section {
    padding: 3.5rem 2.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .stats-item {
    padding: 0;
    border-right: none;
  }

  .stats-item:first-child {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 3rem 1.5rem;
  }

  .stats-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .stats-value {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .stats-label {
    font-size: 0.8rem;
  }
}

/* ========== CTA Section ========== */
.cta-section {
  padding: 7rem 5rem;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* subtle red glow behind content */
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(220, 38, 38, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.cta-container {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Pill Badge ── */
.cta-pill {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--light-gray);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 2rem;
  letter-spacing: 0.3px;
  background: rgba(255, 255, 255, 0.04);
}

/* ── Headline ── */
.cta-title {

  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.cta-title-accent {
  color: var(--primary-red);
}

/* ── Subtitle ── */
.cta-subtitle {
  font-size: 1rem;
  color: var(--light-gray);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ── Buttons ── */
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-btn-primary {
  padding: 0.9rem 2rem;
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);

}

.cta-btn-primary:hover {
 
  transform: translateY(-2px);

}

.cta-btn-secondary {
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);

}

.cta-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .cta-section {
    padding: 6rem 3.5rem;
  }
}

@media (max-width: 1024px) {
  .cta-section {
    padding: 6rem 3rem;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 2.5rem;
  }

  .cta-title {
    font-size: clamp(2rem, 6vw, 3rem);
  }

  .cta-subtitle {
    font-size: 0.95rem;
  }

  .cta-subtitle br {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-title {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
}


/* ══════════════════════
   FAQ
══════════════════════ */
.ai-faq-section {
  padding: 80px 20px;
}

.ai-faq-container { 
  max-width: 760px; 
  margin: 0 auto; 
}

.ai-faq-header { 
  text-align: center; 
  margin-bottom: 4rem; 
}

.ai-faq-item { 
  border-bottom: 1px solid rgba(255, 255, 255, 0.07); 
}

.ai-faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  gap: 20px;
}

.ai-faq-question span:first-child {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.3s;
}

.ai-faq-question:hover span:first-child { 
  color: var(--accent-red); 
}

.ai-faq-toggle {
  width: 28px; 
  height: 28px;
  flex-shrink: 0;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-red);
  transition: all 0.3s;
}

.ai-faq-item.open .ai-faq-toggle {
  background: var(--primary-red);
  color: var(--white);
  transform: rotate(45deg);
}

.ai-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 1.1rem;
  color: var(--light-gray);
  line-height: 1.75;
  padding: 0;
}

.ai-faq-item.open .ai-faq-answer { 
  max-height: 200px; 
  padding-bottom: 24px; 
}

.ai-faq-item { 
  border-bottom: 1px solid rgba(255, 255, 255, 0.07); 
}
.ai-faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  color: var(--primary-red);
  transition: all 0.3s;
  user-select: none;
  font-family: Arial, sans-serif;
}