/* =============================================================
   SHARED STYLESHEET — GrimsbyPressureWashing.co.uk
   Fonts imported per-page via Google Fonts link in <head>
============================================================= */

:root {
  --red:         #CC1414;
  --green:       #22AA22;
  --green-dark:  #1a8c1a;
  --blue:        #1565C0;
  --blue-dark:   #0d4a9a;
  --blue-light:  #4DC3F7;
  --navy:        #0D1B2A;
  --navy-mid:    #152336;
  --white:       #FFFFFF;
  --grey-light:  #F4F6F9;
  --grey:        #E4E8ED;
  --text-dark:   #0D1B2A;
  --text-muted:  #5A6B7A;
  --font-display:'Oswald', sans-serif;
  --font-body:   'Barlow', sans-serif;
  --radius:      6px;
  --shadow-card: 0 4px 24px rgba(13,27,42,.10);
  --shadow-hover:0 10px 40px rgba(13,27,42,.18);
  --trans:       .25s ease;
  --max-w:       1200px;
}

/* ------ RESET ------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text-dark); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { color: inherit; text-decoration: none; }
ul    { list-style: none; }
button{ font-family: inherit; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ------ TYPOGRAPHY ------ */
.section-label {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--navy);
}
.section-title span { color: var(--blue); }
.section-title.light { color: var(--white); }

/* ------ BUTTONS ------ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: var(--trans); white-space: nowrap;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,170,34,.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(21,101,192,.4); }

/* ------ HEADER ------ */
#header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px; height: 72px;
}
.logo-wrap img { height: 52px; width: auto; }
nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-family: var(--font-display);
  font-size: .84rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--trans);
}
nav a:hover, nav a.active { color: var(--white); background: rgba(255,255,255,.09); }
.nav-cta { background: var(--green) !important; color: var(--white) !important; padding: 10px 20px !important; }
.nav-cta:hover { background: var(--green-dark) !important; }

/* "Other Services" dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  font-family: var(--font-display);
  font-size: .84rem; font-weight: 500;
  letter-spacing: .05em; text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: 8px 14px; border-radius: var(--radius);
  transition: var(--trans);
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 5px;
}
.nav-dropdown-btn:hover, .nav-dropdown-btn.open { color: var(--white); background: rgba(255,255,255,.09); }
.nav-dropdown-btn .dd-arrow { font-size: .65rem; transition: transform .2s; }
.nav-dropdown-btn.open .dd-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--navy); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,.35); z-index: 9999;
  overflow: hidden;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 16px;
  font-family: var(--font-display); font-size: .82rem;
  font-weight: 500; letter-spacing: .04em; text-transform: uppercase;
  color: rgba(255,255,255,.82); border-radius: 0;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.09); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--trans); }

.mobile-nav { display: none; background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.1); }
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-display); font-size: 1rem;
  color: rgba(255,255,255,.82);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-transform: uppercase; letter-spacing: .05em;
}
.mobile-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.mobile-nav .mob-cta {
  background: var(--green); color: var(--white); text-align: center;
  margin: 16px; border-radius: var(--radius); border-bottom: none;
}

/* ------ BREADCRUMB ------ */
.breadcrumb {
  background: var(--navy-mid);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.breadcrumb ol {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .8rem; color: rgba(255,255,255,.5);
}
.breadcrumb li::after { content: '›'; margin-left: 8px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--trans); }
.breadcrumb a:hover { color: var(--blue-light); }
.breadcrumb li:last-child { color: var(--white); }

