/* ══════════════════════════════════════════════
   TECH PROS — Main Stylesheet v1.0
   ══════════════════════════════════════════════ */

:root {
  --red: #E8213A;
  --red-dark: #C01830;
  --navy: #0D1B2A;
  --navy-mid: #162135;
  --steel: #1E3050;
  --sky: #2A7FD4;
  --sky-light: #3B9EF5;
  --gold: #F5A623;
  --white: #FFFFFF;
  --off-white: #F4F6F9;
  --gray: #8A94A6;
  --gray-light: #E2E8F0;
  --text: #1A2332;
  --text-light: #4A5568;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Barlow Condensed', sans-serif; line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ── TOP BAR ── */
.topbar { background: var(--navy); color: #aab8c8; font-size: .8rem; padding: 6px 0; font-weight: 500; }
.topbar .inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: #aab8c8; transition: color .2s; }
.topbar a:hover { color: var(--white); }
.topbar .tb-right { display: flex; align-items: center; gap: 20px; }
.tb-tag { background: var(--red); color: white; padding: 2px 8px; border-radius: 3px; font-size: .72rem; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }

/* ── HEADER ── */
#site-header { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,.08); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon { width: 46px; height: 46px; background: var(--red); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: white; font-weight: 800; font-family: 'Barlow Condensed', sans-serif; letter-spacing: -1px; }
.logo-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; }
.logo-text span { display: block; font-size: .7rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }

/* ── NAV ── */
#primary-nav { display: flex; align-items: center; gap: 4px; }
#primary-nav a { padding: 8px 11px; font-size: .82rem; font-weight: 600; color: var(--text); border-radius: 6px; transition: all .2s; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
#primary-nav a:hover { background: var(--off-white); color: var(--sky); }
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7em; }
.dropdown-menu { position: absolute; top: calc(100% + 6px); left: 0; background: white; border-radius: 10px; box-shadow: 0 8px 32px rgba(0,0,0,.14); padding: 8px; min-width: 200px; display: none; z-index: 200; }
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a { display: block; padding: 8px 12px; font-size: .82rem; border-radius: 6px; color: var(--text); }
.dropdown-menu a:hover { background: var(--off-white); color: var(--red); }
.nav-cta { margin-left: 10px !important; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 7px; padding: 10px 20px; border-radius: 8px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: .95rem; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; border: none; transition: all .2s; white-space: nowrap; }
.btn-red { background: var(--red); color: white; }
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(232,33,58,.35); }
.btn-sky { background: var(--sky); color: white; }
.btn-sky:hover { background: #1a6fc4; transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ── MOBILE MENU BUTTON ── */
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; flex-direction: column; gap: 5px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-nav { display: none; position: fixed; inset: 0; background: var(--navy); z-index: 300; flex-direction: column; padding: 20px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.mobile-close { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.mobile-nav a { color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; text-transform: uppercase; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); display: block; }
.mobile-call-btn { margin-top: 20px !important; background: var(--red); text-align: center; padding: 14px; border-radius: 10px; }

/* ── HERO SLIDER ── */
.hero-slider { position: relative; height: 420px; overflow: hidden; background: var(--navy); }
.slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: all; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg-1 { background: linear-gradient(135deg,#0D1B2A,#1E3050,#0A2540); }
.slide-bg-2 { background: linear-gradient(135deg,#1a0a0a,#2D1010,#0A0A20); }
.slide-bg-3 { background: linear-gradient(135deg,#0a1a0a,#102A10,#0A1020); }
.slide-bg-4 { background: linear-gradient(135deg,#1A1A0A,#2A2000,#0A1020); }
.slide-bg-5 { background: linear-gradient(135deg,#0A0A2A,#10102A,#200A30); }
.slide-bg-6 { background: linear-gradient(135deg,#0A1A1A,#052020,#0A1520); }
.slide::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle at 20% 50%,rgba(42,127,212,.12) 0%,transparent 50%),radial-gradient(circle at 80% 30%,rgba(232,33,58,.08) 0%,transparent 40%); pointer-events:none; }
.slide-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 30px; }
.slide-text { max-width: 580px; }
.slide-badge { display: inline-block; background: var(--red); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px; }
.slide-badge.sky { background: var(--sky); }
.slide-badge.gold { background: var(--gold); color: var(--navy); }
.slide-title { font-size: clamp(2rem,4.5vw,3.2rem); font-weight: 800; color: white; line-height: 1.0; margin-bottom: 12px; text-transform: uppercase; }
.slide-title em { font-style: normal; color: var(--sky-light); }
.slide-sub { font-size: 1rem; color: rgba(255,255,255,.75); line-height: 1.5; margin-bottom: 20px; }
.slide-ctas { display: flex; gap: 10px; flex-wrap: wrap; }
.slide-visual { flex-shrink: 0; width: 200px; height: 200px; background: rgba(255,255,255,.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 5rem; border: 2px solid rgba(255,255,255,.08); }
.slider-controls { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); cursor: pointer; transition: all .3s; border: none; }
.slider-dot.active { background: var(--red); width: 24px; border-radius: 4px; }
.slider-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 10; transition: all .2s; }
.slider-arrow:hover { background: rgba(255,255,255,.2); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

/* ── TRUST BAR ── */
.trust-bar { background: var(--off-white); border-bottom: 1px solid var(--gray-light); padding: 14px 0; }
.trust-bar .inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 12px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; white-space: nowrap; }
.trust-icon { width: 28px; height: 28px; background: var(--sky); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; flex-shrink: 0; }
.trust-icon.red { background: var(--red); }
.trust-icon.gold { background: var(--gold); }
.trust-icon.sky { background: var(--sky); }

/* ── SECTIONS ── */
.section { padding: 70px 0; }
.section.dark { background: var(--navy); color: white; }
.section.gray { background: var(--off-white); }
.why-section { background: var(--off-white); }
.section-tag { display: inline-block; background: var(--red); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 4px; margin-bottom: 10px; }
.section-tag.sky { background: var(--sky); }
.section-tag.gold { background: var(--gold); color: var(--navy); }
.section-title { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 10px; }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 600px; line-height: 1.6; }
.section.dark .section-sub { color: rgba(255,255,255,.65); }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 20px; }
.service-card { background: white; border-radius: 14px; padding: 28px 22px; border: 2px solid var(--gray-light); transition: all .25s; position: relative; overflow: hidden; }
.service-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:var(--sky); transform:scaleX(0); transition:transform .25s; }
.service-card:hover { border-color: var(--sky); box-shadow: 0 8px 28px rgba(42,127,212,.12); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.card-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--navy); }
.service-card p { font-size: .82rem; color: var(--text-light); line-height: 1.5; }
.card-link { display: inline-flex; align-items: center; gap: 4px; font-size: .78rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: .5px; margin-top: 12px; transition: gap .2s; }
.card-link:hover { gap: 8px; }
.badge-exclusive { position: absolute; top: 14px; right: 14px; background: var(--red); color: white; font-size: .62rem; font-weight: 700; padding: 2px 7px; border-radius: 3px; letter-spacing: .5px; text-transform: uppercase; }

/* ── EXCLUSIVE BAND ── */
.exclusive-band { background: linear-gradient(135deg,var(--red),var(--red-dark)); padding: 36px 0; position: relative; overflow: hidden; }
.exclusive-band::before { content:''; position:absolute; top:-30px; right:-30px; width:200px; height:200px; background:rgba(255,255,255,.06); border-radius:50%; }
.exclusive-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.exclusive-left h2 { font-size: clamp(1.4rem,3vw,2rem); font-weight: 800; text-transform: uppercase; color: white; margin-bottom: 6px; }
.exclusive-left p { color: rgba(255,255,255,.85); font-size: .92rem; line-height: 1.5; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 16px; overflow: hidden; box-shadow: 0 16px 48px rgba(0,0,0,.15); }
.why-content { background: var(--navy); padding: 50px 44px; color: white; }
.why-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.why-item { display: flex; align-items: flex-start; gap: 14px; }
.why-check { width: 30px; height: 30px; background: var(--sky); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; margin-top: 2px; color: white; font-weight: 700; }
.why-item-text strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 1.05rem; font-weight: 700; text-transform: uppercase; margin-bottom: 3px; color: white; }
.why-item-text span { font-size: .83rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.why-stats { background: var(--steel); padding: 50px 44px; display: flex; flex-direction: column; justify-content: center; }
.stat-block { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.stat-block:last-child { border-bottom: none; }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 3.2rem; font-weight: 800; color: var(--sky-light); line-height: 1; margin-bottom: 4px; }
.stat-num em { font-style: normal; color: var(--red); }
.stat-label { font-size: .85rem; color: rgba(255,255,255,.65); font-weight: 500; }

/* ── HOW IT WORKS ── */
.steps-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; margin-top: 40px; }
.steps-row::before { content:''; position:absolute; top:28px; left:12.5%; right:12.5%; height:2px; background:linear-gradient(90deg,var(--sky),var(--red)); z-index:0; }
.step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--sky); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; border: 3px solid var(--off-white); box-shadow: 0 4px 12px rgba(42,127,212,.3); }
.step:nth-child(4) .step-num { background: var(--red); }
.step h3 { font-size: .95rem; font-weight: 700; text-transform: uppercase; margin-bottom: 6px; color: var(--navy); }
.step p { font-size: .8rem; color: var(--text-light); line-height: 1.5; }

/* ── BRANDS ── */
.brands-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.brand-pill { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.75); padding: 8px 18px; border-radius: 20px; font-size: .82rem; font-weight: 600; transition: all .2s; }
.brand-pill:hover { background: rgba(255,255,255,.14); color: white; border-color: var(--sky); }

/* ── QUOTE SECTION ── */
.quote-section { background: var(--off-white); }
.quote-wrapper { display: grid; grid-template-columns: 1fr 1.6fr; gap: 40px; align-items: start; }
.quote-copy p { font-size: .92rem; color: var(--text-light); line-height: 1.6; margin-bottom: 16px; }
.quote-feature { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: .85rem; font-weight: 600; }
.quote-feature::before { content:'✓'; width:22px; height:22px; background:var(--sky); color:white; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:.7rem; font-weight:800; flex-shrink:0; }
.iframe-wrapper { background: white; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,.1); border: 2px solid var(--gray-light); min-height: 400px; }
.iframe-wrapper iframe { width: 100%; min-height: 500px; border: none; display: block; }
.iframe-placeholder { display: flex; align-items: center; justify-content: center; min-height: 400px; }
.placeholder-inner { text-align: center; padding: 40px; }
.placeholder-inner h3 { font-size: 1.5rem; color: var(--navy); margin-bottom: 8px; text-transform: uppercase; }
.placeholder-inner p { font-size: .85rem; color: var(--text-light); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; margin-top: 40px; }
.review-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 24px; }
.stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--sky); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; color: white; flex-shrink: 0; }
.review-name { font-size: .85rem; font-weight: 600; color: white; }
.review-location { font-size: .75rem; color: rgba(255,255,255,.45); }
.google-badge { display: flex; align-items: center; gap: 8px; margin-top: 30px; justify-content: center; color: rgba(255,255,255,.5); font-size: .8rem; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-light); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; font-size: .95rem; color: var(--navy); gap: 16px; }
.faq-q span { flex: 1; }
.faq-arrow { width: 24px; height: 24px; background: var(--sky); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .8rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--red); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height .35s ease, padding .35s ease; font-size: .88rem; color: var(--text-light); line-height: 1.65; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 18px; }

