/* ══════════════════════════════════════════
   HOME — Index Page Styles
   ══════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  position: relative;
  text-align: center;
  padding: 90px 24px 60px;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 30%, rgba(245,110,15,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  margin-bottom: 8px;
  animation: fadeUp .7s .1s ease both;
  position: relative;
  z-index: 1;
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--black);
  margin-left: -8px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar:nth-child(2) { background: #c45a0a; }
.hero-avatar:nth-child(3) { background: #9e4a08; }
.hero-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-trust-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.hero-stars svg {
  width: 14px; height: 14px;
  color: #facc15;
}
.hero-rating {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-left: 4px;
}
.hero-trust-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  color: var(--muted);
  white-space: nowrap;
}

.hero-eyebrow {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: fadeUp .6s ease both;
}

.hero h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 1060px;
  margin: 0 auto 22px;
  animation: fadeUp .65s .1s ease both;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 48px;
  animation: fadeUp .65s .2s ease both;
}

/* ── MEDIA GRID ── */
.media-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto 48px;
  padding: 0 24px;
  animation: fadeUp .7s .3s ease both;
}

.media-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(245,110,15,.14);
}
.media-card video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.media-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.4) 50%, rgba(0,0,0,.35) 100%);
  z-index: 1;
  pointer-events: none;
}
.card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(245,110,15,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.card-play svg { width: 20px; height: 20px; margin-left: 2px; }
.media-card:hover .card-play { opacity: 1; }
.media-card .card-label {
  position: absolute; bottom: 14px; right: 14px;
  display: flex; align-items: center; gap: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .02em;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  z-index: 2;
}
.media-card .card-label svg,
.media-card .card-label img {
  width: 20px; height: 20px;
  flex-shrink: 0;
}

/* ── REEL LIGHTBOX ── */
.reel-lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
}
.reel-lightbox.active {
  display: flex;
}
.reel-lightbox-inner {
  width: 100%;
  max-width: 400px;
  max-height: 90vh;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.reel-lightbox-inner.ratio-4-5 {
  max-width: 500px;
  aspect-ratio: 4 / 5;
}
.reel-lightbox-inner video {
  width: 100%; height: 100%;
  object-fit: cover;
  background: #000;
}
.reel-lightbox-actions {
  position: absolute;
  top: 20px; right: 24px;
  display: flex;
  gap: 10px;
  z-index: 10001;
}
.reel-ig-link,
.reel-close {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
}
.reel-ig-link:hover,
.reel-close:hover { background: rgba(255,255,255,.2); }
.reel-ig-link svg,
.reel-close svg { width: 20px; height: 20px; }

/* ── HERO ACTIONS ── */
.hero-actions {
  display: flex; justify-content: center;
  margin-bottom: 70px;
  animation: fadeUp .7s .4s ease both;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--orange);
  height: 64px;
  overflow: hidden;
}
.trust-marquee-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 60px, black calc(100% - 60px), transparent);
}
.trust-marquee {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.trust-bar:hover .trust-marquee {
  animation-play-state: paused;
}
.trust-marquee .brand {
  display: flex; align-items: center;
  flex-shrink: 0;
  margin-right: 56px;
}
.trust-marquee .brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* ── BENEFITS ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .3s, transform .3s;
}
.benefit-card:hover {
  border-color: rgba(245,110,15,.45);
  transform: translateY(-4px);
}

.benefit-icon {
  width: 44px; height: 44px;
  background: rgba(245,110,15,.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.benefit-icon svg { width: 20px; height: 20px; stroke: var(--orange); fill: none; stroke-width: 2; }

.benefit-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.benefit-card p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.65;
}

/* ── CASE STUDIES ── */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .3s, transform .3s;
}
.case-card:hover { border-color: rgba(245,110,15,.45); transform: translateY(-4px); }

.case-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-stat {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -.04em;
}
.case-card p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonial-track-wrap {
  overflow: hidden;
  margin: 0 -12px;
  --tcard-w: 360px;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  padding: 12px 12px 20px;
}

.testimonial-card {
  flex: 0 0 var(--tcard-w);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0 0 24px;
  overflow: hidden;
}

.tcard-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, rgba(245,110,15,.12) 0%, rgba(245,110,15,.22) 100%);
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
}
.tcard-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(.65);
}
.tcard-media .card-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  background: rgba(245,110,15,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s;
  z-index: 2;
}
.tcard-media .card-play svg { width: 20px; height: 20px; margin-left: 2px; }
.testimonial-card:hover .tcard-media .card-play { opacity: 1; }