/* ------ HERO ------ */
.hero {
  position: relative; min-height: 590px;
  display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, #1a3a5c 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 82% 60%, rgba(77,195,247,.13) 0%, transparent 60%),
    radial-gradient(ellipse 40% 55% at 18% 30%, rgba(21,101,192,.15) 0%, transparent 55%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; right: -80px; top: 0; bottom: 0; width: 400px;
  background: linear-gradient(to bottom, rgba(21,101,192,.22), rgba(77,195,247,.08));
  transform: skewX(-8deg); pointer-events: none;
}
.hero-bg {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 46%; height: 100%; object-fit: cover; opacity: .15;
}
.hero-content { position: relative; z-index: 1; max-width: 680px; padding: 64px 0; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,170,34,.18); border: 1px solid rgba(34,170,34,.38);
  border-radius: 100px; padding: 6px 18px;
  font-family: var(--font-display); font-size: .76rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: #7edc7e; margin-bottom: 26px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.45; transform:scale(.8); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 6vw, 4.1rem);
  font-weight: 700; line-height: 1.08;
  color: var(--white); margin-bottom: 22px;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero h1 em     { font-style: normal; color: var(--blue-light); }
.hero h1 strong { color: var(--green); font-style: normal; }
.hero-sub {
  font-size: 1.12rem; color: rgba(255,255,255,.78);
  max-width: 540px; margin-bottom: 38px;
  font-weight: 300; line-height: 1.75;
}
.hero-sub b { color: var(--white); font-weight: 600; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Page hero — smaller, for inner pages */
.page-hero {
  min-height: 340px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1a3a5c 100%);
}
.page-hero::after { display: none; }
.page-hero .hero-bg { opacity: .12; }
.page-hero .hero-content { padding: 48px 0; }
.page-hero h1 { font-size: clamp(1.9rem, 5vw, 3.2rem); }

/* ------ PROOF BAR ------ */
.proof-bar { background: var(--blue); padding: 18px 0; }
.proof-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap;
}
.proof-item {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 30px;
  border-right: 1px solid rgba(255,255,255,.25);
}
.proof-item:last-child { border-right: none; }
.proof-icon { font-size: 1.5rem; line-height: 1; }
.proof-text {
  font-family: var(--font-body);
  font-size: .88rem; font-weight: 400;
  color: rgba(255,255,255,.9); line-height: 1.35;
}
.proof-text strong { display: block; font-size: .95rem; font-weight: 600; color: var(--white); }
.stars { color: #FFD700; letter-spacing: 2px; font-size: .84rem; display: block; }

/* ------ SECTIONS ------ */
.section-hd { text-align: center; margin-bottom: 56px; }
.section-hd .section-title { margin-bottom: 14px; }
.section-hd p { color: var(--text-muted); font-size: 1.03rem; max-width: 560px; margin: 0 auto; }

/* ------ SERVICE CARDS ------ */
.services { padding: 92px 0; background: var(--grey-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: 10px; overflow: hidden;
  box-shadow: var(--shadow-card); border-top: 4px solid var(--green);
  display: flex; flex-direction: column; transition: var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.svc-img { width: 100%; height: 200px; object-fit: cover; background: var(--grey); }
.svc-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.svc-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.svc-body h3 {
  font-family: var(--font-display); font-size: 1.35rem;
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.svc-body p { color: var(--text-muted); font-size: .94rem; line-height: 1.68; margin-bottom: 18px; flex: 1; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.tag {
  font-family: var(--font-display); font-size: .69rem;
  letter-spacing: .08em; text-transform: uppercase;
  background: rgba(21,101,192,.10); color: var(--blue);
  border-radius: 4px; padding: 4px 10px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: .88rem;
  font-weight: 600; color: var(--green-dark);
  text-transform: uppercase; letter-spacing: .07em; transition: var(--trans);
}
.svc-link::after { content: '→'; transition: transform var(--trans); }
.svc-link:hover { color: var(--blue); }
.svc-link:hover::after { transform: translateX(4px); }

/* ------ INCLUDED LIST (service detail pages) ------ */
.included { padding: 80px 0; background: var(--white); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.included-card {
  background: var(--grey-light);
  border-radius: 10px; padding: 28px;
  border-left: 4px solid var(--green);
  transition: var(--trans);
}
.included-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.included-card h3 {
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--navy); margin-bottom: 10px;
}
.included-card p { color: var(--text-muted); font-size: .93rem; line-height: 1.68; }

/* ------ PROCESS STEPS ------ */
.process { padding: 80px 0; background: var(--grey-light); }
.steps { display: flex; flex-wrap: wrap; gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute; top: 28px; left: 28px; right: 28px; height: 2px;
  background: var(--grey); z-index: 0;
}
.step {
  flex: 1; min-width: 160px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 16px; position: relative; z-index: 1;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; border: 3px solid var(--white);
  box-shadow: 0 0 0 4px var(--blue);
}
.step h4 {
  font-family: var(--font-display); font-size: 1rem;
  font-weight: 600; color: var(--navy); margin-bottom: 8px;
}
.step p { color: var(--text-muted); font-size: .88rem; line-height: 1.6; }

/* ------ WHY CHOOSE US ------ */
.why { padding: 80px 0; background: var(--white); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.why-content .section-title { margin-bottom: 18px; }
.why-content > p { color: var(--text-muted); font-size: 1rem; margin-bottom: 40px; line-height: 1.78; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-icon {
  flex-shrink: 0; width: 50px; height: 50px;
  background: rgba(21,101,192,.10); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.why-item-text h4 {
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 700; color: var(--navy); margin-bottom: 4px;
}
.why-item-text p { color: var(--text-muted); font-size: .9rem; line-height: 1.62; }
.why-img-wrap { position: relative; }
.why-img { width: 100%; border-radius: 12px; box-shadow: var(--shadow-hover); }
.why-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--navy); color: var(--white);
  border-radius: 10px; padding: 18px 22px;
  box-shadow: var(--shadow-card); text-align: center;
  border: 3px solid var(--green);
}
.why-badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--green); line-height: 1; }
.why-badge-label { font-size: .74rem; color: rgba(255,255,255,.72); margin-top: 4px; line-height: 1.4; }

/* ------ FAQ ------ */
.faq { padding: 80px 0; background: var(--grey-light); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-display); font-size: 1.05rem;
  font-weight: 600; color: var(--navy); transition: color var(--trans);
}
.faq-q:hover { color: var(--blue); }
.faq-q::after { content: '+'; font-size: 1.6rem; color: var(--green); flex-shrink: 0; transition: transform var(--trans); }
.faq-q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 20px; color: var(--text-muted); line-height: 1.75; font-size: .96rem; }
.faq-a.open { display: block; }

/* ------ TESTIMONIALS ------ */
.testimonials { padding: 80px 0; background: var(--grey-light); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white); border-radius: 10px;
  padding: 32px; box-shadow: var(--shadow-card);
  position: relative; transition: var(--trans);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.review-card::before {
  content: '"'; position: absolute; top: 16px; right: 28px;
  font-family: var(--font-display); font-size: 5rem;
  color: rgba(21,101,192,.10); line-height: 1;
}
.review-stars { color: #FFD700; font-size: 1rem; letter-spacing: 3px; margin-bottom: 16px; }
.review-text { color: var(--text-dark); font-size: .94rem; line-height: 1.72; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-av {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 700; color: var(--white);
}
.review-name { font-family: var(--font-display); font-weight: 600; font-size: .94rem; color: var(--navy); }
.review-loc  { font-size: .78rem; color: var(--text-muted); margin-top: 2px; }
.review-src  { margin-left: auto; font-size: .74rem; color: var(--text-muted); font-family: var(--font-display); letter-spacing: .05em; }

/* ------ AREAS ------ */
.areas { padding: 80px 0; background: var(--navy); position: relative; overflow: hidden; }
.areas::before {
  content: ''; position: absolute; top: -40%; left: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(21,101,192,.2) 0%, transparent 70%);
  pointer-events: none;
}
.areas-hd { text-align: center; margin-bottom: 48px; }
.areas-hd .section-title { color: var(--white); margin-bottom: 14px; }
.areas-hd p { color: rgba(255,255,255,.58); font-size: 1rem; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px; margin-bottom: 36px;
}
.area-pill {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 10px 16px;
  font-family: var(--font-display); font-size: .84rem;
  color: rgba(255,255,255,.82); text-align: center;
  letter-spacing: .04em; transition: var(--trans); display: block;
}
.area-pill:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.areas-note { text-align: center; color: rgba(255,255,255,.48); font-size: .9rem; }
.areas-note a { color: var(--blue-light); }

/* ------ CTA BANNER ------ */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--navy-mid) 100%);
  padding: 84px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(77,195,247,.14) 0%, transparent 60%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner .section-label { color: var(--blue-light); }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 700;
  color: var(--white); margin-bottom: 16px; line-height: 1.12;
}
.cta-banner p { color: rgba(255,255,255,.74); font-size: 1.1rem; max-width: 540px; margin: 0 auto 36px; }
.cta-phone {
  display: inline-block; font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 700;
  color: var(--white); margin-bottom: 32px;
  letter-spacing: .05em; transition: var(--trans);
}
.cta-phone:hover { color: var(--blue-light); }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.cta-call-minor {
  color: rgba(255,255,255,.55); font-size: .9rem; margin-top: 0;
}
.cta-call-minor a { color: rgba(255,255,255,.75); text-decoration: underline; transition: var(--trans); }
.cta-call-minor a:hover { color: var(--white); }

