/* ============================================================
   WIN ENERGY — MASTER STYLESHEET
   Theme: Electric Bold — Dark Navy + Gold + Energy
   winenergy.co.uk
   ============================================================ */

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

:root {
  /* Core Palette */
  --navy:    #050D1A;
  --navy2:   #0A1628;
  --navy3:   #0F2040;
  --blue:    #1A3A6B;
  --sky:     #2563EB;
  --gold:    #F59E0B;
  --gold2:   #FCD34D;
  --flame:   #F97316;
  --green:   #10B981;
  --teal:    #06B6D4;
  --purple:  #8B5CF6;
  --paper:   #F8FAFF;
  --light:   #EEF2FF;
  --white:   #FFFFFF;
  --mid:     #475569;
  --muted:   #94A3B8;
  --border:  rgba(245,158,11,0.12);
  --border2: rgba(255,255,255,0.07);

  /* Service Colours */
  --c-gas:     #F97316;
  --c-elec:    #F59E0B;
  --c-water:   #06B6D4;
  --c-broad:   #8B5CF6;
  --c-mktg:    #10B981;
  --c-web:     #EC4899;
  --c-waste:   #84CC16;

  /* Shadows */
  --shadow-gold: 0 0 40px rgba(245,158,11,0.15);
  --shadow-card: 0 4px 24px rgba(5,13,26,0.12);
  --shadow-lg:   0 20px 60px rgba(5,13,26,0.2);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
body.light-page { background: var(--paper); color: var(--navy2); }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── TYPOGRAPHY ── */
.display { font-family: 'Outfit', sans-serif; font-weight: 900; line-height: 1.0; letter-spacing: -0.04em; }
h1 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.05; letter-spacing: -0.04em; font-size: clamp(2.6rem, 5vw, 4rem); }
h2 { font-family: 'Outfit', sans-serif; font-weight: 800; line-height: 1.08; letter-spacing: -0.04em; font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.02em; }
h4 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; }
p { line-height: 1.75; }

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 12px;
}
.label.teal  { color: var(--teal); }
.label.green { color: var(--green); }
.label.purple { color: var(--purple); }

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4vw; height: 66px;
  background: rgba(5,13,26,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border2);
  transition: border-color .3s;
}
nav.scrolled { border-color: rgba(245,158,11,0.2); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-wordmark { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.3rem; letter-spacing: -0.04em; color: #fff; }
.nav-wordmark em { color: var(--gold); font-style: normal; }

.nav-menu { list-style: none; display: flex; align-items: center; gap: 2px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px;
  text-decoration: none; color: rgba(255,255,255,0.65);
  font-size: 0.84rem; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  transition: all .2s; white-space: nowrap;
}
.nav-menu > li > a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-menu > li > a.active { color: var(--gold); }

.nav-dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #0F2040; border: 1px solid var(--border2);
  border-radius: 14px; padding: 8px; min-width: 220px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4); z-index: 100;
}
.nav-menu > li:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: rgba(255,255,255,0.6);
  font-size: 0.82rem; padding: 10px 12px; border-radius: 8px;
  transition: all .2s;
}
.nav-dropdown a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.nav-dropdown .dd-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-tel {
  font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.nav-tel:hover { color: var(--gold); }
.nav-btn {
  background: var(--gold); color: var(--navy);
  padding: 9px 20px; border-radius: 50px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.82rem; text-decoration: none;
  transition: all .2s; white-space: nowrap;
}
.nav-btn:hover { background: var(--gold2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,158,11,0.35); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── HERO BASE ── */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 120px 5vw 80px;
  position: relative; overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 75% 50%, rgba(245,158,11,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(37,99,235,0.08) 0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-content { position: relative; z-index: 2; }
.hero-visual  { position: relative; z-index: 2; display: flex; justify-content: center; }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 50px; padding: 6px 14px 6px 8px;
  font-family: 'Outfit', sans-serif; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 22px;
}
.badge-gold  { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.25); color: var(--gold); }
.badge-teal  { background: rgba(6,182,212,0.1);  border: 1px solid rgba(6,182,212,0.25);  color: var(--teal); }
.badge-green { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.25); color: var(--green); }
.badge .pulse { width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 0.92rem; border-radius: 50px;
  text-decoration: none; transition: all .22s;
  cursor: pointer; border: none; white-space: nowrap;
}
.btn-gold     { background: var(--gold); color: var(--navy); padding: 14px 28px; }
.btn-gold:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,0.35); }
.btn-dark     { background: rgba(255,255,255,0.08); color: #fff; padding: 14px 28px; border: 1px solid rgba(255,255,255,0.12); }
.btn-dark:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-outline-gold { border: 1.5px solid rgba(245,158,11,0.4); color: var(--gold); padding: 12px 24px; background: transparent; }
.btn-outline-gold:hover { background: rgba(245,158,11,0.08); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--gold); padding: 11px 0; overflow: hidden; }
.marquee-track { display: flex; animation: marqueeScroll 35s linear infinite; white-space: nowrap; }
.marquee-track span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.74rem; color: var(--navy); letter-spacing: 0.12em; text-transform: uppercase; padding: 0 28px; }
.marquee-track .dot { color: rgba(5,13,26,0.3); }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SECTIONS ── */
section { padding: 96px 5vw; }
.section-dark  { background: var(--navy); }
.section-dark2 { background: var(--navy2); }
.section-dark3 { background: var(--navy3); }
.section-light { background: var(--paper); }
.section-light2 { background: var(--light); }