/* ── CONTACT ── */
.info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.08); border-radius: 12px; overflow: hidden; }
.info-block { background: rgba(255,255,255,.05); padding: 30px 28px; text-align: center; }
.info-block .icon { font-size: 2rem; margin-bottom: 10px; }
.info-block h4 { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--sky-light); margin-bottom: 6px; }
.info-block p { font-size: .9rem; color: rgba(255,255,255,.8); line-height: 1.5; }
.info-block a { color: var(--sky-light); }
.info-block a:hover { color: white; }

/* ══════════════════════════════════════════════
   BLOG STYLES
   ══════════════════════════════════════════════ */

/* Page hero (used on blog listing & single) */
.page-hero { padding: 60px 0 50px; }
.page-hero.dark { background: var(--navy); }
.page-hero-title { font-size: clamp(2rem,4vw,3.2rem); font-weight: 800; text-transform: uppercase; color: white; margin: 8px 0 10px; }
.page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.7); max-width: 600px; line-height: 1.6; margin-top: 8px; }
.single-breadcrumb { font-size: .78rem; color: rgba(255,255,255,.5); margin-bottom: 10px; }
.single-breadcrumb a { color: rgba(255,255,255,.6); }
.single-breadcrumb a:hover { color: white; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 24px; }
.blog-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.blog-filter-btn { padding: 7px 18px; border-radius: 20px; font-family: 'Barlow Condensed', sans-serif; font-size: .82rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; cursor: pointer; border: 2px solid var(--gray-light); background: white; color: var(--text-light); transition: all .2s; }
.blog-filter-btn:hover, .blog-filter-btn.active { background: var(--navy); border-color: var(--navy); color: white; }
.blog-filter-btn[data-cat="tips"].active { background: var(--sky); border-color: var(--sky); }
.blog-filter-btn[data-cat="news"].active { background: var(--red); border-color: var(--red); }
.blog-filter-btn[data-cat="industry"].active { background: var(--gold); border-color: var(--gold); color: var(--navy); }

