:root{
  --red:#CC1F1F;
  --red-dark:#A31818;
  --charcoal:#1A1A1A;
  --charcoal2:#242424;
  --mid:#666;
  --light:#F6F5F2;
  --border:#E8E6E1;
  --white:#fff;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--white);color:var(--charcoal);line-height:1.6;overflow-x:hidden}

/* NAV */
nav{background:var(--charcoal);border-bottom:3px solid var(--red);position:sticky;top:0;z-index:1000}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 2rem;height:66px;display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-brand{font-family:'Bebas Neue',sans-serif;font-size:22px;color:var(--white);letter-spacing:.06em;text-decoration:none;flex-shrink:0}
.nav-brand span{color:var(--red)}
.nav-toggle{display:none;background:none;border:none;color:var(--white);font-size:22px;cursor:pointer;padding:4px 8px}
.nav-links{display:flex;align-items:center;gap:1.5rem;list-style:none}
.nav-links a{color:rgba(255,255,255,.75);text-decoration:none;font-size:13px;font-weight:400;letter-spacing:.03em;transition:color .2s;white-space:nowrap}
.nav-links a:hover{color:var(--white)}
.nav-cta{background:var(--red)!important;color:var(--white)!important;padding:9px 20px;border-radius:3px;font-weight:500!important;letter-spacing:.04em;text-transform:uppercase;font-size:12px!important}
.nav-cta:hover{background:var(--red-dark)!important}
.nav-dropdown{position:relative}
.nav-dropdown>a{cursor:pointer}
.dropdown-menu{display:none;position:absolute;top:100%;left:0;background:var(--charcoal2);border:1px solid rgba(255,255,255,.08);border-top:2px solid var(--red);border-radius:0 0 4px 4px;min-width:220px;list-style:none;z-index:100;padding:8px 0}
.nav-dropdown:hover .dropdown-menu{display:block}
.dropdown-menu li a{display:block;padding:9px 18px;font-size:13px;color:rgba(255,255,255,.7);text-decoration:none;transition:all .2s}
.dropdown-menu li a:hover{color:var(--white);background:rgba(255,255,255,.05);padding-left:22px}

/* FOOTER */
footer{background:var(--charcoal2);padding:60px 2rem 28px;border-top:3px solid var(--red)}
.footer-inner{max-width:1200px;margin:0 auto}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:48px;margin-bottom:48px}
.footer-logo{font-family:'Bebas Neue',sans-serif;font-size:24px;color:var(--white);letter-spacing:.06em;margin-bottom:12px}
.footer-logo span{color:var(--red)}
.footer-brand p{font-size:13px;color:rgba(255,255,255,.45);font-weight:300;line-height:1.7;max-width:280px;margin-bottom:20px}
.footer-social{display:flex;gap:12px}
.footer-social a{width:36px;height:36px;border-radius:50%;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;color:rgba(255,255,255,.5);transition:all .2s}
.footer-social a:hover{background:var(--red);border-color:var(--red);color:var(--white)}
.footer-social svg{width:16px;height:16px}
.footer-col h4{font-size:11px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:rgba(255,255,255,.4);margin-bottom:16px}
.footer-col ul{list-style:none;display:flex;flex-direction:column;gap:9px}
.footer-col ul a{font-size:13px;color:rgba(255,255,255,.55);text-decoration:none;font-weight:300;transition:color .2s}
.footer-col ul a:hover{color:var(--white)}
.footer-bottom{border-top:1px solid rgba(255,255,255,.07);padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:rgba(255,255,255,.25);font-weight:300}
.footer-bottom a{color:rgba(255,255,255,.35);text-decoration:none;transition:color .2s}
.footer-bottom a:hover{color:var(--white)}

