/* site.css - shared styles for all pages */
*, *::before, *::after { margin: 0; padding: 0; }
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

:root {
    --navy:   #050D2E;
    --blue:   #1A56FF;
    --cyan:   #00D4FF;
    --white:  #FFFFFF;
    --muted:  #8898B8;
    --border: rgba(255,255,255,0.1);
    --card:   rgba(255,255,255,0.04);
    --green:  #22C55E;
    --yellow: #F59E0B;
    --red:    #EF4444;
}

body {
    font-family: 'DM Sans', Arial, sans-serif;
    background-color: #050D2E;
    color: #FFFFFF;
    overflow-x: hidden;
    min-height: 100vh;
}

.container { width: 92%; max-width: 1200px; margin: 0 auto; position: relative; }

/* ── NAVBAR ── */
.navbar {
    position: relative;
    background: rgba(5,13,46,0.95);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 0;
    z-index: 100;
}
.nav-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; height: 64px; }
.logo { font-family: 'Syne', Arial, sans-serif; font-weight: 800; font-size: 20px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; gap: 8px; color: #FFFFFF; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; background: linear-gradient(135deg, #1A56FF, #00D4FF); border-radius: 8px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 16px; }
.nav-links { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }
.nav-links a { text-decoration: none; color: #8898B8; font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: #FFFFFF; }
.nav-cta { background-color: #1A56FF !important; color: #FFFFFF !important; padding: 8px 20px !important; border-radius: 8px; font-weight: 600 !important; }

/* ── HERO ── */
.hero { padding: 90px 0 70px; }
.hero-badge { display: inline-block; background: rgba(26,86,255,0.15); border: 1px solid rgba(26,86,255,0.4); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: #7AABFF; margin-bottom: 28px; }
.badge-dot { display: inline-block; width: 6px; height: 6px; background: #00D4FF; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.hero h1 { font-family: 'Syne', Arial, sans-serif; font-size: 58px; font-weight: 800; line-height: 1.1; max-width: 760px; margin-bottom: 20px; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, #1A56FF, #00D4FF); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero p { font-size: 17px; color: #8898B8; max-width: 540px; line-height: 1.7; margin-bottom: 40px; font-weight: 300; }
.hero-input-row { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 12px; -ms-flex-wrap: wrap; flex-wrap: wrap; max-width: 600px; }
.hero-input { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; min-width: 240px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 15px 20px; color: #FFFFFF; font-family: 'DM Sans', Arial, sans-serif; font-size: 15px; outline: none; }
.hero-input:focus { border-color: #1A56FF; background: rgba(26,86,255,0.08); }
.btn-primary { background: linear-gradient(135deg, #1A56FF, #4A8BFF); color: #FFFFFF; border: none; border-radius: 12px; padding: 15px 28px; font-family: 'DM Sans', Arial, sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; white-space: nowrap; }
.btn-primary:hover { opacity: 0.9; }
.val-error { display: block; color: #EF4444; font-size: 13px; margin-top: 8px; }
.hero-note { margin-top: 14px; font-size: 13px; color: #8898B8; }
.hero-note span { margin-right: 20px; }
.hero-note span:before { content: '\2713 '; color: #00D4FF; }

/* Stats bar */
.stats-bar { border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); padding: 36px 0; margin-top: 52px; }
.stats-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 28px; }
.stat { text-align: center; }
.stat-num { font-family: 'Syne', Arial, sans-serif; font-size: 34px; font-weight: 800; color: #FFFFFF; }
.stat-label { font-size: 13px; color: #8898B8; margin-top: 4px; }

/* ── SECTIONS ── */
.section { padding: 80px 0; }
.section-alt { background: rgba(26,86,255,0.03); border-top: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: #00D4FF; margin-bottom: 14px; }
.section-title { font-family: 'Syne', Arial, sans-serif; font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-sub { font-size: 16px; color: #8898B8; font-weight: 300; line-height: 1.7; max-width: 480px; margin-bottom: 48px; }

/* Steps */
.steps { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 2px; background: rgba(255,255,255,0.1); border-radius: 20px; overflow: hidden; }
.step { background: rgba(255,255,255,0.03); padding: 44px 34px; position: relative; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.step:hover { background: rgba(26,86,255,0.07); }
.step-num { font-family: 'Syne', Arial, sans-serif; font-size: 60px; font-weight: 800; color: rgba(255,255,255,0.05); position: absolute; top: 18px; right: 22px; line-height: 1; }
.step-icon { width: 50px; height: 50px; background: rgba(26,86,255,0.2); border: 1px solid rgba(26,86,255,0.5); border-radius: 14px; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
.step h3 { font-family: 'Syne', Arial, sans-serif; font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.step p  { font-size: 14px; color: #8898B8; line-height: 1.65; }

/* Features */
.features-grid { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 14px; }
.feat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 28px 24px;  }
.feat-card:hover { border-color: rgba(26,86,255,0.5); }
.feat-icon { font-size: 26px; margin-bottom: 12px; display: block; }
.feat-card h4 { font-family: 'Syne', Arial, sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feat-card p  { font-size: 13px; color: #8898B8; line-height: 1.6; }

/* Pricing */
.pricing-grid { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 18px; }
.price-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 38px 30px; position: relative; overflow: hidden; -webkit-box-flex: 1; -ms-flex: 1; flex: 1; }
.price-card.featured { background: linear-gradient(160deg, rgba(26,86,255,0.25), rgba(0,212,255,0.08)); border-color: rgba(26,86,255,0.5); }
.price-card.featured:after { content: 'Most Popular'; position: absolute; top: 18px; right: 18px; background: #1A56FF; color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 100px; }
.plan-name  { font-family: 'Syne', Arial, sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #8898B8; margin-bottom: 18px; }
.plan-price { font-family: 'Syne', Arial, sans-serif; font-size: 50px; font-weight: 800; line-height: 1; margin-bottom: 6px; }
.plan-price sup { font-size: 22px; font-weight: 600; color: #8898B8; vertical-align: top; margin-top: 10px; display: inline-block; }
.plan-period { font-size: 13px; color: #8898B8; margin-bottom: 28px; }
.plan-divider { height: 1px; background: rgba(255,255,255,0.1); margin: 24px 0; }
.plan-features { list-style: none; padding: 0; margin: 0; }
.plan-features li { font-size: 14px; color: #8898B8; padding: 6px 0; padding-left: 20px; position: relative; }
.plan-features li:before { content: '\2713'; position: absolute; left: 0; color: #00D4FF; font-weight: 700; }
.btn-outline { display: block; width: 100%; margin-top: 28px; background: transparent; border: 1px solid rgba(255,255,255,0.2); color: #FFFFFF; border-radius: 10px; padding: 13px; font-family: 'DM Sans', Arial, sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; text-align: center; text-decoration: none; }
.btn-outline:hover { border-color: #1A56FF; background: rgba(26,86,255,0.1); }
.btn-filled { display: block; width: 100%; margin-top: 28px; background: linear-gradient(135deg, #1A56FF, #4A8BFF); border: none; color: #FFFFFF; border-radius: 10px; padding: 13px; font-family: 'DM Sans', Arial, sans-serif; font-weight: 600; font-size: 14px; cursor: pointer; text-align: center; text-decoration: none; }

/* CTA strip */
.cta-strip-wrap { padding-bottom: 60px; }
.cta-strip { background: linear-gradient(130deg, rgba(26,86,255,0.35), rgba(0,212,255,0.15)); border: 1px solid rgba(26,86,255,0.4); border-radius: 24px; padding: 68px 80px; text-align: center; }
.cta-strip h2 { font-family: 'Syne', Arial, sans-serif; font-size: 40px; font-weight: 800; margin-bottom: 14px; }
.cta-strip p  { font-size: 16px; color: #8898B8; margin-bottom: 36px; font-weight: 300; }
.cta-btns { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 12px; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.btn-cta-primary { background: #FFFFFF; color: #050D2E; border: none; border-radius: 12px; padding: 15px 30px; font-family: 'DM Sans', Arial, sans-serif; font-weight: 700; font-size: 15px; cursor: pointer; }
.btn-cta-ghost { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: #FFFFFF; border-radius: 12px; padding: 15px 30px; font-family: 'DM Sans', Arial, sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none; }

/* Footer */
.footer { border-top: 1px solid rgba(255,255,255,0.1); padding: 30px 0; }
.footer-inner { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; -ms-flex-wrap: wrap; flex-wrap: wrap; gap: 16px; }
.footer-note  { font-size: 13px; color: #8898B8; }
.footer-links { display: -webkit-box; display: -ms-flexbox; display: flex; gap: 22px; }
.footer-links a { font-size: 13px; color: #8898B8; text-decoration: none; }
.footer-links a:hover { color: #FFFFFF; }

@media (max-width: 900px) {
    .hero h1 { font-size: 36px; }
    .steps { -ms-flex-direction: column; flex-direction: column; }
    .features-grid { -ms-flex-direction: column; flex-direction: column; }
    .feat-card { width: 100%; }
    .pricing-grid { -ms-flex-direction: column; flex-direction: column; }
    .nav-links { display: none; }
    .cta-strip { padding: 44px 24px; }
}
