/* ============================================================
   BRIX INNOVATION — Blue & White Theme
   Colors: #0066cc · #0a0e14 · #40a0ff
   Font: Lato (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

:root {
  --blue:        #0066cc;
  --blue-deep:   #004fa3;
  --blue-dark:   #0a0e14;
  --blue-accent: #40a0ff;
  --blue-light:  #e6f0ff;
  --blue-pale:   #f0f4ff;
  --white:       #ffffff;
  --off-white:   #f8faff;
  --text:        #0f1419;
  --text-mid:    #3d5166;
  --text-muted:  #6b8299;
  --border:      #cfe0f5;
  --font:        'Lato', sans-serif;
  --radius:      8px;
  --nav-h:       80px;
  --t:           0.28s ease;
  --shadow:      0 4px 20px rgba(0,102,204,0.12);
  --shadow-lg:   0 8px 40px rgba(0,102,204,0.18);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blue-pale); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── TYPE ── */
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.15; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.3; }
p  { color: var(--text-mid); line-height: 1.75; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue-accent);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 2px;
  background: var(--blue-accent); border-radius: 2px;
}

/* ── LAYOUT ── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 3rem); }
.section    { padding: clamp(4rem, 8vw, 7rem) 0; }
.bg-pale    { background: var(--blue-pale); }
.bg-dark    { background: var(--blue-dark); }
.bg-blue    { background: var(--blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .8rem 1.9rem; font-family: var(--font); font-size: .88rem;
  font-weight: 700; letter-spacing: .04em; border-radius: var(--radius);
  transition: var(--t); cursor: pointer; white-space: nowrap;
}
.btn-primary  { background: var(--blue-accent); color: #fff; box-shadow: 0 4px 16px rgba(64,160,255,.35); }
.btn-primary:hover  { background: #2a8def; transform: translateY(-1px); }
.btn-white   { background: #fff; color: var(--blue); box-shadow: var(--shadow); }
.btn-white:hover   { background: var(--blue-light); transform: translateY(-1px); }
.btn-outline { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-outline-blue { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline-blue:hover { background: var(--blue-light); }
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--t), box-shadow var(--t);
}
#navbar.scrolled { background: #fff; box-shadow: 0 2px 20px rgba(0,102,204,.1); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-brand img { width: 40px; height: 80px; object-fit: contain; }
.nav-name { display: flex; flex-direction: column; line-height: 1; }
.nav-name .n1 { font-size: 1.45rem; font-weight: 900; letter-spacing: .14em; color: #fff; transition: color var(--t); }
.nav-name .n2 { font-size: .52rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65); transition: color var(--t); }
#navbar.scrolled .nav-name .n1 { color: var(--blue); }
#navbar.scrolled .nav-name .n2 { color: var(--text-muted); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: .84rem; font-weight: 700; color: rgba(255,255,255,.85); transition: color var(--t); position: relative; padding-bottom: 2px; }
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px; background: var(--blue-accent); transition: width var(--t); }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
#navbar.scrolled .nav-links a { color: var(--text-mid); }
#navbar.scrolled .nav-links a:hover, #navbar.scrolled .nav-links a.active { color: var(--blue); }

.nav-drop { position: relative; }
.nav-drop > a { display: flex; align-items: center; gap: 4px; }
.drop-menu {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border);
  box-shadow: var(--shadow-lg); min-width: 230px;
  border-radius: var(--radius); padding: .5rem 0;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t);
}
.nav-drop:hover .drop-menu { opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); }
.drop-menu a { display: block; padding: .55rem 1.2rem; font-size: .82rem; color: var(--text-mid) !important; transition: background var(--t), color var(--t); }
.drop-menu a:hover { background: var(--blue-pale); color: var(--blue) !important; }
.drop-menu a::after { display: none !important; }

.ham { display: none; flex-direction: column; gap: 5px; width: 26px; }
.ham span { display: block; height: 2px; border-radius: 2px; background: #fff; transition: var(--t); }
#navbar.scrolled .ham span { background: var(--blue-dark); }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mob-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h);
  background: #fff; z-index: 999;
  flex-direction: column; padding: 1.5rem;
  overflow-y: auto; box-shadow: var(--shadow-lg);
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 1rem; font-weight: 700; color: var(--text); padding: .85rem 0; border-bottom: 1px solid var(--border); transition: color var(--t); }
.mob-menu a:hover { color: var(--blue); }
.mob-sub a { font-size: .9rem; font-weight: 400; padding-left: 1rem; }

/* ── HERO ── */
.hero {
  min-height: 100vh; background: var(--blue);
  display: flex; align-items: center;
  padding-top: var(--nav-h); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 70% 30%, rgba(64,160,255,.22) 0%, transparent 55%),
              radial-gradient(circle at 15% 80%, rgba(0,50,120,.45) 0%, transparent 40%);
}
.hero-grid { position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 55px 55px; }
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-text .eyebrow { color: rgba(255,255,255,.75); }
.hero-text .eyebrow::before { background: rgba(255,255,255,.5); }
.hero-text h1 { color: #fff; margin-bottom: 1.1rem; }
.hero-text p  { color: rgba(255,255,255,.8); font-size: 1.08rem; max-width: 520px; margin-bottom: 2.2rem; }
.hero-btns    { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-img-wrap { position: relative; }
.hero-img-wrap img { width: 100%; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.hero-stat {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--blue-dark); border: 2px solid var(--blue-accent);
  border-radius: var(--radius); padding: 1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-stat-num { font-size: 1.9rem; font-weight: 900; color: var(--blue-accent); line-height: 1; }
.hero-stat-txt { font-size: .78rem; color: rgba(255,255,255,.8); line-height: 1.4; }

/* ── SECTION HEADER ── */
.sec-hdr { max-width: 640px; margin-bottom: 3rem; }
.sec-hdr.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-hdr.center .eyebrow { justify-content: center; }
.sec-hdr h2 { margin-bottom: .6rem; }

/* ── VALUE PROPS ── */
.props-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1.5rem; }
.prop-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 2rem 1.75rem; box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.prop-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--blue-accent)); opacity: 0; transition: opacity var(--t); }
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.prop-card:hover::after { opacity: 1; }
.prop-ico { width: 50px; height: 50px; background: var(--blue-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--blue); }
.prop-ico svg { width: 23px; height: 23px; }
.prop-card h3 { font-size: 1rem; margin-bottom: .4rem; color: var(--text); }

