/* ============================================
   Qolivera — Home Page Styles
   ============================================ */

/* =====================================================
   HERO — Video Background (Toplax-inspired, RTL)
   ===================================================*/

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  overflow: hidden;
}

/* ---- Video ---- */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
/* Fallback dark bg when video not loaded */
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #06101e;
  z-index: -1;
}

/* ---- Gradient overlay ---- */
/* RTL: content on right → darker on right, lighter on left */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      to left,
      rgba(4, 10, 22, 0.92) 0%,
      rgba(4, 10, 22, 0.78) 40%,
      rgba(4, 10, 22, 0.35) 75%,
      rgba(4, 10, 22, 0.10) 100%
    ),
    linear-gradient(to top, rgba(4,10,22,0.95) 0%, transparent 30%);
}

/* ---- Content wrap ---- */
.hero-body-wrap {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 660px;
  padding-block: 72px;
}

/* ---- Label ---- */
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 22px;
  border: 1px solid rgba(232,118,26,0.35);
  padding: 7px 14px;
  border-radius: 100px;
  background: rgba(232,118,26,0.08);
}
.hero-label svg {
  flex-shrink: 0;
  opacity: 0.9;
}

/* ---- Heading ---- */
.hero-h1 {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin: 0 0 20px 0;
  letter-spacing: -0.5px;
}
.h1-accent {
  display: block;
  color: var(--orange);
}

/* ---- Divider ---- */
.hero-divider {
  width: 48px;
  height: 3px;
  background: var(--orange);
  margin-bottom: 22px;
  border-radius: 2px;
}

/* ---- Description ---- */
.hero-desc {
  font-family: 'Cairo', sans-serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 2;
  max-width: 520px;
  margin-bottom: 40px;
}

/* ---- CTAs ---- */
.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Toplax-style split button */
.btn-hero {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.bh-text {
  background: var(--white);
  color: var(--navy);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 28px;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}
.btn-hero:hover .bh-text {
  background: #f0ede8;
}
.bh-icon {
  background: var(--orange);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}
.btn-hero:hover .bh-icon {
  background: var(--orange-hover);
  transform: translate(2px, -2px);
}

/* Ghost CTA — outlined button */
.btn-hero-ghost {
  font-family: 'Cairo', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: color 0.3s ease, border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.btn-hero-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}
.btn-hero-ghost--sm {
  font-size: 0.82rem;
  padding: 11px 20px;
}

/* ---- Features bar ---- */
.hero-features {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  background: rgba(11, 31, 58, 0.82);
  border-top: 1px solid rgba(232,118,26,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.hf-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 24px;
  font-family: 'Cairo', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  transition: background var(--transition);
}
.hf-item:hover {
  background: rgba(255,255,255,0.04);
}
.hf-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}
.hf-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin-block: 16px;
}

@media (max-width: 768px) {
  .hero-features { flex-direction: column; }
  .hf-divider    { width: 100%; height: 1px; margin: 0; }
  .hf-item       { justify-content: flex-start; padding: 16px 24px; }
}

/* ---- Ticker ---- */
.hero-ticker {
  position: relative;
  z-index: 2;
  background: var(--navy);
  border-top: 1px solid rgba(232,118,26,0.18);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  direction: ltr;
}
.hero-ticker-track {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  animation: hticker 32s linear infinite;
  font-family: 'Cairo', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ti-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: rtl; /* icon hugs the text on the right, like the rest of the RTL site */
}
.hero-ticker-track .ti {
  color: var(--orange);
}
.hero-ticker-track .ti-sep {
  color: rgba(232, 118, 26, 0.45);
}
@keyframes hticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-content  { padding-block: 56px; }
  .hero-h1       { font-size: clamp(2.4rem, 8vw, 3.4rem); letter-spacing: 0; }
  .hero-desc     { font-size: 0.97rem; }
  .hero-overlay  {
    background: linear-gradient(
      to top,
      rgba(4,10,22,0.97) 0%,
      rgba(4,10,22,0.72) 100%
    );
  }
}
@media (max-width: 480px) {
  .hero-cta-wrap { flex-direction: column; align-items: flex-start; }
  .btn-hero { width: 100%; }
  .bh-text  { flex: 1; text-align: center; }
  .hero-label { font-size: 0.65rem; }
}