/* ── CARDS ── */
.card {
  background: var(--navy3);
  border: 1px solid var(--border2);
  border-radius: 20px; padding: 32px;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-5px); border-color: rgba(245,158,11,0.25); box-shadow: var(--shadow-gold); }
.card-light {
  background: var(--white);
  border: 1px solid rgba(5,13,26,0.08);
  border-radius: 20px; padding: 32px;
  transition: transform .25s, box-shadow .25s;
}
.card-light:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(5,13,26,0.1); }

.service-card {
  border-radius: 22px; padding: 36px 30px;
  border: 1px solid var(--border2);
  background: var(--navy2);
  position: relative; overflow: hidden;
  transition: transform .28s, box-shadow .28s, border-color .28s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity .25s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-card .s-icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; font-size: 1.6rem;
}

/* Service colour variants */
.sc-gas   { --sc: var(--c-gas);   } .sc-gas::before   { background: var(--c-gas); }   .sc-gas .s-icon   { background: rgba(249,115,22,0.12); }
.sc-elec  { --sc: var(--c-elec);  } .sc-elec::before  { background: var(--c-elec); }  .sc-elec .s-icon  { background: rgba(245,158,11,0.12); }
.sc-water { --sc: var(--c-water); } .sc-water::before { background: var(--c-water); } .sc-water .s-icon { background: rgba(6,182,212,0.12); }
.sc-broad { --sc: var(--c-broad); } .sc-broad::before { background: var(--c-broad); } .sc-broad .s-icon { background: rgba(139,92,246,0.12); }
.sc-mktg  { --sc: var(--c-mktg);  } .sc-mktg::before  { background: var(--c-mktg); }  .sc-mktg .s-icon  { background: rgba(16,185,129,0.12); }
.sc-web   { --sc: var(--c-web);   } .sc-web::before   { background: var(--c-web); }   .sc-web .s-icon   { background: rgba(236,72,153,0.12); }
.sc-waste { --sc: var(--c-waste); } .sc-waste::before { background: var(--c-waste); } .sc-waste .s-icon { background: rgba(132,204,22,0.12); }

