/* =============================================
   TheArc Marketing Site — Stripe-Inspired
   Brand: #4154f1 (primary blue), #012970 (navy)
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}
html, body { overflow-x: clip; }

body {
  font-family: 'Open Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #64748d;
  background: #ffffff;
  line-height: 1.5;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #4154f1;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #3650d4;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', system-ui, sans-serif;
  color: #012970;
  font-weight: 300;
  letter-spacing: -0.02em;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 24px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn-sm {
  font-size: 14px;
  padding: 8px 16px;
}

.btn-lg {
  font-size: 17px;
  padding: 14px 32px;
}

.btn-primary {
  background: #4154f1;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(65, 84, 241, 0.3);
}

.btn-primary:hover {
  background: #3650d4;
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(65, 84, 241, 0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: #ffffff;
  color: #012970;
  border: 1px solid #d6d9fc;
}

.btn-ghost:hover {
  background: #f0f2ff;
  border-color: #b9b9f9;
  color: #4154f1;
}

.btn-outline {
  background: transparent;
  color: #4154f1;
  border: 1px solid #b9b9f9;
}

.btn-outline:hover {
  background: rgba(65, 84, 241, 0.04);
  border-color: #4154f1;
}

/* --- Navigation --- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(229, 237, 245, 0.5);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-brand-text {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  line-height: 1;
  margin-left: 8px;
}
.nav-logo {
  height: 32px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #012970;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #4154f1;
}

.nav-links .btn {
  margin-left: 8px;
}

.nav-links .btn-primary {
  color: #ffffff !important;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: #0b1b3a;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/hero-monitor-bg.jpg") no-repeat center center;
  background-size: cover;
  pointer-events: none;
}

.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 27, 58, 0.82) 0%, rgba(11, 27, 58, 0.45) 45%, rgba(11, 27, 58, 0.05) 70%);
}

.hero-content {
  position: relative;
  max-width: 1200px;
}

.hero-panel {
  max-width: 620px;
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 48px 44px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-panel .hero-subtitle {
  margin: 0 0 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-bottom: 24px;
}

.hero-caption {
  font-size: 13px;
  color: #64748d;
  font-weight: 400;
}

.hero-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -1.4px;
  color: #012970;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.5;
  color: #64748d;
  max-width: 640px;
  margin: 0 auto 36px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
}

.hero-caption {
  font-size: 13px;
  color: #899bbd;
  font-weight: 400;
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.96px;
  line-height: 1.15;
  color: #012970;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: #64748d;
}

/* --- Features Grid --- */
.features-section {
  background: #f6f9ff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 6px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: rgba(1, 41, 112, 0.08) 0px 4px 12px;
}

.feature-card:hover {
  box-shadow:
    rgba(1, 41, 112, 0.25) 0px 20px 30px -20px,
    rgba(0, 0, 0, 0.08) 0px 12px 24px -12px;
  transform: translateY(-2px);
  border-color: #d6d9fc;
}

.feature-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #012970;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #64748d;
}

/* --- Dark Section --- */
.dark-section {
  background: #0a1e4a;
  padding: 120px 0;
}

.dark-content {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.dark-title {
  font-size: 38px;
  font-weight: 300;
  letter-spacing: -0.96px;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.dark-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 60px;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}

/* --- How It Works --- */
.how-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.how-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 440px;
  height: 394px;
  background: url("../img/thearclogo.png") no-repeat center center;
  background-size: contain;
  transform: rotate(180deg);
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.how-section .container {
  position: relative;
  z-index: 1;
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 1280px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-number {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #4154f1;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(65, 84, 241, 0.08);
}

.step h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #012970;
  margin-bottom: 10px;
}

.step p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  color: #64748d;
}

.step-line {
  width: 80px;
  height: 1px;
  background: #e5edf5;
  margin-top: 32px;
  flex-shrink: 0;
}

/* --- How it works: screenshot rows --- */
.how-rows {
  display: flex;
  flex-direction: column;
  gap: 96px;
  max-width: 1100px;
  margin: 0 auto;
}

.how-row {
  display: flex;
  align-items: center;
  gap: 64px;
}

.how-row-reverse {
  flex-direction: row-reverse;
}

.how-text {
  flex: 1;
}

.how-text h3 {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #012970;
  margin-bottom: 12px;
}

.how-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: #64748d;
}