/* ---- STATS BAR ----------------------------------- */
.stats-bar {
  background: var(--navy);
  border-top: 3px solid var(--orange);
  position: relative;
}

.sb-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: stretch;
}

.sb-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 6px;
  position: relative;
  transition: background 0.3s ease;
}
.sb-col:hover {
  background: rgba(255,255,255,0.03);
}

.sb-eyebrow {
  font-family: 'Cairo', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  opacity: 0.75;
}

.sb-num {
  font-family: 'Cairo', sans-serif;
  font-size: clamp(2.8rem, 4.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
}
.sb-num--text {
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: 4px;
  color: var(--orange);
}

.sb-label {
  font-family: 'Cairo', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

.sb-sep {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin-block: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .sb-inner { flex-wrap: wrap; }
  .sb-col   { flex: 0 0 50%; padding: 36px 16px; }
  .sb-sep   { display: none; }
  .sb-col:nth-child(odd) { border-left: 1px solid rgba(255,255,255,0.06); }
  .sb-col:nth-child(1),
  .sb-col:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 400px) {
  .sb-col { flex: 0 0 100%; }
  .sb-col:nth-child(odd) { border-left: none; }
}

/* ---- SERVICES PREVIEW ---------------------------- */
.services-preview {
  background: var(--white);
}

/* btn-hero small size */
.btn-hero--sm .bh-text {
  font-size: 0.82rem;
  padding: 11px 20px;
}
.btn-hero--sm .bh-icon {
  font-size: 0.9rem;
  padding: 11px 14px;
}

/* section-tag pill on dark bg */
.sp-tag-pill {
  display: inline-block;
  background: rgba(232,118,26,0.12);
  color: var(--orange) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232,118,26,0.3);
}

/* Header strip */
.sp-header {
  background: var(--navy);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.sp-header::after {
  content: 'SERVICES';
  position: absolute;
  font-family: var(--font-brand);
  font-size: 160px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}
.sp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Cards grid — full bleed, 4-col */
.sp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: none;
}

.sp-card {
  padding: 48px 36px 40px;
  background: var(--white);
  border-right: 1px solid var(--border);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: background 0.35s ease;
}
.sp-card:first-child { border-right: none; }

/* Orange stripe that grows on hover */
.sp-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.sp-card:hover::before { transform: scaleX(1); }
.sp-card:hover { background: #fafaf9; }

/* Large ghost index number */
.sp-card::after {
  content: attr(data-index);
  position: absolute;
  bottom: -10px;
  left: 20px;
  font-family: var(--font-brand);
  font-size: 100px;
  font-weight: 700;
  color: rgba(11,31,58,0.04);
  line-height: 1;
  pointer-events: none;
  transition: color 0.35s ease;
}
.sp-card:hover::after { color: rgba(232,118,26,0.06); }

/* Top row: icon + arrow */
.sp-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 28px;
}
.sp-icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background 0.35s ease, transform 0.35s ease;
}
.sp-card:hover .sp-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-6deg);
}
.sp-arrow {
  font-size: 1.2rem;
  color: rgba(11,31,58,0.15);
  transition: color 0.3s ease, transform 0.3s ease;
  line-height: 1;
  margin-top: 4px;
}
.sp-card:hover .sp-arrow {
  color: var(--orange);
  transform: translate(3px, -3px);
}

.sp-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.sp-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.85;
}

/* Orange bottom line that animates */
.sp-line {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease 0.05s;
}
.sp-card:hover .sp-line { transform: scaleX(1); }

/* Accent card (last) — slightly different */
.sp-card--accent {
  background: var(--off-white);
}
.sp-card--accent:hover { background: #f0ede8; }

@media (max-width: 992px) {
  .sp-cards { grid-template-columns: repeat(2, 1fr); }
  .sp-card:nth-child(odd) { border-right: none; }
  .sp-card { border-bottom: 1px solid var(--border); }
  .sp-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 576px) {
  .sp-header-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .sp-cards { grid-template-columns: 1fr; }
  .sp-card { border-right: none; border-bottom: 1px solid var(--border); }
  .sp-card:last-child { border-bottom: none; }
  .sp-card { padding: 36px 24px; }
}

/* ---- ABOUT TEASER -------------------------------- */
.about-teaser {
  background: var(--white);
}
.at-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* section-tag pill variant (used outside .section-header) */
.at-text-col .section-tag {
  display: inline-block;
  background: rgba(232,118,26,0.1);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(232,118,26,0.25);
  margin-bottom: 20px;
}

/* --- Image Column --- */
.at-img-col {
  position: relative;
}
.at-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 7/8;
  box-shadow: 0 24px 64px rgba(11,31,58,0.15);
}
.at-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.at-img-main:hover img { transform: scale(1.03); }