.blog-card { background: white; border-radius: 14px; border: 2px solid var(--gray-light); overflow: hidden; transition: all .25s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--sky); box-shadow: 0 8px 28px rgba(42,127,212,.12); transform: translateY(-3px); }
.blog-card-img-link { display: block; }
.blog-card-img { height: 180px; background: linear-gradient(135deg,var(--navy),var(--steel)); display: flex; align-items: center; justify-content: center; font-size: 3.2rem; position: relative; overflow: hidden; }
.blog-card-img img.blog-thumb { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-cat-badge { position: absolute; top: 12px; left: 12px; padding: 3px 10px; border-radius: 4px; font-family: 'Barlow Condensed', sans-serif; font-size: .68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; z-index: 2; }
.blog-cat-badge.tips { background: var(--sky); color: white; }
.blog-cat-badge.news { background: var(--red); color: white; }
.blog-cat-badge.industry { background: var(--gold); color: var(--navy); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: .72rem; color: var(--gray); font-weight: 500; margin-bottom: 8px; display: flex; gap: 10px; flex-wrap: wrap; }
.blog-card h2.blog-card-title, .blog-card h3 { font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; line-height: 1.2; }
.blog-card h2.blog-card-title a, .blog-card h3 a { color: var(--navy); }
.blog-card h2.blog-card-title a:hover, .blog-card h3 a:hover { color: var(--sky); }
.blog-card p { font-size: .83rem; color: var(--text-light); line-height: 1.55; flex: 1; }
.blog-read-more { display: inline-flex; align-items: center; gap: 4px; margin-top: 14px; font-size: .78rem; font-weight: 700; color: var(--sky); text-transform: uppercase; letter-spacing: .5px; transition: gap .2s; background: none; border: none; padding: 0; cursor: pointer; font-family: 'Barlow', sans-serif; }
.blog-read-more:hover { gap: 8px; }

/* Blog pagination */
.blog-pagination { margin-top: 40px; }
.blog-pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.blog-pagination .page-numbers { padding: 8px 14px; border-radius: 8px; border: 2px solid var(--gray-light); font-size: .85rem; font-weight: 600; color: var(--text); transition: all .2s; }
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers.current { background: var(--sky); border-color: var(--sky); color: white; }

/* Empty state */
.blog-empty { text-align: center; padding: 60px 20px; color: var(--gray); }
.blog-empty .empty-icon { font-size: 3rem; margin-bottom: 12px; }
.blog-empty h3 { font-size: 1.4rem; color: var(--navy); text-transform: uppercase; margin-bottom: 8px; }
.blog-empty p { font-size: .9rem; }

/* ── SINGLE POST ── */
.single-post-hero { background: var(--navy); padding: 50px 0 40px; }
.single-post-title { font-size: clamp(1.8rem,4vw,3rem); font-weight: 800; text-transform: uppercase; color: white; margin: 12px 0 10px; max-width: 800px; }
.single-post-meta { display: flex; gap: 16px; flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: .8rem; font-weight: 500; margin-top: 8px; }
.single-post-layout { display: grid; grid-template-columns: 1fr 320px; gap: 40px; padding-top: 40px; padding-bottom: 60px; align-items: start; }
.single-post-featured-img { border-radius: 12px; overflow: hidden; margin-bottom: 28px; }
.single-post-featured-img img { width: 100%; height: auto; }

/* Post body typography */
.post-body { font-size: 1rem; line-height: 1.8; color: var(--text); }
.post-body h2 { font-size: 1.6rem; color: var(--navy); margin: 32px 0 12px; text-transform: uppercase; border-left: 4px solid var(--sky); padding-left: 12px; }
.post-body h3 { font-size: 1.2rem; color: var(--navy); margin: 24px 0 8px; text-transform: uppercase; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 18px; }
.post-body li { margin-bottom: 6px; }
.post-body strong { color: var(--navy); }
.post-body a { color: var(--sky); text-decoration: underline; }
.post-body blockquote { border-left: 4px solid var(--red); padding: 12px 20px; margin: 20px 0; background: var(--off-white); border-radius: 0 8px 8px 0; font-style: italic; color: var(--text-light); }

/* Post tags & nav */
.post-tags { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--gray-light); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; font-size: .8rem; font-weight: 600; color: var(--gray); }
.post-tag { background: var(--off-white); padding: 4px 12px; border-radius: 20px; font-size: .75rem; color: var(--text-light); transition: all .2s; }
.post-tag:hover { background: var(--sky); color: white; }
.post-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 24px; border-top: 2px solid var(--gray-light); gap: 12px; flex-wrap: wrap; }
.post-nav a { font-size: .82rem; font-weight: 600; color: var(--sky); }
.post-nav a:hover { color: var(--red); }
.post-nav-all { flex-shrink: 0; }

