
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --orange:#FF6A00;
  --orange-hover:#E85D00;
  --orange-glow:#FF6A0033;
  --black:#0A0A0A;
  --dark:#111111;
  --dark2:#1A1A1A;
  --dark3:#222222;
  --gray:#999;
  --light:#F5F5F5;
  --white:#FFFFFF;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;background:var(--black);color:var(--white);line-height:1.6;overflow-x:hidden}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* ====== TOP BAR ====== */
.topbar{background:var(--orange);padding:8px 0;text-align:center;font-weight:600;font-size:.9rem;letter-spacing:.02em}
.topbar a{color:var(--black);font-weight:700}

/* ====== NAV ====== */
.nav{background:var(--black);border-bottom:1px solid #222;padding:16px 0;position:sticky;top:0;z-index:100;backdrop-filter:blur(12px)}
.nav-inner{max-width:1200px;margin:auto;padding:0 24px;display:flex;align-items:center;justify-content:space-between}
.nav-logo{font-size:1.4rem;font-weight:900;letter-spacing:-.02em}
.nav-logo span{color:var(--orange)}
.nav-phone{color:var(--orange);font-weight:700;font-size:1.1rem;display:flex;align-items:center;gap:8px}
.nav-phone svg{width:20px;height:20px}

/* ====== HERO ====== */
.hero{position:relative;min-height:92vh;display:flex;align-items:center;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover}
.hero-bg::after{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(0,0,0,.92) 0%,rgba(0,0,0,.7) 50%,rgba(0,0,0,.5) 100%)}
.hero-inner{position:relative;z-index:1;max-width:1200px;margin:auto;padding:60px 24px;display:grid;grid-template-columns:1fr 420px;gap:60px;align-items:center}
.hero-text h1{font-size:3rem;font-weight:900;line-height:1.1;letter-spacing:-.03em;margin-bottom:16px}
.hero-text h1 span{color:var(--orange)}
.hero-text p{font-size:1.15rem;color:#ccc;margin-bottom:20px;max-width:540px}
.hero-trust{display:flex;gap:24px;flex-wrap:wrap;margin-top:20px}
.hero-trust-item{display:flex;align-items:center;gap:8px;font-size:.85rem;color:#bbb}
.hero-trust-item svg{width:20px;height:20px;color:var(--orange);flex-shrink:0}
.hero-badge{display:inline-flex;align-items:center;gap:6px;background:var(--orange);color:var(--black);font-weight:700;font-size:.8rem;padding:6px 14px;border-radius:50px;margin-bottom:18px;letter-spacing:.04em;text-transform:uppercase}

/* ====== LEAD FORM ====== */
.lead-form{background:var(--white);border-radius:16px;padding:36px 32px;box-shadow:0 24px 80px rgba(255,106,0,.15),0 0 0 1px rgba(255,106,0,.2)}
.lead-form h2{color:var(--black);font-size:1.5rem;font-weight:800;margin-bottom:4px;line-height:1.2}
.lead-form .form-sub{color:#555;font-size:.9rem;margin-bottom:20px}
.lead-form label{display:block;color:#333;font-weight:600;font-size:.85rem;margin-bottom:4px;margin-top:12px}
.lead-form input,.lead-form select,.lead-form textarea{width:100%;padding:12px 14px;border:2px solid #e0e0e0;border-radius:8px;font-size:1rem;font-family:inherit;background:#fafafa;transition:border .2s}
.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus{outline:none;border-color:var(--orange);background:#fff}
.lead-form textarea{height:70px;resize:vertical}
.btn-submit{width:100%;margin-top:20px;padding:16px;background:var(--orange);color:var(--white);border:none;border-radius:8px;font-size:1.15rem;font-weight:800;font-family:inherit;cursor:pointer;letter-spacing:.02em;transition:all .2s;box-shadow:0 4px 20px var(--orange-glow);position:relative;overflow:hidden}
.btn-submit:hover{background:var(--orange-hover);transform:translateY(-2px);box-shadow:0 8px 30px rgba(255,106,0,.4)}
.btn-submit::after{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);transition:left .5s}
.btn-submit:hover::after{left:100%}
.form-note{text-align:center;font-size:.75rem;color:#888;margin-top:10px}

/* ====== SERVICES ====== */
.services{background:var(--dark);padding:80px 0}
.section-wrap{max-width:1200px;margin:auto;padding:0 24px}
.section-label{display:inline-flex;align-items:center;gap:6px;font-size:.8rem;font-weight:700;color:var(--orange);text-transform:uppercase;letter-spacing:.1em;margin-bottom:12px}
.section-title{font-size:2.4rem;font-weight:900;letter-spacing:-.03em;margin-bottom:16px}
.section-title span{color:var(--orange)}
.section-desc{color:#999;font-size:1.05rem;max-width:640px;margin-bottom:48px}
.services-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}
.service-card{background:var(--dark2);border-radius:14px;overflow:hidden;border:1px solid #2a2a2a;transition:all .3s}
.service-card:hover{border-color:var(--orange);transform:translateY(-4px);box-shadow:0 16px 40px rgba(255,106,0,.1)}
.service-card-img{height:200px;overflow:hidden}
.service-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
.service-card:hover .service-card-img img{transform:scale(1.05)}
.service-card-body{padding:24px}
.service-card-body h3{font-size:1.15rem;font-weight:700;margin-bottom:8px}
.service-card-body p{font-size:.9rem;color:#999;line-height:1.5}
.service-card-link{display:inline-flex;align-items:center;gap:4px;color:var(--orange);font-weight:600;font-size:.9rem;margin-top:12px;transition:gap .2s}
.service-card-link:hover{gap:8px}

/* ====== WHY CHOOSE US ====== */
.why{background:var(--black);padding:80px 0}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:28px}
.why-card{background:var(--dark2);padding:32px 28px;border-radius:14px;border:1px solid #222;transition:all .3s}
.why-card:hover{border-color:var(--orange);box-shadow:0 8px 30px rgba(255,106,0,.08)}
.why-icon{width:52px;height:52px;background:linear-gradient(135deg,var(--orange),#FF8C33);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px}
.why-icon svg{width:26px;height:26px;color:var(--white)}
.why-card h3{font-size:1.1rem;font-weight:700;margin-bottom:8px}
.why-card p{font-size:.9rem;color:#999;line-height:1.6}

/* ====== REVIEWS ====== */
.reviews{background:var(--dark);padding:80px 0}
.reviews-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:24px}
.review-card{background:var(--dark2);border-radius:14px;padding:32px 28px;border:1px solid #2a2a2a;position:relative}
.review-stars{display:flex;gap:2px;margin-bottom:14px}
.review-stars svg{width:20px;height:20px;color:var(--orange)}
.review-card blockquote{font-size:.95rem;color:#ccc;line-height:1.7;font-style:italic;margin-bottom:16px}
.review-card .reviewer{font-weight:700;font-size:.85rem;color:var(--orange)}

/* ====== CTA SECTION ====== */
.cta-section{background:linear-gradient(135deg,var(--orange) 0%,#E85D00 100%);padding:70px 0;text-align:center}
.cta-section h2{font-size:2.4rem;font-weight:900;letter-spacing:-.03em;margin-bottom:12px;color:var(--white)}
.cta-section p{font-size:1.1rem;color:rgba(255,255,255,.85);max-width:600px;margin:0 auto 28px}
.btn-cta-dark{display:inline-flex;align-items:center;gap:8px;background:var(--black);color:var(--white);padding:16px 36px;border-radius:8px;font-weight:800;font-size:1.1rem;transition:all .2s;border:2px solid var(--black)}
.btn-cta-dark:hover{background:transparent;border-color:var(--white)}
.btn-cta-phone{display:inline-flex;align-items:center;gap:8px;background:transparent;color:var(--white);padding:16px 36px;border-radius:8px;font-weight:800;font-size:1.1rem;transition:all .2s;border:2px solid var(--white);margin-left:12px}
.btn-cta-phone:hover{background:var(--white);color:var(--black)}

/* ====== SERVICES LIST ====== */
.all-services{background:var(--black);padding:80px 0}
.all-services-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.all-services-item{display:flex;align-items:center;gap:10px;background:var(--dark2);padding:16px 20px;border-radius:10px;font-weight:600;font-size:.95rem;border:1px solid #222;transition:all .2s}
.all-services-item:hover{border-color:var(--orange);background:var(--dark3)}
.all-services-item svg{width:20px;height:20px;color:var(--orange);flex-shrink:0}

/* ====== FOOTER ====== */
.footer{background:var(--dark);border-top:1px solid #222;padding:60px 0 30px}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
.footer h4{font-size:1rem;font-weight:700;margin-bottom:16px;color:var(--white)}
.footer p,.footer a{color:#888;font-size:.9rem;line-height:1.8}
.footer a:hover{color:var(--orange)}
.footer-brand p{margin-top:12px;color:#888;font-size:.9rem;line-height:1.7}
.footer-bottom{border-top:1px solid #222;padding-top:24px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{color:#666;font-size:.8rem}
.footer-bottom a{color:#666;font-size:.8rem;margin-left:16px}
.footer-bottom a:hover{color:var(--orange)}


.lead-form .row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media(max-width:600px){.lead-form .row2{grid-template-columns:1fr}}
.lead-form .check{display:flex;align-items:flex-start;gap:8px;margin-top:14px;color:#333;font-size:.85rem;font-weight:600}
.lead-form .check input{width:auto;margin-top:3px}
.form-error{background:#fee2e2;color:#991b1b;padding:12px;border-radius:8px;margin-top:12px;font-weight:600;font-size:.9rem;display:none}
.cf-turnstile{margin-top:14px}

/* ====== SECOND FORM ====== */
.bottom-form-section{background:var(--dark2);padding:80px 0}
.bottom-form-wrap{max-width:600px;margin:auto;text-align:center}
.bottom-form-wrap h2{font-size:2rem;font-weight:900;margin-bottom:8px}
.bottom-form-wrap h2 span{color:var(--orange)}
.bottom-form-wrap>p{color:#999;margin-bottom:28px}
.bottom-form{text-align:left}
.bottom-form label{display:block;color:#ccc;font-weight:600;font-size:.85rem;margin-bottom:4px;margin-top:14px}
.bottom-form input,.bottom-form select,.bottom-form textarea{width:100%;padding:12px 14px;border:2px solid #333;border-radius:8px;font-size:1rem;font-family:inherit;background:var(--dark3);color:#fff;transition:border .2s}
.bottom-form input:focus,.bottom-form select:focus,.bottom-form textarea:focus{outline:none;border-color:var(--orange)}
.bottom-form textarea{height:80px;resize:vertical}
.bottom-form .btn-submit{margin-top:24px}

/* ====== PULSE ANIMATION ====== */
@keyframes pulse{0%,100%{box-shadow:0 4px 20px var(--orange-glow)}50%{box-shadow:0 4px 30px rgba(255,106,0,.5)}}
.btn-submit{animation:pulse 2s infinite}

/* ====== RESPONSIVE ====== */
@media(max-width:900px){
  .hero-inner{grid-template-columns:1fr;gap:32px}
  .hero-text h1{font-size:2.2rem}
  .section-title{font-size:1.8rem}
  .footer-grid{grid-template-columns:1fr 1fr}
  .cta-section h2{font-size:1.8rem}
  .btn-cta-phone{margin-left:0;margin-top:12px}
}
@media(max-width:600px){
  .hero-inner{padding:40px 16px}
  .hero-text h1{font-size:1.7rem}
  .lead-form{padding:24px 20px}
  .section-wrap{padding:0 16px}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
  .reviews-grid{grid-template-columns:1fr}
}

.intro-me{display:flex;gap:16px;align-items:center;margin-top:22px;max-width:540px}
.intro-me img{width:92px;height:92px;border-radius:50%;object-fit:cover;object-position:center top;border:3px solid var(--orange);background:#1a1a1a;flex-shrink:0}
.intro-me p{margin:0;color:#ddd;font-size:.98rem}
.intro-me strong{color:#fff}
.how{background:var(--dark2);padding:80px 0}
.how-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.how-step{background:var(--dark);border:1px solid #2a2a2a;border-radius:14px;padding:24px 20px}
.how-num{width:36px;height:36px;border-radius:50%;background:var(--orange);color:#111;font-weight:900;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.how-step h3{font-size:1.05rem;margin-bottom:8px}
.how-step p{color:#999;font-size:.9rem}
.page-hero{padding:56px 0 24px;background:var(--black)}
.crumb{color:#888;font-size:.85rem;margin-bottom:12px}
.crumb a{color:#aaa}
.crumb a:hover{color:var(--orange)}
.svc-wrap{display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:start;padding:20px 0 80px}
.svc-copy h1{font-size:2.4rem;font-weight:900;letter-spacing:-.03em;line-height:1.15;margin-bottom:14px}
.svc-copy h1 span{color:var(--orange)}
.svc-copy p{color:#bbb;margin-bottom:14px}
.svc-copy ul{margin:16px 0 24px;padding-left:18px;color:#ccc}
.svc-copy li{margin:0 0 8px}
@media(max-width:900px){
  .how-grid{grid-template-columns:1fr 1fr}
  .svc-wrap{grid-template-columns:1fr}
  .intro-me{align-items:flex-start}
}
@media(max-width:600px){
  .how-grid{grid-template-columns:1fr}
}

img{height:auto}
.hero-bg img{content-visibility:auto}
.service-card-img{aspect-ratio:16/10;height:auto}
.how,.why,.reviews,.all-services,.bottom-form-section,.footer{content-visibility:auto;contain-intrinsic-size:1px 600px}

.svc-copy h2{font-size:1.2rem;margin:22px 0 8px;color:#fff}

.svc-copy h3{font-size:1.02rem;margin:16px 0 6px;color:#eee}
