/* ===========================================
   RAPID AIRCOND SERVICE — Homepage Stylesheet
   Design system: Royal Blue + Azure + White (from logo)
   =========================================== */

:root {
  --navy-900: #0a235f;   /* deep royal navy */
  --navy-800: #0d3aa8;   /* brand royal */
  --navy-700: #1f6fe0;   /* brand bright */
  --navy-50:  #eaf1fd;
  --accent:   #2f8fff;   /* bright azure pop */
  --accent-dark: #1769d8;
  --sky:      #6cc4ff;   /* light cyan highlight */
  --cream:    #eef4ff;   /* soft blue-tint section bg */
  --ink:      #0c1a3a;
  --ink-muted:#56638a;
  --border:   #e4e8f1;
  --soft:     #f4f7fc;
  --white:    #ffffff;
  --green:    #18b26b;
  --wa-green: #25d366;
  --wa-green-dark: #1da851;

  --shadow-sm: 0 1px 2px rgba(12,26,58,.06), 0 1px 1px rgba(12,26,58,.04);
  --shadow-md: 0 8px 24px rgba(12,26,58,.08), 0 2px 6px rgba(12,26,58,.05);
  --shadow-lg: 0 24px 60px rgba(12,26,58,.18), 0 8px 16px rgba(12,26,58,.08);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;

  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--ink); line-height: 1.18; letter-spacing: -.01em; }
h1 { font-weight: 800; font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-weight: 700; font-size: 1.25rem; }
h4 { font-weight: 700; font-size: 1.05rem; }
p  { color: var(--ink-muted); }
a  { color: var(--navy-700); text-decoration: none; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.accent { color: var(--accent); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .98rem;
  border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 10px 24px rgba(47,143,255,.32); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(47,143,255,.4); }
.btn-whatsapp { background: var(--wa-green); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: var(--wa-green-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(37,211,102,.42); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.28); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-outline { background: transparent; color: var(--navy-900); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--navy-900); background: var(--navy-50); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-900); transform: translateY(-2px); }
.btn .ico { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

/* ====== TOP NOTICE BAR ====== */
.topbar { background: var(--navy-900); color: #d9e1f2; font-size: .8rem; padding: 8px 0; letter-spacing: .02em; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .left { display: flex; align-items: center; gap: 18px; }
.topbar .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(24,178,107,.18); animation: pulse 2s infinite; }
.topbar .right { color: var(--sky); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .55; } }

/* ====== HEADER ====== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.92); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; padding-bottom: 14px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo img { height: 52px; width: auto; }
.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .94rem; color: var(--ink); transition: color .15s; }
.nav-desktop a:hover { color: var(--accent); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; font-size: .9rem; }
.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.menu-toggle svg { width: 28px; height: 28px; stroke: var(--ink); }
@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ====== HERO ====== */
.hero { position: relative; background: linear-gradient(135deg, #061233 0%, #0d3aa8 62%, #1f6fe0 100%); color: #fff; overflow: hidden; padding: 0; }
.hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky) 0%, var(--accent) 50%, var(--sky) 100%); z-index: 3; }
.hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 20%, rgba(47,143,255,.18), transparent 40%), radial-gradient(circle at 80% 80%, rgba(108,196,255,.12), transparent 40%); pointer-events: none; z-index: 0; }
.hero .bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%); pointer-events: none; z-index: 0; }
.hero .container { position: relative; z-index: 1; }

.hero-top { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 60px 0 44px; }
.hero-text { position: relative; }
.hero-bottom { padding: 0 0 64px; }

.hero-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; color: #b9c6ea; text-transform: uppercase; letter-spacing: .18em; margin-bottom: 22px; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 36px; height: 1px; background: linear-gradient(90deg, transparent, var(--sky)); }