/* ------ CONTACT FORM ------ */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-info h2 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 20px; font-size: 1rem;
}
.contact-detail-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(21,101,192,.10);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.contact-detail a { color: var(--blue); font-weight: 600; }
.contact-detail a:hover { color: var(--blue-dark); }
.contact-form-wrap {
  background: var(--grey-light); border-radius: 12px; padding: 36px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--navy); margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-family: var(--font-display);
  font-size: .82rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--grey);
  border-radius: var(--radius);
  font-family: var(--font-body); font-size: 1rem;
  color: var(--text-dark); background: var(--white);
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A6B7A' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-submit { width: 100%; font-size: 1.05rem; padding: 16px; }
.form-note { font-size: .8rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ------ STATS BAR ------ */
.stats-bar { background: var(--navy); padding: 48px 0; }
.stats-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0;
}
.stat {
  text-align: center; padding: 16px 48px;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display); font-size: 2.6rem;
  font-weight: 700; color: var(--green); line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: .88rem; color: rgba(255,255,255,.6); }

/* ------ FOOTER ------ */
footer { background: var(--navy); border-top: 4px solid var(--blue); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-wrap img { height: 48px; margin-bottom: 16px; }
.footer-brand > p { color: rgba(255,255,255,.54); font-size: .9rem; line-height: 1.72; margin-bottom: 22px; }
.footer-contact a {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.72); font-size: .9rem;
  margin-bottom: 10px; transition: var(--trans);
}
.footer-contact a:hover { color: var(--blue-light); }
.footer-col h4 {
  font-family: var(--font-display); font-size: .82rem;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.58); font-size: .9rem; transition: var(--trans); }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 20px 0; display: flex;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,.38); font-size: .8rem; }

/* ------ ANIMATIONS ------ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ------ RESPONSIVE ------ */
@media (max-width: 992px) {
  .why-inner { grid-template-columns: 1fr; }
  .why-img-wrap { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step { min-width: 140px; }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 440px; }
  .hero-bg, .hero::after { display: none; }
  .page-hero { min-height: 280px; }
  .proof-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { flex-direction: column; gap: 32px; }
  .stat { width: 50%; padding: 16px 20px; }
}
@media (max-width: 480px) {
  .proof-item { width: 100%; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .hero-btns .btn, .cta-btns .btn { width: 100%; justify-content: center; }
  .stat { width: 100%; }
}
