@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Source+Sans+3:wght@300;400;500;600;700;800&display=swap');
*{margin:0;padding:0;box-sizing:border-box}
html{overflow-x:hidden}
body{font-family:'Source Sans 3',sans-serif;color:#3a3a3a;background:#fff;overflow-x:hidden;-webkit-font-smoothing:antialiased}
img,video,iframe{max-width:100%;height:auto}
a{text-decoration:none;color:inherit}ul{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',serif;color:#1c2b1c}
.container{max-width:1240px;margin:0 auto;padding:0 28px}
:root{
  --green:#5a7d50;--green-dark:#3d5636;--green-soft:#e9f0e7;--green-muted:#7a9e6f;
  --brown:#7a5c3a;--accent:#d48a2c;--accent-hover:#b8751f;
  --navy:#1a2a3a;--navy-light:#243548;
  --cream:#faf9f7;--white:#fff;
  --g100:#f8f8f6;--g200:#eeede9;--g300:#dddbd6;--g400:#a8a5a0;--g500:#7a7772;--g600:#555;
  --text:#3a3a3a;--radius:8px;--radius-lg:12px;
}
/* === BUTTONS === */
.btn{display:inline-block;padding:13px 30px;border-radius:var(--radius);font-family:'Source Sans 3',sans-serif;font-weight:700;font-size:.9rem;transition:all .22s;cursor:pointer;border:none;text-align:center}
.btn-green{background:var(--green);color:#fff}.btn-green:hover{background:var(--green-dark)}
.btn-accent{background:var(--accent);color:#fff;border-radius:50px}.btn-accent:hover{background:var(--accent-hover)}
.btn-outline{background:transparent;border:2px solid var(--green);color:var(--green);border-radius:50px}.btn-outline:hover{background:var(--green);color:#fff}
.btn-round{border-radius:50px}

/* ═══════════ PROMO BAR ═══════════ */
.promo-bar{background:linear-gradient(135deg,#1c2b1c 0%,#2a3f2a 100%);padding:10px 0;text-align:center;font-size:.82rem;color:rgba(255,255,255,.75);font-weight:500;position:relative;z-index:1001}
.promo-bar strong{color:#fff;font-weight:700}
.promo-bar-btn{display:inline-block;margin-left:4px;padding:4px 14px;background:var(--accent);color:#fff;border-radius:50px;font-size:.75rem;font-weight:700;letter-spacing:.3px;transition:all .2s;text-decoration:none}
.promo-bar-btn:hover{background:var(--accent-hover);transform:translateY(-1px);box-shadow:0 3px 10px rgba(212,138,44,.35)}

/* ═══════════ NAVBAR ═══════════ */
.top-nav{background:transparent;position:sticky;top:0;z-index:1000;padding:0;transition:padding .35s ease-out}
.top-nav .container{display:flex;align-items:center;height:82px;background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.06);border:1px solid transparent;border-radius:0;transition:height .35s ease-out,border-radius .35s ease-out,border-color .35s ease-out,background .35s ease-out,box-shadow .35s ease-out,padding .35s ease-out}
.logo-img{height:52px;width:auto}
.nav-links{display:flex;align-items:center;gap:0;flex:1;justify-content:center}
.nav-links>li{position:relative}
.nav-links>li>a{display:block;padding:26px 18px;color:#2a2a2a;font-size:.92rem;font-weight:700;transition:color .2s;text-transform:uppercase;letter-spacing:.4px}
.nav-links>li>a:hover{color:var(--green)}
.nav-links .dropdown{position:absolute;top:100%;left:0;background:#fff;min-width:290px;box-shadow:0 14px 40px rgba(0,0,0,.1);border-radius:0 0 var(--radius) var(--radius);opacity:0;visibility:hidden;transition:all .2s;z-index:100;border-top:3px solid var(--green)}
.nav-links li:hover .dropdown{opacity:1;visibility:visible}
.dropdown a{display:block;padding:12px 20px;color:#555;font-size:.84rem;font-weight:600;border-bottom:1px solid #f5f5f3;transition:all .15s}
.dropdown a:hover{background:var(--green-soft);color:var(--green);padding-left:26px}
/* Free Consultation — text/outline only, no filled bg */
.nav-consult{padding:8px 20px;color:var(--green);font-weight:700;font-size:.82rem;text-transform:uppercase;letter-spacing:.4px;transition:color .2s}
.nav-consult:hover{color:var(--green-dark)}
.nav-right{display:flex;align-items:center;gap:22px}
.nav-quote-text{font-size:.72rem;font-weight:800;color:#555;text-transform:uppercase;letter-spacing:.8px}
.nav-phone-num{font-weight:800;font-size:1rem;color:var(--accent);display:flex;align-items:center;gap:5px}
.nav-phone-num svg{width:16px;height:16px;stroke:var(--accent);fill:none;stroke-width:2.5}
.hamburger{display:none;background:none;border:none;cursor:pointer;padding:0;width:40px;height:40px;border:1.5px solid var(--g300)!important;border-radius:var(--radius)!important;align-items:center;justify-content:center}
.hamburger-svg{width:20px;height:20px;display:block;transition:transform 300ms ease-in-out;color:#2a2a2a}
.hamburger.active .hamburger-svg{transform:rotate(-45deg)}
.hamburger-svg .bar1{stroke-dasharray:12 63;transition:stroke-dasharray 300ms ease-in-out,stroke-dashoffset 300ms ease-in-out}
.hamburger.active .hamburger-svg .bar1{stroke-dasharray:20 300;stroke-dashoffset:-32.42px}

/* ═══════════ HERO — CENTERED COMPONENT ═══════════ */
@keyframes heroFadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero{background:#fff;padding:110px 0 100px;position:relative;overflow:hidden}
/* Radial gradient top */
.hero::before{content:'';position:absolute;inset:0;top:-56px;background:radial-gradient(35% 80% at 49% 0%,rgba(28,43,28,.06),transparent);pointer-events:none;z-index:0}
/* Decorative faded side lines */
.hero-lines{position:absolute;inset:0;pointer-events:none;z-index:0}
.hero-line{position:absolute;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,transparent,rgba(28,43,28,.12),rgba(28,43,28,.12))}
.hero-line-l1{left:calc(50% - 580px)}.hero-line-r1{right:calc(50% - 580px)}
.hero-line-l2{left:calc(50% - 560px);opacity:.5}.hero-line-r2{right:calc(50% - 560px);opacity:.5}
/* Inner content lines */
.hero-inner-lines{position:absolute;inset:0;pointer-events:none;z-index:0;overflow:hidden}
.hero-inner-line{position:absolute;top:0;bottom:0;width:1px;background:linear-gradient(to bottom,transparent 0%,rgba(28,43,28,.08) 30%,rgba(28,43,28,.08) 80%,transparent 100%)}
.hero-inner-line-l1{left:32px}.hero-inner-line-r1{right:32px}
.hero-inner-line-l2{left:48px;opacity:.5}.hero-inner-line-r2{right:48px;opacity:.5}
/* Center layout */
.hero .container{position:relative;z-index:1}
.hero-center{display:flex;flex-direction:column;align-items:center;text-align:center;gap:22px}
/* Badge pill */
.hero-badge{display:inline-flex;align-items:center;gap:10px;border:1px solid var(--g200);background:#fff;border-radius:50px;padding:6px 16px 6px 10px;font-size:.78rem;color:var(--g500);font-weight:600;box-shadow:0 1px 6px rgba(0,0,0,.04);transition:box-shadow .2s;opacity:0;animation:heroFadeUp .5s ease-out .5s forwards}
.hero-badge:hover{box-shadow:0 3px 12px rgba(0,0,0,.08)}
.hero-badge svg{width:13px;height:13px}
.hero-badge-icon{stroke:var(--g400);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round}
.hero-badge-arrow{stroke:var(--g400);fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:transform .15s ease-out}
.hero-badge:hover .hero-badge-arrow{transform:translateX(3px)}
.hero-badge-sep{display:inline-block;width:1px;height:18px;background:var(--g200);margin:0 2px}
/* Heading */
.hero-h1{font-size:clamp(2.4rem,5vw,3.6rem);font-weight:800;color:#1c2b1c;line-height:1.15;margin:0;max-width:820px;opacity:0;animation:heroFadeUp .5s ease-out .1s forwards}
.hero-h1 strong{color:var(--green)}
/* Subtitle */
.hero-subtitle{font-size:clamp(.95rem,1.5vw,1.1rem);color:var(--g500);line-height:1.8;max-width:480px;margin:0;opacity:0;animation:heroFadeUp .5s ease-out .2s forwards}
/* CTA group */
.hero-cta-group{display:flex;flex-wrap:wrap;align-items:center;justify-content:center;gap:12px;padding-top:6px;opacity:0;animation:heroFadeUp .5s ease-out .3s forwards}
.hero-btn-outline{display:inline-flex;align-items:center;gap:8px;padding:12px 24px;border:1.5px solid var(--g300);background:#fff;border-radius:50px;font-weight:700;font-size:.9rem;color:#2a2a2a;transition:all .2s;font-family:'Source Sans 3',sans-serif}
.hero-btn-outline:hover{border-color:var(--green);color:var(--green);background:var(--green-soft)}
.hero-btn-outline svg{width:15px;height:15px;stroke:#2a2a2a;fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;transition:stroke .2s}
.hero-btn-outline:hover svg{stroke:var(--green)}
.hero-btn-primary{display:inline-flex;align-items:center;gap:8px;padding:12px 28px;background:var(--green);color:#fff;border-radius:50px;font-weight:700;font-size:.9rem;transition:all .2s;font-family:'Source Sans 3',sans-serif}
.hero-btn-primary:hover{background:var(--green-dark)}

.hero-image-wrap{width:100%;max-width:1060px;margin-top:52px;opacity:0;animation:heroImageFadeIn .8s ease-out .6s forwards}
.hero-image{width:100%;height:auto;border-radius:16px;box-shadow:0 8px 40px rgba(0,0,0,.13),0 2px 12px rgba(0,0,0,.07);display:block}
@keyframes heroImageFadeIn{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}

/* Legacy hero-cta-btn used on hero if any */
.hero-cta-btn{display:inline-flex;align-items:center;gap:8px;padding:14px 32px;background:var(--green);color:#fff;border-radius:50px;font-weight:700;font-size:.95rem;transition:all .2s}
.hero-cta-btn:hover{background:var(--green-dark)}

/* ═══════════ LOGO CLOUD ═══════════ */
.logo-cloud-section{background:var(--g100);border-top:1px solid var(--g200);border-bottom:1px solid var(--g200);padding:40px 0 48px}
.logo-cloud-title{text-align:center;font-size:.7rem;font-weight:800;color:var(--g400);text-transform:uppercase;letter-spacing:3.5px;margin-bottom:28px;font-family:'Source Sans 3',sans-serif}
.logo-cloud-wrapper{overflow:hidden;-webkit-mask-image:linear-gradient(to right,transparent,#000 12%,#000 88%,transparent);mask-image:linear-gradient(to right,transparent,#000 12%,#000 88%,transparent)}
.logo-cloud-track{display:flex;gap:52px;width:max-content;animation:scrollLogos 40s linear infinite}
.logo-cloud-track:hover{animation-play-state:paused}
@keyframes scrollLogos{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
.logo-item{display:flex;align-items:center;gap:10px;white-space:nowrap;font-size:.88rem;font-weight:700;color:#1c2b1c;letter-spacing:.2px;padding:8px 20px;flex-shrink:0;background:#fff;border-radius:50px;border:1px solid var(--g200);box-shadow:0 1px 4px rgba(0,0,0,.04);transition:box-shadow .2s,transform .2s}
.logo-item:hover{box-shadow:0 4px 16px rgba(0,0,0,.08);transform:translateY(-1px)}
.logo-item svg{width:22px;height:22px;flex-shrink:0}

/* ═══════════ TESTIMONIALS ═══════════ */
.testimonials-bar{background:var(--g100);padding:56px 0 60px;overflow:hidden;border-top:1px solid var(--g200);border-bottom:1px solid var(--g200)}
.testi-header{text-align:center;margin-bottom:32px}
.testi-header h3{font-size:.72rem;font-weight:700;color:var(--green);text-transform:uppercase;letter-spacing:3px;margin-bottom:6px;font-family:'Source Sans 3',sans-serif}
.testi-header p{font-size:1.6rem;font-weight:700;color:#1c2b1c}
.testi-trust-bar{display:flex;align-items:center;justify-content:center;gap:8px;margin-top:14px;flex-wrap:wrap}
.testi-trust-stars{display:flex;gap:2px}.testi-trust-stars svg{width:16px;height:16px;fill:#f59e0b}
.testi-trust-text{font-size:.88rem;color:var(--g500)}.testi-trust-text strong{color:#1c2b1c}
.testi-trust-sep{display:inline-block;width:1px;height:16px;background:var(--g300);margin:0 4px;flex-shrink:0}
.testi-google-g{width:20px;height:20px;flex-shrink:0}
.testi-trust-platform{font-size:.82rem;font-weight:600;color:var(--g400)}
.testi-track-wrapper{overflow:hidden}
.testi-track{display:flex;gap:24px;animation:scrollTesti 55s linear infinite;width:max-content}
.testi-track:hover{animation-play-state:paused}
.testi-card{background:#fff;border-radius:var(--radius-lg);padding:28px;min-width:380px;max-width:380px;box-shadow:0 2px 16px rgba(0,0,0,.07),0 1px 4px rgba(0,0,0,.04);flex-shrink:0;border:1px solid rgba(0,0,0,.06);display:flex;flex-direction:column;gap:14px;transition:transform .25s ease,box-shadow .25s ease}
.testi-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,.12),0 2px 8px rgba(0,0,0,.06)}
.testi-card-top{display:flex;align-items:flex-start;gap:12px}
.testi-meta{flex:1;min-width:0}
.testi-avatar{width:46px;height:46px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.85rem;color:#fff;flex-shrink:0;letter-spacing:.5px}
.testi-name{font-weight:700;font-size:.9rem;color:#1c2b1c}
.testi-firm{font-size:.76rem;color:var(--g400);margin-top:1px}
.testi-stars{display:flex;gap:2px;margin-top:5px}
.testi-stars svg{width:14px;height:14px;fill:#f59e0b}
.google-badge{display:none}
.testi-text{font-size:.88rem;color:#2e2e2e;line-height:1.78;flex:1}
.testi-text strong{color:#1a1a1a}
.testi-card-footer{display:flex;align-items:center;justify-content:space-between;gap:8px;flex-wrap:wrap;padding-top:4px;border-top:1px solid var(--g200);margin-top:auto}
.testi-verified{display:flex;align-items:center;gap:5px;font-size:.72rem;font-weight:600;color:#777}
.testi-verified svg{width:12px;height:12px;stroke:#34a853;fill:none;stroke-width:2.5;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.testi-highlight-badge{display:inline-flex;align-items:center;font-size:.7rem;font-weight:700;color:var(--green);background:var(--green-soft);border:1px solid rgba(90,125,80,.2);border-radius:50px;padding:3px 10px;white-space:nowrap}
.testimonials-bar.testi-pre-anim{opacity:0;transform:translateY(22px);transition:opacity .75s ease,transform .75s ease}
.testimonials-bar.testi-in-view{opacity:1;transform:none}
@keyframes scrollTesti{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ═══════════ SOLUTIONS ═══════════ */
.solutions{padding:80px 0;background:#fff}
.solutions-content{display:flex;align-items:center;gap:72px}
.solutions-mockup{flex:0 0 48%;min-width:0}
.solutions-img-wrap{position:relative;border-radius:16px;overflow:hidden;box-shadow:0 20px 56px rgba(0,0,0,.13),0 4px 16px rgba(0,0,0,.07);height:530px;max-height:60vw}
.solutions-img-wrap::after{content:'';position:absolute;inset:0;background:rgba(255,255,255,.12);pointer-events:none}
.solutions-img{width:100%;height: 100%;object-fit: cover;display:block;filter:brightness(1.1) contrast(.98);opacity:0;animation:solutionsImgIn .75s ease .3s forwards}


.solutions-text{flex:1;min-width:0;display:flex;flex-direction:column;justify-content:center}
.solutions-text h2{font-size:clamp(2rem,3vw,2.6rem);font-weight:700;color:#1c2b1c;line-height:1.15;margin:0 0 22px;font-family:'Playfair Display',serif}
.solutions-text p{font-size:1.02rem;color:#555;line-height:1.88;margin:0 0 16px}
.solutions-btns{display:flex;flex-wrap:wrap;gap:14px;margin-top:36px}
@keyframes solutionsImgIn{from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:translateY(0)}}

/* ═══════════ SERVICES GRID ═══════════ */
.services{padding:80px 0;background:var(--g100)}
.services-head{text-align:center;margin-bottom:52px}
.services-head h2{font-size:clamp(2rem,3vw,2.6rem);font-weight:700;color:#1c2b1c;font-family:'Playfair Display',serif;display:inline-block;position:relative;padding-bottom:16px;letter-spacing:0;text-transform:none}
.services-head h2::after{content:'';position:absolute;bottom:0;left:50%;transform:translateX(-50%);width:52px;height:3px;background:#e05a2b;border-radius:2px}
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.svc-card{background:#fff;border-radius:var(--radius-lg);padding:28px 22px 20px;transition:box-shadow .25s,transform .25s;border:1px solid #e2e8f0;display:flex;flex-direction:column;gap:16px;text-decoration:none;color:inherit}
.svc-card:hover{box-shadow:0 8px 32px rgba(0,0,0,.1);transform:translateY(-3px);border-color:#ccd4e0}
.svc-card-top{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.svc-card h4{font-size:.97rem;font-weight:700;color:#1c2b1c;line-height:1.35;font-family:'Source Sans 3',sans-serif;margin:0;padding-top:2px}
.svc-icon{width:52px;height:52px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.svc-icon svg{width:52px;height:52px}
.svc-card p{font-size:.84rem;color:#555;line-height:1.72;margin:0;flex:1}
.svc-card-arrow{display:flex;justify-content:flex-end}.svc-card-arrow svg{width:18px;height:18px}
.read-more{display:none}

/* ═══════════ STATS ═══════════ */
.stats-bar{background:#fff;padding:80px 0;border-top:1px solid var(--g200);border-bottom:1px solid var(--g200)}
.stats-headline{font-size:clamp(1.8rem,3vw,2.6rem);font-weight:700;color:#1c2b1c;font-family:'Playfair Display',serif;line-height:1.25;margin-bottom:48px;max-width:960px}
.stats-headline-sub{color:var(--g400);font-size:clamp(.85rem,1.4vw,1rem);font-weight:400;font-family:'Source Sans 3',sans-serif}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:32px;margin-bottom:40px}
.stat-num{font-family:'Playfair Display',serif;font-size:2.2rem;font-weight:700;color:#1c2b1c}
.stat-label{color:var(--g500);font-size:.88rem;margin-top:4px;line-height:1.4}
.stats-chart{width:100%;height:180px;overflow:hidden;border-radius:var(--radius-lg)}
.stats-chart svg{width:100%;height:100%;display:block}

/* ═══════════ WHY US ═══════════ */
.why-us{padding:80px 0;background:var(--g100)}
.why-head{text-align:center;margin-bottom:56px}
.why-head h2{font-size:clamp(2rem,3vw,2.6rem);font-weight:700;color:#1c2b1c;font-family:'Playfair Display',serif;line-height:1.2}
.why-head h2 span{color:var(--green)}
.why-head p{font-size:1rem;color:var(--g500);max-width:520px;margin:14px auto 0;line-height:1.72}
.why-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:22px}
.why-card{display:flex;flex-direction:column;align-items:center;text-align:center;border-radius:16px;padding:36px 26px 30px;border:1px solid;flex:1 1 240px;max-width:300px;background:#fff;transition:box-shadow .25s,transform .25s}
.why-card:hover{box-shadow:0 10px 36px rgba(0,0,0,.09);transform:translateY(-4px)}
.why-icon-circle{width:68px;height:68px;border-radius:50%;display:flex;align-items:center;justify-content:center;margin-bottom:22px;flex-shrink:0}
.why-icon-circle svg{width:28px;height:28px}
.why-card-body h4{font-size:1rem;font-weight:700;color:#1c2b1c;margin:0 0 10px;font-family:'Source Sans 3',sans-serif;line-height:1.3}
.why-card-body p{font-size:.875rem;color:var(--g500);line-height:1.76;margin:0}
.why-cta{text-align:center;margin-top:56px}

/* ═══════════ ABOUT SIDEBAR ═══════════ */
.about-section{padding:80px 0;background:var(--g100)}
.about-section .container{display:grid;grid-template-columns:1.1fr 1fr;gap:56px;align-items:start}
.about-text h2{font-size:1.6rem;font-weight:700;margin-bottom:16px;line-height:1.35}
.about-text p{font-size:.93rem;color:var(--g600);line-height:1.8;margin-bottom:14px}
.about-sidebar{background:var(--navy);border-radius:var(--radius-lg);padding:36px;color:#fff}
.about-sidebar h3{font-size:1.2rem;font-weight:700;margin-bottom:10px}
.about-sidebar p{font-size:.86rem;color:rgba(255,255,255,.5);line-height:1.7;margin-bottom:14px}
.about-sidebar ul{display:flex;flex-direction:column;gap:10px}
.about-sidebar li{display:flex;align-items:center;gap:10px;font-size:.86rem;color:rgba(255,255,255,.75);font-weight:500}
.about-sidebar li svg{width:16px;height:16px;stroke:var(--green-muted);fill:none;stroke-width:2;flex-shrink:0}

/* ═══════════ MULTI-STEP FORM ═══════════ */
.consultation{padding:80px 0;background:var(--g100)}
.consultation .container{display:grid;grid-template-columns:1fr 1.3fr;gap:50px;align-items:start}
.consultation-info h2{font-size:1.8rem;font-weight:700;color:#1c2b1c;margin-bottom:12px}
.consultation-info>p{font-size:.93rem;color:var(--g500);line-height:1.8;margin-bottom:22px}
.consult-detail{display:flex;align-items:center;gap:14px;padding:14px 0;border-bottom:1px solid var(--g200)}
.consult-detail svg{width:20px;height:20px;stroke:var(--green);fill:none;stroke-width:2;flex-shrink:0}
.consult-detail span{font-size:.88rem;color:var(--g500)}
.consult-detail strong{color:#1c2b1c;font-size:.95rem}
.consult-socials{display:flex;gap:10px;margin-top:20px}
.consult-socials a{width:36px;height:36px;border-radius:50%;border:1px solid var(--g300);display:flex;align-items:center;justify-content:center;transition:all .2s}
.consult-socials a:hover{border-color:var(--green);background:var(--green-soft)}
.consult-socials svg{width:16px;height:16px;fill:var(--g500)}
/* Form box */
.mstep-form{background:var(--navy);border-radius:var(--radius-lg);padding:40px;color:#fff;position:relative;overflow:hidden}
.mstep-form::before{content:'';position:absolute;right:-80px;top:-80px;width:250px;height:250px;background:rgba(90,125,80,.08);border-radius:50%}
.mstep-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:28px;position:relative;z-index:1}
.mstep-title{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700}
.mstep-indicator{font-size:.8rem;font-weight:700;color:rgba(255,255,255,.45)}
/* Step progress bar */
.mstep-progress{display:flex;gap:6px;margin-bottom:28px}
.mstep-progress-dot{flex:1;height:4px;border-radius:3px;background:rgba(255,255,255,.12);transition:background .3s}
.mstep-progress-dot.active{background:var(--accent)}
/* Form fields */
.mstep-form .f-row{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:14px}
.mstep-form .f-row.single{grid-template-columns:1fr}
.mstep-form label{display:block;font-size:.75rem;font-weight:700;color:rgba(255,255,255,.55);margin-bottom:5px;text-transform:uppercase;letter-spacing:.3px}
.mstep-form input,.mstep-form select,.mstep-form textarea{width:100%;padding:12px 14px;border:1px solid rgba(255,255,255,.12);border-radius:var(--radius);font-family:'Source Sans 3',sans-serif;font-size:.9rem;color:#fff;background:rgba(255,255,255,.06);outline:none;transition:border .2s}
.mstep-form input::placeholder,.mstep-form textarea::placeholder{color:rgba(255,255,255,.25)}
.mstep-form input:focus,.mstep-form select:focus,.mstep-form textarea:focus{border-color:var(--accent);background:rgba(255,255,255,.1)}
.mstep-form select{color:rgba(255,255,255,.7)}
.mstep-form select option{color:#333;background:#fff}
.mstep-form textarea{resize:vertical;min-height:80px}
.mstep-checks{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:16px}
.mstep-checks label{display:flex;align-items:center;gap:6px;font-size:.84rem;color:rgba(255,255,255,.7);cursor:pointer;background:rgba(255,255,255,.06);padding:8px 14px;border-radius:var(--radius);transition:background .15s;text-transform:none;letter-spacing:0;font-weight:500;margin-bottom:0}
.mstep-checks label:hover{background:rgba(255,255,255,.12)}
.mstep-checks input[type=checkbox]{accent-color:var(--accent);width:16px;height:16px}
.mstep-consent{display:flex;align-items:flex-start;gap:8px;font-size:.82rem;color:rgba(255,255,255,.5);margin-bottom:18px}
.mstep-consent input{margin-top:3px;accent-color:var(--accent)}
/* Buttons row */
.mstep-btns{display:flex;gap:12px;margin-top:6px}
.mstep-next{flex:none;padding:12px 36px;background:var(--accent);color:#fff;border:none;border-radius:50px;font-weight:700;font-size:.88rem;cursor:pointer;transition:all .25s ease;box-shadow:0 4px 14px rgba(212,138,44,.35);letter-spacing:.3px;font-family:'Source Sans 3',sans-serif}
.mstep-next:hover{background:var(--accent-hover);box-shadow:0 6px 20px rgba(212,138,44,.45);transform:translateY(-2px)}
.mstep-back{padding:14px 24px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.6);border:none;border-radius:50px;font-weight:700;font-size:.92rem;cursor:pointer;transition:all .2s}
.mstep-back:hover{background:rgba(255,255,255,.14);color:#fff}
/* Step panels */
.mstep-panel{display:none}.mstep-panel.active{display:block}

/* ═══════════ AUDIT MODAL ═══════════ */
.audit-modal-overlay{position:fixed;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all .25s ease}
.audit-modal-overlay.active{opacity:1;visibility:visible}
.audit-modal{background:#fff;border-radius:16px;padding:40px 36px;max-width:520px;width:92%;position:relative;box-shadow:0 24px 64px rgba(0,0,0,.2);transform:translateY(16px);transition:transform .25s ease}
.audit-modal-overlay.active .audit-modal{transform:translateY(0)}
.audit-modal-close{position:absolute;top:14px;right:18px;background:none;border:none;font-size:1.6rem;color:var(--g400);cursor:pointer;line-height:1;transition:color .15s}
.audit-modal-close:hover{color:#1c2b1c}
.audit-modal-title{font-family:'Playfair Display',serif;font-size:1.35rem;font-weight:700;color:#1c2b1c;margin:0 0 6px}
.audit-modal-sub{font-size:.88rem;color:var(--g500);margin:0 0 24px;line-height:1.6}
.audit-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.audit-row.single{grid-template-columns:1fr}
.audit-field label{display:block;font-size:.75rem;font-weight:700;color:#1c2b1c;margin-bottom:4px}
.audit-field label span{color:#e05a2b}
.audit-field input{width:100%;padding:11px 13px;border:1px solid var(--g200);border-radius:var(--radius);font-family:'Source Sans 3',sans-serif;font-size:.88rem;color:#333;outline:none;transition:border .2s;background:#fff}
.audit-field input:focus{border-color:var(--green)}
.audit-submit-btn{width:100%;padding:13px;background:var(--green);color:#fff;border:none;border-radius:50px;font-weight:700;font-size:.9rem;cursor:pointer;transition:all .2s;margin-top:6px;font-family:'Source Sans 3',sans-serif}
.audit-submit-btn:hover{background:var(--green-dark);box-shadow:0 4px 14px rgba(90,125,80,.3);transform:translateY(-1px)}
@media(max-width:768px){
  .audit-modal{padding:28px 20px}
  .audit-row{grid-template-columns:1fr}
}

/* ═══════════ BOTTOM CTA ═══════════ */
.bottom-cta{background:var(--green-dark);padding:52px 0}
.bottom-cta .container{text-align:center}
.bottom-cta h2{font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:10px}
.bottom-cta p{font-size:.9rem;color:rgba(255,255,255,.45);margin-bottom:26px;max-width:520px;margin-left:auto;margin-right:auto}
.bottom-cta-links{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}
.btn-primary{background:var(--accent);color:#fff;padding:13px 30px;border-radius:50px;font-weight:700;font-size:.88rem;transition:all .2s;display:inline-block}.btn-primary:hover{background:var(--accent-hover)}
.btn-secondary{border:1.5px solid rgba(255,255,255,.2);color:rgba(255,255,255,.7);padding:13px 30px;border-radius:50px;font-weight:700;font-size:.88rem;transition:all .2s;display:inline-block}.btn-secondary:hover{border-color:var(--green-muted);color:#fff}

/* ═══════════ FOOTER ═══════════ */
.footer{background:#1a2a1e;padding:56px 0 28px}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:36px;padding-bottom:36px;border-bottom:1px solid rgba(255,255,255,.06)}
.footer-brand{display:flex;flex-direction:column;gap:12px}
.footer-brand img{height:38px;width:auto}
.footer-brand p{font-size:.84rem;color:rgba(255,255,255,.3);line-height:1.7;max-width:260px}
.footer h4{font-size:.72rem;font-weight:700;color:var(--green-muted);text-transform:uppercase;letter-spacing:2px;margin-bottom:16px;font-family:'Source Sans 3',sans-serif}
.footer ul a{display:block;padding:3px 0;font-size:.84rem;color:rgba(255,255,255,.4);transition:color .2s}
.footer ul a:hover{color:var(--green-muted)}
.footer-bottom{padding-top:28px;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-copy{font-size:.78rem;color:rgba(255,255,255,.2)}
.footer-socials{display:flex;gap:8px}
.footer-socials a{width:32px;height:32px;border-radius:50%;border:1px solid rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;transition:all .2s}
.footer-socials a:hover{border-color:var(--green-muted);background:rgba(90,125,80,.12)}
.footer-socials svg{width:14px;height:14px;fill:rgba(255,255,255,.35)}

/* ═══════════ INNER PAGES ═══════════ */
.page-hero{background:linear-gradient(135deg,#1c2b1c 0%,#2a3f2a 100%);padding:62px 0;position:relative;overflow:hidden}
.page-hero::after{content:'';position:absolute;right:-80px;top:-80px;width:350px;height:350px;background:rgba(90,125,80,.1);border-radius:50%}
.page-hero h1{font-size:2.2rem;font-weight:700;color:#fff;position:relative;z-index:1}
.page-hero p{font-size:1rem;color:rgba(255,255,255,.55);margin-top:10px;max-width:560px;line-height:1.7;position:relative;z-index:1}
.page-hero .btn{margin-top:22px;position:relative;z-index:1}
.page-content{padding:60px 0}
.page-content h2{font-size:1.45rem;font-weight:700;margin-bottom:14px;margin-top:34px}
.page-content h2:first-child{margin-top:0}
.page-content p{font-size:.93rem;color:var(--g600);line-height:1.8;margin-bottom:14px}
.page-content .two-col{display:grid;grid-template-columns:1fr 1fr;gap:46px;align-items:start}
.feature-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin:36px 0}
.feature-card{background:#fff;border:1px solid var(--g200);border-radius:var(--radius-lg);padding:26px 20px;text-align:center;transition:all .25s}
.feature-card:hover{box-shadow:0 6px 20px rgba(0,0,0,.05);transform:translateY(-2px)}
.feature-card svg{width:32px;height:32px;stroke:var(--green);fill:none;stroke-width:1.5;margin-bottom:12px}
.feature-card h4{font-size:.88rem;font-weight:700;color:#1c2b1c;margin-bottom:5px;font-family:'Source Sans 3',sans-serif}
.feature-card p{font-size:.8rem;color:var(--g500);line-height:1.6}
.team-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-top:28px}
.team-card{background:#fff;border-radius:var(--radius-lg);padding:28px;text-align:center;border:1px solid var(--g200)}
.team-avatar{width:72px;height:72px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-weight:800;font-size:1.1rem;color:#fff}
.team-card h4{font-size:.92rem;font-weight:700;color:#1c2b1c;margin-bottom:3px}
.team-card span{font-size:.8rem;color:var(--g400)}
.testi-page-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px}
.testi-page-card{background:#fff;border:1px solid var(--g200);border-radius:var(--radius-lg);padding:28px;transition:box-shadow .25s}
.testi-page-card:hover{box-shadow:0 6px 22px rgba(0,0,0,.05)}
.testi-page-card .testi-quote{font-size:.9rem;color:var(--g600);line-height:1.75;font-style:italic;margin-bottom:18px;padding-left:18px;border-left:3px solid var(--green)}
.testi-page-card .testi-quote strong{color:#1c2b1c;font-style:normal}
.testi-page-bottom{display:flex;align-items:center;gap:12px}
.tp-avatar{width:44px;height:44px;border-radius:50%;background:var(--green);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-size:.85rem;flex-shrink:0}
.tp-name{font-weight:700;font-size:.88rem;color:#1c2b1c}
.tp-firm{font-size:.76rem;color:var(--g400)}
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.blog-card{border:1px solid var(--g200);border-radius:var(--radius-lg);overflow:hidden;transition:box-shadow .25s}
.blog-card:hover{box-shadow:0 6px 24px rgba(0,0,0,.06)}
.blog-thumb{height:170px;background:linear-gradient(135deg,#eef2ec,#dde4da);display:flex;align-items:center;justify-content:center}
.blog-thumb svg{width:44px;height:44px;stroke:var(--green);fill:none;stroke-width:1.5;opacity:.35}
.blog-card-body{padding:22px}
.blog-date{font-size:.72rem;color:var(--g400);font-weight:600;margin-bottom:7px;text-transform:uppercase}
.blog-card-body h4{font-size:.92rem;font-weight:700;color:#1c2b1c;line-height:1.4;margin-bottom:10px}
.blog-card-body a{font-size:.82rem;font-weight:700;color:var(--green)}
.faq-section{padding:56px 0;background:var(--g100)}
.faq-section h2{text-align:center;margin-bottom:36px}
.faq-item{background:#fff;border:1px solid var(--g200);border-radius:var(--radius);margin-bottom:10px;overflow:hidden}
.faq-q{padding:18px 22px;font-weight:700;font-size:.92rem;color:#1c2b1c;cursor:pointer;display:flex;justify-content:space-between;align-items:center;transition:background .15s;font-family:'Source Sans 3',sans-serif}
.faq-q:hover{background:var(--g100)}
.faq-q::after{content:'+';font-size:1.2rem;color:var(--green);font-weight:400}
.faq-item.open .faq-q::after{content:'\2212'}
.faq-a{padding:0 22px 18px;font-size:.88rem;color:var(--g600);line-height:1.7;display:none}
.faq-item.open .faq-a{display:block}
.video-placeholder{background:#1c2b1c;border-radius:var(--radius-lg);aspect-ratio:16/9;max-width:660px;margin:28px auto;display:flex;align-items:center;justify-content:center;cursor:pointer;position:relative;overflow:hidden}
.video-placeholder::before{content:'';position:absolute;inset:0;background:linear-gradient(135deg,rgba(90,125,80,.15),rgba(0,0,0,.35))}
.video-placeholder svg{width:56px;height:56px;fill:rgba(255,255,255,.75);position:relative;z-index:1}
.form-container{background:#fff;border-radius:var(--radius-lg);padding:36px}
.form-container h3{font-size:1.2rem;font-weight:700;color:#1c2b1c;margin-bottom:5px}
.form-sub{font-size:.84rem;color:var(--g400);margin-bottom:24px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}.form-row.single{grid-template-columns:1fr}
.form-group label{display:block;font-size:.75rem;font-weight:700;color:#1c2b1c;margin-bottom:4px}
.form-group input,.form-group select,.form-group textarea{width:100%;padding:11px 13px;border:1px solid var(--g200);border-radius:var(--radius);font-family:'Source Sans 3',sans-serif;font-size:.88rem;color:#333;outline:none;transition:border .2s;background:#fff}
.form-group input:focus,.form-group select:focus,.form-group textarea:focus{border-color:var(--green)}
.form-group textarea{resize:vertical;min-height:80px}
.form-submit{width:100%;padding:14px;background:var(--green);color:#fff;border:none;border-radius:50px;font-weight:700;font-size:.92rem;cursor:pointer;transition:background .2s}
.form-submit:hover{background:var(--green-dark)}

/* ═══════════ RESPONSIVE ═══════════ */

/* Mobile nav overlay */
.nav-links.open{display:flex!important;flex-direction:column;position:fixed;top:66px;left:0;right:0;bottom:0;background:#fff;padding:20px 28px;z-index:999;gap:0;overflow-y:auto;box-shadow:0 10px 40px rgba(0,0,0,.1);animation:slideDown .25s ease}
.nav-links.open>li>a{padding:16px 0;font-size:.95rem;border-bottom:1px solid var(--g200)}
.nav-links.open .dropdown{position:static;opacity:1;visibility:visible;box-shadow:none;border-top:none;min-width:auto;border-radius:0;padding-left:16px}
.nav-links.open .dropdown a{padding:10px 0;border-bottom:1px solid var(--g100);font-size:.88rem}
.nav-links.open .nav-consult{display:inline-block;margin-top:16px;text-align:center;padding:14px 0;border:none}
@keyframes slideDown{from{opacity:0;transform:translateY(-10px)}to{opacity:1;transform:translateY(0)}}

/* Scrolled floating header */
/* Floating pill header on scroll (desktop only) */
@media(min-width:769px){
  .top-nav.scrolled{padding:10px 24px}
  .top-nav.scrolled .container{height:62px;border-radius:10px;border-color:var(--g200);background:rgba(255,255,255,.92);backdrop-filter:blur(14px);-webkit-backdrop-filter:blur(14px);box-shadow:0 4px 28px rgba(0,0,0,.09);padding:0 16px}
}

/* Mobile phone bar (shown on mobile only) */
.mobile-phone{display:none;background:var(--green);text-align:center;padding:10px;color:#fff;font-weight:700;font-size:.9rem}
.mobile-phone a{color:#fff;display:flex;align-items:center;justify-content:center;gap:6px}
.mobile-phone svg{width:16px;height:16px;stroke:#fff;fill:none;stroke-width:2}

/* ── TABLET (max 1024px) ── */
@media(max-width:1024px){
  .hero{padding:90px 0 80px}
  .hero-h1{font-size:2.6rem}
  .hero-line-l1,.hero-line-r1,.hero-line-l2,.hero-line-r2{display:none}
  .solutions-content{flex-direction:column;gap:44px}
  .solutions-mockup{flex:none;width:100%;max-width:680px;margin:0 auto}
  .solutions-img-wrap{height:auto;max-height:420px}
  .solutions-text{text-align:center;align-items:center}
  .solutions-btns{justify-content:center}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .why-card{flex:1 1 100%;max-width:100%}
  .about-section .container{grid-template-columns:1fr}
  .consultation .container{grid-template-columns:1fr}
  .consultation-info{text-align:center}
  .consult-detail{justify-content:center}
  .consult-socials{justify-content:center}
  .blog-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
  .page-content .two-col{grid-template-columns:1fr}
  .feature-cards{grid-template-columns:1fr 1fr}
  .team-grid{grid-template-columns:1fr 1fr}
  .testi-page-grid{grid-template-columns:1fr}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .testi-card{min-width:300px;max-width:300px}
}

/* ── MOBILE (max 768px) ── */
@media(max-width:768px){
  /* Nav */
  .nav-links,.nav-right{display:none}
  .hamburger{display:flex}
  .mobile-phone{display:block}
  .top-nav .container{height:66px;border-radius:0!important;border-color:transparent!important;box-shadow:0 2px 8px rgba(0,0,0,.06)!important;background:#fff!important;backdrop-filter:none!important;padding:0 18px!important}
  .logo-img{height:36px}

  /* Promo bar */
  .promo-bar{padding:8px 0;font-size:.75rem}
  .promo-bar .container{flex-wrap:wrap;gap:6px}
  .promo-bar-btn{margin-left:0;padding:4px 12px;font-size:.7rem}

  /* Hero */
  .hero{padding:70px 0 60px}
  .hero-h1{font-size:2rem;line-height:1.25}
  .hero-h1 br{display:none}
  .hero-subtitle{font-size:.95rem}
  .hero-cta-group{flex-direction:column;width:100%;max-width:320px}
  .hero-btn-outline,.hero-btn-primary{width:100%;justify-content:center}
  .hero-image-wrap{margin-top:36px}
  .hero-image{border-radius:12px}
  .hero-inner-line-l1,.hero-inner-line-r1,.hero-inner-line-l2,.hero-inner-line-r2{display:none}
  .hero-badge{font-size:.72rem;padding:5px 12px 5px 8px}
  .hero-bullets{flex-direction:column;gap:10px;align-items:center}
  .hero-bullets li{font-size:.78rem}

  /* Sections */
  .container{padding:0 18px}
  .solutions{padding:56px 0}
  .solutions-img-wrap{height:auto;max-height:320px}
  .solutions-text h2{font-size:1.75rem}
  .solutions-btns{flex-direction:column;width:100%;max-width:320px}
  .solutions-btns .hero-btn-outline,.solutions-btns .hero-btn-primary{justify-content:center;width:100%}

  /* Services */
  .services{padding:50px 0}
  .services-head h2{font-size:1.5rem}
  .services-grid{grid-template-columns:repeat(2,1fr);gap:14px}
  .svc-card{padding:20px 16px;gap:12px}
  .svc-icon{width:42px;height:42px}.svc-icon svg{width:42px;height:42px}
  .svc-card h4{font-size:.88rem}
  .svc-card p{font-size:.8rem}

  /* Stats */
  .stats-bar{padding:56px 0}
  .stats-headline{font-size:1.5rem;margin-bottom:36px}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:28px;margin-bottom:32px}
  .stat-num{font-size:1.8rem}

  /* Why us */
  .why-us{padding:50px 0}
  .why-head h2{font-size:1.4rem}
  .why-grid{gap:16px}
  .why-card{padding:28px 20px}

  /* About */
  .about-section{padding:50px 0}
  .about-section .container{gap:30px}
  .about-text h2{font-size:1.3rem}
  .about-sidebar{padding:28px 22px}

  /* Form / Consultation */
  .consultation{padding:50px 0}
  .consultation .container{gap:30px}
  .consultation-info h2{font-size:1.4rem}
  .consult-detail{flex-direction:row;text-align:left;justify-content:flex-start}
  .mstep-form{padding:24px 18px!important;border-radius:10px}
  .mstep-form .f-row{grid-template-columns:1fr!important;gap:14px}
  .mstep-footer{flex-direction:column;gap:14px;align-items:stretch}
  .mstep-footer-right{justify-content:space-between;width:100%}
  .mstep-next{padding:12px 24px;font-size:.85rem;flex:1;justify-content:center;width:100%}
  .mstep-back{padding:12px 20px;font-size:.82rem}
  .mstep-checks{gap:8px}
  .mstep-checks label{padding:8px 12px;font-size:.82rem}

  /* Testimonials bar */
  .testimonials-bar{padding:36px 0}
  .testi-header p{font-size:1.15rem}
  .testi-trust-bar{gap:6px}
  .testi-card{min-width:290px;max-width:290px;padding:20px;gap:12px}
  .testi-card:hover{transform:none}
  .testi-text{font-size:.84rem}

  /* Logo cloud */
  .logo-cloud-title{font-size:.65rem;letter-spacing:2.5px;margin-bottom:20px}
  .logo-item{font-size:.78rem;padding:6px 14px}

  /* Blog */
  .blog-grid{grid-template-columns:1fr;gap:16px}
  .blog-thumb{height:150px}
  .blog-card-body{padding:18px}

  /* Footer */
  .footer{padding:40px 0 20px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column;text-align:center;gap:16px}

  /* Inner pages */
  .page-hero{padding:40px 0}
  .page-hero h1{font-size:1.6rem}
  .page-hero p{font-size:.9rem}
  .page-content{padding:40px 0}
  .page-content h2{font-size:1.25rem}
  .feature-cards{grid-template-columns:1fr;gap:14px}
  .feature-card{padding:20px 16px}
  .team-grid{grid-template-columns:1fr;gap:16px}
  .testi-page-grid{grid-template-columns:1fr;gap:16px}
  .testi-page-card{padding:22px}
  .form-container{padding:24px 18px}
  .form-row{grid-template-columns:1fr}
  .video-placeholder{aspect-ratio:16/10}

  /* Bottom CTA */
  .bottom-cta{padding:36px 0}
  .bottom-cta h2{font-size:1.2rem}
  .bottom-cta-links{flex-direction:column;align-items:center}
  .btn-primary,.btn-secondary{width:100%;text-align:center;max-width:300px}

  /* Portfolio grid on web design page */
  div[style*="grid-template-columns: 1fr 1fr 1fr"]{grid-template-columns:1fr!important}
  div[style*="grid-template-columns:1fr 1fr 1fr"]{grid-template-columns:1fr!important}

  /* FAQ */
  .faq-section{padding:40px 0}
  .faq-q{padding:14px 16px;font-size:.88rem}
  .faq-a{padding:0 16px 14px;font-size:.85rem}

  /* Audit modal */
  .audit-modal{padding:24px 18px;width:95%}
  .audit-modal-title{font-size:1.15rem}

  /* Prevent horizontal overflow */
  img,video,iframe,svg,table{max-width:100%}
  .hero-cta-btn{padding:14px 28px;font-size:.9rem}
}

/* ── SMALL MOBILE (max 480px) ── */
@media(max-width:480px){
  .hero-h1{font-size:1.6rem}
  .hero h1{font-size:1.5rem}
  .hero-desc{font-size:.88rem}
  .hero-subtitle{font-size:.88rem}
  .hero-badge{font-size:.68rem;padding:4px 10px 4px 7px}
  .hero-badge-sep{display:none}
  .hero-bullets li{font-size:.7rem;letter-spacing:.5px}
  .container{padding:0 14px}
  .promo-bar{font-size:.72rem}
  .promo-bar .container{flex-direction:column;gap:6px}
  .mstep-form{padding:20px 14px!important}
  .mstep-form input,.mstep-form select,.mstep-form textarea{padding:12px;font-size:.86rem}
  .mstep-form label{font-size:.8rem}
  .services-grid{grid-template-columns:1fr}
  .svc-card{padding:18px 14px;gap:10px}
  .svc-icon{width:40px;height:40px}.svc-icon svg{width:40px;height:40px}
  .stat-num{font-size:1.8rem}
  .stats-grid{grid-template-columns:1fr 1fr;gap:20px}
  .testi-card{min-width:260px;max-width:260px;padding:18px;gap:10px}
  .testi-trust-sep{display:none}
  .testi-trust-platform{display:none}
  .about-sidebar{padding:22px 16px}
  .page-hero h1{font-size:1.35rem}
  .page-hero p{font-size:.84rem}
  .solutions-img-wrap{max-height:240px}
  .why-card{padding:24px 16px}
  .why-head h2{font-size:1.25rem}
  .why-head p{font-size:.88rem}
  .consultation-info h2{font-size:1.2rem}
  .bottom-cta h2{font-size:1.05rem}
  .bottom-cta p{font-size:.82rem}
  .footer-brand p{font-size:.78rem}
  .hero-cta-btn{padding:12px 24px;font-size:.88rem}
}


/* ═══════════ FORM OVERRIDE — EXACT SCREENSHOT MATCH ═══════════ */
.mstep-form{background:#0b1537;border-radius:14px;padding:46px 44px;color:#fff;position:relative;overflow:hidden;box-shadow:0 20px 60px rgba(11,21,55,.4)}
.mstep-form::before{display:none}
.mstep-top{display:none}
.mstep-progress{display:none}
.mstep-form label{display:block;font-size:.88rem;font-weight:600;color:rgba(255,255,255,.85);margin-bottom:8px;text-transform:none;letter-spacing:0;font-family:'Source Sans 3',sans-serif}
.mstep-form label .req{color:#f26546;font-weight:700}
.mstep-form input,.mstep-form select,.mstep-form textarea{width:100%;padding:14px 16px;border:2px solid rgba(255,255,255,.12);border-radius:8px;font-family:'Source Sans 3',sans-serif;font-size:.92rem;color:#333;background:#fff;outline:none;transition:border-color .2s}
.mstep-form input::placeholder,.mstep-form textarea::placeholder{color:#aaa}
.mstep-form input:focus,.mstep-form select:focus,.mstep-form textarea:focus{border-color:#f26546}
.mstep-form select{color:#555;background:#fff;appearance:auto;-webkit-appearance:auto}
.mstep-form .f-row{display:grid;grid-template-columns:1fr 1fr;gap:20px;margin-bottom:20px}
.mstep-form .f-row.single{grid-template-columns:1fr}
.mstep-footer{display:flex;justify-content:space-between;align-items:center;margin-top:36px;padding-top:20px;border-top:1px solid rgba(255,255,255,.06)}
.mstep-footer .req-text{font-size:.85rem;color:rgba(255,255,255,.7)}.mstep-footer .req-text span{color:#f26546;font-weight:700}
.mstep-footer-right{display:flex;align-items:center;gap:16px}
.mstep-footer .step-text{font-size:.88rem;color:rgba(255,255,255,.5);font-weight:500}
.mstep-next{padding:14px 32px;background:#f26546;color:#fff;border:none;border-radius:50px;font-weight:700;font-size:.92rem;cursor:pointer;transition:all .2s;box-shadow:0 4px 15px rgba(242,101,70,.35);display:inline-flex;align-items:center;gap:8px}
.mstep-next:hover{background:#d9553a;box-shadow:0 6px 20px rgba(242,101,70,.45);transform:translateY(-1px)}
.mstep-back{padding:14px 24px;background:rgba(255,255,255,.08);color:rgba(255,255,255,.6);border:none;border-radius:50px;font-weight:700;font-size:.88rem;cursor:pointer;transition:all .2s}
.mstep-back:hover{background:rgba(255,255,255,.15);color:#fff}
.mstep-btns{display:flex;gap:12px;justify-content:flex-end;align-items:center}
.mstep-panel{display:none}.mstep-panel.active{display:block}
.mstep-checks{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:16px}
.mstep-checks label{display:flex;align-items:center;gap:7px;font-size:.88rem;color:rgba(255,255,255,.8);cursor:pointer;background:rgba(255,255,255,.06);padding:10px 16px;border-radius:8px;border:1px solid rgba(255,255,255,.1);transition:all .15s;font-weight:500;margin-bottom:0}
.mstep-checks label:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.2)}
.mstep-checks input[type=checkbox]{accent-color:#f26546;width:16px;height:16px}
.mstep-consent{display:flex;align-items:flex-start;gap:8px;font-size:.82rem;color:rgba(255,255,255,.45);margin-bottom:18px}
.mstep-consent input{margin-top:3px;accent-color:#f26546}
.mstep-form textarea{resize:vertical;min-height:80px;color:#333;background:#fff}

/* Hero bullets — horizontal with dots */
.hero-bullets{display:flex;gap:24px;margin-bottom:26px;flex-wrap:wrap;list-style:none;padding:0}
.hero-bullets li{display:flex;align-items:center;gap:9px;font-size:.85rem;font-weight:700;color:var(--green);text-transform:uppercase;letter-spacing:.8px}
.hero-bullets li::before{content:'';width:7px;height:7px;background:var(--green);border-radius:50%;flex-shrink:0}

/* Hero CTA button — 3D #f26546, turns blue on hover */
.hero-cta-btn{display:inline-block;padding:16px 40px;background:#f26546;color:#fff;border-radius:50px;font-family:'Source Sans 3',sans-serif;font-weight:700;font-size:1rem;transition:all .25s;cursor:pointer;border:none;text-align:center;box-shadow:0 6px 18px rgba(242,101,70,.4),0 3px 6px rgba(0,0,0,.1);position:relative;text-decoration:none;letter-spacing:.3px}
.hero-cta-btn:hover{background:#4a90e2;box-shadow:0 10px 30px rgba(74,144,226,.4),0 4px 10px rgba(0,0,0,.12);transform:translateY(-3px);color:#fff}

/* Form fields — always white background even on focus */
.mstep-form input:focus,.mstep-form select:focus,.mstep-form textarea:focus{border-color:#f26546;background:#fff}