.hero h1 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(28px, 3.4vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -.025em; margin-bottom: 18px; text-wrap: balance; color: #fff; max-width: 560px; }
.hero h1 .accent { color: var(--sky); }
.hero-lead { font-size: 16px; color: #c2cdec; max-width: 540px; margin-bottom: 24px; line-height: 1.6; font-weight: 400; }
.hero-lead strong { color: #fff; font-weight: 700; }

.hero-cta-block { display: flex; flex-direction: column; gap: 12px; margin-bottom: 0; }
.btn-wa-mega { display: inline-flex; align-items: center; justify-content: center; gap: 12px; background: linear-gradient(180deg, #2BE070 0%, #25D366 50%, #1FBA5A 100%); color: #fff; padding: 18px 28px; border-radius: 14px; font-weight: 800; font-size: 15.5px; font-family: 'Plus Jakarta Sans', sans-serif; box-shadow: 0 16px 32px -10px rgba(37,211,102,.55), inset 0 1px 0 rgba(255,255,255,.25); transition: all .2s; letter-spacing: -.01em; border: 1px solid rgba(0,0,0,.06); text-shadow: 0 1px 1px rgba(0,0,0,.12); align-self: flex-start; text-decoration: none; }
.btn-wa-mega:hover { background: linear-gradient(180deg, #33EA7B 0%, #25D366 60%, #1AA84F 100%); transform: translateY(-2px); box-shadow: 0 22px 42px -10px rgba(37,211,102,.75), inset 0 1px 0 rgba(255,255,255,.3); }
.btn-wa-mega svg { width: 22px; height: 22px; fill: #fff; filter: drop-shadow(0 1px 1px rgba(0,0,0,.18)); }
.hero-cta-foot { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: #c2cdec; margin: 0; font-weight: 500; }
.hero-cta-foot strong { color: #fff; font-weight: 700; }
.hero-cta-foot .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--wa-green); box-shadow: 0 0 0 4px rgba(37,211,102,.2); animation: pulse 2s infinite; flex-shrink: 0; }

.picker-block { margin-top: 0; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.picker-label { display: flex; align-items: baseline; gap: 12px; margin-bottom: 16px; flex-wrap: wrap; }
.picker-label span { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: .1em; }
.picker-label small { font-size: 12px; color: #98a6cf; }
.chip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.chip { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 14px 16px; text-align: left; color: #fff; transition: all .18s ease; display: flex; flex-direction: column; gap: 3px; position: relative; overflow: hidden; text-decoration: none; }
.chip::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--accent); transform: translateX(-100%); transition: transform .2s; }
.chip:hover { background: rgba(47,143,255,.12); border-color: var(--accent); transform: translateY(-2px); }
.chip:hover::before { transform: translateX(0); }
.chip strong { font-weight: 700; font-size: 14px; color: #fff; line-height: 1.2; }
.chip small { font-size: 11.5px; color: #b9c6ea; font-weight: 500; line-height: 1.3; }
.chip .chip-arrow { position: absolute; right: 14px; top: 14px; color: var(--accent); font-size: 14px; font-weight: 700; opacity: 0; transform: translateX(-4px); transition: all .2s; }
.chip:hover .chip-arrow { opacity: 1; transform: translateX(0); }

.hero-right { display: flex; flex-direction: column; gap: 16px; }
.hero-image { position: relative; border-radius: 16px; overflow: hidden; background: #000; box-shadow: 0 24px 50px -20px rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.1); margin: 0; aspect-ratio: 4/3; width: 100%; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hero-image:hover img { transform: scale(1.04); }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(6,18,51,.78) 100%); pointer-events: none; z-index: 1; }
.hero-image-tag { position: absolute; bottom: 16px; left: 18px; right: 18px; display: flex; flex-direction: column; gap: 3px; z-index: 2; margin: 0; }
.hero-image-tag small { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 600; color: var(--sky); text-transform: uppercase; letter-spacing: .1em; }
.hero-image-tag strong { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; color: #fff; line-height: 1.25; }

/* ====== PROOF BAR ====== */
.proof-bar { background: #081a45; color: #fff; position: relative; z-index: 2; border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06); }
.proof-bar .proof-stats { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid rgba(255,255,255,.06); }
.proof-bar .stat { padding: 22px 24px; display: flex; flex-direction: column; gap: 5px; border-left: 1px solid rgba(255,255,255,.05); position: relative; transition: background .2s; }
.proof-bar .stat:first-child { border-left: none; }
.proof-bar .stat:hover { background: rgba(255,255,255,.02); }
.proof-bar .stat strong { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 900; font-size: 22px; line-height: 1; color: var(--sky); letter-spacing: -.02em; }
.proof-bar .stat span { font-size: 11px; color: #b9c6ea; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.proof-bar .proof-trust { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 24px; }
.proof-bar .t-item { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #ced3e0; }
.proof-bar .t-item svg { width: 15px; height: 15px; color: var(--sky); flex-shrink: 0; stroke-width: 2.5; }
@media (max-width: 1100px) {
  .proof-bar .proof-stats { grid-template-columns: repeat(3, 1fr); }
  .proof-bar .proof-stats .stat:nth-child(4) { border-left: none; }
}
@media (max-width: 980px) {
  .hero-top { grid-template-columns: 1fr; gap: 28px; padding: 44px 0 32px; }
  .hero-right { order: 2; }
  .hero-image { aspect-ratio: 16/9; }
  .hero h1 { max-width: 100%; }
  .chip-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-bar .proof-stats { grid-template-columns: repeat(2, 1fr); }
  .proof-bar .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.05); }
  .proof-bar .stat:nth-child(2n) { border-left: 1px solid rgba(255,255,255,.05); }
}
@media (max-width: 580px) {
  .hero-image { aspect-ratio: 4/3; }
  .btn-wa-mega { align-self: stretch; width: 100%; }
  .chip-grid { grid-template-columns: 1fr; }
  .proof-bar .proof-stats { grid-template-columns: 1fr; }
  .proof-bar .stat:nth-child(2n) { border-left: none; }
}

/* ====== SECTION SHELL ====== */
section { padding: 96px 0; }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy-700); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; }

/* ====== SERVICES ====== */
.services { background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card .thumb { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.svc-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.svc-card:hover .thumb img { transform: scale(1.06); }
.svc-card .thumb::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(12,26,58,.35) 100%); }
.svc-card .badge { position: absolute; top: 16px; left: 16px; background: rgba(255,255,255,.95); color: var(--accent); padding: 6px 12px; border-radius: 999px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
.svc-card .body { padding: 26px 26px 28px; }
.svc-card h3 { margin-bottom: 10px; color: var(--navy-900); }
.svc-card p { font-size: .95rem; line-height: 1.6; margin-bottom: 16px; }
.svc-card .more { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.svc-card .more::after { content: '→'; transition: transform .2s; }
.svc-card:hover .more::after { transform: translateX(4px); }
@media (max-width: 1100px) { .svc-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (max-width: 800px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .svc-grid { grid-template-columns: 1fr; } }

/* ====== PROBLEMS ====== */
.problems { background: radial-gradient(800px 400px at 100% 0%, rgba(47,143,255,.07), transparent 70%), var(--soft); }
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prob { background: #fff; border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start; transition: transform .2s, box-shadow .2s; }
.prob:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.prob .icon { width: 48px; height: 48px; flex-shrink: 0; background: linear-gradient(135deg, #e2edff, #c7dcff); color: var(--accent-dark); border-radius: 12px; display: grid; place-items: center; }
.prob .icon svg { width: 24px; height: 24px; }
.prob h4 { color: var(--navy-900); margin-bottom: 4px; font-size: 1.02rem; }
.prob p { font-size: .9rem; line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .prob-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .prob-grid { grid-template-columns: 1fr; } }

/* ====== TEAM (about) ====== */
.team { background: var(--cream); padding: 96px 0; position: relative; overflow: hidden; }
.team::before { content: ''; position: absolute; top: -120px; right: -120px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(47,143,255,.12), transparent 70%); }
.team .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; }
.team-copy .eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy-700); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.team-copy h2 { margin-bottom: 18px; color: var(--navy-900); }
.team-copy p { font-size: 1.04rem; line-height: 1.7; margin-bottom: 16px; color: var(--ink-muted); }
.team-copy p strong { color: var(--navy-900); font-weight: 700; }
.team-creds { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0; }
.team-cred { padding: 14px 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; }
.team-cred small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; color: var(--accent); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.team-cred strong { display: block; color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .96rem; line-height: 1.35; }
.team-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.team-image { position: relative; }
.team-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 22px; box-shadow: 0 30px 60px rgba(12,26,58,.20); }
.team-tag { position: absolute; left: 22px; bottom: 22px; background: rgba(10,35,95,.92); backdrop-filter: blur(10px); color: #fff; padding: 14px 18px; border-radius: 14px; max-width: calc(100% - 44px); }
.team-tag small { display: block; color: var(--sky); font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 4px; }
.team-tag strong { display: block; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.15rem; font-weight: 800; line-height: 1.2; }
.team-tag span { display: block; color: #cbd4e8; font-size: 13px; margin-top: 2px; }
@media (max-width: 900px) {
  .team .container { grid-template-columns: 1fr; gap: 40px; }
  .team-image { max-width: 480px; margin: 0 auto; }
  .team-creds { grid-template-columns: 1fr; }
}

/* ====== WHY CHOOSE ====== */
.why { background: #fff; }
.why .container { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.why-image { position: relative; }
.why-image img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 60px rgba(12,26,58,.18); aspect-ratio: 4/5; }
.why-image .floater { position: absolute; bottom: -24px; right: -24px; background: var(--navy-900); color: #fff; padding: 18px 22px; border-radius: var(--radius); box-shadow: 0 20px 40px rgba(12,26,58,.32); display: flex; gap: 14px; align-items: center; max-width: 290px; border: 1px solid rgba(255,255,255,.08); }
.why-image .floater .icon { width: 42px; height: 42px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 11px; display: grid; place-items: center; box-shadow: 0 8px 16px rgba(47,143,255,.3); }
.why-image .floater .icon svg { width: 20px; height: 20px; fill: #fff; }
.why-image .floater .heading { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .95rem; color: #fff; line-height: 1.25; }
.why-image .floater .sub { font-size: .78rem; color: #b8c2dc; margin-top: 3px; line-height: 1.4; }
.why-copy .eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy-700); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.why-copy h2 { margin-bottom: 18px; }
.why-copy > p { font-size: 1.04rem; margin-bottom: 30px; }
.why-list { list-style: none; display: grid; gap: 18px; }
.why-list li { display: flex; gap: 16px; align-items: flex-start; }
.why-list .check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: .85rem; }
.why-list .check svg { width: 14px; height: 14px; fill: #fff; }
.why-list h4 { color: var(--navy-900); margin-bottom: 4px; }
.why-list p { font-size: .92rem; line-height: 1.6; margin: 0; }
@media (max-width: 900px) {
  .why .container { grid-template-columns: 1fr; gap: 56px; }
  .why-image { max-width: 480px; margin: 0 auto; }
  .why-image .floater { right: 8px; bottom: -20px; }
}

/* ====== PROCESS ====== */
.process { background: linear-gradient(180deg, #103a8c 0%, #0a235f 100%); color: #fff; position: relative; overflow: hidden; }
.process::before { content: ''; position: absolute; inset: 0; 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: 80px 80px; mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 75%); }
.process .container { position: relative; }
.process .section-head h2 { color: #fff; }
.process .section-head p { color: #cbd4e8; }
.process .section-head .eyebrow { background: rgba(255,255,255,.08); color: var(--sky); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step { position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); border-radius: var(--radius-lg); padding: 32px 26px 28px; transition: all .25s ease; overflow: hidden; }
.step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--sky), var(--accent)); transform: scaleX(0); transform-origin: left; transition: transform .35s ease; }
.step:hover { border-color: rgba(47,143,255,.32); background: rgba(47,143,255,.05); transform: translateY(-4px); }
.step:hover::before { transform: scaleX(1); }
.step-tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; color: var(--sky); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; padding: 5px 11px; background: rgba(108,196,255,.1); border: 1px solid rgba(108,196,255,.22); border-radius: 999px; }
.step .icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); border-radius: 12px; display: grid; place-items: center; margin-bottom: 18px; box-shadow: 0 12px 24px rgba(47,143,255,.28); transition: transform .25s ease; }
.step:hover .icon { transform: scale(1.06) rotate(-3deg); }
.step .icon svg { width: 26px; height: 26px; fill: #fff; }
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1.1rem; line-height: 1.25; letter-spacing: -.01em; }
.step p { color: #b8c2dc; font-size: .92rem; line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; gap: 20px; } }

/* ====== GALLERY ====== */
.gallery { background: var(--cream); }
.gal-grid { display: grid; gap: 16px; grid-template-columns: repeat(4, 1fr); grid-template-rows: 240px 240px; grid-template-areas: "a a b c" "d e e f"; }
.gal-grid figure { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gal-grid figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-grid figure:hover img { transform: scale(1.05); }
.gal-grid figure figcaption { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px 18px 16px; background: linear-gradient(180deg, transparent, rgba(10,35,95,.85)); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; opacity: 0; transform: translateY(10px); transition: opacity .25s, transform .25s; }
.gal-grid figure:hover figcaption { opacity: 1; transform: translateY(0); }
.gal-grid figure:nth-child(1) { grid-area: a; }
.gal-grid figure:nth-child(2) { grid-area: b; }
.gal-grid figure:nth-child(3) { grid-area: c; }
.gal-grid figure:nth-child(4) { grid-area: d; }
.gal-grid figure:nth-child(5) { grid-area: e; }
.gal-grid figure:nth-child(6) { grid-area: f; }
@media (max-width: 900px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 200px); grid-template-areas: "a b" "c d" "e f"; }
}

/* ====== COVERAGE ====== */
.coverage { background: #fff; }
.cov-wrap { background: linear-gradient(135deg, #0a235f, #0d3aa8); color: #fff; border-radius: var(--radius-lg); padding: 60px 50px; display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: center; position: relative; overflow: hidden; }
.cov-wrap::before { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(47,143,255,.22), transparent 70%); }
.cov-copy { position: relative; }
.cov-copy h2 { color: #fff; margin-bottom: 16px; }
.cov-copy p { color: #cbd4e8; }
.cov-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cov-col h4 { color: var(--sky); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,.18); }
.cov-col ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.cov-col li { color: #cbd4e8; font-size: .9rem; }
.cov-col li::before { content: '·  '; color: var(--sky); }
@media (max-width: 900px) {
  .cov-wrap { grid-template-columns: 1fr; padding: 40px 28px; gap: 32px; }
  .cov-grid { grid-template-columns: 1fr; }
}

/* ====== TESTIMONIALS ====== */
.reviews { background: var(--soft); }
.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.rev { background: #fff; border-radius: var(--radius); padding: 32px 28px; border: 1px solid var(--border); display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.rev:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rev .stars { color: #f5b919; font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 2px; }
.rev blockquote { font-size: 1rem; line-height: 1.65; color: var(--ink); margin-bottom: 24px; flex: 1; font-weight: 500; }
.rev blockquote::before { content: '“'; color: var(--accent); font-size: 2.4rem; font-family: Georgia, serif; line-height: .4; vertical-align: -.2em; margin-right: 4px; }
.rev .person { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.rev .init { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1rem; color: #fff; }
.rev .init.a { background: linear-gradient(135deg, var(--accent), var(--sky)); }
.rev .init.b { background: linear-gradient(135deg, var(--navy-700), var(--navy-900)); }
.rev .init.c { background: linear-gradient(135deg, #18b26b, #0c8855); }
.rev .person .who { font-weight: 700; color: var(--navy-900); line-height: 1.2; }
.rev .person .where { font-size: .82rem; color: var(--ink-muted); }
@media (max-width: 900px) { .rev-grid { grid-template-columns: 1fr; } }

/* ====== FAQ ====== */
.faq { background: #fff; }
.faq .container { display: grid; grid-template-columns: 1fr 1.4fr; gap: 70px; align-items: start; }
.faq-intro h2 { margin-bottom: 18px; }
.faq-intro p { font-size: 1.02rem; margin-bottom: 28px; }
.faq-intro .btn { width: max-content; }
.faq-intro .eyebrow { display: inline-block; padding: 6px 14px; border-radius: 999px; background: var(--navy-50); color: var(--navy-700); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 22px 26px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.02rem; color: var(--navy-900); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.6rem; color: var(--accent); font-weight: 400; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 26px 24px; color: var(--ink-muted); font-size: .96rem; line-height: 1.7; }
@media (max-width: 900px) { .faq .container { grid-template-columns: 1fr; gap: 36px; } }

/* ====== FINAL CTA ====== */
.final-cta { background: radial-gradient(700px 400px at 100% 100%, rgba(47,143,255,.28), transparent 70%), radial-gradient(500px 300px at 0% 0%, rgba(108,196,255,.14), transparent 70%), linear-gradient(135deg, #0a235f, #1f6fe0); color: #fff; position: relative; overflow: hidden; }
.final-cta .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: center; position: relative; }
.final-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.5vw, 2.9rem); margin-bottom: 18px; }
.final-cta h2 .accent { color: var(--sky); }
.final-cta p { color: #cbd4e8; font-size: 1.08rem; margin-bottom: 30px; max-width: 540px; }
.final-cta .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-pic { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 30px 60px rgba(0,0,0,.4); }
.cta-pic img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .final-cta .container { grid-template-columns: 1fr; gap: 36px; }
  .cta-pic { max-width: 360px; margin: 0 auto; }
}

/* ====== FOOTER ====== */
footer.site-footer { background: #061436; color: #cbd4e8; padding: 70px 0 30px; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.foot-brand img { height: 60px; margin-bottom: 18px; background: #fff; padding: 10px 14px; border-radius: 12px; }
.foot-brand p { font-size: .92rem; color: #99a7c8; line-height: 1.65; max-width: 280px; }
.foot-col h4 { color: #fff; font-size: .92rem; margin-bottom: 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.foot-col ul { list-style: none; display: grid; gap: 10px; }
.foot-col a { color: #99a7c8; font-size: .92rem; transition: color .15s; }
.foot-col a:hover { color: var(--sky); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 28px; font-size: .85rem; color: #6c7da5; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 580px) { .foot-grid { grid-template-columns: 1fr; } }

/* ====== FLOATING WHATSAPP ====== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 14px 30px rgba(37,211,102,.45); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.wa-float::before { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid #25d366; opacity: .5; animation: ring 2s infinite; }
@keyframes ring { 0% { transform: scale(.85); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

/* ====== MOBILE MENU ====== */
.mob-menu { position: fixed; inset: 0; z-index: 100; background: rgba(10,35,95,.97); backdrop-filter: blur(10px); display: none; padding: 80px 30px 40px; }
.mob-menu.open { display: block; }
.mob-menu .close { position: absolute; top: 22px; right: 22px; background: transparent; border: 0; color: #fff; font-size: 2rem; cursor: pointer; }
.mob-menu nav { display: grid; gap: 22px; }
.mob-menu a { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.4rem; }
.mob-menu .btn { margin-top: 30px; width: 100%; padding: 16px; }

/* =========================================================
   INNER PAGES — shared components
   ========================================================= */
/* Page hero / banner */
.page-hero { position: relative; background: linear-gradient(135deg, #061233 0%, #0d3aa8 70%, #1f6fe0 100%); color: #fff; overflow: hidden; padding: 64px 0 60px; }
.page-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--sky) 0%, var(--accent) 50%, var(--sky) 100%); z-index: 3; }
.page-hero::after { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 18% 20%, rgba(47,143,255,.20), transparent 42%), radial-gradient(circle at 85% 80%, rgba(108,196,255,.14), transparent 45%); pointer-events: none; }
.page-hero .bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 48px 48px; mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4.2vw, 3rem); max-width: 760px; margin-bottom: 14px; }
.page-hero h1 .accent { color: var(--sky); }
.page-hero p { color: #c2cdec; font-size: 1.08rem; max-width: 620px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: #9fb0d8; margin-bottom: 20px; }
.breadcrumb a { color: var(--sky); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #6e7fae; }

/* Prose / article content */
.content { background: #fff; }
.content-wrap { max-width: 820px; margin: 0 auto; }
.prose h2 { margin: 40px 0 16px; color: var(--navy-900); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 28px 0 12px; color: var(--navy-800); }
.prose p { font-size: 1.04rem; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 4px; list-style: none; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 32px; font-size: 1.02rem; line-height: 1.6; color: var(--ink-muted); }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; border-radius: 6px; background: var(--navy-50); }
.prose ul li::after { content: ''; position: absolute; left: 6px; top: 9px; width: 8px; height: 5px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.prose strong { color: var(--navy-900); }
.prose .lead { font-size: 1.15rem; line-height: 1.7; color: var(--ink); font-weight: 500; margin-bottom: 24px; }

/* Callout / highlight box */
.callout { background: var(--cream); border: 1px solid #d8e6ff; border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 26px 28px; margin: 30px 0; }
.callout h3 { margin: 0 0 8px; color: var(--navy-900); }
.callout p { margin: 0; }

/* Two-column info grid */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 28px; transition: transform .2s, box-shadow .2s; }
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card .ic { width: 52px; height: 52px; border-radius: 13px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: grid; place-items: center; margin-bottom: 16px; box-shadow: 0 10px 20px rgba(47,143,255,.25); }
.info-card .ic svg { width: 26px; height: 26px; fill: #fff; }
.info-card h3 { color: var(--navy-900); margin-bottom: 8px; }
.info-card p { font-size: .95rem; line-height: 1.6; margin: 0; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }

/* Contact layout */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 30px; display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; transition: border-color .2s, box-shadow .2s; }
.contact-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.contact-card .ic { width: 50px; height: 50px; flex-shrink: 0; border-radius: 13px; background: var(--navy-50); color: var(--accent-dark); display: grid; place-items: center; }
.contact-card .ic svg { width: 24px; height: 24px; }
.contact-card h3 { color: var(--navy-900); margin-bottom: 4px; font-size: 1.08rem; }
.contact-card p { margin: 0; font-size: .96rem; line-height: 1.55; }
.contact-card .muted { color: var(--ink-muted); font-size: .88rem; }
.contact-side { background: linear-gradient(135deg, #0a235f, #0d3aa8); color: #fff; border-radius: var(--radius-lg); padding: 40px 38px; position: relative; overflow: hidden; }
.contact-side::before { content: ''; position: absolute; right: -90px; top: -90px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(47,143,255,.25), transparent 70%); }
.contact-side > * { position: relative; }
.contact-side h2 { color: #fff; margin-bottom: 14px; }
.contact-side p { color: #cbd4e8; margin-bottom: 24px; }
.contact-side .hours { list-style: none; display: grid; gap: 10px; margin: 0 0 26px; }
.contact-side .hours li { display: flex; justify-content: space-between; gap: 16px; font-size: .94rem; color: #dbe3f5; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 8px; }
.contact-side .hours b { color: #fff; font-weight: 700; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

/* Simple CTA strip */
.cta-strip { background: linear-gradient(135deg, #0a235f, #1f6fe0); color: #fff; border-radius: var(--radius-lg); padding: 48px 44px; text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 80% 120%, rgba(47,143,255,.3), transparent 60%); }
.cta-strip > * { position: relative; }
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: #cbd4e8; max-width: 600px; margin: 0 auto 24px; }

/* Areas hub */
.area-list { columns: 3 200px; column-gap: 26px; }
.area-list a { display: block; padding: 12px 16px; margin-bottom: 10px; background: #fff; border: 1px solid var(--border); border-radius: 10px; color: var(--navy-900); font-weight: 600; font-size: .95rem; break-inside: avoid; transition: all .18s; }
.area-list a:hover { border-color: var(--accent); color: var(--accent); transform: translateX(3px); box-shadow: var(--shadow-sm); }
@media (max-width: 600px) { .area-list { columns: 2 140px; } }

/* Residential / Commercial duo cards (location pages) */
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.duo-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 32px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); }
.duo-card.res { border-top: 4px solid var(--accent); }
.duo-card.com { border-top: 4px solid var(--navy-700); }
.duo-card .tag { display: inline-flex; align-items: center; gap: 8px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.duo-card.com .tag { color: var(--navy-700); }
.duo-card h3 { color: var(--navy-900); font-size: 1.3rem; margin-bottom: 8px; }
.duo-card > p { font-size: .96rem; margin-bottom: 18px; }
.duo-card ul { list-style: none; display: grid; gap: 11px; margin: 0; }
.duo-card li { position: relative; padding-left: 28px; font-size: .96rem; color: var(--ink-muted); line-height: 1.5; }
.duo-card li::before { content: ''; position: absolute; left: 0; top: 6px; width: 17px; height: 17px; border-radius: 5px; background: var(--navy-50); }
.duo-card li::after { content: ''; position: absolute; left: 5px; top: 10px; width: 7px; height: 4px; border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
@media (max-width: 760px) { .duo-grid { grid-template-columns: 1fr; } }

/* Map embed */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); line-height: 0; height: 100%; min-height: 380px; }
.map-embed iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* About-area + map two-col */
.area-about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: stretch; }
.area-about .prose p:last-child { margin-bottom: 0; }
@media (max-width: 860px) { .area-about { grid-template-columns: 1fr; gap: 28px; } }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table th, .price-table td { text-align: left; padding: 16px 22px; border-bottom: 1px solid var(--border); font-size: .98rem; }
.price-table thead th { background: var(--navy-900); color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--navy-50); }
.price-table td.svc { font-weight: 700; color: var(--navy-900); }
.price-table td.price { font-weight: 800; color: var(--accent-dark); white-space: nowrap; }
@media (max-width: 600px) { .price-table th, .price-table td { padding: 13px 14px; font-size: .9rem; } }

/* Areas we cover — subheadings + nearby location cards (postcodes) */
.area-subhead { display: flex; align-items: center; gap: 11px; font-family: 'Plus Jakarta Sans', sans-serif; color: var(--navy-900); font-weight: 800; font-size: 1.08rem; margin: 0 0 20px; }
.area-subhead .ic { flex: 0 0 32px; height: 32px; border-radius: 9px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: grid; place-items: center; box-shadow: 0 6px 14px rgba(47,143,255,.28); }
.area-subhead .ic svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2; }
.area-subhead .count { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); }

.nearby-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.nearby-card { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 13px 15px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.nearby-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.nearby-card .np-ic { flex: 0 0 38px; height: 38px; border-radius: 10px; background: var(--navy-50); color: var(--accent-dark); display: grid; place-items: center; transition: all .2s ease; }
.nearby-card .np-ic svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 2; }
.nearby-card:hover .np-ic { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #fff; }
.nearby-card .np-txt { display: flex; flex-direction: column; line-height: 1.2; flex: 1; min-width: 0; }
.nearby-card .np-txt b { color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .95rem; }
.nearby-card:hover .np-txt b { color: var(--accent-dark); }
.nearby-card .np-txt .pc { font-family: 'JetBrains Mono', monospace; font-size: .73rem; color: var(--ink-muted); margin-top: 1px; }
.nearby-card .np-arr { color: var(--accent); font-weight: 800; opacity: 0; transform: translateX(-5px); transition: all .2s ease; }
.nearby-card:hover .np-arr { opacity: 1; transform: none; }
@media (max-width: 980px) { .nearby-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .nearby-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .nearby-grid { grid-template-columns: 1fr; } }

/* =========================================================
   BLOG / PROJECTS
   ========================================================= */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card .thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; background: var(--navy-50); }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-family: 'JetBrains Mono', monospace; font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.post-card h3 { color: var(--navy-900); font-size: 1.12rem; margin-bottom: 10px; line-height: 1.3; }
.post-card p { font-size: .93rem; color: var(--ink-muted); margin-bottom: 16px; flex: 1; }
.post-card .more { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .9rem; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.post-card .more::after { content: '→'; transition: transform .2s; }
.post-card:hover .more::after { transform: translateX(4px); }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* Single article (blog post / project) */
.post-wrap { max-width: 820px; margin: 0 auto; }
.post-featured { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-bottom: 34px; aspect-ratio: 16/9; background: var(--navy-50); }
.post-featured img { width: 100%; height: 100%; object-fit: cover; }
.post-infographic { margin: 36px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.post-infographic img { width: 100%; display: block; }
.post-infographic figcaption { font-size: .82rem; color: var(--ink-muted); padding: 11px 14px; background: var(--soft); text-align: center; }
.post-cta { background: linear-gradient(135deg, #0a235f, #1f6fe0); color: #fff; border-radius: var(--radius-lg); padding: 36px 34px; margin-top: 40px; text-align: center; position: relative; overflow: hidden; }
.post-cta::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 120%, rgba(47,143,255,.35), transparent 60%); }
.post-cta > * { position: relative; }
.post-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.post-cta p { color: #cbd4e8; margin: 0 auto 20px; max-width: 520px; }

/* Project spec tiles */
.proj-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin: 6px 0 30px; }
.proj-spec { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px 20px; }
.proj-spec small { display: block; font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.proj-spec b { color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.02rem; }
@media (max-width: 700px) { .proj-specs { grid-template-columns: 1fr 1fr; } }

/* E-E-A-T author byline + bio box (blog) */
.author-byline { display: flex; align-items: center; gap: 14px; margin: 0 0 30px; padding-bottom: 22px; border-bottom: 1px solid var(--border); }
.author-byline img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border); background: #fff; flex-shrink: 0; }
.author-byline .meta b { color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; font-size: .98rem; }
.author-byline .meta span { display: block; color: var(--ink-muted); font-size: .82rem; margin-top: 1px; }
.author-box { display: flex; gap: 22px; align-items: flex-start; background: var(--cream); border: 1px solid #d8e6ff; border-radius: var(--radius-lg); padding: 26px 28px; margin: 44px 0 0; }
.author-box img { width: 86px; height: 86px; border-radius: 16px; object-fit: cover; flex-shrink: 0; border: 1px solid var(--border); background: #fff; }
.author-box .role { font-family: 'JetBrains Mono', monospace; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.author-box h4 { color: var(--navy-900); margin-bottom: 8px; font-size: 1.08rem; }
.author-box p { font-size: .92rem; color: var(--ink-muted); margin: 0; line-height: 1.6; }
.author-box a { color: var(--accent); font-weight: 600; }
@media (max-width: 560px) { .author-box { flex-direction: column; gap: 16px; } }

/* Founder portrait crop for author avatars + owner photo */
.author-byline img, .author-box img { object-position: center 18%; }

/* =========================================================
   MEGA MENU + COMPREHENSIVE FOOTER
   ========================================================= */
.nav-desktop { gap: 26px; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > .nav-top { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: .94rem; color: var(--ink); }
.nav-item > .nav-top:hover { color: var(--accent); }
.nav-item > .nav-top .chev { width: 11px; height: 11px; transition: transform .2s ease; }
.nav-item:hover > .nav-top .chev { transform: rotate(180deg); }
.nav-item:hover > .nav-top { color: var(--accent); }
.mega { position: absolute; top: 100%; left: 0; padding-top: 16px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; z-index: 90; }
.nav-item:hover .mega { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: flex; gap: 26px; background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-lg); padding: 24px 26px; }
.mega-col { min-width: 172px; }
.mega-col .mega-h { font-family: 'JetBrains Mono', monospace; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.mega-col > a { display: block; padding: 6px 0; font-size: .92rem; font-weight: 600; color: var(--ink-2); white-space: nowrap; }
.mega-col > a:hover { color: var(--accent); }
.mega-cta { border-left: 1px solid var(--border); padding-left: 26px; max-width: 230px; display: flex; flex-direction: column; }
.mega-cta p { font-size: .85rem; color: var(--ink-muted); margin-bottom: 14px; line-height: 1.5; }
.mega-cta .btn { width: 100%; padding: 12px 18px; font-size: .9rem; }
@media (max-width: 1040px) { .nav-desktop { gap: 20px; } .nav-desktop a, .nav-item > .nav-top { font-size: .9rem; } }
@media (max-width: 900px) { .nav-item .mega { display: none; } }

/* Comprehensive mobile menu */
.mob-menu { overflow-y: auto; }
.mob-menu nav { gap: 0; }
.mob-menu .mob-label { font-family: 'JetBrains Mono', monospace; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--sky); margin: 20px 0 4px; }
.mob-menu nav a { font-size: 1.12rem; padding: 9px 0; }
.mob-menu nav a.mob-sub { font-size: 1rem; color: #cdd8ee; font-weight: 600; }

/* Comprehensive footer */
.foot-col ul.two-col { columns: 2; column-gap: 22px; }
.foot-col ul.two-col li { break-inside: avoid; }
