*{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#080808;
  --surface:#111111;
  --surface2:#1a1a1a;
  --border:#222222;
  --text:#ffffff;
  --muted:#888888;
  --red:#E63946;
  --red-dark:#c1121f;
  --green:#2dc653;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--bg);color:var(--text);min-height:100vh;overflow-x:hidden}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:18px 40px;display:flex;justify-content:space-between;align-items:center;background:rgba(8,8,8,.92);backdrop-filter:blur(12px);border-bottom:1px solid var(--border)}
.nav-logo{font-size:20px;font-weight:900;letter-spacing:-0.5px;text-decoration:none;color:var(--text)}
.nav-logo span{color:var(--red)}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{font-size:14px;color:var(--muted);text-decoration:none;font-weight:500;transition:color .2s}
.nav-links a:hover,.nav-links a.active{color:var(--text)}
.nav-right{display:flex;align-items:center;gap:12px}
.nav-phone{font-size:14px;color:var(--muted)}
.nav-phone a{color:var(--text);text-decoration:none;font-weight:600}
.nav-cta{background:var(--red);color:#fff;padding:10px 22px;border-radius:6px;font-weight:700;font-size:14px;text-decoration:none;transition:background .2s;white-space:nowrap}
.nav-cta:hover{background:var(--red-dark)}
.nav-hamburger{display:none;flex-direction:column;gap:5px;cursor:pointer;padding:4px}
.nav-hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:all .3s}
.mobile-menu{display:none;position:fixed;top:61px;left:0;right:0;background:rgba(8,8,8,.98);border-bottom:1px solid var(--border);padding:20px 24px;flex-direction:column;gap:16px;z-index:99}
.mobile-menu a{font-size:16px;color:var(--muted);text-decoration:none;font-weight:500;padding:8px 0;border-bottom:1px solid var(--border)}
.mobile-menu a:last-child{border-bottom:none;color:var(--text)}
.mobile-menu.open{display:flex}

/* ── PAGE HEADER ── */
.page-header{padding:140px 24px 80px;text-align:center;background:radial-gradient(ellipse at 50% 0%, rgba(230,57,70,.1) 0%, transparent 60%)}
.page-header .tag{display:inline-block;background:rgba(230,57,70,.1);border:1px solid rgba(230,57,70,.25);color:var(--red);padding:6px 14px;border-radius:100px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:20px}
.page-header h1{font-size:clamp(40px,6vw,72px);font-weight:900;letter-spacing:-2px;line-height:1.05;margin-bottom:20px}
.page-header p{font-size:18px;color:var(--muted);max-width:560px;margin:0 auto;line-height:1.7}

/* ── SECTION BASE ── */
section{padding:96px 24px}
.container{max-width:1080px;margin:0 auto}
.section-tag{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;color:var(--red);margin-bottom:12px}
.section-title{font-size:clamp(32px,5vw,48px);font-weight:900;letter-spacing:-1.5px;margin-bottom:16px;line-height:1.1}
.section-sub{font-size:17px;color:var(--muted);max-width:560px;line-height:1.6}

/* ── HERO ── */
.hero{min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:120px 24px 80px;position:relative;overflow:hidden}
.hero-bg{position:absolute;inset:0;background:radial-gradient(ellipse at 50% 40%, rgba(230,57,70,.12) 0%, transparent 65%);pointer-events:none}
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(230,57,70,.1);border:1px solid rgba(230,57,70,.25);color:var(--red);padding:6px 14px;border-radius:100px;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1px;margin-bottom:28px}
.hero-tag::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--red);animation:pulse 2s infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero h1{font-size:clamp(48px,8vw,88px);font-weight:900;line-height:1;letter-spacing:-3px;margin-bottom:24px;max-width:900px}
.hero h1 .red{color:var(--red)}
.hero-sub{font-size:clamp(16px,2.5vw,20px);color:var(--muted);max-width:580px;line-height:1.6;margin-bottom:44px}
.hero-sub strong{color:var(--text)}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;justify-content:center}
.btn-primary{background:var(--red);color:#fff;padding:16px 32px;border-radius:8px;font-weight:700;font-size:16px;text-decoration:none;transition:all .2s;border:none;cursor:pointer;font-family:'Inter',sans-serif}
.btn-primary:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-secondary{background:transparent;color:var(--text);padding:16px 32px;border-radius:8px;font-weight:600;font-size:16px;text-decoration:none;border:1px solid var(--border);transition:all .2s}
.btn-secondary:hover{border-color:var(--muted)}
.hero-proof{display:flex;gap:32px;margin-top:60px;flex-wrap:wrap;justify-content:center}
.proof-item{text-align:center}
.proof-num{font-size:28px;font-weight:900;color:var(--red)}
.proof-lbl{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.5px;margin-top:2px}

/* ── STEPS ── */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:2px;margin-top:56px}
.step{background:var(--surface2);padding:40px 32px;position:relative}
.step:first-child{border-radius:12px 0 0 12px}
.step:last-child{border-radius:0 12px 12px 0}
.step-num{font-size:64px;font-weight:900;color:var(--border);line-height:1;margin-bottom:20px}
.step-title{font-size:20px;font-weight:800;margin-bottom:10px}
.step-desc{font-size:15px;color:var(--muted);line-height:1.6}
.step-arrow{position:absolute;right:-18px;top:50%;transform:translateY(-50%);width:36px;height:36px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;z-index:1}

