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

:root {
  --black:   #0A0A0A;
  --dark:    #111111;
  --card:    #1A1A1A;
  --border:  #2A2A2A;
  --white:   #FFFFFF;
  --off:     #767676;
  --dim:     #9e9e9e;
  --blue:   #457ef9;
  --blue-d: #0e1d3c;
  --blue-d-hover: #be8a38;
  --green:   #22C55E;
  --yellow: #f9b345;
  --yellow-hover: #f9b345;
  --display: "Roboto", sans-serif;
  --body:    "Roboto", sans-serif;
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--black); font-family: var(--body); font-size: 16px; line-height: 1.6; }

/* ── NAVBAR ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgb(14 29 60);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 10px 32px;
  display: flex; align-items: center; justify-content: space-between;
  line-height: initial;
  /*height: 64px;*/
}
.nav-brand {
  font-family: var(--display); font-weight: 800; font-size: 1.1rem;
  color: var(--white); text-decoration: none; letter-spacing: -0.02em;
}
.nav-brand img{
    background: #fff;
}
.nav-brand span { color: var(--blue); }
.nav-pill {
  background: var(--yellow); color: var(--black);
  border: none; border-radius: 6px;
  padding: 10px 22px; font-family: var(--body);
  font-size: 0.88rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: background 0.18s, transform 0.15s;
}
.nav-pill:hover { background: var(--blue-d-hover); transform: translateY(-1px); }

/* ── SLIDER ── */
.slider-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.slider-wrapper {
  position: relative;
  width: 100%;
}
.slides-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.77,0,0.18,1);
}
.slide {
  min-width: 100%;
  display: flex;
  align-items: stretch;
  min-height: 520px;
}
.slide-inner {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 64px 60px;
  gap: 56px;
}
.slide-text { flex: 1; min-width: 0; }
.slide-tag {
  display: inline-block;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--black);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  margin-bottom: 20px;
}
.slide-text h2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.03em;
  margin-bottom: 16px; color: var(--black);
}
.slide-text h2 em { font-style: normal; color: var(--blue); }
.slide-text p { font-size: 1rem; color: var(--off); max-width: 380px; line-height: 1.65; }
.slide-screen {
  flex: 1.1; min-width: 0;
  /*border-radius: 12px;*/
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.6);
  /*aspect-ratio: 16/10;*/
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
/* Simulated dashboard previews */
.mock { width: 100%; height: 100%; display: flex; flex-direction: column; gap: 12px; }
.mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.mock-title { font-family: var(--display); font-size: 0.85rem; font-weight: 800; color: var(--white); }
.mock-month { font-size: 0.7rem; color: var(--black); background: #fef2de; padding: 3px 8px; border-radius: 4px; }
.mock-row { display: flex; gap: 8px; align-items: center; }
.mock-label { font-size: 0.7rem; color: var(--off); width: 90px; flex-shrink: 0; }
.mock-bars { display: flex; gap: 3px; flex: 1; }
.mock-bar {
  height: 20px; border-radius: 3px;
  background: #07132c;
  flex: 1;
  position: relative; overflow: hidden;
}
.mock-bar.filled { background: var(--blue); opacity: 0.9; }
.mock-bar.half { background: linear-gradient(90deg, var(--blue) 60%, var(--border) 60%); opacity: 0.7; }
.mock-bar.green { background: var(--green); opacity: 0.8; }
.mock-bar.green-half { background: linear-gradient(90deg, var(--green) 40%, var(--border) 40%); opacity: 0.7; }
.mock-stat-row { display: flex; gap: 10px; margin-top: 4px; }
.mock-stat {
  flex: 1; background: #07132c; border-radius: 8px; padding: 12px 14px;
}
.mock-stat-val { font-family: var(--display); font-size: 1.4rem; font-weight: 800; color: var(--blue); }
.mock-stat-lbl { font-size: 0.65rem; color: var(--dim); margin-top: 2px; }
.mock-stat.g .mock-stat-val { color: var(--green); }
.mock-check-row { display: flex; gap: 6px; align-items: center; }
.mock-check { width: 18px; height: 18px; border-radius: 4px; border: 1px solid var(--border); flex-shrink: 0; }
.mock-check.done { background: var(--green); border-color: var(--green); display:flex;align-items:center;justify-content:center;font-size:10px; }
.mock-check-lbl { font-size: 0.72rem; color: var(--off); }
.mock-divider { height: 1px; background: var(--border); margin: 4px 0; }
.mock-points { display: flex; align-items: center; gap: 8px; }
.mock-points-bar { flex: 1; height: 10px; background: var(--border); border-radius: 99px; overflow: hidden; }
.mock-points-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--blue), #ffce6e); }
.mock-points-lbl { font-size: 0.7rem; color: var(--blue); font-weight: 700; }

