/* ---------- SFT Landing Page Styles ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0A0E17;
  color: #E6EAF2;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 17px;
}
.brand img { width: 38px; height: 38px; border-radius: 9px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: #B7BFCC;
  transition: color 0.15s;
}
.nav-links a:hover { color: #fff; }
.nav-links .btn { font-size: 14px; }
@media (max-width: 720px) {
  .nav-links a:not(.btn) { display: none; }
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.1s ease, background 0.15s, border 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: #00E676;
  color: #0A0E17;
}
.btn-primary:hover { background: #00ff84; }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.15);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.4); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-block { display: flex; width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 700px;
  background: radial-gradient(circle, rgba(0,230,118,0.18), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.badge {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 230, 118, 0.12);
  color: #00E676;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 230, 118, 0.3);
}
h1 {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
  font-weight: 900;
}
.accent { color: #00E676; }
.lede {
  font-size: 19px;
  color: #B7BFCC;
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.micro {
  color: #7A8493;
  font-size: 13px;
  margin: 0;
}

/* Quick Login card (inline) */
.hero-art { display: flex; justify-content: center; }
.quick-login {
  width: 100%;
  max-width: 380px;
  padding: 22px;
  background: linear-gradient(180deg, #131722 0%, #0F131D 100%);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(0,230,118,0.08);
}
.ql-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.ql-header img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
}
.ql-title {
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  line-height: 1.2;
}
.ql-sub {
  color: #7A8493;
  font-size: 12px;
  margin-top: 2px;
}
.ql-label {
  display: block;
  margin-bottom: 10px;
}
.ql-label > span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #B7BFCC;
  margin-bottom: 5px;
}
.ql-label input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 11px 12px;
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.ql-label input:focus {
  outline: none;
  border-color: #00E676;
}
.ql-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.ql-link {
  color: #00E676;
  font-size: 12.5px;
  font-weight: 600;
}
.ql-link:hover { text-decoration: underline; }
.ql-error {
  background: rgba(255, 80, 80, 0.1);
  border: 1px solid rgba(255, 80, 80, 0.3);
  color: #ff8080;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.ql-submit {
  height: 44px;
  font-size: 14.5px;
  margin-top: 4px;
}
.ql-submit:disabled { opacity: 0.7; cursor: not-allowed; }
.ql-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(10,14,23,0.25);
  border-top-color: #0A0E17;
  border-radius: 50%;
  animation: ql-spin 0.7s linear infinite;
  display: inline-block;
}
.ql-spinner[hidden] { display: none; }
.ql-error[hidden] { display: none; }
.ql-submit-label[hidden] { display: none; }
@keyframes ql-spin { to { transform: rotate(360deg); } }
.ql-foot {
  margin: 14px 0 0;
  text-align: center;
  color: #7A8493;
  font-size: 12.5px;
}
.ql-foot .ql-link { margin-left: 4px; }