/* ── SITUATIONS ── */
.situations{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1px;margin-top:56px;background:var(--border);border-radius:12px;overflow:hidden}
.sit{background:var(--surface);padding:28px 24px;transition:background .2s}
.sit:hover{background:var(--surface2)}
.sit-icon{font-size:24px;margin-bottom:12px}
.sit-title{font-size:15px;font-weight:700;margin-bottom:6px}
.sit-desc{font-size:13px;color:var(--muted);line-height:1.5}

/* ── WHY GRID ── */
.why-grid{display:grid;grid-template-columns:1fr 1fr;gap:2px;margin-top:56px}
.why-item{background:var(--surface2);padding:32px}
.why-item:first-child{border-radius:12px 0 0 0}
.why-item:nth-child(2){border-radius:0 12px 0 0}
.why-item:nth-child(3){border-radius:0 0 0 12px}
.why-item:last-child{border-radius:0 0 12px 0}
.why-check{width:32px;height:32px;background:rgba(45,198,83,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:14px;margin-bottom:14px}
.why-title{font-size:16px;font-weight:700;margin-bottom:8px}
.why-desc{font-size:14px;color:var(--muted);line-height:1.6}

/* ── COMPARISON ── */
.compare-wrap{margin-top:56px;background:var(--surface);border-radius:12px;overflow:hidden;border:1px solid var(--border)}
.compare-head{display:grid;grid-template-columns:2fr 1fr 1fr;background:var(--surface2);border-bottom:1px solid var(--border)}
.ch{padding:16px 24px;font-size:13px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted)}
.ch.highlight{color:var(--red)}
.compare-row{display:grid;grid-template-columns:2fr 1fr 1fr;border-bottom:1px solid var(--border)}
.compare-row:last-child{border-bottom:none}
.cr{padding:16px 24px;font-size:14px;display:flex;align-items:center}
.cr.label{color:var(--text);font-weight:500}
.cr.yes{color:var(--green);font-weight:700}
.cr.no{color:var(--muted)}
.cr.highlight-col{background:rgba(230,57,70,.04)}