/* Floating stat card */
.at-float-card {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--navy);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 12px 40px rgba(11,31,58,0.25);
  border-top: 3px solid var(--orange);
}
.at-float-num {
  font-family: 'Cairo', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.at-float-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Vision badge */
.at-vision-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.at-vb-year {
  font-family: 'Cairo', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.at-vb-text {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --- Text Column --- */
.at-text-col h2 {
  margin-bottom: 16px;
  line-height: 1.25;
}
.at-p {
  color: var(--gray);
  font-size: 0.97rem;
  line-height: 2;
  margin-bottom: 36px;
}

/* Feature rows */
.at-features {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.at-feat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s ease;
}
.at-feat:last-child { border-bottom: none; }
.at-feat:hover { background: var(--off-white); }
.at-feat-icon {
  width: 42px;
  height: 42px;
  background: rgba(232,118,26,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.at-feat div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.at-feat strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
}
.at-feat span {
  font-size: 0.82rem;
  color: var(--gray);
}

/* btn-hero light variant — for white/off-white sections */
.btn-hero-light .bh-text {
  background: var(--navy);
  color: var(--white);
}
.btn-hero-light:hover .bh-text {
  background: #142d52;
}

@media (max-width: 992px) {
  .at-wrap { grid-template-columns: 1fr; gap: 64px; }
  .at-img-main { aspect-ratio: 16/9; }
  .at-float-card { bottom: -20px; right: 16px; }
  .at-vision-badge { top: -16px; right: 16px; }
}
@media (max-width: 576px) {
  .at-float-card { padding: 16px 20px; bottom: -16px; right: 12px; }
  .at-float-num { font-size: 2rem; }
}

/* ---- WHY CHOOSE US — Bento Grid ----------------- */
.why-us {
  background: var(--off-white);
  padding: var(--section-py) 0;
}

.wu-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

/* Base card */
.wu-b {
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wu-b:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11,31,58,0.1);
}

/* Hero card: spans 1 col, 2 rows */
.wu-b--hero {
  grid-row: 1 / 3;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* pill override on dark bg */
.wu-b--hero .sp-tag-pill {
  background: rgba(232,118,26,0.2);
  border-color: rgba(232,118,26,0.45);
  align-self: flex-start;
}
.wu-b--hero h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  line-height: 1.2;
  margin-top: 8px;
}
.wu-b--hero p {
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  line-height: 1.8;
  flex: 1;
}
.wu-b-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: auto;
}
.wu-b-stat-n {
  font-family: 'Cairo', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.wu-b-stat-l {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Light cards */
.wu-b--light {
  background: var(--white);
  border: 1px solid var(--border);
}
.wu-b--light:hover { border-color: rgba(232,118,26,0.3); }

/* Orange accent card */
.wu-b--orange {
  background: var(--orange);
}
.wu-b--orange h4 { color: var(--white) !important; }
.wu-b--orange p  { color: rgba(255,255,255,0.85) !important; }

/* Dark navy card: spans 2 cols */
.wu-b--dark {
  grid-column: 2 / 4;
  background: var(--navy);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.wu-b--dark h4 { color: var(--white) !important; font-size: 1.1rem; }
.wu-b--dark p  { color: rgba(255,255,255,0.65) !important; }
.wu-b--dark > div:not(.wu-b-icon):not([class]) { flex: 1; }
.wu-b-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 12px;
  border-radius: 100px;
}

/* Icon */
.wu-b-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(232,118,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  margin-bottom: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}
.wu-b--light:hover .wu-b-icon {
  background: var(--orange);
  color: var(--white);
  transform: rotate(-6deg);
}
.wu-b-icon--white {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
/* icon on orange card */
.wu-b--orange .wu-b-icon {
  background: rgba(255,255,255,0.2);
  color: var(--white);
}

/* Card typography */
.wu-b h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.wu-b p {
  font-size: 0.86rem;
  color: var(--gray);
  line-height: 1.75;
  margin: 0;
}

/* dark card content layout */
.wu-b--dark { flex-direction: column; padding: 40px 36px; }
.wu-b--dark .wu-b-icon { margin-bottom: 16px; }

@media (max-width: 992px) {
  .wu-bento { grid-template-columns: 1fr 1fr; }
  .wu-b--hero { grid-row: auto; }
  .wu-b--dark { grid-column: auto; }
}
@media (max-width: 576px) {
  .wu-bento { grid-template-columns: 1fr; gap: 12px; }
  .wu-b { padding: 32px 24px; }
}

/* ---- VISION TIMELINE ----------------------------- */
.vision-section {
  background: var(--white);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}

/* Header */
.vs-header {
  margin-bottom: 72px;
}
.vs-header-text .sp-tag-pill { margin-bottom: 16px; display: inline-block; }
.vs-header-text h2 { margin-top: 12px; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.vs-header-desc {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.9;
  max-width: 560px;
}

/* Grid */
.vs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}

.vs-col {
  padding: 48px 40px 0 0;
  position: relative;
}
.vs-col:not(:last-child) {
  border-left: 1px solid var(--border);
  padding-left: 40px;
  margin-left: -1px;
}
.vs-col:first-child { padding-right: 40px; padding-left: 0; border-left: none; }

/* Top: number + active dot */
.vs-col-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.vs-big-num {
  font-family: 'Cairo', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px;
}
.vs-big-num--dim { color: rgba(11,31,58,0.12); }

/* Pulsing dot for active phase */
.vs-active-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(232,118,26,0.15);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(232,118,26,0.15); }
  50%       { box-shadow: 0 0 0 8px rgba(232,118,26,0.05); }
}

/* Orange line under number */
.vs-col-line {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 24px;
}
.vs-col-line--dim { background: rgba(11,31,58,0.1); }

/* Period label */
.vs-period {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 10px;
}
.vs-period--dim { color: var(--gray); opacity: 0.5; }

/* Titles */
.vs-col-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.3;
}
.vs-dim { color: rgba(11,31,58,0.35) !important; }

.vs-col-body p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 992px) {
  .vs-header { grid-template-columns: 1fr; gap: 16px; }
  .vs-grid { grid-template-columns: 1fr; border-top: none; }
  .vs-col { padding: 36px 0 !important; border-left: none !important; border-top: 1px solid var(--border); margin-left: 0; }
}

/* ---- CTA SECTION --------------------------------- */
.cta-section {
  background: var(--orange);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
/* Ghost "Q" watermark */
.cta-section::before {
  content: 'Q';
  position: absolute;
  font-family: var(--font-brand);
  font-size: 320px;
  font-weight: 700;
  color: rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}
.cta-section::after { display: none; }

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
}

/* White accent line */
.cta-topline {
  width: 40px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  margin: 0 auto 20px;
  opacity: 0.5;
}

.cta-eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 14px;
  opacity: 0.75;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-desc {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.85;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}
/* Override btn-hero colors on orange bg */
.cta-section .btn-hero .bh-text {
  background: var(--navy);
  color: var(--white);
}
.cta-section .btn-hero:hover .bh-text {
  background: #142d52;
}
.cta-section .btn-hero .bh-icon {
  background: var(--white);
  color: var(--orange);
}
.cta-section .btn-hero:hover .bh-icon {
  background: #f0ede8;
}
/* Ghost on orange bg */
.cta-section .btn-hero-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: none;
}
.cta-section .btn-hero-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.6);
}

/* Trust contact row */
.cta-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}
.cta-trust-item:hover { color: var(--white); }
.cta-trust-icon {
  color: var(--white);
  opacity: 0.8;
}
.cta-trust-sep {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.1);
}

@media (max-width: 576px) {
  .cta-btns { flex-direction: column; gap: 16px; }
  .cta-btns .btn-hero { width: 100%; }
  .cta-btns .bh-text { flex: 1; text-align: center; }
  .cta-trust { flex-direction: column; gap: 12px; }
  .cta-trust-sep { width: 40px; height: 1px; }
}

/* ---- REVEAL ANIMATION ---------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