.tcard-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0 22px;
  margin-bottom: 2px;
}
.tcard-role {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--orange);
  padding: 0 22px;
  margin-bottom: 14px;
  letter-spacing: .04em;
}
.tcard-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
  padding: 0 22px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.tctrl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.tctrl-btn svg { width: 18px; height: 18px; }
.tctrl-btn:hover { border-color: var(--orange); background: rgba(245,110,15,.1); }

/* ── CASE STUDIES DETAIL ── */
.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cs-card {
  background: #1a1108;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.cs-card img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

/* ── Image Lightbox ── */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.img-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.img-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  transform: scale(.92);
  transition: transform .3s;
}
.img-lightbox.active .img-lightbox-img {
  transform: scale(1);
}
.img-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  opacity: .7;
  transition: opacity .2s;
}
.img-lightbox-close:hover { opacity: 1; }
.cs-card:hover { border-color: rgba(245,110,15,.45); transform: translateY(-4px); }

.cs-chart {
  background: #111;
  padding: 16px 14px 10px;
  border-bottom: 1px solid var(--border);
}

.cs-chart-inner {
  position: relative;
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 10px;
}

.cs-chart-bar {
  flex: 1;
  height: var(--h);
  background: rgba(245,110,15,.18);
  border-radius: 2px 2px 0 0;
}