.service-card h3 { color: #fff; margin-bottom: 10px; }
.service-card p  { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 20px; }
.service-card .s-link { font-size: 0.8rem; font-weight: 700; font-family: 'Outfit', sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.service-card:hover .s-link { gap: 10px; }

/* ── STATS ── */
.stats-strip { background: var(--navy3); border-top: 1px solid var(--border2); border-bottom: 1px solid var(--border2); padding: 44px 5vw; display: flex; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; padding: 0 48px; border-right: 1px solid var(--border2); }
.stat:last-child { border: none; }
.stat-n { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 2.6rem; letter-spacing: -0.05em; color: var(--gold); line-height: 1; }
.stat-l { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin-top: 6px; text-transform: uppercase; letter-spacing: 0.1em; }

/* ── FEATURE LIST ── */
.feat-list { display: flex; flex-direction: column; gap: 18px; }
.feat-item { display: flex; gap: 14px; align-items: flex-start; }
.feat-check { width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-top: 2px; background: rgba(245,158,11,0.12); }
.feat-item h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.92rem; color: #fff; margin-bottom: 3px; }
.feat-item p  { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 52px auto 0; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--navy3); border: 1px solid var(--border2); border-radius: 14px; overflow: hidden; transition: border-color .2s; }
.faq-item.open { border-color: rgba(245,158,11,0.25); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.9rem; color: #fff; text-align: left; }
.faq-icon { width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0; background: rgba(245,158,11,0.1); display: flex; align-items: center; justify-content: center; transition: transform .3s, background .25s; color: var(--gold); font-size: 1.1rem; font-weight: 400; line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; padding: 0 22px; font-size: 0.86rem; color: rgba(255,255,255,0.45); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 320px; padding: 0 22px 22px; }

/* Light FAQ variant */
.faq-light .faq-item { background: var(--white); border-color: rgba(5,13,26,0.08); }
.faq-light .faq-q { color: var(--navy2); }
.faq-light .faq-a { color: var(--mid); }
.faq-light .faq-item.open { border-color: rgba(245,158,11,0.3); }

/* ── TESTIMONIALS ── */
.tcard { background: var(--navy3); border: 1px solid var(--border2); border-radius: 20px; padding: 30px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.tcard:hover { transform: translateY(-4px); border-color: rgba(245,158,11,0.2); box-shadow: var(--shadow-gold); }
.tcard-stars { color: var(--gold); letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 14px; }
.tcard-text { font-size: 0.86rem; color: rgba(255,255,255,0.5); line-height: 1.8; font-style: italic; margin-bottom: 22px; }
.tcard-author { display: flex; align-items: center; gap: 12px; }
.tcard-av { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 0.9rem; color: var(--navy); flex-shrink: 0; background: var(--gold); }
.tcard-name { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem; color: #fff; }
.tcard-role { font-size: 0.74rem; color: rgba(255,255,255,0.3); margin-top: 1px; }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy3) 0%, var(--navy2) 50%, var(--navy3) 100%);
  padding: 88px 5vw; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border2);
  border-bottom: 1px solid var(--border2);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.cta-band h2 { position: relative; z-index: 1; max-width: 640px; margin: 0 auto 14px; }
.cta-band p { color: rgba(255,255,255,0.45); font-size: 1rem; max-width: 480px; margin: 0 auto 36px; position: relative; z-index: 1; }
.cta-band .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 130px 5vw 80px;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border2);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px);
  background-size: 52px 52px;
}
.page-hero-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(245,158,11,0.07) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; color: rgba(255,255,255,0.3); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.page-hero h1 { color: #fff; }
.page-hero .hero-sub { color: rgba(255,255,255,0.55); font-size: 1.05rem; margin-top: 16px; max-width: 580px; }
.page-hero .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

/* ── CONTACT FORM ── */
.cform { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: 0.72rem; font-weight: 600; color: rgba(255,255,255,0.35); letter-spacing: 0.1em; text-transform: uppercase; font-family: 'Outfit', sans-serif; }
.fg input, .fg select, .fg textarea {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px 16px; color: #fff;
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  outline: none; transition: border-color .2s, background .2s; width: 100%;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,0.18); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: rgba(245,158,11,0.05); }
.fg select option { background: #0F2040; color: #fff; }
.fg textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-btn {
  background: var(--gold); color: var(--navy); border: none; border-radius: 50px;
  padding: 14px 32px; font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 0.92rem; cursor: pointer; transition: all .2s; align-self: flex-start;
}
.form-btn:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(245,158,11,0.3); }
.form-success { display: none; margin-top: 14px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: 12px; padding: 14px 18px; color: var(--green); font-size: 0.86rem; }

/* ── WHATSAPP ── */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45); text-decoration: none;
  transition: transform .22s, box-shadow .22s;
  animation: fabPop .6s 2s cubic-bezier(.34,1.56,.64,1) both;
}
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); }
.wa-fab-tip {
  position: absolute; right: 70px; bottom: 50%; transform: translateY(50%);
  background: var(--navy2); color: rgba(255,255,255,0.8);
  font-size: 0.74rem; font-weight: 600; padding: 7px 13px; border-radius: 9px;
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .2s;
  border: 1px solid var(--border2);
}
.wa-fab:hover .wa-fab-tip { opacity: 1; }
@keyframes fabPop { from{opacity:0;transform:scale(0)} to{opacity:1;transform:scale(1)} }

/* ── COOKIE ── */
#cookieBanner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--navy2); border-top: 1px solid rgba(245,158,11,0.15);
  padding: 16px 5vw; display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform .5s cubic-bezier(.16,1,.3,1);
}
#cookieBanner.show { transform: translateY(0); }
#cookieBanner.hide { transform: translateY(110%); }
.ck-txt { font-size: 0.78rem; color: rgba(255,255,255,0.4); flex: 1; min-width: 220px; }
.ck-txt strong { color: rgba(255,255,255,0.8); }
.ck-txt a { color: var(--gold); text-decoration: none; }
.ck-btns { display: flex; gap: 10px; }
.ck-ok  { background: var(--gold); color: var(--navy); border: none; border-radius: 50px; padding: 8px 20px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.78rem; cursor: pointer; }
.ck-no  { background: transparent; border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.45); border-radius: 50px; padding: 7px 16px; font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.78rem; cursor: pointer; }