/* Slide colours */
.slide:nth-child(1) .slide-screen { background: #0e1d3c; }
.slide:nth-child(2) .slide-screen { background: #0e1d3c; }
.slide:nth-child(3) .slide-screen { background: #0e1d3c; }
.slide:nth-child(4) .slide-screen { background: #0e1d3c; }

/* Slider controls */
.slider-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 20px 0 24px;
}
.dot {
  width: 28px; height: 4px; border-radius: 2px;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.25s, width 0.25s;
  padding: 0;
}
.dot.active { background: var(--blue); width: 48px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: var(--dark); width: 44px; height: 44px;
  border-radius: 50%; font-size: 2rem;
  cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
}
.slider-arrow:hover { background: var(--blue-d); color: var(--white); }
.arrow-prev { left: 10px; }
.arrow-next { right: 10px; }

/* ── HERO TEXT BELOW SLIDER ── */
.hero-band {
  background: var(--blue-d);
  border-bottom: 1px solid var(--border);
  padding: 64px 32px;
  text-align: center;
}
.hero-band h1 {
  font-family: var(--display); font-weight: 800;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.06; letter-spacing: -0.04em;
  max-width: 700px; margin: 0 auto 20px;
}
.hero-band h1 em { font-style: normal; color: var(--blue); }
.hero-band p { font-size: 1.05rem; color: var(--off); max-width: 480px; margin: 0 auto 36px; }
.hero-cta-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; align-items: center; }
.btn-main {
  display: inline-block; background: var(--yellow); color: var(--black);
  border: none; border-radius: 8px; padding: 16px 36px;
  font-family: var(--body); font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 0 32px rgba(245,166,35,0.3);
  transition: background 0.18s, transform 0.15s, box-shadow 0.18s;
}
.btn-main:hover { background: var(--blue-d-hover); transform: translateY(-2px); box-shadow: 0 0 44px rgba(245,166,35,0.45); }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  font-size: 0.82rem; color: var(--dim);
}
.hero-trust span { display: flex; align-items: center; gap: 5px; }
.hero-trust span::before { content: "✓"; color: var(--green); font-weight: 800; }

/* ── SECTION BASE ── */
.sec { padding: 80px 32px; }
.container { max-width: 1000px; margin: 0 auto; }
.sec-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 12px;
}
.sec-title {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 14px; color: var(--black);
}
.sec-title-2 {
  font-family: var(--display); font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 14px; color: var(--white);
}
.sec-sub { font-size: 1rem; color: var(--off); max-width: 500px; margin-bottom: 52px; }

/* ── PROBLEM ── */
.problem-sec { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px; }
.pain-card {
  background: var(--blue-d); padding: 32px 28px;
  border: 1px solid var(--border);
}
.pain-card:first-child { border-radius: 10px 0 0 10px; }
.pain-card:last-child { border-radius: 0 10px 10px 0; }
.pain-icon { font-size: 2rem; margin-bottom: 14px; }
.pain-card h3 { font-family: var(--display); font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.pain-card p { font-size: 0.88rem; color: var(--off); line-height: 1.6; }

/* ── FEATURES ── */
.features-sec { background: var(--white); }
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.feat-card {
  background: var(--blue-d); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-card:hover { border-color: var(--blue); box-shadow: 0 0 20px rgba(245,166,35,0.1); }
.feat-icon {
  width: 42px; height: 42px; border-radius: 8px;
  background: #17284c; border: 1px solid var(--blue-d);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feat-card h3 { font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; color: var(--white); }
.feat-card p { font-size: 0.86rem; color: var(--off); line-height: 1.55; }

/* ── HOW IT WORKS ── */
.how-sec { background: var(--blue-d); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  font-family: var(--display); font-weight: 800; font-size: 2.8rem;
  color: var(--blue); line-height: 1; min-width: 52px; opacity: 0.85;
}
.step h3 { font-weight: 700; font-size: 1rem; margin-bottom: 5px; color: var(--white); }
.step p { font-size: 0.88rem; color: var(--off); }

/* ── FOR WHOM ── */
.for-sec { background: var(--white); }
.for-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.for-item {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 16px 18px;
  font-size: 0.9rem; color: var(--off); font-weight: 500;
}
.for-item::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

/* ── TESTIMONIALS ── */
.testi-sec { background: var(--blue-d); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 28px 24px;
}
.testi-stars { color: var(--yellow); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-quote { font-size: 0.98rem; color: var(--off); line-height: 1.6; margin-bottom: 18px; font-style: italic; }
.testi-author { font-size: 0.78rem; color: var(--dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }

/* ── PRICING ── */
.pricing-sec { background: var(--white); text-align: center; }
.price-card {
  max-width: 460px; margin: 0 auto;
  background: var(--blue-d);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 44px 40px;
  position: relative; overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), #ffce6e, var(--blue));
}
.price-tag { display: flex; align-items: baseline; justify-content: center; gap: 12px; margin-bottom: 6px; }
.price-old { font-size: 1.3rem; color: var(--white); text-decoration: line-through; }
.price-new { font-family: var(--display); font-weight: 800; font-size: 3.4rem; color: var(--blue); letter-spacing: -0.03em; }
.price-badge {
  display: inline-block; background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3); color: var(--green);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px; margin-bottom: 32px;
}
.price-list { list-style: none; text-align: left; margin-bottom: 36px; }
.price-list li {
  font-size: 0.9rem; color: var(--white);
  padding: 10px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 10px; align-items: center;
}
.price-list li::before { content: "✓"; color: var(--green); font-weight: 800; flex-shrink: 0; }
.price-list li:last-child { border-bottom: none; }
.price-note { font-size: 0.78rem; color: var(--dim); margin-top: 14px; }

/* ── FAQ ── */
.faq-sec { background: var(--blue-d); border-top: 1px solid var(--border); }
/*.faq-list { max-width: 640px; }*/
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  font-weight: 600; font-size: 0.98rem; color: var(--white);
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; gap: 16px;
  list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--blue); transition: transform 0.2s; flex-shrink: 0; }
details[open] .faq-arrow { transform: rotate(45deg); }
.faq-a { font-size: 0.88rem; color: var(--off); line-height: 1.7; padding-bottom: 20px; }

/* ── FOOTER ── */
footer {
  background: var(--white); border-top: 1px solid var(--border);
  text-align: center; padding: 36px 24px;
  font-size: 0.8rem; color: var(--dim);
}
.footer-links { display: flex; gap: 24px; justify-content: center; margin-bottom: 10px; }
.footer-links a { color: var(--dim); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--blue); }

