*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
--navy:#0b1d3a;
--navy-dark:#071428;
--navy-light:#132d54;
--red:#d42b2b;
--red-hover:#b81e1e;
--white:#ffffff;
--gray-50:#f8f9fb;
--gray-100:#eef0f4;
--gray-200:#d8dce5;
--gray-600:#5a6478;
--gray-800:#2a3042;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',system-ui,-apple-system,sans-serif;color:var(--gray-800);line-height:1.6;margin:0;min-height:100vh;padding-top:56px}

/* Sticky Top Bar */
.top-bar{position:fixed;top:0;left:0;right:0;z-index:1000;background:var(--red);color:var(--white);display:flex;align-items:center;justify-content:center;gap:12px;padding:12px 20px;font-size:14px;font-weight:600}
.top-bar .tagline{display:none}
.top-bar .call-btn{display:inline-flex;align-items:center;gap:8px;background:var(--white);color:var(--red);padding:8px 20px;border-radius:6px;text-decoration:none;font-weight:700;font-size:15px;white-space:nowrap;transition:transform .15s}
.top-bar .call-btn:hover{transform:scale(1.03)}
.top-bar .call-btn svg{width:18px;height:18px;flex-shrink:0}
@media(min-width:600px){
.top-bar .tagline{display:inline}
.top-bar{gap:20px}
}

/* Utility */
.container{max-width:1120px;margin:0 auto;padding:0 20px}
.section-label{text-transform:uppercase;font-size:12px;font-weight:700;letter-spacing:2px;color:var(--red);margin-bottom:8px}

/* Hero */
.hero{position:relative;background:var(--navy);color:var(--white);overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;opacity:.18}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(135deg,rgba(11,29,58,.92) 40%,rgba(11,29,58,.75))}
.hero .container{position:relative;z-index:2;display:grid;grid-template-columns:1fr;gap:40px;padding-top:64px;padding-bottom:64px}
.hero-eyebrow{font-size:13px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:8px}
.hero h1{font-size:clamp(32px,5.5vw,54px);font-weight:900;line-height:1.1;margin-bottom:16px}
.hero h1 em{font-style:italic;color:var(--red);text-decoration:none}
.hero-sub{font-size:18px;color:rgba(255,255,255,.8);max-width:520px;margin-bottom:28px;line-height:1.5}
.hero-cta-btn{display:inline-flex;align-items:center;gap:10px;background:var(--red);color:var(--white);padding:16px 36px;border-radius:8px;text-decoration:none;font-size:18px;font-weight:700;transition:background .2s,transform .15s;border:none;cursor:pointer}
.hero-cta-btn:hover{background:var(--red-hover);transform:translateY(-2px)}
.hero-cta-btn svg{width:22px;height:22px}