/* ── FOOTER ── */
footer {
  background: #020912;
  border-top: 1px solid rgba(245,158,11,0.1);
  padding: 64px 5vw 28px;
}
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand .fw { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 1.4rem; letter-spacing: -0.04em; color: #fff; }
.footer-brand .fw em { color: var(--gold); font-style: normal; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.25); line-height: 1.8; margin-top: 12px; max-width: 240px; }
.footer-contact { margin-top: 18px; font-size: 0.78rem; color: rgba(255,255,255,0.22); line-height: 2; }
.footer-contact a { color: var(--gold); text-decoration: none; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.soc { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all .2s; }
.soc:hover { background: var(--gold); border-color: var(--gold); }
footer h5 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.76rem; color: rgba(255,255,255,0.4); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
footer ul a { text-decoration: none; color: rgba(255,255,255,0.28); font-size: 0.8rem; transition: color .2s; display: flex; align-items: center; gap: 6px; }
footer ul a:hover { color: var(--gold); }
footer ul .f-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 22px; display: flex; justify-content: space-between; font-size: 0.72rem; color: rgba(255,255,255,0.15); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: rgba(255,255,255,0.2); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ── GRIDS ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.g4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.g2c { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.g2c-flip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.center { text-align: center; }
.center .label { text-align: center; }
.sub { font-size: 0.95rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 540px; margin-top: 12px; }
.sub-dark { color: var(--mid); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── PROCESS STEPS ── */
.process-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 56px; position: relative; }
.process-line { position: absolute; top: 35px; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, transparent, rgba(245,158,11,0.3), rgba(245,158,11,0.3), transparent); }
.process-step { padding: 36px 22px 28px; border-radius: 18px; transition: background .25s; position: relative; z-index: 1; }
.process-step:hover { background: rgba(255,255,255,0.03); }
.p-num { font-family: 'Outfit', sans-serif; font-weight: 900; font-size: 3.2rem; color: rgba(255,255,255,0.04); letter-spacing: -0.06em; line-height: 1; margin-bottom: 10px; }
.p-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245,158,11,0.18); margin-bottom: 18px; }
.p-dot.alt { background: var(--teal); box-shadow: 0 0 0 4px rgba(6,182,212,0.18); }
.process-step h4 { color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; }
.process-step p { font-size: 0.81rem; color: rgba(255,255,255,0.38); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .hero { gap: 44px; }
  .g2c, .g2c-flip { gap: 48px; }
}
@media (max-width: 900px) {
  .g4 { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-line { display: none; }
  .stats-strip { gap: 0; }
  .stat { padding: 22px 28px; border-right: none; border-bottom: 1px solid var(--border2); width: 50%; }
  .stat:nth-child(odd) { border-right: 1px solid var(--border2); }
  .stat:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 768px) {
  nav { padding: 0 4vw; }
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex; flex-direction: column; position: fixed; inset: 66px 0 0 0;
    background: rgba(5,13,26,0.98); backdrop-filter: blur(20px);
    padding: 24px 5vw; gap: 0; z-index: 99; overflow-y: auto;
  }
  .nav-menu.open > li { border-bottom: 1px solid var(--border2); }
  .nav-menu.open > li > a { display: block; padding: 15px 4px; font-size: 1rem; color: rgba(255,255,255,0.8); border-radius: 0; }
  .nav-menu.open .nav-dropdown { display: block; position: static; box-shadow: none; border: none; background: transparent; padding: 0 0 8px 16px; }
  .hamburger { display: flex; }
  .nav-tel { display: none; }
  .hero { grid-template-columns: 1fr; padding: 100px 5vw 60px; }
  .hero-visual { display: none; }
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  section { padding: 64px 5vw; }
  .g2, .g3, .g2c, .g2c-flip { grid-template-columns: 1fr; gap: 24px; }
  .g4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .wa-fab { bottom: 80px; right: 16px; width: 52px; height: 52px; }
  #cookieBanner { flex-direction: column; }
  .ck-btns { width: 100%; }
  .ck-ok, .ck-no { flex: 1; text-align: center; }
  .process-grid { grid-template-columns: 1fr; }
  .cta-band .btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  .stat { width: 100%; border-right: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .page-hero { padding: 100px 5vw 56px; }
}

/* ── NAV DROPDOWN LIST FIX ── */
.nav-dropdown { list-style: none !important; padding-left: 0 !important; }
.nav-dropdown li { list-style: none !important; }
.nav-menu > li { list-style: none !important; }

/* ── FOOTER DESC ── */
.footer-desc { font-size: 0.8rem; color: rgba(255,255,255,0.25); line-height: 1.8; margin-top: 12px; max-width: 240px; }