/* Sidebar */
.single-post-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-cta { background: var(--navy); border-radius: 14px; padding: 24px; }
.sidebar-cta h3 { color: white; font-size: 1.2rem; text-transform: uppercase; margin-bottom: 8px; }
.sidebar-cta p { color: rgba(255,255,255,.65); font-size: .83rem; line-height: 1.5; }
.sidebar-related, .sidebar-services { background: white; border: 2px solid var(--gray-light); border-radius: 14px; padding: 20px; }
.sidebar-related h4, .sidebar-services h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 14px; }
.related-post-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--gray-light); }
.related-post-item:last-child { border-bottom: none; }
.related-post-emoji { font-size: 1.4rem; flex-shrink: 0; }
.related-post-text strong { display: block; font-size: .83rem; font-weight: 600; color: var(--navy); line-height: 1.3; transition: color .2s; }
.related-post-item:hover .related-post-text strong { color: var(--sky); }
.related-post-text span { font-size: .72rem; color: var(--gray); }
.sidebar-services ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sidebar-services ul li a { font-size: .83rem; color: var(--text-light); transition: color .2s; }
.sidebar-services ul li a:hover { color: var(--sky); }

/* ── PAGE CONTENT ── */
.page-content-wrap { display: grid; grid-template-columns: 1fr; max-width: 860px; }
.page-content { font-size: 1rem; line-height: 1.8; }
.page-content h2 { font-size: 1.6rem; color: var(--navy); margin: 28px 0 10px; text-transform: uppercase; }
.page-content p { margin-bottom: 16px; color: var(--text-light); }