/* ── POPUP OVERLAY ────────────────────────────── */
.sip-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.sip-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.sip-modal {
  background: #111;
  border: 1px solid #2A2A2A;
  border-radius: 14px;
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px);
  transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1);
}
.sip-overlay.open .sip-modal {
  transform: translateY(0);
}
.sip-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid #2A2A2A;
  flex-shrink: 0;
}
.sip-modal-title {
  font-family: 'Syne', 'Space Grotesk', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.sip-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid #2A2A2A;
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s;
  flex-shrink: 0;
}
.sip-close:hover { background: rgba(239,68,68,0.2); border-color: #EF4444; }
.sip-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  line-height: 1.75;
  font-size: 0.9rem;
  color: #A0A0A0;
}
.sip-modal-body h3 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #F5A623;
  margin: 24px 0 8px;
}
.sip-modal-body h3:first-child { margin-top: 0; }
.sip-modal-body p { margin-bottom: 12px; }
.sip-modal-body ul {
  padding-left: 20px;
  margin-bottom: 12px;
}
.sip-modal-body ul li { margin-bottom: 6px; }

/* Scrollbar styling for modal */
.sip-modal-body::-webkit-scrollbar { width: 5px; }
.sip-modal-body::-webkit-scrollbar-track { background: #1A1A1A; }
.sip-modal-body::-webkit-scrollbar-thumb { background: #2A2A2A; border-radius: 99px; }



/* Modal styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: none;
}
.modal-overlay.active {
  opacity: 1;
}
.modal-card {
  background: #ffffff;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover {
  color: #0f172a;
}
.modal-header h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin: 0 0 6px 0;
  font-weight: 700;
}
.modal-header p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0 0 24px 0;
}
.form-group {
  margin-bottom: 20px;
  text-align: left;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #0f172a;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}
.form-hint {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
}
.submit-btn {
  width: 100%;
  border: none;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.modal-error-msg {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  text-align: left;
}
.modal-footer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
}


@media (max-width: 600px) {
  .sip-modal { max-height: 88vh; }
  .sip-modal-header { padding: 18px 20px; }
  .sip-modal-body { padding: 18px 20px; }
  .ts-card-inner { padding: 28px 22px; }
}



/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  .slide-inner { flex-direction: column; padding: 40px 24px; gap: 32px; min-height: auto; }
  .slide-screen { width: 100%; flex: unset; }
  .slide-text h2 { font-size: 2.5rem; }
  .slider-arrow { display: none; }
  .sec { padding: 56px 20px; }
  nav { padding: 10px 20px; }
  .hero-band { padding: 52px 20px; }
  .pain-card:first-child, .pain-card:last-child { border-radius: 0; }
  nav .nav-brand img{
    width: 150px;
  }
  nav .nav-pill {
    padding: 10px 15px;
  }    
  }
}
@media (prefers-reduced-motion: reduce) {
  .slides-track { transition: none; }
  *, *::before, *::after { transition: none !important; }
}