/* ── FORM ── */
.form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:start;margin-top:56px}
.form-left h3{font-size:28px;font-weight:800;letter-spacing:-0.5px;margin-bottom:16px}
.form-left p{font-size:15px;color:var(--muted);line-height:1.7;margin-bottom:24px}
.form-promise{display:flex;flex-direction:column;gap:12px}
.promise-item{display:flex;align-items:center;gap:12px;font-size:14px}
.promise-dot{width:8px;height:8px;border-radius:50%;background:var(--red);flex-shrink:0}
.form-right{background:var(--surface2);border:1px solid var(--border);border-radius:12px;padding:36px}
.form-title{font-size:18px;font-weight:800;margin-bottom:6px}
.form-sub{font-size:13px;color:var(--muted);margin-bottom:28px}
.form-group{margin-bottom:16px}
.form-group label{display:block;font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:8px}
.form-group input,.form-group select,.form-group textarea{width:100%;background:var(--bg);border:1px solid var(--border);border-radius:8px;color:var(--text);padding:12px 16px;font-family:'Inter',sans-serif;font-size:15px;transition:border-color .2s;outline:none}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--red)}
.form-group select{cursor:pointer;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center}
.form-group select option{background:#1a1a1a}
.form-group textarea{resize:vertical;min-height:80px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.submit-btn{width:100%;background:var(--red);color:#fff;border:none;padding:16px;border-radius:8px;font-size:16px;font-weight:700;cursor:pointer;margin-top:8px;transition:all .2s;font-family:'Inter',sans-serif}
.submit-btn:hover{background:var(--red-dark)}
.submit-btn:disabled{opacity:.6;cursor:not-allowed}
.form-disclaimer{font-size:11px;color:var(--muted);text-align:center;margin-top:12px;line-height:1.5}
.success-msg{display:none;text-align:center;padding:32px;background:rgba(45,198,83,.08);border:1px solid rgba(45,198,83,.2);border-radius:8px}
.success-msg h3{color:var(--green);font-size:20px;margin-bottom:8px}
.success-msg p{color:var(--muted);font-size:14px}

/* ── PROVINCES ── */
.provinces{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.prov{background:var(--surface2);border:1px solid var(--border);border-radius:6px;padding:6px 14px;font-size:13px;font-weight:600;color:var(--muted)}
.prov.active{border-color:rgba(230,57,70,.4);color:var(--red);background:rgba(230,57,70,.06)}

/* ── FAQ ── */
.faq-list{margin-top:48px;display:flex;flex-direction:column;gap:2px}
.faq-item{background:var(--surface2);border-radius:0;overflow:hidden}
.faq-item:first-child{border-radius:12px 12px 0 0}
.faq-item:last-child{border-radius:0 0 12px 12px}
.faq-q{width:100%;text-align:left;background:none;border:none;color:var(--text);padding:24px 28px;font-size:16px;font-weight:700;font-family:'Inter',sans-serif;cursor:pointer;display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-q:hover{background:rgba(255,255,255,.03)}
.faq-icon{font-size:20px;color:var(--red);flex-shrink:0;transition:transform .3s;font-weight:400}
.faq-a{max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;font-size:15px;color:var(--muted);line-height:1.7;padding:0 28px}
.faq-item.open .faq-a{max-height:400px;padding:0 28px 24px}
.faq-item.open .faq-icon{transform:rotate(45deg)}

/* ── ABOUT ── */
.about-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center;margin-top:56px}
.about-img{background:var(--surface2);border:1px solid var(--border);border-radius:12px;aspect-ratio:4/5;display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden}
.about-img-placeholder{text-align:center;color:var(--muted)}
.about-img-placeholder p{font-size:13px;margin-top:8px}
.about-content .section-tag{margin-bottom:8px}
.about-content h2{font-size:clamp(28px,4vw,42px);font-weight:900;letter-spacing:-1px;line-height:1.1;margin-bottom:20px}
.about-content p{font-size:16px;color:var(--muted);line-height:1.8;margin-bottom:16px}
.about-content p strong{color:var(--text)}
.about-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:32px}
.about-stat{background:var(--surface2);border:1px solid var(--border);border-radius:10px;padding:20px}
.about-stat-num{font-size:32px;font-weight:900;color:var(--red)}
.about-stat-lbl{font-size:13px;color:var(--muted);margin-top:4px}
.values-grid{display:grid;grid-template-columns:1fr 1fr 1fr;gap:2px;margin-top:56px}
.value-item{background:var(--surface2);padding:32px 28px}
.value-item:first-child{border-radius:12px 0 0 12px}
.value-item:last-child{border-radius:0 12px 12px 0}
.value-icon{font-size:28px;margin-bottom:14px}
.value-title{font-size:16px;font-weight:800;margin-bottom:8px}
.value-desc{font-size:14px;color:var(--muted);line-height:1.6}

/* ── HOW IT WORKS DETAILED ── */
.hiw-steps{display:flex;flex-direction:column;gap:2px;margin-top:56px}
.hiw-step{display:grid;grid-template-columns:80px 1fr;gap:0;background:var(--surface2);align-items:stretch}
.hiw-step:first-child{border-radius:12px 12px 0 0}
.hiw-step:last-child{border-radius:0 0 12px 12px}
.hiw-num{background:var(--red);display:flex;align-items:center;justify-content:center;font-size:28px;font-weight:900;color:#fff;padding:32px 0}
.hiw-content{padding:32px 36px}
.hiw-content h3{font-size:20px;font-weight:800;margin-bottom:8px}
.hiw-content p{font-size:15px;color:var(--muted);line-height:1.7}
.hiw-content ul{list-style:none;margin-top:12px;display:flex;flex-direction:column;gap:6px}
.hiw-content ul li{font-size:14px;color:var(--muted);display:flex;align-items:flex-start;gap:10px}
.hiw-content ul li::before{content:'→';color:var(--red);font-weight:700;flex-shrink:0}
.timeline-bar{display:flex;align-items:center;justify-content:center;gap:0;margin-top:56px;flex-wrap:wrap}
.tl-item{text-align:center;padding:0 20px;position:relative}
.tl-dot{width:12px;height:12px;border-radius:50%;background:var(--red);margin:0 auto 8px}
.tl-label{font-size:12px;font-weight:700;color:var(--text);margin-bottom:2px}
.tl-sub{font-size:11px;color:var(--muted)}
.tl-line{width:60px;height:2px;background:var(--border);flex-shrink:0}

/* ── CONTACT PAGE ── */
.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;margin-top:56px}
.contact-info{display:flex;flex-direction:column;gap:20px}
.contact-card{background:var(--surface2);border:1px solid var(--border);border-radius:12px;padding:28px}
.contact-card-icon{font-size:28px;margin-bottom:12px}
.contact-card-label{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:6px}
.contact-card-value{font-size:20px;font-weight:700}
.contact-card-value a{color:var(--text);text-decoration:none;transition:color .2s}
.contact-card-value a:hover{color:var(--red)}
.contact-card-sub{font-size:13px;color:var(--muted);margin-top:4px}

/* ── CTA BANNER ── */
.cta-banner{background:var(--red);padding:80px 24px;text-align:center}
.cta-banner h2{font-size:clamp(32px,5vw,52px);font-weight:900;letter-spacing:-1.5px;margin-bottom:16px}
.cta-banner p{font-size:18px;color:rgba(255,255,255,.8);margin-bottom:36px;max-width:480px;margin-left:auto;margin-right:auto}
.btn-white{background:#fff;color:var(--red);padding:16px 36px;border-radius:8px;font-weight:800;font-size:16px;text-decoration:none;transition:all .2s;display:inline-block}
.btn-white:hover{background:rgba(255,255,255,.9);transform:translateY(-1px)}

/* ── FOOTER ── */
footer{background:var(--surface);border-top:1px solid var(--border);padding:64px 24px 32px}
.footer-inner{max-width:1080px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer-brand{font-size:22px;font-weight:900;letter-spacing:-0.5px;margin-bottom:12px}
.footer-brand span{color:var(--red)}
.footer-tagline{font-size:13px;color:var(--muted);line-height:1.6;max-width:240px;margin-bottom:20px}
.footer-col h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:.5px;color:var(--muted);margin-bottom:14px}
.footer-col a,.footer-col p{display:block;font-size:14px;color:var(--muted);text-decoration:none;margin-bottom:8px;transition:color .2s}
.footer-col a:hover{color:var(--text)}
.footer-bottom{max-width:1080px;margin:40px auto 0;padding-top:24px;border-top:1px solid var(--border);display:flex;justify-content:space-between;align-items:center;font-size:12px;color:var(--muted)}

/* ── MOBILE ── */
@media(max-width:900px){
  .footer-inner{grid-template-columns:1fr 1fr}
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .nav-phone{display:none}
  .nav-cta{display:none}
}
@media(max-width:768px){
  nav{padding:16px 20px}
  .steps{grid-template-columns:1fr}
  .step:first-child{border-radius:12px 12px 0 0}
  .step:last-child{border-radius:0 0 12px 12px}
  .step-arrow{display:none}
  .why-grid{grid-template-columns:1fr}
  .why-item:first-child{border-radius:12px 12px 0 0}
  .why-item:nth-child(2),.why-item:nth-child(3){border-radius:0}
  .why-item:last-child{border-radius:0 0 12px 12px}
  .form-wrap{grid-template-columns:1fr}
  .form-row{grid-template-columns:1fr}
  .about-grid{grid-template-columns:1fr}
  .values-grid{grid-template-columns:1fr}
  .value-item:first-child{border-radius:12px 12px 0 0}
  .value-item:last-child{border-radius:0 0 12px 12px}
  .contact-grid{grid-template-columns:1fr}
  .hiw-step{grid-template-columns:60px 1fr}
  .compare-head,.compare-row{grid-template-columns:1.5fr 1fr 1fr}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
}
@media(max-width:480px){
  section{padding:64px 20px}
  .form-right{padding:24px 20px}
  .footer-inner{grid-template-columns:1fr}
  .cr{padding:12px 14px;font-size:13px}
  .ch{padding:12px 14px}
}