/* ── SERVICE CARDS ── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 1.5rem; }
.svc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.svc-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
.svc-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: .6rem; }
.svc-ico  { width: 42px; height: 42px; background: var(--blue-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.svc-ico svg { width: 20px; height: 20px; }
.svc-card h3 { font-size: 1.02rem; color: var(--text); }
.svc-card p  { font-size: .88rem; flex: 1; }
.svc-more { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-top: .4rem; transition: gap var(--t); }
.svc-more svg { width: 13px; height: 13px; }
.svc-card:hover .svc-more { gap: 9px; }

/* ── SPLIT LAYOUT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.split-text .eyebrow { margin-bottom: .75rem; }
.split-text h2 { margin-bottom: .75rem; }
.split-text p  { margin-bottom: .75rem; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.75rem; }
.split-card { background: var(--blue-pale); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; }
.split-card h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: .35rem; }
.split-card p  { font-size: .86rem; }
.split img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-lg); object-fit: cover; }

/* ── STATS ── */
.stats-box { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 1.75rem; }
.stat-cell { background: #fff; padding: 1.4rem; text-align: center; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-cell:nth-child(even) { border-right: none; }
.stat-cell:nth-child(3), .stat-cell:nth-child(4) { border-bottom: none; }
.stat-cell .num { font-size: 2rem; font-weight: 900; color: var(--blue); line-height: 1; display: block; }
.stat-cell .lbl { font-size: .76rem; color: var(--text-muted); margin-top: 3px; }

/* ── PROJECT CARDS ── */
.proj-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px,1fr)); gap: 1.5rem; }
.proj-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
}
.proj-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.proj-card .thumb { position: relative; }
.proj-card .thumb img { width: 100%; height: 230px; object-fit: cover; display: block; }
.proj-badge {
  position: absolute; top: .9rem; left: .9rem;
  background: var(--blue); color: #fff;
  font-size: .67rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 4px;
}
.proj-body { padding: 1.4rem; }
.proj-body h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.proj-loc { font-size: .78rem; font-weight: 700; color: var(--blue-accent); margin-bottom: .7rem; }
.proj-body p { font-size: .87rem; }
.proj-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .9rem; }
.tag { font-size: .68rem; font-weight: 700; background: var(--blue-pale); color: var(--blue); border: 1px solid var(--border); padding: .2rem .55rem; border-radius: 4px; }
.proj-outcome { margin-top: .7rem; font-size: .82rem; font-weight: 700; color: var(--blue); }

