:root{
  --bg:#0f172a;        /* slate-900 */
  --panel:#0b1229;     /* deep panel */
  --muted:#94a3b8;     /* slate-400 */
  --text:#e2e8f0;      /* slate-200 */
  --brand:#14b8a6;     /* teal-500 */
  --brand-2:#22d3ee;   /* cyan-400 */
  --accent:#fbbf24;    /* amber-400 */
  --danger:#ef4444;    /* red-500 */
  --ok:#22c55e;        /* green-500 */
  --card:#111936;      /* card bg */
  --stroke:rgba(255,255,255,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;background:radial-gradient(1200px 600px at 20% -10%,rgba(20,184,166,.15),transparent),
                           radial-gradient(1000px 500px at 120% 10%,rgba(34,211,238,.12),transparent),
                           var(--bg);
           color:var(--text);font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;}
a{color:var(--brand-2);text-decoration:none}
a:hover{text-decoration:underline}

/* Skip to Content Link */
.skip-link{
  position:absolute;
  top:-100px;
  left:0;
  background:var(--brand);
  color:#002224;
  padding:12px 16px;
  text-decoration:none;
  font-weight:600;
  z-index:10000;
  border-radius:0 0 8px 0;
}
.skip-link:focus{
  top:0;
}

/* Sticky Header */
.sticky-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(15,23,42,0.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--stroke);
  height:64px;
}
.header-container{
  max-width:1100px;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:100%;
}
.header-logo{
  display:flex;
  align-items:center;
}
.logo-link{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.logo-img{
  height:44px;
  width:auto;
}
.header-nav{
  display:flex;
  align-items:center;
  gap:16px;
}
.header-cta{
  display:none;
}
@media(min-width:960px){
  .header-cta{
    display:inline-flex;
  }
}

/* Hamburger Menu */
.hamburger{
  display:flex;
  flex-direction:column;
  justify-content:space-around;
  width:32px;
  height:32px;
  background:transparent;
  border:none;
  cursor:pointer;
  padding:0;
  z-index:1001;
  gap:6px;
}
.hamburger:focus{
  outline:2px solid var(--brand-2);
  outline-offset:2px;
  border-radius:4px;
}
.hamburger-line{
  width:100%;
  height:3px;
  background:var(--text);
  border-radius:2px;
  transition:all 0.3s ease;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(1){
  transform:rotate(45deg) translate(8px,8px);
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(2){
  opacity:0;
}
.hamburger[aria-expanded="true"] .hamburger-line:nth-child(3){
  transform:rotate(-45deg) translate(8px,-8px);
}

/* Navigation Drawer */
.nav-drawer{
  position:fixed;
  top:64px;
  left:0;
  width:100%;
  height:calc(100vh - 64px);
  background:rgba(15,23,42,0.98);
  backdrop-filter:blur(12px);
  transform:translateX(-100%);
  transition:transform 0.3s ease;
  z-index:999;
  overflow-y:auto;
}
.nav-drawer.open{
  transform:translateX(0);
}
.drawer-content{
  max-width:1100px;
  margin:0 auto;
  padding:32px 24px;
  display:flex;
  flex-direction:column;
  gap:16px;
}
.nav-link{
  color:var(--text);
  text-decoration:none;
  font-size:18px;
  font-weight:500;
  padding:12px 0;
  border-bottom:1px solid var(--stroke);
  transition:color 0.2s ease;
}
.nav-link:hover,
.nav-link:focus{
  color:var(--brand-2);
  text-decoration:none;
}
.nav-link.active{
  color:var(--brand);
  border-bottom-color:var(--brand);
}
.nav-cta{
  margin-top:16px;
  text-align:center;
}

/* Table of Contents */
.table-of-contents{
  display:none;
  background:rgba(17,25,54,0.5);
  border:1px solid var(--stroke);
  border-radius:16px;
  padding:24px;
  margin:32px 0;
}
@media(min-width:960px){
  .table-of-contents{
    display:block;
  }
}
.toc-title{
  font-size:16px;
  font-weight:700;
  margin:0 0 16px;
  color:var(--brand-2);
}
.toc-list{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.toc-list li{
  margin:0;
}
.toc-list a{
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  padding:6px 0;
  display:block;
  transition:color 0.2s ease;
}
.toc-list a:hover{
  color:var(--brand-2);
  text-decoration:none;
}

/* Back to Top Button */
.back-to-top{
  position:fixed;
  bottom:24px;
  right:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  background:linear-gradient(145deg,var(--brand),var(--brand-2));
  color:#002224;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transform:translateY(20px);
  transition:all 0.3s ease;
  z-index:999;
  box-shadow:0 4px 12px rgba(20,184,166,0.3);
}
.back-to-top.visible{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}
.back-to-top:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(20,184,166,0.4);
}
.back-to-top:focus{
  outline:2px solid var(--brand-2);
  outline-offset:2px;
}

/* Mobile Consult Banner */
.mobile-consult-banner{
  display:none;
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  background:linear-gradient(145deg,var(--brand),var(--brand-2));
  color:#002224;
  padding:16px 24px;
  text-align:center;
  z-index:998;
  box-shadow:0 -4px 12px rgba(0,0,0,0.2);
}
@media(max-width:767px){
  .mobile-consult-banner{
    display:block;
  }
}
.mobile-consult-banner p{
  margin:0 0 8px;
  font-weight:600;
  font-size:14px;
}
.banner-link{
  color:#002224;
  text-decoration:underline;
  font-weight:700;
  font-size:14px;
}
.banner-link:hover{
  text-decoration:none;
}
.container{max-width:1100px;margin:0 auto;padding:24px;padding-top:32px}
.logo{display:flex;gap:10px;align-items:center;font-weight:800;letter-spacing:.2px}
.logo-badge{width:32px;height:32px;border-radius:10px;background:linear-gradient(145deg,var(--brand),var(--brand-2));display:grid;place-items:center;color:#001b1b;font-weight:900}
.badge{display:inline-flex;gap:8px;align-items:center;padding:6px 10px;border:1px solid var(--stroke);border-radius:999px;color:var(--muted);font-size:12px}
.grid{display:grid;gap:20px}
.hero{padding:40px 0 40px;border-bottom:1px solid var(--stroke)}
.hero h1{font-size:42px;line-height:1.1;margin:16px 0 20px}
.hero p{color:var(--muted);font-size:18px;max-width:800px;margin-bottom:32px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:40px}
.btn{background:linear-gradient(145deg,var(--brand),var(--brand-2));color:#002224;padding:14px 18px;border-radius:14px;border:0;font-weight:800;letter-spacing:.2px;cursor:pointer;transition:all 0.2s ease}
.btn:hover{transform:translateY(-1px);box-shadow:0 4px 12px rgba(20,184,166,0.3)}
.btn:focus{outline:2px solid var(--brand-2);outline-offset:2px}
.btn.alt{background:transparent;border:1px solid var(--stroke);color:var(--text)}
.btn.alt:hover{background:rgba(255,255,255,0.05);border-color:var(--brand-2)}
.btn.alt:focus{outline:2px solid var(--brand-2);outline-offset:2px}
.pill{display:inline-block;background:rgba(20,184,166,.14);color:#7bf0e2;border:1px solid rgba(20,184,166,.35);padding:6px 10px;border-radius:999px;font-weight:600;font-size:12px}
.section{padding:26px 0;border-bottom:1px solid var(--stroke)}
.section h2{font-size:24px;margin:0 0 14px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}
.card{background:linear-gradient(180deg,rgba(255,255,255,.02),rgba(255,255,255,.01));border:1px solid var(--stroke);border-radius:16px;padding:16px}
.card h3{margin:0 0 8px;font-size:18px}
.list{padding-left:18px;color:var(--text)}
.list li{margin:6px 0;color:var(--text)}
.muted{color:var(--muted)}
.disclaimer{font-size:12px;color:#9fb2cc}
.steps{counter-reset:s}
.steps li{counter-increment:s;list-style:none;position:relative;padding-left:40px;margin:14px 0}
.steps li::before{content:counter(s);position:absolute;left:0;top:0;width:28px;height:28px;border-radius:999px;background:linear-gradient(145deg,var(--brand-2),var(--brand));color:#001b1b;display:grid;place-items:center;font-weight:800}
.kbd{border:1px solid var(--stroke);border-bottom-width:3px;padding:2px 6px;border-radius:6px;background:rgba(255,255,255,.05)}
    .two{display:grid;gap:18px;grid-template-columns:1.2fr .8fr}
    @media(max-width:960px){.two{grid-template-columns:1fr}}
    @media(max-width:768px){
      .hero h1{font-size:32px}
      .hero p{font-size:16px}
      .btn{padding:16px 20px;font-size:16px}
      .container{padding:16px}
      .section{padding:20px 0}
    }
form{display:grid;gap:12px}
input,textarea{width:100%;padding:12px 14px;border-radius:12px;border:1px solid var(--stroke);background:#0b132a;color:var(--text);transition:border-color 0.2s ease}
input:focus,textarea:focus{outline:none;border-color:var(--brand-2);box-shadow:0 0 0 2px rgba(34,211,238,0.2)}
label{font-size:13px;color:var(--muted);display:block;margin-bottom:4px;font-weight:500}
.footer{padding:24px 0;color:var(--muted);font-size:13px}
.chips{display:flex;flex-wrap:wrap;gap:8px}
.chip{border:1px solid var(--stroke);border-radius:999px;padding:6px 10px;font-size:12px;color:var(--muted)}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--stroke);
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 4px;
}

.trust-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Video Section */
.video-section {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(20,184,166,0.02), rgba(34,211,238,0.02));
  border-bottom: 1px solid var(--stroke);
}

.video-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 24px;
}

.chip {
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--stroke);
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20,184,166,0.2);
  background: rgba(20,184,166,0.1);
  border-color: var(--brand);
}
.callout{border:1px dashed rgba(255,255,255,.18);border-radius:14px;padding:12px;background:rgba(2,6,23,.5)}
.ok{color:var(--ok)} .danger{color:var(--danger)}

/* Success Path Styles */
.success-path-container {
  background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(34,211,238,0.1));
  border: 1px solid var(--brand);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 140px;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: #001b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 8px;
}

.step:nth-child(3) .step-number {
  background: var(--brand-2);
}

.step:nth-child(5) .step-number {
  background: var(--brand);
}

.step:nth-child(7) .step-number {
  background: var(--brand-2);
}

.step-content strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
}

.step-content p {
  font-size: 12px;
  margin: 0;
}

.step-arrow {
  color: var(--brand);
  font-size: 20px;
  font-weight: bold;
}

.final-outcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.outcome-arrow {
  color: var(--ok);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 12px;
}

.outcome-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34,197,94,0.1);
  border: 2px solid var(--ok);
  border-radius: 12px;
  padding: 16px 24px;
}