/* Lead Form */
.lead-form-card{background:var(--white);border-radius:12px;padding:32px 28px;box-shadow:0 20px 60px rgba(0,0,0,.3)}
.lead-form-card h3{color:var(--navy);font-size:20px;font-weight:800;margin-bottom:4px}
.lead-form-card .form-sub{color:var(--gray-600);font-size:14px;margin-bottom:20px}
.lead-form-card label{display:block;font-size:13px;font-weight:600;color:var(--gray-800);margin-bottom:4px}
.lead-form-card input,.lead-form-card select{width:100%;padding:12px 14px;border:2px solid var(--gray-200);border-radius:6px;font-size:15px;font-family:inherit;margin-bottom:14px;transition:border-color .2s;appearance:none;-webkit-appearance:none;background:var(--white)}
.lead-form-card select{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' stroke-width='2' fill='none'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 14px center}
.lead-form-card input:focus,.lead-form-card select:focus{outline:none;border-color:var(--navy)}
.lead-form-card .form-btn{width:100%;padding:14px;background:var(--navy);color:var(--white);border:none;border-radius:6px;font-size:16px;font-weight:700;cursor:pointer;transition:background .2s}
.lead-form-card .form-btn:hover{background:var(--navy-light)}

@media(min-width:768px){
.hero .container{grid-template-columns:1fr 380px;align-items:center;padding-top:80px;padding-bottom:80px}
}
@media(min-width:1024px){
.hero .container{grid-template-columns:1fr 420px}
}

/* Trust Strip */
.trust-strip{background:var(--gray-50);border-top:3px solid var(--red);border-bottom:1px solid var(--gray-200);padding:28px 0}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;text-align:center}
.trust-item{display:flex;flex-direction:column;align-items:center;gap:6px;padding:12px 8px}
.trust-icon{width:44px;height:44px;background:var(--navy);border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.trust-icon svg{width:22px;height:22px;color:var(--white)}
.trust-item strong{font-size:14px;font-weight:700;color:var(--navy)}
@media(min-width:640px){.trust-grid{grid-template-columns:repeat(4,1fr)}}

/* Why Choose Us */
.why-section{padding:72px 0;background:var(--white)}
.why-section .section-header{text-align:center;margin-bottom:48px}
.why-section h2{font-size:clamp(26px,4vw,38px);font-weight:900;color:var(--navy)}
.why-grid{display:grid;grid-template-columns:1fr;gap:32px}
.why-card{text-align:center;padding:32px 24px;border-radius:12px;border:1px solid var(--gray-200);transition:box-shadow .25s}
.why-card:hover{box-shadow:0 8px 30px rgba(11,29,58,.08)}
.why-card .icon-wrap{width:64px;height:64px;background:linear-gradient(135deg,var(--navy),var(--navy-light));border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 20px}
.why-card .icon-wrap svg{width:30px;height:30px;color:var(--white)}
.why-card h3{font-size:20px;font-weight:800;color:var(--navy);margin-bottom:8px}
.why-card p{font-size:15px;color:var(--gray-600);max-width:320px;margin:0 auto}
@media(min-width:768px){.why-grid{grid-template-columns:repeat(3,1fr)}}

/* How It Works */
.how-section{padding:72px 0;background:var(--navy);color:var(--white)}
.how-section .section-header{text-align:center;margin-bottom:48px}
.how-section .section-label{color:rgba(255,255,255,.5)}
.how-section h2{font-size:clamp(26px,4vw,38px);font-weight:900}
.steps-grid{display:grid;grid-template-columns:1fr;gap:32px;position:relative}
.step{text-align:center;position:relative}
.step-number{width:56px;height:56px;background:var(--red);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:24px;font-weight:900;margin:0 auto 16px;position:relative;z-index:2}
.step h3{font-size:18px;font-weight:700;margin-bottom:6px}
.step p{font-size:15px;color:rgba(255,255,255,.7);max-width:280px;margin:0 auto}
.step-connector{display:none}
@media(min-width:768px){
.steps-grid{grid-template-columns:repeat(3,1fr);gap:24px}
.step-connector{display:block;position:absolute;top:28px;left:calc(50% + 36px);width:calc(100% - 72px);height:3px;background:rgba(255,255,255,.15);z-index:1}
.step:last-child .step-connector{display:none}
}

/* Services */
.services-section{padding:72px 0;background:var(--gray-50)}
.services-section .section-header{text-align:center;margin-bottom:48px}
.services-section h2{font-size:clamp(26px,4vw,38px);font-weight:900;color:var(--navy)}
.services-grid{display:grid;grid-template-columns:1fr;gap:28px}
.service-card{background:var(--white);border-radius:12px;overflow:hidden;box-shadow:0 4px 20px rgba(11,29,58,.06);transition:transform .25s,box-shadow .25s}
.service-card:hover{transform:translateY(-4px);box-shadow:0 12px 40px rgba(11,29,58,.12)}
.service-card img{width:100%;height:220px;object-fit:cover;background:var(--gray-200)}
.service-card-body{padding:28px 24px}
.service-card h3{font-size:20px;font-weight:800;color:var(--navy);margin-bottom:8px}
.service-card p{font-size:15px;color:var(--gray-600);margin-bottom:20px;line-height:1.6}
.service-card .card-cta{display:inline-flex;align-items:center;gap:8px;color:var(--red);font-weight:700;font-size:15px;text-decoration:none;transition:gap .2s}
.service-card .card-cta:hover{gap:12px}
@media(min-width:768px){.services-grid{grid-template-columns:repeat(3,1fr)}}

/* Testimonials */
.testimonials-section{padding:72px 0;background:var(--white)}
.testimonials-section .section-header{text-align:center;margin-bottom:12px}
.testimonials-section h2{font-size:clamp(26px,4vw,38px);font-weight:900;color:var(--navy)}
.testimonials-note{text-align:center;font-size:13px;color:var(--gray-600);font-style:italic;margin-bottom:40px}
.testimonials-grid{display:grid;grid-template-columns:1fr;gap:24px}
.testimonial-card{background:var(--gray-50);border-radius:12px;padding:28px 24px;border-left:4px solid var(--red)}
.stars{color:#f5a623;font-size:18px;margin-bottom:12px;letter-spacing:2px}
.testimonial-card blockquote{font-size:15px;color:var(--gray-800);line-height:1.7;margin-bottom:14px;font-style:normal}
.testimonial-card cite{font-style:normal;font-weight:700;font-size:14px;color:var(--navy)}
@media(min-width:768px){.testimonials-grid{grid-template-columns:repeat(3,1fr)}}

/* Closing CTA */
.closing-cta{padding:80px 0;background:linear-gradient(135deg,var(--navy-dark),var(--navy));color:var(--white);text-align:center}
.closing-cta h2{font-size:clamp(28px,5vw,44px);font-weight:900;margin-bottom:8px}
.closing-cta .closing-sub{font-size:18px;color:rgba(255,255,255,.7);margin-bottom:40px}
.closing-inner{max-width:480px;margin:0 auto}
.closing-inner .lead-form-card{margin-bottom:24px}
.closing-call-btn{display:inline-flex;align-items:center;gap:10px;background:var(--red);color:var(--white);padding:18px 44px;border-radius:8px;text-decoration:none;font-size:20px;font-weight:800;transition:background .2s,transform .15s}
.closing-call-btn:hover{background:var(--red-hover);transform:translateY(-2px)}
.closing-call-btn svg{width:24px;height:24px}

/* Footer */
.footer{background:var(--navy-dark);color:rgba(255,255,255,.6);text-align:center;padding:24px 20px;font-size:13px;line-height:1.8}
.footer a{color:rgba(255,255,255,.8);text-decoration:none}
.footer strong{color:var(--white)}
.footer .demo-note{font-size:12px;color:rgba(255,255,255,.35);margin-top:6px}

/* Phone icon inline */
.phone-icon{display:inline-block;vertical-align:middle}
