/* === RESET & BASE === */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;background:#0a0e1a;color:#e0e3ed;line-height:1.6;font-size:16px;min-height:100vh;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a:not(.btn){color:#ff6b00;text-decoration:none;transition:color .2s}
a:not(.btn):hover{color:#ff8c33}
ul,ol{list-style:none}
table{border-collapse:collapse;width:100%}

/* === LAYOUT === */
.container{max-width:900px;margin:0 auto;padding:0 20px}

/* === HEADER === */
.site-header{background:#0d1121;border-bottom:1px solid #1e2340;position:sticky;top:0;z-index:100}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 20px;max-width:900px;margin:0 auto}
.logo{display:flex;align-items:center;gap:8px;font-size:1.4rem;font-weight:700;color:#fff;text-decoration:none}
.logo img{width:36px;height:36px;border-radius:6px}
.logo span{background:linear-gradient(135deg,#ff6b00,#ff8c33);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}

/* Nav */
.nav-toggle{display:none;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer;padding:4px}
.nav-menu{display:flex;align-items:center;gap:4px}
.nav-menu a{padding:8px 14px;border-radius:6px;color:#b0b3c0;font-size:.9rem;font-weight:500;transition:background .2s,color .2s}
.nav-menu a:hover,.nav-menu a.active{background:#1a1f38;color:#fff}
.nav-cta{background:#ff6b00 !important;color:#fff !important;font-weight:600 !important}
.nav-cta:hover{background:#e65e00 !important}

@media(max-width:768px){
  .nav-toggle{display:block}
  .nav-menu{display:none;position:absolute;top:100%;left:0;right:0;background:#0d1121;flex-direction:column;padding:10px 20px 20px;border-bottom:1px solid #1e2340;gap:2px}
  .nav-menu.open{display:flex}
  .nav-menu a{padding:12px 14px;width:100%}
}

/* === HERO === */
.hero{position:relative;overflow:hidden;border-radius:0 0 16px 16px}
.hero img{width:100%;height:auto;display:block;min-height:200px;object-fit:cover}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(10,14,26,.85) 40%,rgba(10,14,26,.3));display:flex;flex-direction:column;justify-content:center;padding:40px 30px}
.hero-overlay h1{font-size:2rem;color:#fff;margin-bottom:12px;line-height:1.2}
.hero-overlay p{font-size:1.05rem;color:#c8cbe0;max-width:500px;margin-bottom:20px}
.hero-overlay .btn{display:inline-block}
@media(max-width:600px){
  .hero-overlay h1{font-size:1.4rem}
  .hero-overlay p{font-size:.95rem}
  .hero-overlay{padding:24px 20px}
}

/* === BUTTONS === */
a.btn,button.btn,.btn{display:inline-block;padding:14px 32px;background:#ff6b00;color:#fff;font-size:1rem;font-weight:700;border-radius:8px;border:none;cursor:pointer;transition:background .2s,transform .1s;text-align:center;text-decoration:none}
a.btn:hover,button.btn:hover,.btn:hover{background:#e65e00;color:#fff;transform:translateY(-1px);text-decoration:none}
.btn:active{transform:translateY(0)}
.btn-outline{background:transparent;border:2px solid #ff6b00;color:#ff6b00}
.btn-outline:hover{background:#ff6b00;color:#fff}
.btn-sm{padding:10px 22px;font-size:.9rem}
.btn-lg{padding:16px 40px;font-size:1.1rem}
.btn-block{display:block;width:100%;text-align:center}
.text-center{text-align:center}
.cta-wrap{text-align:center;margin:30px 0}

/* === SECTIONS === */
main{padding-bottom:80px}
.section{padding:40px 20px;max-width:900px;margin:0 auto}
.section h2{font-size:1.5rem;color:#fff;margin-bottom:16px;padding-bottom:10px;border-bottom:2px solid #1e2340}
.section h3{font-size:1.2rem;color:#fff;margin:20px 0 10px}
.section p{margin-bottom:14px;color:#c8cbe0}
.section ul,.section ol{margin:12px 0 18px 0}
.section ul li,.section ol li{padding:6px 0 6px 24px;position:relative;color:#c8cbe0}
.section ul li::before{content:"";position:absolute;left:6px;top:14px;width:8px;height:8px;background:#ff6b00;border-radius:50%}
.section ol{counter-reset:steps}
.section ol li{counter-increment:steps;padding-left:32px}
.section ol li::before{content:counter(steps);position:absolute;left:0;top:5px;width:22px;height:22px;background:#6c5ce7;color:#fff;border-radius:50%;font-size:.75rem;font-weight:700;display:flex;align-items:center;justify-content:center}
.section strong{color:#fff}
.section a:not(.btn){color:#ff6b00}
.section a:not(.btn):hover{text-decoration:underline}

/* Banner image sections */
.banner-img{margin:24px 0;border-radius:12px;overflow:hidden}
.banner-img img{width:100%;height:auto}

/* === TABLES === */
.table-wrapper{overflow-x:auto;margin:20px 0;border-radius:10px;border:1px solid #1e2340;-webkit-overflow-scrolling:touch}
.table-wrapper table{min-width:500px}
.table-wrapper th,.table-wrapper td{padding:12px 16px;text-align:left;border-bottom:1px solid #1a1f38;font-size:.9rem}
.table-wrapper th{background:#161b30;color:#ff6b00;font-weight:600;white-space:nowrap;position:sticky;top:0}
.table-wrapper td{color:#c8cbe0}
.table-wrapper tr:last-child td{border-bottom:none}
.table-wrapper tr:hover td{background:#131829}

/* === CARDS === */
.card{background:#131829;border:1px solid #1e2340;border-radius:12px;padding:24px;margin:16px 0}
.card h3{margin-top:0}

/* Info box */
.info-box{background:linear-gradient(135deg,#161b30,#1a1244);border:1px solid #6c5ce7;border-radius:10px;padding:20px;margin:20px 0}
.info-box p{margin-bottom:8px;color:#d0d3e8}

/* === HIGHLIGHT LIST (features) === */
.highlight-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:20px 0}
.highlight-item{background:#131829;border:1px solid #1e2340;border-radius:10px;padding:16px;font-size:.9rem;color:#c8cbe0}
.highlight-item strong{color:#ff6b00;display:block;margin-bottom:4px}
@media(max-width:600px){.highlight-grid{grid-template-columns:1fr}}

/* === FAQ === */
.faq-item{border-bottom:1px solid #1e2340;padding:16px 0}
.faq-item:last-child{border-bottom:none}
.faq-q{font-weight:700;color:#fff;margin-bottom:8px;font-size:1rem}
.faq-a{color:#c8cbe0;font-size:.95rem}

/* === TESTIMONIALS === */
.testimonials{display:grid;gap:12px;margin:20px 0}
.testimonial{background:#131829;border-left:3px solid #ff6b00;border-radius:0 10px 10px 0;padding:16px 20px}
.testimonial p{font-style:italic;margin-bottom:6px}
.testimonial cite{font-size:.85rem;color:#ff6b00;font-style:normal;font-weight:600}

/* === STEPS === */
.steps{margin:20px 0}
.step{display:flex;gap:16px;margin-bottom:16px;background:#131829;border-radius:10px;padding:16px}
.step-num{min-width:36px;height:36px;background:#6c5ce7;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.9rem;flex-shrink:0}
.step-content h3{margin:0 0 4px;font-size:1rem}
.step-content p{margin:0;font-size:.9rem}

/* === FOOTER === */
.site-footer{background:#080b16;border-top:1px solid #1e2340;padding:30px 20px;text-align:center;font-size:.85rem;color:#6b7094}
.footer-inner{max-width:900px;margin:0 auto}
.footer-links{display:flex;justify-content:center;gap:20px;flex-wrap:wrap;margin-bottom:16px}
.footer-links a{color:#8a8fb0;font-size:.85rem}
.footer-links a:hover{color:#ff6b00}
.footer-disclaimer{max-width:700px;margin:12px auto 0;color:#555a78;font-size:.8rem;line-height:1.5}
.footer-18{display:inline-block;background:#c0392b;color:#fff;width:28px;height:28px;border-radius:50%;font-weight:700;font-size:.75rem;line-height:28px;text-align:center;margin-right:6px;vertical-align:middle}

/* === STICKY BANNER === */
.sticky-banner{position:fixed;bottom:0;left:0;right:0;background:linear-gradient(135deg,#1a0f30,#0d1121);border-top:2px solid #ff6b00;padding:14px 20px;z-index:200;display:flex;align-items:center;justify-content:center;gap:16px;transform:translateY(0);transition:transform .3s}
.sticky-banner.hidden{transform:translateY(100%)}
.sticky-banner p{color:#fff;font-size:.95rem;font-weight:600;margin:0}
.sticky-banner p span{color:#ff6b00}
.sticky-banner .btn{padding:10px 24px;font-size:.9rem;white-space:nowrap}
.banner-close{background:none;border:none;color:#6b7094;font-size:1.3rem;cursor:pointer;padding:4px 8px;position:absolute;right:8px;top:50%;transform:translateY(-50%);line-height:1}
.banner-close:hover{color:#fff}
@media(max-width:600px){
  .sticky-banner{flex-direction:column;gap:8px;padding:12px 16px}
  .sticky-banner p{font-size:.85rem;text-align:center}
}

/* === BREADCRUMBS === */
.breadcrumbs{padding:12px 20px;max-width:900px;margin:0 auto;font-size:.85rem;color:#6b7094}
.breadcrumbs a{color:#8a8fb0}
.breadcrumbs span{margin:0 6px;color:#3a3f5c}

/* === UTILITIES === */
.mt-20{margin-top:20px}
.mb-20{margin-bottom:20px}
.mt-30{margin-top:30px}
.mb-30{margin-bottom:30px}
.text-orange{color:#ff6b00}
.text-muted{color:#8a8fb0}
.visually-hidden{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