.how-shot {
  flex: 1.2;
  background: #f6f9ff;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 12px;
  box-shadow:
    rgba(1, 41, 112, 0.12) 0px 20px 40px -20px,
    rgba(0, 0, 0, 0.06) 0px 12px 24px -12px;
}

.how-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  background: #ffffff;
}

/* --- Pricing --- */
.pricing-section {
  background: #f6f9ff;
  padding-bottom: 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(1, 41, 112, 0.08) 0px 4px 12px;
  position: relative;
}

.pricing-card-featured {
  border-color: #4154f1;
  box-shadow:
    rgba(1, 41, 112, 0.25) 0px 20px 30px -20px,
    rgba(0, 0, 0, 0.08) 0px 12px 24px -12px;
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #4154f1;
  color: #ffffff;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}

.pricing-name {
  font-size: 16px;
  font-weight: 600;
  color: #012970;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  margin-bottom: 24px;
}

.pricing-per {
  font-size: 13px;
  color: #64748d;
  font-weight: 400;
  margin: -16px 0 20px;
}

.pricing-divider {
  border: none;
  border-top: 1px solid #e5edf5;
  margin: 0 0 8px;
}

.price {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #012970;
  letter-spacing: -0.02em;
}

.period {
  font-size: 16px;
  color: #64748d;
  font-weight: 300;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  font-weight: 300;
  color: #64748d;
  border-bottom: 1px solid #f0f4f8;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: "✓";
  color: #4154f1;
  margin-right: 10px;
  font-weight: 700;
}

.pricing-features li.plus-intro {
  border-bottom: none;
  padding: 14px 0 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #4154f1;
}

.pricing-features li.plus-intro::before {
  content: none;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  margin-left: 5px;
  border-radius: 50%;
  background: #4154f1;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  cursor: help;
  position: relative;
  vertical-align: 1px;
}
.info-icon::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: max-content;
  max-width: 230px;
  padding: 6px 10px;
  border-radius: 6px;
  background: #0a1e4a;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 20;
  box-shadow: 0 6px 16px rgba(10, 30, 74, 0.25);
}
.info-icon:hover::after,
.info-icon:focus-visible::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.pricing-card .btn {
  width: 100%;
  text-align: center;
}

/* --- CTA --- */
.cta-section {
  background: #0a1e4a;
  padding: 48px 0 72px;
  text-align: center;
}

.cta-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: -0.64px;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-desc {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-actions .btn {
  min-width: 180px;
}

.cta-section .btn-primary {
  background: #ffffff;
  color: #012970;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-section .btn-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-section .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.cta-section .btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.cta-section .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.cta-section .btn-primary:hover {
  background: #f0f4ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* --- Footer --- */
.footer {
  background: #ffffff;
  border-top: 1px solid #e5edf5;
  padding: 64px 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-text {
  font-family: 'Nunito', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #012970;
  line-height: 1;
}
.footer-logo {
  height: 26px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: #64748d;
}

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

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: #012970;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #64748d;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #4154f1;
}

.footer-bottom {
  border-top: 1px solid #e5edf5;
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  font-weight: 300;
  color: #899bbd;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-panel {
    margin: 0 auto;
    text-align: center;
  }

  .hero-panel .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-cta {
    justify-content: center;
  }

  .stats-row {
    gap: 40px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
  }

  .hero-panel {
    padding: 32px 24px;
  }

  .hero-title {
    font-size: 34px;
    letter-spacing: -0.64px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 16px;
  }

  .features-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-line {
    width: 1px;
    height: 32px;
    margin: 0 auto;
  }

  .how-rows {
    gap: 64px;
  }

  .how-row,
  .how-row-reverse {
    flex-direction: column;
    gap: 32px;
  }

  .how-text {
    text-align: center;
  }

  .how-shot {
    width: 100%;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }


  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

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

  .cta-section {
    padding: 40px 0 56px;
  }

  .cta-title {
    font-size: 28px;
  }
}

@media (max-width: 640px) {
  .pricing-card-featured {
    transform: none;
  }

  .container {
    padding: 0 16px;
  }
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  padding: 0;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #012970;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    padding: 80px 24px 24px;
    gap: 8px;
    transition: right 0.3s ease, visibility 0s linear 0.3s;
    z-index: 150;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    visibility: hidden;
  }
  .nav-links.open {
    right: 0;
    visibility: visible;
    transition: right 0.3s ease;
  }
  .nav-links a:not(.btn) {
    padding: 12px 0;
    font-size: 16px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }
  .nav-links .btn {
    display: none;
  }
  .nav-cta-mobile {
    display: inline-flex !important;
  }
}