.outcome-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ok);
  color: #001b1b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}

.outcome-content strong {
  display: block;
  color: var(--ok);
  font-size: 16px;
  margin-bottom: 4px;
}

.outcome-content p {
  font-size: 12px;
  margin: 0;
}

.success-message {
  text-align: center;
  margin: 0;
  font-weight: 600;
  color: var(--brand-2);
  font-size: 16px;
}

/* Video Thumbnail Styles */
.video-thumbnail {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 280px;
  background: linear-gradient(135deg, rgba(20,184,166,0.1), rgba(34,211,238,0.1));
  border: 2px solid var(--stroke);
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 0 auto;
}

.video-thumbnail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(20,184,166,0.2);
  border-color: var(--brand);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  z-index: 2;
}

.video-thumbnail:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 20px;
  text-align: center;
  z-index: 1;
}

.video-overlay h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 18px;
}

.video-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.7);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-button:hover {
  background: rgba(239,68,68,0.8);
  transform: scale(1.1);
}

.modal-content video {
  width: 100%;
  height: auto;
  max-height: 80vh;
  display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container{
    padding:0 16px;
  }
  .logo-img{
    height:36px;
  }
  .container{
    padding:16px;
    padding-top:24px;
  }
  .hero {
    padding: 32px 0;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .cta-row {
    margin-bottom: 32px;
  }
  
  .trust-indicators {
    gap: 24px;
    margin-top: 24px;
    padding: 20px 0;
  }
  
  .trust-number {
    font-size: 24px;
  }
  
  .trust-label {
    font-size: 11px;
  }
  
  .video-section {
    padding: 32px 0;
  }
  
  .video-thumbnail {
    height: 200px;
    max-width: 100%;
  }
  
  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .video-overlay h3 {
    font-size: 16px;
  }
  
  .video-overlay p {
    font-size: 12px;
  }
  
  .video-badges {
    margin-top: 20px;
  }
  
  .chip {
    font-size: 11px;
    padding: 5px 8px;
  }
  
  .success-path-container {
    padding: 24px 16px;
  }
  
  .process-steps {
    flex-direction: column;
    gap: 12px;
  }
  
  .step-arrow {
    transform: rotate(90deg);
    font-size: 16px;
  }
  
  .step {
    min-width: auto;
  }
  
  .outcome-box {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .back-to-top{
    bottom:80px;
    right:16px;
    width:44px;
    height:44px;
  }
  .drawer-content{
    padding:24px 16px;
  }
}