.cs-line {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.cs-stats {
  display: flex;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
}
.cs-stats span { flex: 1; }

.cs-title {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 18px 18px 8px;
  color: var(--white);
}
.cs-body {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0 18px 20px;
}

/* ── COMPARISON TABLE ── */
.comp-table-wrap {
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.comp-table thead tr {
  background: #1a1108;
}
.comp-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
}
.comp-table thead th:nth-child(2),
.comp-table thead th:nth-child(3) {
  text-align: center;
  width: 110px;
}

.comp-table tbody tr {
  border-top: 1px solid var(--border);
  transition: background .2s;
}
.comp-table tbody tr:nth-child(odd)  { background: rgba(255,255,255,.02); }
.comp-table tbody tr:nth-child(even) { background: rgba(255,255,255,.04); }
.comp-table tbody tr:hover { background: rgba(245,110,15,.06); }

.comp-table td {
  padding: 16px 24px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem;
  font-weight: 500;
}
.comp-table td:nth-child(2),
.comp-table td:nth-child(3) { text-align: center; }

.comp-check {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
}
.comp-check.yes {
  background: var(--orange);
}
.comp-check.yes::after {
  content: '';
  width: 12px; height: 12px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.comp-check.no {
  background: rgba(255,255,255,.1);
}
.comp-check.no::after {
  content: '';
  width: 10px; height: 10px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 2l6 6M8 2l-6 6' stroke='rgba(255,255,255,.35)' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── OUR SYSTEM TIMELINE ── */
.system-section {
  padding: 100px 48px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}
.system-section .section-tag { margin-bottom: 14px; }
.system-section h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  letter-spacing: -.03em;
  margin-bottom: 70px;
}

.timeline {
  position: relative;
}

/* Static dim track */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: rgba(245,110,15,.12);
  transform: translateX(-50%);
  pointer-events: none;
}
/* Glowing fill that grows on scroll */
.timeline::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: var(--tl-fill, 0%);
  background: linear-gradient(to bottom, var(--orange), rgba(245,110,15,.6));
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 8px rgba(245,110,15,.5), 0 0 20px rgba(245,110,15,.2);
  border-radius: 2px;
  z-index: 1;
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 32px;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-dot {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(245,110,15,.3);
  box-shadow: 0 0 0 5px rgba(245,110,15,.1);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  transition: background .4s ease, box-shadow .4s ease;
}
.tl-dot.glowing {
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(245,110,15,.25), 0 0 12px rgba(245,110,15,.5);
}

.tl-item.left  .tl-card { grid-column: 1; grid-row: 1; margin-right: 20px; }
.tl-item.right .tl-card { grid-column: 3; grid-row: 1; margin-left: 20px; }

.tl-item.left  .tl-empty { grid-column: 3; grid-row: 1; }
.tl-item.right .tl-empty { grid-column: 1; grid-row: 1; }

.tl-card {
  background: #161209;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 28px;
  text-align: left;
  transition: border-color .3s, transform .3s;
}
.tl-card:hover {
  border-color: rgba(245,110,15,.5);
  transform: translateY(-3px);
}

.tl-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.timeline-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.tl-icon {
  width: 42px; height: 42px;
  flex-shrink: 0;
  background: rgba(245,110,15,.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.tl-icon svg {
  width: 18px; height: 18px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tl-step {
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 2px;
}
.tl-card h3 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.01em;
}
.tl-card p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem;
  line-height: 1.65;
  margin-top: 2px;
}

/* ── PLANS ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.plan-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  transition: border-color .3s;
}
.plan-card.featured {
  border-color: var(--orange);
  position: relative;
}
.plan-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 8px 8px;
}

.plan-name {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.plan-tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 28px;
  font-style: italic;
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.plan-features li {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.5;
}
.plan-features li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='7.5' stroke='%23f56e0f' stroke-opacity='.5'/%3E%3Cpath d='M5 8l2 2 4-4' stroke='%23f56e0f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.btn-plan {
  display: block; width: 100%; text-align: center;
  padding: 14px;
  border-radius: 50px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: .2s;
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
}
.btn-plan:hover { border-color: var(--orange); background: rgba(245,110,15,.08); }
.plan-card.featured .btn-plan { background: var(--orange); border-color: var(--orange); color: #fff; }
.plan-card.featured .btn-plan:hover { background: var(--orange2); }

/* ── CTA BANNER ── */
.cta-banner {
  max-width: 1184px;
  margin: 0 auto 100px;
  background: linear-gradient(135deg, #1f1008 0%, #2a1408 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 70px 60px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,110,15,.2) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.cta-banner h2 em { font-style: normal; color: var(--orange); }
.cta-banner p {
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-banner .btn-cta { display: inline-block; font-size: 1rem; padding: 14px 36px; position: relative; }

/* ══════════════════════════════════════════
   RESPONSIVE — Home Page
   ══════════════════════════════════════════ */

@media (max-width: 1440px) {
  .media-grid { max-width: 1200px; }
}

@media (max-width: 1279px) {
  .media-grid { grid-template-columns: repeat(4, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-track-wrap { --tcard-w: 300px; }
  .system-section { padding: 80px 32px; }
  .cta-banner { margin: 0 32px 80px; padding: 56px 48px; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 20px 40px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 20px; }
  .media-card .card-label { font-size: .8rem; bottom: 8px; right: 8px; }
  .media-card .card-label svg,
  .media-card .card-label img { width: 14px; height: 14px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .case-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }

  .system-section { padding: 60px 20px; }
  .cta-banner { margin: 0 20px 60px; padding: 48px 28px; }
  .trust-bar { padding: 0 20px; }

  /* Timeline mobile */
  .timeline::before,
  .timeline::after {
    left: 14px;
    transform: translateX(-50%);
  }
  .tl-item {
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto;
    margin-bottom: 24px;
  }
  .tl-item.left  .tl-dot,
  .tl-item.right .tl-dot  { grid-column: 1; grid-row: 1; justify-self: center; }
  .tl-item.left  .tl-card,
  .tl-item.right .tl-card { grid-column: 2; grid-row: 1; margin-left: 16px; margin-right: 0; }
  .tl-item.left  .tl-empty,
  .tl-item.right .tl-empty { display: none; }

  /* Testimonials */
  .testimonial-track-wrap { --tcard-w: calc(100vw - 60px); }

  /* Table */
  .comp-table td, .comp-table th { padding: 14px 16px; }
  .comp-table thead th:nth-child(2),
  .comp-table thead th:nth-child(3) { width: 80px; }
}

@media (max-width: 568px) {
  .hero h1 { font-size: 2.2rem; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .case-stat { font-size: 2.4rem; }
  .comp-table { font-size: .78rem; }
  .comp-table td, .comp-table th { padding: 12px 12px; }

  .plan-name { font-size: 1.1rem; }
  .plan-tagline { font-size: .92rem; }
  .plan-features li { font-size: .92rem; }
}

@media (max-width: 320px) {
  .hero h1 { font-size: 1.85rem; }
  .media-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cta-banner { padding: 36px 20px; }
  .cta-banner h2 { font-size: 1.6rem; }

  .plan-name { font-size: 1rem; }
  .plan-features li { font-size: .85rem; }
}