.hero-target {
  display: inline-block;
  width: 380px;
  text-align: center;
}
.rotating-text {
  color: #4154f1;
  display: inline-block;
  position: relative;
  width: 200px;
  text-align: left;
  white-space: nowrap;
  transition: opacity 0.4s ease;
}
.rotating-word {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease;
  position: absolute;
  left: 0;
  white-space: nowrap;
}
.rotating-word.active {
  opacity: 1;
  position: relative;
}
/* --- Lightbox modal --- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 34, 0.88);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
  padding: 32px;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 95vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  background: #ffffff;
  cursor: default;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1001;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* --- Video modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 14, 34, 0.88);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  padding: 32px;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
}

.video-modal-frame {
  position: relative;
  width: min(960px, 95vw);
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.video-modal.open .video-modal-frame {
  transform: scale(1);
}

.video-modal-player {
  width: 100%;
  height: 100%;
  display: block;
}

.video-modal-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  background: radial-gradient(circle at center, rgba(16, 32, 74, 0.6), rgba(6, 14, 34, 0.9));
}

.video-modal-placeholder.show {
  display: flex;
}

.video-modal-placeholder p {
  margin: 0;
  opacity: 0.85;
}

.video-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
  z-index: 1001;
}

.video-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* --- Billing toggle --- */
.billing-toggle {
  display: flex;
  width: fit-content;
  margin: 0 auto 36px;
  gap: 4px;
  background: #eef2f9;
  border: 1px solid #e5edf5;
  border-radius: 999px;
  padding: 4px;
}

.billing-toggle-btn {
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #64748d;
  background: transparent;
  border: none;
  border-radius: 999px;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.billing-toggle-btn.is-active {
  background: #4154f1;
  color: #ffffff;
}

.billing-toggle-save {
  margin-left: 6px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.22);
  padding: 2px 8px;
  border-radius: 999px;
}

.pricing-section[data-billing="annual"] .price-monthly {
  display: none;
}

.pricing-section[data-billing="monthly"] .price-annual,
.pricing-section[data-billing="monthly"] .pricing-save {
  display: none;
}

.pricing-save {
  display: inline-block;
  margin-top: 10px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 999px;
  padding: 4px 12px;
}

.coming-soon {
  display: inline-block;
  margin-left: 6px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #4154f1;
  background: #eef1ff;
  border: 1px solid #d5dbff;
  border-radius: 999px;
  padding: 2px 8px;
  vertical-align: middle;
}

.pricing-trial {
  margin: 44px 0 0;
  border-radius: 16px;
  padding: 48px 32px;
  text-align: center;
  background: linear-gradient(135deg, #4154f1 0%, #012970 100%);
  color: #ffffff;
}

.pricing-trial-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.pricing-trial-title {
  color: #ffffff;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}

.pricing-trial-text {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  margin: 0 auto 26px;
}

.pricing-trial-btn {
  display: inline-block;
  background: #ffffff;
  color: #012970;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  padding: 14px 36px;
  border-radius: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, color 0.15s ease;
}

.pricing-trial-btn:hover {
  color: #4154f1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.pricing-whitelabel {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px auto 0;
  max-width: 560px;
  padding: 18px 22px;
  background: #eef1ff;
  border: 1px solid #d5dbff;
  border-radius: 12px;
  text-align: left;
}

.pricing-whitelabel-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #4154f1;
  color: #ffffff;
}

.pricing-whitelabel-body {
  flex: 1 1 auto;
  min-width: 0;
}

.pricing-whitelabel-title {
  display: block;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #012970;
  line-height: 1.3;
}

.pricing-whitelabel-sub {
  display: block;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 14px;
  color: #4a5a75;
  margin-top: 2px;
}

.pricing-whitelabel-btn {
  flex: 0 0 auto;
  display: inline-block;
  background: #4154f1;
  color: #ffffff;
  font-family: 'Nunito', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pricing-whitelabel-btn:hover {
  background: #012970;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(65, 84, 241, 0.3);
}

@media (max-width: 640px) {
  .pricing-whitelabel {
    flex-direction: column;
    text-align: center;
    padding: 24px 20px;
  }
  .pricing-whitelabel-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .pricing-trial {
    padding: 40px 20px;
  }
  .pricing-trial-title {
    font-size: 24px;
  }
}