/* ---------- STRIP ---------- */
.strip {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 26px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
@media (max-width: 720px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}
.strip-inner > div {
  display: flex;
  flex-direction: column;
}
.strip-inner strong {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
}
.strip-inner span {
  font-size: 13px;
  color: #7A8493;
  margin-top: 2px;
}

/* ---------- SECTIONS ---------- */
.section { padding: 90px 0; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.eyebrow {
  display: inline-block;
  color: #00E676;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin: 0 0 14px;
  letter-spacing: -0.8px;
  font-weight: 800;
  color: #fff;
}
.section-head p { color: #B7BFCC; font-size: 17px; margin: 0; }

/* ---------- GRID + CARDS ---------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 920px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.15s, transform 0.15s;
}
.card:hover {
  border-color: rgba(0,230,118,0.4);
  transform: translateY(-2px);
}
.card .icon { font-size: 32px; margin-bottom: 14px; }
.card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #fff; }
.card p { margin: 0; color: #B7BFCC; font-size: 14.5px; line-height: 1.6; }

/* ---------- PRICING ---------- */
.pricing-grid { max-width: 920px; margin: 0 auto; }
.plan {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  padding: 36px 32px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.plan h3 { margin: 0 0 12px; font-size: 20px; font-weight: 700; color: #fff; }
.plan .price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.plan .amount { font-size: 56px; font-weight: 900; color: #fff; letter-spacing: -2px; }
.plan .per { color: #7A8493; font-size: 16px; }
.plan-tag { color: #B7BFCC; margin: 0 0 20px; font-size: 14px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 26px; }
.plan li { padding: 7px 0; font-size: 14.5px; color: #D5DAE3; border-bottom: 1px solid rgba(255,255,255,0.04); }
.plan li:last-child { border-bottom: 0; }
.plan-featured {
  border-color: rgba(0,230,118,0.5);
  box-shadow: 0 0 0 1px rgba(0,230,118,0.2), 0 20px 60px rgba(0,230,118,0.08);
}
.plan-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #00E676;
  color: #0A0E17;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 999px;
}
.pricing-foot {
  text-align: center;
  color: #7A8493;
  font-size: 13px;
  margin-top: 26px;
}

/* ---------- TESTIMONIALS ---------- */
.quote {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  padding: 26px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}
.quote p { margin: 0 0 14px; color: #E6EAF2; font-size: 15px; line-height: 1.6; font-style: italic; }
.quote footer { color: #7A8493; font-size: 13px; font-weight: 500; }
.quote .loc { color: #00E676; font-weight: 600; margin-left: 6px; }

/* ---------- VIDEO ---------- */
.video-wrap {
  max-width: 920px;
  margin: 0 auto;
}
.video-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #131722 0%, #0F131D 100%);
  border-radius: 20px;
  border: 1px solid rgba(0, 230, 118, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  transition: border-color 0.15s;
}
.video-placeholder:hover { border-color: rgba(0, 230, 118, 0.5); }
.play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #00E676;
  color: #0A0E17;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 6px;
  box-shadow: 0 10px 40px rgba(0, 230, 118, 0.3);
}
.video-cap { color: #7A8493; font-size: 13px; margin: 0; }

/* ---------- BLOG ---------- */
.blog-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s, transform 0.15s;
}
.blog-card:hover { border-color: rgba(0,230,118,0.4); transform: translateY(-2px); }
.blog-tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #00E676;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.blog-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #fff; }
.blog-card p { color: #B7BFCC; font-size: 14.5px; line-height: 1.6; margin: 0 0 16px; flex: 1; }
.blog-link { color: #00E676; font-weight: 600; font-size: 14px; }
.blog-link:hover { text-decoration: underline; }

/* ---------- CONTACT FORM ---------- */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form label.block { margin-bottom: 16px; }
.contact-form span {
  font-size: 13px;
  font-weight: 600;
  color: #B7BFCC;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  transition: border-color 0.15s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00E676;
}
.contact-form .micro { text-align: center; margin-top: 14px; }
.accent-link { color: #00E676; }
.accent-link:hover { text-decoration: underline; }

/* ---------- COVERAGE MAP ---------- */
.coverage-section { background: rgba(255,255,255,0.02); }
.map-wrap {
  max-width: 920px;
  margin: 0 auto 36px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0,230,118,0.04) 0%, rgba(0,230,118,0.01) 100%);
  border: 1px solid rgba(0,230,118,0.18);
  border-radius: 20px;
}
.usa-map {
  width: 100%;
  height: auto;
  max-height: 480px;
  display: block;
}
.us-state {
  fill: #00E676;
  fill-opacity: 0.85;
  stroke: #0A0E17;
  stroke-width: 1;
  transition: fill-opacity 0.15s, fill 0.15s;
}
.us-state:hover {
  fill: #00ff84;
  fill-opacity: 1;
  cursor: pointer;
}
.states-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 0 auto 24px;
  max-width: 920px;
}
@media (max-width: 720px) { .states-grid { grid-template-columns: repeat(2, 1fr); } }
.state-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
}
.state-card strong {
  display: block;
  color: #00E676;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
}
.state-card span {
  color: #B7BFCC;
  font-size: 12.5px;
  margin-top: 4px;
  display: block;
}
.coverage-foot {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #B7BFCC;
  font-size: 14px;
  line-height: 1.6;
}
.coverage-foot strong { color: #fff; }

/* ---------- SUPPORT ---------- */
.support-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.02) 100%);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  transition: border-color 0.15s, transform 0.15s;
}
.support-card:hover { border-color: rgba(0,230,118,0.4); transform: translateY(-2px); }
.support-icon { font-size: 38px; margin-bottom: 14px; }
.support-card h3 { margin: 0 0 8px; font-size: 18px; font-weight: 700; color: #fff; }
.support-card p { color: #B7BFCC; font-size: 14px; line-height: 1.55; margin: 0 0 12px; }
.support-link {
  color: #00E676;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.support-link:hover { text-decoration: underline; }
.support-meta {
  color: #7A8493;
  font-size: 12px;
  margin: 0;
  margin-top: auto;
}
.support-banner {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(0,230,118,0.08) 0%, rgba(0,230,118,0.02) 100%);
  border: 1px solid rgba(0,230,118,0.25);
  border-radius: 18px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.support-banner-icon { font-size: 30px; flex-shrink: 0; }
.support-banner-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.support-banner-text strong {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.support-banner-text span {
  color: #B7BFCC;
  font-size: 13.5px;
}
@media (max-width: 640px) {
  .support-banner {
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }
  .support-banner .btn { width: 100%; }
}

/* ---------- FAQ ---------- */
.faq-container details {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 12px;
  cursor: pointer;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.faq-container summary {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  list-style: none;
  position: relative;
  padding-right: 24px;
}
.faq-container summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
  color: #00E676;
  font-weight: 400;
}
.faq-container details[open] summary::after { content: '−'; }
.faq-container details p { color: #B7BFCC; margin: 14px 0 0; font-size: 14.5px; line-height: 1.65; }

/* ---------- FINAL CTA ---------- */
.cta-final { padding-bottom: 70px; }
.cta-card {
  background: linear-gradient(135deg, rgba(0,230,118,0.12) 0%, rgba(0,230,118,0.04) 100%);
  border: 1px solid rgba(0,230,118,0.3);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.cta-card h2 { margin: 0 0 14px; }
.cta-card p { color: #D5DAE3; font-size: 17px; margin: 0 0 28px; }
.cta-card .btn { margin-bottom: 14px; }
.cta-card .micro { color: #7A8493; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 8px; }
.footer-brand p { margin: 0; color: #7A8493; font-size: 13px; }
.footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-links a { color: #B7BFCC; font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: #fff; }
