
    :root {
      --bg: #050608;
      --bg-alt: #0b0f16;
      --bg-soft: rgba(12, 19, 32, 0.92);
      --accent: #26d07c;
      --accent-soft: rgba(38, 208, 124, 0.15);
      --accent-strong: #00ff9a;
      --text-main: #f7f7f7;
      --text-muted: #a7afc4;
      --text-soft: #7d8496;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --border-strong: rgba(255, 255, 255, 0.16);
      --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.85);
      --shadow-chip: 0 10px 30px rgba(0, 0, 0, 0.65);
      --font-main: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 12px;
      --radius-pill: 999px;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: var(--font-main);
      background:
        radial-gradient(circle at -10% -10%, #1a2336 0, transparent 45%),
        radial-gradient(circle at 110% 10%, #123528 0, transparent 50%),
        radial-gradient(circle at 50% 120%, #1d1425 0, transparent 55%),
        #050608;
      color: var(--text-main);
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: linear-gradient(
        to bottom,
        rgba(5, 6, 8, 0.93),
        rgba(5, 6, 8, 0.8),
        transparent
      );
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 14px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .nav-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 30% 0, #26d07c 0, #0b8a54 42%, #020306 100%);
      box-shadow: var(--shadow-chip);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 18px;
      letter-spacing: 0.05em;
    }

    .nav-title {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .nav-title span:first-child {
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .nav-title span:last-child {
      font-size: 17px;
      font-weight: 600;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: var(--text-muted);
    }

    .nav-tag {
      padding: 6px 14px;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(5, 6, 8, 0.85);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .nav-tag-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 12px rgba(38, 208, 124, 0.85);
    }

    .btn-nav {
      border-radius: var(--radius-pill);
      border: 1px solid var(--accent);
      background: radial-gradient(circle at 0 0, var(--accent) 0, #0b8a54 40%, #020306 100%);
      color: #020306;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 16px 30px rgba(0, 0, 0, 0.65);
    }

    main {
      flex: 1;
    }

    .section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 40px 20px 60px;
    }

    /* HERO */

    .hero {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
      gap: 32px;
      align-items: center;
      padding-top: 36px;
      padding-bottom: 40px;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 4px 10px;
      border-radius: var(--radius-pill);
      background: rgba(5, 6, 8, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }

    .hero-kicker span {
      font-size: 11px;
      padding: 2px 9px;
      border-radius: 999px;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .hero h1 {
      font-size: 3rem;
      line-height: 1.04;
      letter-spacing: -0.03em;
      margin: 0 0 16px;
    }

    .hero h1 span {
      color: var(--accent-strong);
    }

    .hero-sub {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-muted);
      max-width: 520px;
      margin-bottom: 22px;
    }

    .hero-sub strong {
      color: var(--text-main);
      font-weight: 600;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }

    .btn-primary {
      border-radius: var(--radius-pill);
      border: none;
      background: radial-gradient(circle at 0 0, var(--accent) 0, #0b8a54 40%, #020306 100%);
      color: #020306;
      padding: 11px 22px;
      font-size: 14px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      box-shadow: 0 22px 40px rgba(0, 0, 0, 0.75);
    }

    .btn-secondary {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(5, 6, 8, 0.9);
      color: var(--text-main);
      padding: 11px 18px;
      font-size: 13px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .hero-meta-chip {
      padding: 6px 11px;
      border-radius: var(--radius-pill);
      background: rgba(5, 6, 8, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.06);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-meta-chip strong {
      color: var(--accent);
      font-weight: 600;
    }

    .hero-right {
      position: relative;
    }

    .hero-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: radial-gradient(circle at 0 0, #161b24 0, #050608 70%);
      box-shadow: var(--shadow-soft);
      padding: 18px 18px 20px;
      position: relative;
      overflow: hidden;
    }

    .hero-tagline {
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 6px;
    }

    .hero-stats {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 14px;
    }

    .hero-stats-text h2 {
      margin: 0 0 4px;
      font-size: 20px;
    }

    .hero-stats-text p {
      margin: 0;
      color: var(--text-soft);
      font-size: 13px;
    }

    .hero-avatar-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
    }

    .avatar-stack {
      display: flex;
      align-items: center;
    }

    .avatar-stack img {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      border: 2px solid #050608;
      box-shadow: var(--shadow-chip);
      object-fit: cover;
      margin-left: -7px;
    }

    .avatar-stack img:first-child {
      margin-left: 0;
    }

    .avatar-label {
      font-size: 11px;
      color: var(--text-muted);
    }

    .hero-chip {
      position: absolute;
      right: 10px;
      bottom: 12px;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: rgba(5, 6, 8, 0.9);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 11px;
      color: var(--text-muted);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .hero-chip span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: 0 0 14px rgba(38, 208, 124, 0.9);
    }

    .hero-image {
      margin-top: 14px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.04);
    }

    /* Steps */

    .section-title {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-bottom: 26px;
    }

    .section-kicker {
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .section-title h2 {
      margin: 0;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
    }

    .section-title p {
      margin: 0;
      font-size: 14px;
      color: var(--text-muted);
      max-width: 520px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: rgba(7, 10, 17, 0.96);
      box-shadow: var(--shadow-subtle);
      padding: 18px 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      overflow: hidden;
    }

    .step-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-soft);
    }

    .step-title {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .step-price {
      font-size: 17px;
      font-weight: 700;
      color: var(--accent-strong);
      margin-bottom: 4px;
    }

    .step-badge {
      font-size: 11px;
      color: var(--text-muted);
      padding: 4px 9px;
      border-radius: var(--radius-pill);
      background: rgba(5, 6, 8, 0.8);
      border: 1px solid rgba(255, 255, 255, 0.08);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 6px;
    }

    .step-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .step-list {
      margin: 8px 0 0;
      padding-left: 16px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .step-list li {
      margin: 2px 0;
    }

    .step-footnote {
      font-size: 11px;
      color: var(--text-soft);
      margin-top: 6px;
    }

    .step-accent {
      position: absolute;
      inset: auto -40% 0 auto;
      height: 130%;
      background: radial-gradient(circle at 0 0, var(--accent-soft) 0, transparent 60%);
      opacity: 0.6;
      pointer-events: none;
    }

    .step-card.main-step {
      border-color: rgba(38, 208, 124, 0.55);
      background: linear-gradient(
        135deg,
        rgba(5, 8, 12, 0.98),
        rgba(11, 22, 18, 0.98)
      );
    }

    /* Story */

    .story-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(0, 2.1fr);
      gap: 26px;
      align-items: flex-start;
    }

    .story-card {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: rgba(7, 9, 14, 0.96);
      padding: 20px 18px 18px;
      box-shadow: var(--shadow-subtle);
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .story-card h3 {
      margin-top: 0;
      margin-bottom: 10px;
      font-size: 16px;
    }

    .story-highlight {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(38, 208, 124, 0.45);
      background: rgba(5, 6, 8, 0.9);
      padding: 12px 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 10px;
    }

    .story-highlight strong {
      color: var(--accent);
    }

    .timeline {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-subtle);
      background: rgba(7, 10, 17, 0.96);
      padding: 18px 18px 14px;
      box-shadow: var(--shadow-subtle);
      font-size: 13px;
      color: var(--text-muted);
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 90px minmax(0, 1fr);
      gap: 12px;
      padding: 8px 0;
      border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    }

    .timeline-item:last-child {
      border-bottom: none;
    }

    .timeline-year {
      font-weight: 600;
      color: var(--text-soft);
      font-size: 12px;
    }

    .timeline-body strong {
      color: var(--text-main);
    }

    .founders {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
      font-size: 12px;
      color: var(--text-soft);
    }

    .founder-chip {
      border-radius: var(--radius-pill);
      border: 1px solid rgba(255, 255, 255, 0.12);
      padding: 6px 11px;
      background: rgba(5, 6, 8, 0.9);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .founder-chip span:first-child {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      overflow: hidden;
      background: radial-gradient(circle at 0 0, #ffffff 0, #999 70%);
    }

    .founder-chip small {
      font-size: 11px;
      color: var(--text-muted);
    }

    .link {
      color: var(--accent-strong);
      text-decoration: none;
    }

    .link:hover {
      text-decoration: underline;
    }

    /* CTA */

    .cta {
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-strong);
      background: radial-gradient(circle at 0 0, rgba(38, 208, 124, 0.06) 0, rgba(5, 6, 8, 0.96) 60%);
      padding: 22px 18px 18px;
      box-shadow: var(--shadow-soft);
      display: grid;
      grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.5fr);
      gap: 16px;
      align-items: center;
      margin-top: 14px;
    }

    .cta h3 {
      margin: 0 0 10px;
      font-size: 18px;
    }

    .cta p {
      margin: 0;
      font-size: 13px;
      color: var(--text-muted);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: flex-end;
    }

    .cta-note {
      font-size: 11px;
      color: var(--text-soft);
      margin-top: 4px;
      text-align: right;
    }

    footer {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
      padding: 20px;
      font-size: 11px;
      color: var(--text-soft);
    }

    .footer-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-links a {
      color: var(--text-soft);
      text-decoration: none;
    }

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

    /* Responsive */

    @media (max-width: 960px) {
      .hero {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-right {
        order: -1;
      }
      .steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .story-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .cta {
        grid-template-columns: minmax(0, 1fr);
      }
      .cta-actions {
        justify-content: flex-start;
      }
      .cta-note {
        text-align: left;
      }
    }

    @media (max-width: 640px) {
      .nav {
        padding-inline: 16px;
      }
      .hero {
        padding-top: 24px;
      }
      .hero h1 {
        font-size: 2.2rem;
      }
      .steps-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .section {
        padding-inline: 16px;
      }
      .cta {
        padding-inline: 14px;
      }
    }

    /* Hide Powered by VNV Events on mobile */
        @media (max-width: 640px) {
        .nav-tag {
            display: none !important;
        }
        }

    /* Hide VS logo on mobile */
        @media (max-width: 640px) {
        .nav-logo {
            display: none !important;
        }
        }

        /* SOCIAL SECTION */
.social-wrapper {
  text-align: center;
  padding: 40px 0 70px;
}

.social-title {
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.social-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-card {
  width: 145px;
  padding: 16px 18px;
  border-radius: var(--radius-xl);
  background: rgba(7, 9, 14, 0.92);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
  text-decoration: none;
  color: var(--text-main);
}

.social-icon {
  margin-bottom: 10px;
  color: var(--accent); /* ICON COLOR */
}

.social-card span {
  font-size: 14px;
  font-weight: 600;
}

.social-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
}

/* MOBILE */
@media (max-width: 640px) {
  .social-card {
    width: 120px;
    padding: 14px;
  }
  .social-icon svg {
    width: 30px;
    height: 30px;
  }
}
 

    /* Top Location Bar */
.top-location-bar {
  width: 100%;
  background: rgba(0,0,0,0.65);
  color: #f7f2f1;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  padding: 8px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
  align-items: center;
  position: relative;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.top-location-bar .top-location-icon {
  font-size: 1rem;
  opacity: 0.9;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .top-location-bar {
    font-size: 0.78rem;
    padding: 7px 4px;
  }
}
 

/* =========================
   SERVICES (3 Columns)
========================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-subtle);
  background: rgba(7, 10, 17, 0.96);
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 208, 124, 0.12);
  border: 1px solid rgba(38, 208, 124, 0.22);
  font-size: 18px;
  box-shadow: var(--shadow-chip);
}

.service-card h3 {
  margin: 6px 0 0;
  font-size: 16px;
}

.service-desc {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-bullets {
  margin: 6px 0 0;
  padding-left: 16px;
  font-size: 12px;
  color: var(--text-soft);
}

.service-bullets li {
  margin: 2px 0;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

/* Smaller buttons (reuse your button styles) */
.btn-small {
  padding: 10px 16px !important;
  font-size: 13px !important;
}

/* =========================
   MODAL (Popup Pricing)
========================= */

body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 999;
  backdrop-filter: blur(6px);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: min(980px, 100%);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: radial-gradient(circle at 0 0, rgba(38, 208, 124, 0.08) 0, rgba(5, 6, 8, 0.96) 55%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.modal-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.modal-title {
  margin: 0;
  font-size: 16px;
}

.modal-close {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 6, 8, 0.8);
  color: var(--text-main);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  cursor: pointer;
  font-size: 16px;
}

.modal-body {
  padding: 14px 16px 16px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 17, 0.82);
  padding: 14px 12px;
}

.price-name {
  font-size: 13px;
  color: var(--text-main);
  font-weight: 650;
}

.price-value {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent-strong);
  margin-top: 6px;
}

.price-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-list {
  margin: 10px 0 0;
  padding-left: 16px;
  font-size: 12px;
  color: var(--text-soft);
}

.price-list li {
  margin: 2px 0;
}

.modal-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-muted);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.65);
  padding: 10px 10px;
}

.modal-footer {
  padding: 12px 16px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 960px) {
  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .price-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* =========================
   HERO VIDEO
========================= */

.hero-video {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px 60px;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(38, 208, 124, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(18, 53, 40, 0.35) 0%, transparent 60%),
    linear-gradient(to bottom, rgba(5,6,8,0.55), rgba(5,6,8,0.88));
}

.hero-video-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  text-align: left;
}

.hero-kicker-video {
  background: rgba(5, 6, 8, 0.62);
  backdrop-filter: blur(10px);
}

.hero-video-title {
  margin: 12px 0 12px;
  font-size: 3.2rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-video-title span {
  color: var(--accent-strong);
}

.hero-video-sub {
  margin: 0 0 18px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(247,247,247,0.82);
}

.hero-video-badges {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(5,6,8,0.55);
  backdrop-filter: blur(10px);
  font-size: 12px;
  color: rgba(247,247,247,0.80);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(38, 208, 124, 0.9);
}

@media (max-width: 640px) {
  .hero-video {
    min-height: 72vh;
    padding-top: 58px;
  }
  .hero-video-title {
    font-size: 2.35rem;
  }
}



/* ==========================================
   BUTTON VISUAL UPGRADE (BRIGHTER & PREMIUM)
========================================== */

.btn-primary,
a.btn-primary,
button.btn-primary,
.btn-nav {
  background: linear-gradient(135deg, #26d07c, #00ff9a);
  color: #050608 !important;
  border: none;
  box-shadow:
    0 12px 30px rgba(0, 255, 154, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.5);
  transition: 0.25s ease;
}

.btn-primary:hover,
.btn-nav:hover {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px rgba(0, 255, 154, 0.45),
    0 8px 20px rgba(0, 0, 0, 0.6);
}

/* Secondary buttons — clearer outline */

.btn-secondary,
a.btn-secondary,
button.btn-secondary {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.28);
  color: #ffffff !important;
  transition: 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(38,208,124,0.12);
  border-color: #26d07c;
  color: #26d07c !important;
  transform: translateY(-2px);
}


/* ==========================================
   GLOBAL READABILITY + BUTTONS (SITE-WIDE)
   Paste at the END of style.css
========================================== */

/* 1) Global text scale */
body{
  font-size: 16px;              /* base */
  line-height: 1.7;
}

.section-title p,
.hero-video-sub,
.story-card,
.timeline,
.cta p,
.service-desc,
.modal-note{
  font-size: 15px;
  line-height: 1.75;
}

/* Headings slightly stronger */
.section-title h2{ font-size: 1.85rem; }
.hero-video-title{ font-size: 3.4rem; }
.hero-video-sub{ max-width: 720px; }

/* Nav text a bit bigger */
.nav-right{ font-size: 14px; }
.nav-title span:last-child{ font-size: 18px; }
.nav-title span:first-child{ font-size: 13px; }

/* Lists / bullets everywhere */
.service-bullets,
.step-list,
.price-list{
  font-size: 13.5px;
  line-height: 1.65;
}

.step-desc{ font-size: 14px; }

/* 2) Buttons: bigger + better contrast + stronger hit area */
.btn-primary,
.btn-secondary,
.btn-nav{
  min-height: 46px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: 999px;
}

/* Primary: keep your gradient but ensure readable */
.btn-primary,
.btn-nav{
  color: #04110a; /* darker text for contrast on green */
  text-shadow: 0 1px 0 rgba(255,255,255,0.12);
}

/* Secondary: stronger border + a bit brighter text */
.btn-secondary{
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 6, 8, 0.78);
  color: rgba(247,247,247,0.92);
}

/* Small buttons shouldn't be tiny */
.btn-small{
  min-height: 44px !important;
  padding: 12px 18px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Add hover/active for clarity */
.btn-primary:hover,
.btn-nav:hover{
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.btn-secondary:hover{
  border-color: rgba(38, 208, 124, 0.55);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  transform: translateY(-1px);
}

/* Prevent layout jumps on hover */
.btn-primary,
.btn-secondary,
.btn-nav{
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* 3) Service cards slightly more breathable */
.service-card{
  padding: 20px 18px 18px;
}

.service-card h3{ font-size: 18px; }
.service-desc{ font-size: 15px; }
.service-bullets{ font-size: 14px; }

/* 4) Modal typography scale */
.modal-title{ font-size: 17px; }
.price-name{ font-size: 14px; }
.price-value{ font-size: 20px; }
.price-sub{ font-size: 13px; }
.price-list{ font-size: 13.5px; }

/* 5) Mobile: keep it BIG + tappable */
@media (max-width: 640px){
  body{ font-size: 16px; }

  .hero-video-title{ font-size: 2.55rem; }
  .hero-video-sub{ font-size: 15.5px; }

  .section-title h2{ font-size: 1.55rem; }
  .section-title p{ font-size: 15px; }

  /* Make buttons full width for readability */
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary,
  .service-actions .btn-primary,
  .service-actions .btn-secondary,
  .modal-footer .btn-primary,
  .modal-footer .btn-secondary{
    width: 100%;
    justify-content: center;
  }

  .cta-actions a{
    width: 100%;
    justify-content: center;
  }

  .btn-primary,
  .btn-secondary,
  .btn-nav{
    min-height: 48px;
    font-size: 15px;
    padding: 12px 20px;
  }
}

/* =========================
   FIX: Modal cut off (allow scroll)
========================= */

.modal-overlay{
  align-items: flex-start !important;     /* instead of center */
  overflow-y: auto !important;            /* allow scrolling */
  -webkit-overflow-scrolling: touch;
  padding: 24px 18px !important;          /* breathing room */
}

.modal{
  margin: 0 auto !important;
  max-height: calc(100vh - 48px) !important;  /* fit in viewport */
  display: flex !important;
  flex-direction: column !important;
}

/* Make the middle area scrollable */
.modal-body{
  overflow-y: auto !important;
  -webkit-overflow-scrolling: touch;
  max-height: calc(100vh - 170px) !important; /* header+footer space */
}

/* Keep header/footer visible */
.modal-header,
.modal-footer{
  flex: 0 0 auto !important;
}

/* Mobile: tighter heights */
@media (max-width: 640px){
  .modal-overlay{
    padding: 14px 12px !important;
  }
  .modal{
    max-height: calc(100vh - 28px) !important;
  }
  .modal-body{
    max-height: calc(100vh - 160px) !important;
  }
}


/* =========================
   MODAL TYPOGRAPHY UPGRADE
========================= */

.modal-title{
  font-size: 20px !important;
  font-weight: 700 !important;
}

.modal-kicker{
  font-size: 12px !important;
  letter-spacing: 0.18em !important;
}

.price-name{
  font-size: 16px !important;
  font-weight: 700 !important;
}

.price-value{
  font-size: 24px !important;
  font-weight: 800 !important;
}

.price-sub{
  font-size: 14px !important;
  margin-top: 6px !important;
}

.price-list{
  font-size: 14px !important;
  line-height: 1.7 !important;
}

.price-list li{
  margin: 4px 0 !important;
}

.modal-note{
  font-size: 14px !important;
  line-height: 1.6 !important;
}


.nav-logo {
  height: 44px;
  display: flex;
  align-items: center;
}

.nav-logo img{
  height: 44px;
  width: auto;
  object-fit: contain;
}

/* =========================
   FAQ (CATEGORIES + NESTED)
========================= */

.faq-cats{
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Category container */
.faq-cat{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,10,17,0.92);
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-cat:hover{
  border-color: rgba(38,208,124,0.45);
}

.faq-cat > summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  position: relative;
}

.faq-cat > summary::-webkit-details-marker{ display:none; }

.faq-cat-left{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.faq-cat-icon{
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(38,208,124,0.12);
  border: 1px solid rgba(38,208,124,0.22);
  box-shadow: var(--shadow-chip);
  font-size: 16px;
}

.faq-cat-title{
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.faq-cat-meta{
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 52%;
}

/* Category caret */
.faq-cat > summary::after{
  content: "+";
  font-size: 22px;
  color: var(--accent);
  flex: 0 0 auto;
  transition: 0.2s ease;
}

.faq-cat[open] > summary::after{
  content: "–";
  transform: rotate(180deg);
}

.faq-cat-body{
  padding: 0 18px 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(5,6,8,0.35);
}

/* Nested items */
.faq-item{
  margin-top: 10px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(7,10,17,0.82);
  padding: 12px 14px;
}

.faq-item summary{
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  position: relative;
  padding-right: 24px;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: -1px;
  font-size: 18px;
  color: rgba(38,208,124,0.9);
  transition: 0.2s ease;
}

.faq-item[open] summary::after{
  content: "–";
  transform: rotate(180deg);
}

.faq-content{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Mobile */
@media (max-width:640px){
  .faq-cat-meta{
    display:none;
  }
  .faq-cat-title{
    font-size: 15px;
  }
  .faq-content{
    font-size: 13px;
  }
}