/* ── COMPARE TABLE ── */
.tbl-wrap { overflow-x: auto; }
.cmp-tbl { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.cmp-tbl th { background: var(--blue); color: #fff; padding: 1rem 1.2rem; font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; text-align: left; }
.cmp-tbl th:nth-child(3) { background: var(--blue-dark); color: rgba(255,255,255,.7); }
.cmp-tbl td { padding: .85rem 1.2rem; border-bottom: 1px solid var(--border); font-size: .88rem; vertical-align: middle; }
.cmp-tbl tr:last-child td { border-bottom: none; }
.cmp-tbl tbody tr:nth-child(even) td { background: var(--blue-pale); }
.cmp-tbl td:first-child { font-weight: 700; color: var(--text); width: 22%; }
.cmp-tbl td:nth-child(2) { color: var(--blue); font-weight: 700; }
.cmp-tbl td:nth-child(3) { color: var(--text-muted); }
.tick::before { content: '✓  '; color: var(--blue); font-weight: 900; }
.cross::before { content: '✗  '; color: #ccc; }

/* ── TESTIMONIAL ── */
.testi {
  background: var(--blue); border-radius: 12px; padding: 3rem;
  position: relative; overflow: hidden; max-width: 780px; margin: 0 auto;
}
.testi::before { content: '"'; position: absolute; top: -1.5rem; left: 2rem; font-size: 10rem; font-weight: 900; color: rgba(255,255,255,.08); line-height: 1; pointer-events: none; }
.testi p { font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,.9); position: relative; z-index: 1; }
.testi-auth { margin-top: 1.4rem; position: relative; z-index: 1; }
.testi-auth strong { display: block; font-size: .88rem; font-weight: 700; color: var(--blue-accent); }
.testi-auth span { font-size: .8rem; color: rgba(255,255,255,.6); }

/* ── OFFERINGS ── */
.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 1.1rem; margin-top: 1.75rem; }
.offer-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; box-shadow: var(--shadow); }
.offer-card strong { display: block; color: var(--blue); font-size: .86rem; margin-bottom: .35rem; }
.offer-card p { font-size: .83rem; }