/* COMMON SECTIONS */
.hero{background:var(--charcoal);padding:90px 2rem 80px;text-align:center;position:relative;overflow:hidden;min-height:88vh;display:flex;align-items:center;justify-content:center}
.hero-grid{position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);background-size:56px 56px;pointer-events:none}
.hero-glow{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:800px;height:500px;background:radial-gradient(ellipse,rgba(204,31,31,.1) 0%,transparent 70%);pointer-events:none}
.hero-inner{position:relative;max-width:860px;margin:0 auto;animation:fadeUp .85s ease both}
@keyframes fadeUp{from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)}}
.hero-eyebrow{display:inline-flex;align-items:center;gap:10px;font-size:11px;font-weight:500;letter-spacing:.2em;text-transform:uppercase;color:var(--red);margin-bottom:24px}
.hero-eyebrow::before,.hero-eyebrow::after{content:'';width:36px;height:1px;background:var(--red);opacity:.5}
.hero h1{font-family:'Bebas Neue',sans-serif;font-size:clamp(58px,10vw,110px);color:var(--white);line-height:.92;letter-spacing:.02em;margin-bottom:24px}
.hero h1 em{font-style:normal;color:var(--red);display:block}
.hero-sub{font-size:17px;font-weight:300;color:rgba(255,255,255,.6);max-width:580px;margin:0 auto 40px;line-height:1.8}
.hero-sub strong{color:rgba(255,255,255,.9);font-weight:500}
.hero-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:48px}
.btn-red{display:inline-block;background:var(--red);color:var(--white);text-decoration:none;padding:15px 34px;font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;border-radius:3px;transition:all .2s}
.btn-red:hover{background:var(--red-dark);transform:translateY(-1px)}
.btn-ghost{display:inline-block;border:1.5px solid rgba(255,255,255,.2);color:rgba(255,255,255,.75);text-decoration:none;padding:15px 34px;font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;border-radius:3px;transition:all .2s}
.btn-ghost:hover{border-color:rgba(255,255,255,.5);color:var(--white)}
.hero-pillars{display:flex;gap:0;justify-content:center;border:1px solid rgba(255,255,255,.07);border-radius:6px;overflow:hidden;max-width:640px;margin:0 auto}
.hero-pillar{flex:1;padding:18px 12px;border-right:1px solid rgba(255,255,255,.07);text-align:center}
.hero-pillar:last-child{border-right:none}
.pillar-icon{font-size:20px;margin-bottom:6px}
.pillar-label{font-size:11px;color:rgba(255,255,255,.4);font-weight:300;text-transform:uppercase;letter-spacing:.07em;line-height:1.4}
.why{background:var(--red);padding:40px 2rem}
.why-inner{max-width:1100px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:20px;text-align:center}
.why-item strong{display:block;font-family:'Bebas Neue',sans-serif;font-size:16px;color:var(--white);letter-spacing:.08em;text-transform:uppercase}
.why-item span{font-size:12px;color:rgba(255,255,255,.7);font-weight:300}
.sec-label{font-size:10px;font-weight:500;letter-spacing:.18em;text-transform:uppercase;color:var(--red);margin-bottom:10px}
.section-header{text-align:center;margin-bottom:56px}
.section-header h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(36px,5vw,56px);color:var(--charcoal);letter-spacing:.02em;margin-bottom:12px}
.section-header p{font-size:15px;font-weight:300;color:var(--mid);max-width:560px;margin:0 auto;line-height:1.75}
.section-header.light h2{color:var(--white)}
.section-header.light p{color:rgba(255,255,255,.5)}
.section-header.light .sec-label{color:var(--red)}
.btn-white{display:inline-block;background:var(--white);color:var(--red);text-decoration:none;padding:15px 32px;font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;border-radius:3px;transition:all .2s}
.btn-white:hover{background:var(--charcoal);color:var(--white)}
.btn-white-outline{display:inline-block;border:1.5px solid rgba(255,255,255,.45);color:var(--white);text-decoration:none;padding:15px 32px;font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;border-radius:3px;transition:all .2s}
.btn-white-outline:hover{border-color:var(--white);background:rgba(255,255,255,.1)}
.btn-dark{display:inline-block;background:var(--charcoal);color:var(--white);text-decoration:none;padding:15px 32px;font-size:14px;font-weight:500;letter-spacing:.05em;text-transform:uppercase;border-radius:3px;transition:all .2s}
.btn-dark:hover{background:var(--red)}
.cta-section{padding:96px 2rem;background:var(--red);text-align:center;position:relative;overflow:hidden}
.cta-section-inner{position:relative;max-width:680px;margin:0 auto}
.cta-section h2{font-family:'Bebas Neue',sans-serif;font-size:clamp(42px,7vw,78px);color:var(--white);line-height:.95;letter-spacing:.02em;margin-bottom:18px}
.cta-section-sub{font-size:16px;font-weight:300;color:rgba(255,255,255,.8);line-height:1.8;margin-bottom:38px;max-width:500px;margin-left:auto;margin-right:auto}
.cta-section-sub strong{color:var(--white);font-weight:500}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;margin-bottom:24px}
.cta-note{font-size:13px;color:rgba(255,255,255,.55);font-weight:300}
.cta-note strong{color:rgba(255,255,255,.85);font-weight:500}
.faq-section{padding:88px 2rem;background:var(--light)}
.faq-inner{max-width:800px;margin:0 auto}
.faq-list{display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--border);padding:22px 0;cursor:pointer}
.faq-item:first-child{border-top:1px solid var(--border)}
.faq-q{font-size:15px;font-weight:500;color:var(--charcoal);display:flex;justify-content:space-between;align-items:center;gap:16px}
.faq-q-text{flex:1}
.faq-icon{width:24px;height:24px;border-radius:50%;background:var(--charcoal);color:var(--white);display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:300;flex-shrink:0;transition:background .2s,transform .2s;line-height:1}
.faq-item.open .faq-icon{background:var(--red);transform:rotate(45deg)}
.faq-a{font-size:14px;font-weight:300;color:var(--mid);line-height:1.8;max-height:0;overflow:hidden;transition:max-height .35s ease,padding .35s ease;padding-top:0}
.faq-item.open .faq-a{max-height:400px;padding-top:14px}
.level-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.lc{background:var(--white);border:1.5px solid var(--border);border-radius:8px;overflow:hidden;display:flex;flex-direction:column;transition:transform .25s,border-color .25s,box-shadow .25s}
.lc:hover{transform:translateY(-4px);box-shadow:0 18px 44px rgba(0,0,0,.07);border-color:rgba(204,31,31,.35)}
.lc.featured{border-color:var(--charcoal);border-width:2px}
.lc-head{padding:26px 26px 20px;border-bottom:1px solid var(--border)}
.lc-head.dark{background:var(--charcoal)}
.lc-badge{display:inline-block;font-size:9px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;padding:3px 10px;border-radius:2px;margin-bottom:10px}
.badge-green{background:#EAF3DE;color:#27500A}
.badge-blue{background:#E6F1FB;color:#0C447C}
.badge-red-light{background:#FAECE7;color:#712B13}
.lc-head.dark .lc-badge{background:rgba(255,255,255,.1);color:rgba(255,255,255,.7)}
.lc-pop-tag{display:inline-block;font-size:9px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;background:var(--red);color:var(--white);padding:3px 9px;border-radius:2px;margin-bottom:10px}
.lc-name{font-family:'Bebas Neue',sans-serif;font-size:32px;color:var(--charcoal);letter-spacing:.03em;line-height:1.05;margin-bottom:4px}
.lc-head.dark .lc-name{color:var(--white)}
.lc-tagline{font-size:12.5px;font-weight:300;color:var(--mid);font-style:italic}
.lc-head.dark .lc-tagline{color:rgba(255,255,255,.5)}
.lc-body{padding:24px 26px 28px;flex:1;display:flex;flex-direction:column}
.lc-price{display:flex;align-items:baseline;gap:4px;margin-bottom:4px}
.lc-price-num{font-family:'Bebas Neue',sans-serif;font-size:52px;color:var(--charcoal);letter-spacing:.02em;line-height:1}
.lc-price-per{font-size:13px;color:var(--mid);font-weight:300}
.lc-price-note{font-size:11.5px;color:var(--mid);font-weight:300;margin-bottom:18px}
.lc-desc{font-size:13.5px;font-weight:300;color:var(--mid);line-height:1.75;margin-bottom:18px;flex:1}
.lc-desc strong{color:var(--charcoal);font-weight:500}
.lc-includes-title{font-size:10px;font-weight:500;letter-spacing:.14em;text-transform:uppercase;color:var(--charcoal);margin-bottom:12px}
.lc-includes{list-style:none;display:flex;flex-direction:column;gap:8px;margin-bottom:20px}
.lc-includes li{display:flex;align-items:flex-start;gap:9px;font-size:13px;color:var(--charcoal);font-weight:300;line-height:1.5}
.lc-includes li::before{content:'';width:5px;height:5px;border-radius:50%;background:var(--red);margin-top:7px;flex-shrink:0}
.lc-best{background:var(--light);border-left:3px solid var(--red);border-radius:0 4px 4px 0;padding:12px 14px;margin-bottom:20px}
.lc-best-title{font-size:10px;font-weight:500;letter-spacing:.1em;text-transform:uppercase;color:var(--charcoal);margin-bottom:4px}
.lc-best-desc{font-size:12.5px;font-weight:300;color:var(--mid);line-height:1.6}
.lc-btn{display:block;text-align:center;background:var(--charcoal);color:var(--white);text-decoration:none;padding:13px 20px;border-radius:3px;font-size:13px;font-weight:500;letter-spacing:.04em;text-transform:uppercase;transition:background .2s}
.lc-btn:hover{background:var(--red)}
.lc.featured .lc-btn{background:var(--red)}
.lc.featured .lc-btn:hover{background:var(--red-dark)}
.proc-steps{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:0}
.proc-step{padding:28px 24px;border-right:1px solid rgba(255,255,255,.06);position:relative}
.proc-step:last-child{border-right:none}
.proc-num{font-family:'Bebas Neue',sans-serif;font-size:56px;color:rgba(255,255,255,.04);line-height:1;position:absolute;top:16px;right:14px;pointer-events:none}
.proc-icon{font-size:28px;margin-bottom:14px}
.proc-title{font-family:'Bebas Neue',sans-serif;font-size:22px;color:var(--white);letter-spacing:.03em;margin-bottom:8px}
.proc-desc{font-size:13px;font-weight:300;color:rgba(255,255,255,.45);line-height:1.7}

/* MOBILE */
@media(max-width:900px){
  .nav-links{display:none;position:absolute;top:66px;left:0;right:0;background:var(--charcoal2);flex-direction:column;align-items:flex-start;padding:1rem 2rem 1.5rem;gap:.5rem;border-top:1px solid rgba(255,255,255,.08)}
  .nav-links.open{display:flex}
  .nav-toggle{display:block}
  .dropdown-menu{position:static;border:none;background:rgba(255,255,255,.04);padding:4px 0 4px 12px;display:none!important}
  .nav-dropdown.open .dropdown-menu{display:block!important}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
  .footer-brand{grid-column:1/-1}
}
@media(max-width:640px){
  .hero{padding:60px 1.5rem 56px;min-height:auto}
  .hero-pillars{flex-wrap:wrap}
  .hero-pillar{flex:1 1 33%;border-bottom:1px solid rgba(255,255,255,.07)}
  .proc-steps{grid-template-columns:1fr 1fr}
  .proc-step{border-right:none;border-bottom:1px solid rgba(255,255,255,.06)}
  .proc-step:last-child{border-bottom:none}
  .level-cards{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr}
  .cta-btns{flex-direction:column;align-items:center}
  .btn-white,.btn-white-outline,.btn-red,.btn-ghost,.btn-dark{width:100%;max-width:320px;text-align:center}
}