/* ── FOOTER ── */
#site-footer { background: #080E1A; color: rgba(255,255,255,.6); padding: 50px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto; padding: 40px 20px 0; }
.footer-brand .logo-text strong { color: white; }
.footer-brand .logo-text span { color: rgba(255,255,255,.4); }
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; margin: 14px 0 18px; }
.footer-phone { font-size: .85rem; padding: 9px 18px; }
.footer-col h5 { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: .83rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--sky-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); margin-top: 40px; padding: 0; }
.footer-bottom-inner { max-width: 1200px; margin: 0 auto; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .75rem; color: rgba(255,255,255,.3); }

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .single-post-layout { grid-template-columns: 1fr; }
  .single-post-sidebar { position: static; }
}

@media (max-width: 900px) {
  #primary-nav { display: none; }
  .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; }
  .hero-slider { height: auto; min-height: 380px; }
  .slide-content { padding: 30px 20px; flex-direction: column; text-align: center; }
  .slide-ctas { justify-content: center; }
  .slide-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps-row::before { display: none; }
  .quote-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); }
}

@media (max-width: 600px) {
  .section { padding: 50px 0; }
  .header-inner { height: 58px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar .inner { justify-content: flex-start; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-nav { flex-direction: column; text-align: center; }
  .single-post-title { font-size: 1.8rem; }
}