/* ── FILTER ── */
.filter-bar { display: flex; gap: .6rem; margin-bottom: 2rem; flex-wrap: wrap; }
.f-btn { padding: .42rem 1.1rem; font-family: var(--font); font-size: .77rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 1.5px solid var(--border); color: var(--text-mid); border-radius: 4px; transition: var(--t); }
.f-btn:hover, .f-btn.active { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info .eyebrow { margin-bottom: .75rem; }
.contact-info h2 { margin-bottom: 1.5rem; }
.c-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.4rem; padding-bottom: 1.4rem; border-bottom: 1px solid var(--border); }
.c-item:last-of-type { border-bottom: none; }
.c-ico { width: 40px; height: 40px; flex-shrink: 0; background: var(--blue-pale); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue); }
.c-ico svg { width: 17px; height: 17px; }
.c-txt strong { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.c-txt p, .c-txt a { font-size: .88rem; color: var(--text-mid); }
.c-txt a:hover { color: var(--blue); }

.form-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2.25rem; box-shadow: var(--shadow-lg); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-grp { display: flex; flex-direction: column; gap: 5px; margin-bottom: .9rem; }
.f-grp label { font-size: .73rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; color: var(--text); }
.f-grp input, .f-grp select, .f-grp textarea { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius); padding: .78rem 1rem; font-family: var(--font); font-size: .88rem; color: var(--text); transition: border-color var(--t); width: 100%; outline: none; }
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus { border-color: var(--blue); background: #fff; }
.f-grp textarea { min-height: 115px; resize: vertical; }
.f-grp input::placeholder, .f-grp textarea::placeholder { color: #b0bec5; }
.f-grp select { appearance: none; cursor: pointer; }
.form-box .btn { width: 100%; justify-content: center; padding: .95rem; font-size: .95rem; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--blue);
  padding: calc(var(--nav-h) + 3.5rem) 0 3.5rem;
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 70% at 80% 50%, rgba(64,160,255,.2) 0%, transparent 60%); }
.page-hero-content { position: relative; z-index: 1; max-width: 680px; }
.page-hero .eyebrow { color: rgba(255,255,255,.7); }
.page-hero .eyebrow::before { background: rgba(255,255,255,.45); }
.page-hero h1 { color: #fff; margin-bottom: .7rem; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 1.07rem; }

/* ── CTA BAND ── */
.cta-band { background: var(--blue-dark); padding: 4.5rem 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .6rem; }
.cta-band p  { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 1.8rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
footer { background: var(--blue-dark); padding: 4rem 0 2rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.foot-brand img { width: 40px; height: 80px; object-fit: contain; margin-bottom: .75rem; }
.foot-name .n1 { font-size: 1.35rem; font-weight: 900; letter-spacing: .14em; color: #fff; }
.foot-name .n2 { font-size: .5rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.4); }
.foot-brand p { font-size: .83rem; color: rgba(255,255,255,.5); max-width: 240px; margin-top: .7rem; }
.foot-col h4 { font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--blue-accent); margin-bottom: 1rem; }
.foot-col a { display: block; font-size: .83rem; color: rgba(255,255,255,.55); margin-bottom: .5rem; transition: color var(--t); }
.foot-col a:hover { color: #fff; }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; color: rgba(255,255,255,.35); }

/* ── SCROLL REVEAL ── */
.r { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.r.on { opacity: 1; transform: none; }

/* ── CERT GRID ── */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 1.5rem; }
.cert-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; box-shadow: var(--shadow); }
.cert-card img { height: 60px; width: auto; margin: 0 auto .9rem; object-fit: contain; }
.cert-card h4 { font-size: .82rem; color: var(--blue); margin-bottom: .3rem; }
.cert-card p  { font-size: .8rem; }

/* ── WHY PILLARS ── */
.pillar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.5rem; }
.pillar { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: transform var(--t), box-shadow var(--t); }
.pillar:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pillar .p-ico { width: 48px; height: 48px; background: var(--blue-pale); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--blue); margin-bottom: 1rem; }
.pillar .p-ico svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1rem; margin-bottom: .4rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-img-wrap { display: none; }
  .split       { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid   { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, #navbar .btn { display: none; }
  .ham { display: flex; }
  .split-cards { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: .4rem; text-align: center; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .proj-grid  { grid-template-columns: 1fr; }
  .svc-grid   { grid-template-columns: 1fr; }
  .stats-box  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .props-grid { grid-template-columns: 1fr; }
  .stats-box  { grid-template-columns: 1fr; }
  .cert-grid  { grid-template-columns: 1fr; }
}
