@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --navy:      #0a2342;
  --navy-mid:  #123567;
  --blue:      #1565c0;
  --green:     #2e7d32;
  --green-light:#43a047;
  --accent:    #ff6f00;
  --accent2:   #ffa000;
  --white:     #ffffff;
  --off:       #f4f6f9;
  --gray:      #e8ecf0;
  --text:      #1a1a2e;
  --muted:     #5a6475;
  --border:    #d0d7e3;
  --r:         8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); font-size: 16px; line-height: 1.65; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* TOPBAR */
.topbar { background: var(--navy); color: #9ab; font-size: 13px; padding: 8px 0; }
.topbar .tw { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--accent2); font-weight: 600; }
.topbar span { margin-right: 16px; }

/* CONTAINER */
.w { max-width: 1160px; margin: 0 auto; padding: 0 22px; }

/* HEADER */
header { background: var(--white); border-bottom: 3px solid var(--blue); position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 16px rgba(0,0,0,0.09); }
.ni { display: flex; align-items: center; justify-content: space-between; padding: 13px 0; gap: 16px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-icon svg { width: 28px; height: 28px; }
.logo-txt strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: var(--navy); letter-spacing: -0.5px; }
.logo-txt span { font-size: 11px; color: var(--green); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
nav ul { display: flex; align-items: center; gap: 2px; flex-wrap: wrap; }
nav ul li a { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); padding: 8px 12px; border-radius: var(--r); text-transform: uppercase; letter-spacing: 0.3px; transition: background .2s, color .2s; }
nav ul li a:hover { background: var(--off); color: var(--blue); }
nav ul li a.active { color: var(--blue); }
.has-dd { position: relative; }
.dd { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--r); box-shadow: 0 8px 32px rgba(0,0,0,0.13); min-width: 220px; border-top: 3px solid var(--blue); z-index: 100; }
.has-dd:hover .dd { display: block; }
.dd li a { display: block; padding: 10px 18px !important; font-size: 13px !important; border-bottom: 1px solid var(--gray); border-radius: 0 !important; text-transform: none !important; letter-spacing: 0 !important; }
.dd li:last-child a { border-bottom: none; }
.dd li a:hover { background: var(--off) !important; padding-left: 24px !important; }
.ncta { background: var(--accent) !important; color: var(--white) !important; padding: 10px 20px !important; }
.ncta:hover { background: var(--accent2) !important; color: var(--white) !important; }
.mt { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.mt span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* HERO */
.hero { background: var(--navy); color: var(--white); padding: 80px 0 70px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('images/tech2.png') right center / 45% auto no-repeat; opacity: 0.12; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue), var(--green), var(--accent)); }
.hero-in { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.hbadge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,111,0,0.15); border: 1px solid rgba(255,111,0,0.4); color: var(--accent2); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; padding: 6px 14px; border-radius: 30px; margin-bottom: 18px; }
.hero h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(32px,4.5vw,54px); font-weight: 900; line-height: 1.08; margin-bottom: 18px; }
.hero h1 span { color: var(--accent2); }
.hero p { font-size: 17px; color: #a8bcd4; line-height: 1.75; margin-bottom: 28px; }
.hbtns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.btn-a { background: var(--accent); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 28px; border-radius: var(--r); display: inline-block; transition: background .2s, transform .1s; }
.btn-a:hover { background: var(--accent2); transform: translateY(-1px); }
.btn-b { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.35); font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; padding: 12px 28px; border-radius: var(--r); display: inline-block; transition: border-color .2s, background .2s; }
.btn-b:hover { border-color: var(--accent2); background: rgba(255,111,0,0.12); }
.htrust { display: flex; gap: 16px; flex-wrap: wrap; }
.hti { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #a8bcd4; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.hti .ck { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; color: white; flex-shrink: 0; }
.hero-img img { border-radius: 12px; width: 100%; height: 400px; object-fit: cover; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }

/* CERTS STRIP */
.certs-strip { background: var(--off); border-bottom: 1px solid var(--border); padding: 18px 0; }
.certs-inner { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 12px; }
.cert-item { display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; }
.cert-item .badge { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.cert-green { background: #e8f5e9; }
.cert-blue { background: #e3f2fd; }
.cert-orange { background: #fff3e0; }

/* SECTION BASE */
.sec { padding: 80px 0; }
.sec-off { background: var(--off); }
.sec-navy { background: var(--navy); color: var(--white); }
.sec-navy .st, .sec-navy .slbl { color: var(--white); }
.sec-navy .ss { color: #a8bcd4; }
.slbl { display: inline-block; color: var(--blue); font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; margin-bottom: 10px; }
.st { font-family: 'Montserrat', sans-serif; font-size: clamp(26px,3.5vw,40px); font-weight: 800; color: var(--navy); line-height: 1.12; margin-bottom: 14px; }
.st span { color: var(--blue); }
.sec-navy .st span { color: var(--accent2); }
.ss { color: var(--muted); font-size: 16px; max-width: 600px; line-height: 1.75; }
.sh { margin-bottom: 48px; }
.sh.c { text-align: center; }
.sh.c .ss { margin: 0 auto; }

/* SERVICES GRID */
.srv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.srv-card { background: var(--white); border-radius: 10px; padding: 28px 24px; border: 1px solid var(--border); transition: box-shadow .25s, transform .25s, border-color .25s; position: relative; overflow: hidden; }
.srv-card::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg, var(--blue), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.srv-card:hover { box-shadow: 0 10px 40px rgba(0,0,0,0.09); transform: translateY(-3px); border-color: var(--blue); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-ico { width: 52px; height: 52px; background: #e3f2fd; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 24px; }
.srv-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.srv-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.srv-card a { color: var(--blue); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 4px; }
.srv-card a:hover { color: var(--navy); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-img img { border-radius: 12px; width: 100%; height: 460px; object-fit: cover; box-shadow: 0 16px 48px rgba(0,0,0,0.13); }
.why-list { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
.witem { display: flex; gap: 14px; align-items: flex-start; padding: 16px; background: var(--off); border-radius: var(--r); border-left: 4px solid var(--blue); transition: border-color .2s; }
.witem:hover { border-color: var(--green); }
.wnum { width: 40px; height: 40px; background: var(--blue); color: white; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.witem h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.witem p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* STATS */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat-card { text-align: center; padding: 28px 18px; background: rgba(255,255,255,0.06); border-radius: 10px; border: 1px solid rgba(255,255,255,0.1); }
.stat-card .num { font-family: 'Montserrat', sans-serif; font-size: 48px; font-weight: 900; color: var(--accent2); line-height: 1; margin-bottom: 8px; }
.stat-card .lbl { font-size: 13px; color: #a8bcd4; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* REVIEWS */
.rev-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 22px; }
.rev-card { background: var(--white); border-radius: 10px; padding: 24px 22px; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.rev-stars { color: #f59e0b; font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.rev-txt { font-size: 14px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.rev-auth { display: flex; align-items: center; gap: 12px; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: white; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rev-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.rev-info span { font-size: 12px; color: var(--muted); }

/* FAQ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 18px 0; }
.faq-q { width: 100%; background: none; border: none; text-align: left; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: var(--navy); padding: 0; }
.faq-q .ico { width: 26px; height: 26px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: white; font-weight: 400; transition: transform .3s; }
.faq-item.open .faq-q .ico { transform: rotate(45deg); }
.faq-a { display: none; padding: 12px 0 0; color: var(--muted); font-size: 15px; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr)); gap: 14px; }
.area-pill { background: var(--white); border: 1.5px solid var(--border); border-radius: 50px; padding: 11px 20px; text-align: center; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); transition: all .2s; }
.area-pill:hover { background: var(--blue); color: white; border-color: var(--blue); transform: translateY(-2px); }

/* MAP */
.map-wrap { display: grid; grid-template-columns: 1fr 2fr; }
.map-info { background: var(--navy); color: white; padding: 48px 38px; display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.map-info h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 6px; }
.map-info h2 span { color: var(--accent2); }
.mi { display: flex; gap: 14px; align-items: flex-start; }
.mi svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--accent2); }
.mi strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #7a99bb; margin-bottom: 3px; }
.mi span, .mi a { font-size: 14px; color: white; font-weight: 500; }
.mi a { color: var(--accent2); }
.map-iframe { width: 100%; height: 400px; border: 0; display: block; }

/* CTA BANNER */
.cta-banner { background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%); padding: 65px 0; text-align: center; color: white; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('images/tech1.png') center/cover no-repeat; opacity: 0.06; }
.cta-banner .w { position: relative; z-index: 1; }
.cta-banner h2 { font-family: 'Montserrat', sans-serif; font-size: clamp(26px,3.5vw,42px); font-weight: 900; margin-bottom: 12px; }
.cta-banner p { font-size: 17px; opacity: .9; margin-bottom: 28px; max-width: 560px; margin-left: auto; margin-right: auto; }
.btn-wh { background: white; color: var(--blue); font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 800; text-transform: uppercase; padding: 15px 34px; border-radius: var(--r); display: inline-block; margin: 6px; transition: transform .2s, box-shadow .2s; }
.btn-wh:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); }
.btn-wh-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.5); font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; padding: 13px 34px; border-radius: var(--r); display: inline-block; margin: 6px; transition: border-color .2s, background .2s; }
.btn-wh-outline:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* PAGE HERO */
.ph { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid, #123567) 100%); padding: 55px 0 45px; color: white; text-align: center; }
.ph h1 { font-family: 'Montserrat', sans-serif; font-size: clamp(28px,4vw,48px); font-weight: 900; margin-bottom: 12px; }
.ph h1 span { color: var(--accent2); }
.ph p { font-size: 16px; color: #a8bcd4; max-width: 600px; margin: 0 auto; }
.bc { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: #7a99bb; margin-bottom: 14px; }
.bc a { color: var(--accent2); }

/* SERVICE PAGE */
.svc-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.svc-main img { border-radius: 10px; width: 100%; height: 300px; object-fit: cover; margin-bottom: 26px; }
.svc-main h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.svc-main h3 { font-family: 'Montserrat', sans-serif; font-size: 19px; font-weight: 700; color: var(--navy); margin: 24px 0 12px; }
.svc-main p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.svc-main ul { margin: 12px 0; }
.svc-main ul li { padding: 8px 0 8px 22px; position: relative; font-size: 15px; color: var(--muted); border-bottom: 1px solid var(--gray); }
.svc-main ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 18px; }
.sb-card { background: var(--white); border-radius: 10px; border: 1px solid var(--border); overflow: hidden; }
.sb-head { background: var(--navy); color: white; padding: 18px 20px; }
.sb-head h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; }
.sb-body { padding: 20px; }
.sb-body p { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.sb-phone { display: flex; align-items: center; gap: 10px; background: var(--accent); color: white; font-weight: 800; font-size: 17px; padding: 13px 16px; border-radius: var(--r); margin-bottom: 10px; transition: background .2s; }
.sb-phone:hover { background: var(--accent2); color: white; }
.sb-phone svg { width: 20px; height: 20px; }
.sb-links li a { display: flex; align-items: center; justify-content: space-between; padding: 9px 12px; background: var(--off); border-radius: var(--r); font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; transition: background .2s, color .2s; }
.sb-links li a:hover { background: var(--blue); color: white; }

/* LOCATION PAGE */
.loc-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.loc-main h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.loc-main h3 { font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: var(--navy); margin: 22px 0 10px; }
.loc-main p { color: var(--muted); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.nbhd-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr)); gap: 10px; margin: 14px 0; }
.nbhd-pill { background: var(--off); border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; font-size: 13px; font-weight: 600; color: var(--navy); text-align: center; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.cf { background: var(--white); border-radius: 10px; border: 1px solid var(--border); padding: 34px 30px; }
.cf h2 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.cf p.sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--r); font-family: 'Open Sans', sans-serif; font-size: 15px; color: var(--text); transition: border-color .2s; background: var(--white); }
.fg input:focus, .fg select:focus, .fg textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,101,192,0.1); }
.fg textarea { resize: vertical; min-height: 110px; }
.fr { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.sms-wrap { background: #e8f5e9; border: 2px solid var(--green); border-radius: var(--r); padding: 16px 14px; margin: 18px 0; }
.sms-lbl { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; }
.sms-lbl input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--green); cursor: pointer; }
.sms-ct { font-size: 13px; color: #333; line-height: 1.6; }
.sms-ct strong { color: var(--green); display: block; margin-bottom: 4px; font-size: 13px; }
.sms-links { margin-top: 7px; font-size: 11px; color: var(--muted); }
.sms-links a { color: var(--blue); font-weight: 600; text-decoration: underline; }
.btn-sub { width: 100%; background: var(--accent); color: white; font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 15px; border: none; border-radius: var(--r); cursor: pointer; transition: background .2s; }
.btn-sub:hover { background: var(--accent2); }
.f-disc { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: center; line-height: 1.5; }
.f-disc a { color: var(--blue); text-decoration: underline; }
.ci-card { background: var(--navy); border-radius: 10px; padding: 34px 30px; color: white; }
.ci-card h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 22px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.ci-item:last-of-type { border-bottom: none; }
.ci-ico { width: 44px; height: 44px; background: var(--accent); border-radius: var(--r); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-ico svg { width: 20px; height: 20px; color: white; }
.ci-item strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: #7a99bb; margin-bottom: 4px; }
.ci-item span, .ci-item a { font-size: 15px; color: white; font-weight: 500; }
.ci-item a { color: var(--accent2); }
.hrs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; margin-top: 14px; }
.hr-row strong { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #7a99bb; }
.hr-row span { font-size: 13px; color: white; }

/* PRIVACY PAGE */
.priv-box { background: var(--off); border: 1px solid var(--border); border-radius: 12px; padding: 44px 40px; max-width: 880px; margin: 0 auto; }
.priv-box h2 { font-family: 'Montserrat', sans-serif; font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.priv-box .upd { font-size: 13px; color: var(--muted); margin-bottom: 26px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.priv-box h3 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--blue); margin: 26px 0 10px; }
.priv-box p, .priv-box li { font-size: 15px; color: #444; line-height: 1.8; }
.priv-box ul { margin: 10px 0 10px 20px; list-style: disc; }
.priv-box li { margin-bottom: 6px; }
.hl-green { background: #e8f5e9; border-left: 4px solid var(--green); border-radius: var(--r); padding: 16px 18px; margin: 14px 0; }
.hl-green p { font-size: 15px !important; color: #1b5e20 !important; font-weight: 600 !important; }
.hl-orange { background: #fff8f0; border: 2px solid var(--accent); border-radius: var(--r); padding: 16px 18px; margin: 14px 0; }
.hl-orange strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.hl-orange p { font-size: 14px !important; }
.ex-block { background: var(--navy); color: #a8c8e8; border-radius: var(--r); padding: 18px 20px; margin: 14px 0; font-size: 14px; line-height: 1.75; font-style: italic; }
/* Legal tabs */
.ltabs { display: flex; gap: 0; margin-bottom: 32px; border-bottom: 2px solid var(--border); }
.ltab { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 13px 26px; cursor: pointer; color: var(--muted); border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .2s, border-color .2s; }
.ltab.active { color: var(--blue); border-bottom-color: var(--blue); }
.lpanel { display: none; }
.lpanel.active { display: block; }

/* FOOTER */
footer { background: var(--navy); color: #7a99bb; padding: 56px 0 0; }
.fg-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.fl-logo strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: white; margin-bottom: 4px; }
.fl-logo span { color: var(--green-light); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.fl-about { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.fl-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.fl-badge { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; padding: 4px 9px; font-size: 11px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 0.5px; }
.fc h4 { color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.fc ul li { margin-bottom: 9px; }
.fc ul li a { font-size: 13px; color: #7a99bb; transition: color .2s; display: flex; align-items: center; gap: 5px; }
.fc ul li a::before { content: '›'; color: var(--accent2); font-size: 15px; }
.fc ul li a:hover { color: var(--accent2); }
.fci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 13px; }
.fci svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent2); }
.fci span, .fci a { font-size: 13px; color: #7a99bb; }
.fci a { color: var(--accent2); }
.fb { padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12px; }
.fb a { color: #7a99bb; }
.fb a:hover { color: var(--accent2); }
.fbl { display: flex; gap: 14px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-img { display: none; }
  .why-grid, .loc-grid, .svc-layout, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .fg-grid { grid-template-columns: 1fr 1fr; }
  .map-wrap { grid-template-columns: 1fr; }
  .map-iframe { height: 300px; }
}
@media (max-width: 600px) {
  .sec { padding: 52px 0; }
  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; padding: 14px; box-shadow: 0 8px 24px rgba(0,0,0,0.12); z-index: 999; }
  .mt { display: flex; }
  .fg-grid { grid-template-columns: 1fr; }
  .fr { grid-template-columns: 1fr; }
  .priv-box { padding: 26px 20px; }
  .hbtns { flex-direction: column; }
  .ltabs { flex-direction: column; }
  .ltab { border-bottom: none; border-left: 3px solid transparent; }
  .ltab.active { border-left-color: var(--blue); border-bottom-color: transparent; }
}
