/* ═══════════════════════════════════════════════════════
   Wero Watts — CSS
   Brand Palette: Navy #041E42 · Red #E10613 · Orange #F68B1F · Teal #009CA6
   Fonts: Bebas Neue (headings) · Montserrat (body)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --navy:       #041E42;
  --navy-dark:  #020f22;
  --red:        #E10613;
  --red-dark:   #C00018;
  --orange:     #F68B1F;
  --orange-light: #f9a84d;
  --teal:       #009CA6;
  --teal-dark:  #007880;
  --cream:      #E6F2F3;
  --white:      #FFFFFF;
  --text:       #0D1F2D;
  --text-light: #4A6070;
  --border:     #A8CDD2;
  --border-dark: #9FC5CB;

  --font-display: 'Bebas Neue', 'Oswald', Impact, sans-serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  --radius: 3px;
  --shadow: 0 2px 12px rgba(4,30,66,0.12);
  --shadow-lg: 0 8px 32px rgba(4,30,66,0.18);

  --max-w: 1100px;
  --section-pad: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #E6F2F3;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: .02em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.1rem; }
p  { margin-bottom: 1em; }
ul { padding-left: 1.2em; }
li { margin-bottom: .35em; }

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost    { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.6); }
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-orange   { background: var(--orange); color: var(--navy); }
.btn-orange:hover { background: var(--orange-light); }
.btn-teal     { background: var(--teal); color: var(--white); }
.btn-teal:hover { background: var(--teal-dark); }

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(4,30,66,0.10);
  transition: transform .25s ease;
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
  cursor: pointer;
}
.logo-img {
  object-fit: contain;
}
.logo-img.logo-horizontal {
  height: 48px;
  width: auto;
  max-width: 240px;

}
.footer-brand .logo-horizontal {
  height: 52px;
  width: auto;
  max-width: 260px;

}

.nav-links {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  display: block;
  padding: 6px 12px;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  cursor: pointer;
  border: none;
  background: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
  background: rgba(225,6,19,.06);
}
.nav-link.active { color: var(--red); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-toggle {
  background: none;
  border: 1px solid rgba(4,30,66,.25);
  color: rgba(4,30,66,.6);
  border-radius: var(--radius);
  padding: 4px 10px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  gap: 4px;
  transition: border-color .15s, color .15s;
}
.lang-toggle:hover { border-color: var(--red); color: var(--red); }
.lang-toggle .active { color: var(--red); }
.lang-sep { opacity: .4; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-top: 1px solid rgba(4,30,66,.1);
  padding: 12px 0 20px;
}
.mob-link {
  padding: 12px 24px;
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .06em;
  transition: color .15s, background .15s;
  cursor: pointer;
}
.mob-link:hover { color: var(--red); background: rgba(225,6,19,.04); }

/* ── PAGE ROUTING ── */
.page { display: none; }
.page.active { display: block; }

/* ══════════════════════════════ HOME PAGE ══ */

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 75% 35%, rgba(0,156,166,.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 15% 85%, rgba(225,6,19,.1) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(246,139,31,.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy-dark) 0%, #061830 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(255,255,255,.012) 80px, rgba(255,255,255,.012) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(255,255,255,.012) 80px, rgba(255,255,255,.012) 81px);
}

/* Red accent bar on left */
.hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--red), var(--orange));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
}
.hero-content-inner {
  max-width: 660px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
}

.hero-headline {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  text-align: left;
}
.hero-line {
  display: block;
  margin-bottom: 6px;
}
.hero-line-2 {
  color: rgba(255,255,255,.85);
  font-size: clamp(1.8rem, 3.8vw, 3.2rem);
  border-left: 4px solid var(--teal);
  padding-left: 14px;
  margin-top: 10px;
}

.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
  font-weight: 400;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 6%;
  top: 48px;
  z-index: 3;
  background: rgba(246,139,31,.12);
  border: 1.5px solid rgba(246,139,31,.35);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--orange);
  backdrop-filter: blur(6px);
}
.hero-badge span { font-family: var(--font-display); font-size: 1.6rem; line-height: 1; letter-spacing: .04em; }
.hero-badge small { font-family: var(--font-body); font-size: .6rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .8; margin-top: 4px; }

/* What we do */
.section-what {
  padding: var(--section-pad) 0;
  background: #FFFFFF;
}

.what-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.what-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

.section-title { margin-bottom: 14px; }
.section-intro {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 100%;
  margin-bottom: 48px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: #F0F8F9;
  border: 1px solid #A8CDD2;
  border-top: 3px solid #A8CDD2;
  border-radius: var(--radius);
  padding: 28px 24px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-top-color .2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--teal);
}
.service-card.primary {
  background: var(--navy);
  border-color: var(--navy-dark);
  border-top-color: var(--red);
  color: var(--white);
}
.service-card.primary:hover { border-top-color: var(--orange); }
.service-card.primary h3 { color: var(--orange); }
.service-card.primary p  { color: rgba(255,255,255,.7); }
.service-card.primary .card-list { color: rgba(255,255,255,.65); }
.service-card.primary .card-cta  { color: var(--orange); }

.card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.service-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
.service-card p  { font-size: .9rem; margin-bottom: 16px; }

.card-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.card-list li {
  font-size: .83rem;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin: 0;
  font-weight: 500;
}
.service-card:not(.primary) .card-list li {
  border-bottom-color: var(--border);
}
.card-list li::before { content: '→ '; opacity: .5; }

.card-cta {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--teal);
  text-transform: uppercase;
}

/* Problem section */
.section-dark {
  background: var(--navy);
  color: var(--white);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--orange), var(--teal));
}
.section-dark h2 { color: var(--white); margin-bottom: 18px; }
.section-dark > .container > p {
  color: rgba(255,255,255,.7);
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1rem;
}

.warning-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.warning-pills span {
  background: rgba(225,6,19,.15);
  border: 1px solid rgba(225,6,19,.4);
  color: #ff8080;
  padding: 6px 16px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.dark-cta-text {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 500;
}

/* Differentiators */
.section-diff {
  padding: var(--section-pad) 0;
  background: #E6F2F3;
}
.section-diff h2 { margin-bottom: 48px; text-align: center; }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.diff-item { position: relative; padding-left: 16px; border-left: 3px solid var(--red); }
.diff-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(225,6,19,.15);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: .04em;
}
.diff-item h4 { color: var(--navy); margin-bottom: 6px; font-size: 1.1rem; }
.diff-item p  { font-size: .9rem; color: var(--text-light); margin: 0; }

/* ── INNER PAGES ── */
.page-hero {
  padding: 72px 0 56px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.om-hero::before     { background: linear-gradient(90deg, var(--red), var(--orange)); }
.rep-hero::before    { background: linear-gradient(90deg, var(--teal), var(--navy)); }
.design-hero::before { background: linear-gradient(90deg, var(--orange), var(--red)); }
.contact-hero::before{ background: linear-gradient(90deg, var(--teal), var(--orange)); }
.ev-hero::before    { background: linear-gradient(90deg, var(--orange), var(--teal)); }

.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p  { color: rgba(255,255,255,.7); max-width: 580px; font-size: 1rem; margin: 0; }

.page-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--red);
}

/* O&M services */
.section-services { padding: var(--section-pad) 0; background: #FFFFFF; }

.svc-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.svc-block:last-child { border-bottom: none; }

.svc-icon { font-size: 1.5rem; padding-top: 2px; }
.svc-content h3 { color: var(--navy); margin-bottom: 8px; }
.svc-content p  { color: var(--text-light); margin-bottom: 10px; font-size: .93rem; }
.svc-content ul { font-size: .88rem; color: var(--text-light); }
.svc-content li::marker { color: var(--red); }

.section-cta-block {
  margin-top: 56px;
  padding: 36px;
  background: var(--navy);
  border-radius: var(--radius);
  text-align: center;
}
.section-cta-block p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 20px;
}

/* Rep page */
.section-rep-explain { padding: var(--section-pad) 0; background: #FFFFFF; }
.rep-intro { margin-bottom: 52px; max-width: 720px; }
.rep-intro h2 { margin-bottom: 14px; }
.rep-intro p  { color: var(--text-light); font-size: 1rem; }

.rep-modes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.rep-mode {
  padding: 28px;
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  background: #F0F8F9;
  transition: border-top-color .2s, box-shadow .2s;
}
.rep-mode:hover { border-top-color: var(--red); box-shadow: var(--shadow); }
.rep-mode h3 { color: var(--navy); margin-bottom: 8px; }
.rep-mode p  { color: var(--text-light); font-size: .9rem; margin-bottom: 10px; }
.rep-mode ul { font-size: .85rem; color: var(--text-light); }
.rep-mode li::marker { color: var(--teal); }

/* Design page */
.section-design-detail { padding: var(--section-pad) 0; background: #FFFFFF; }

.design-distinction {
  margin-bottom: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
  max-width: 740px;
}
.design-distinction h2 { margin-bottom: 14px; }
.design-distinction p  { color: var(--text-light); font-size: 1rem; }

.design-offgrid {
  margin-bottom: 56px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--border);
}
.design-offgrid h2 { margin-bottom: 14px; }
.design-offgrid > p { color: var(--text-light); margin-bottom: 28px; font-size: 1rem; max-width: 700px; }

.offgrid-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.og-mode {
  padding: 22px;
  background: #FEF3E6;
  border: 1px solid #F5C98A;
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
}
.og-mode h4 { color: var(--navy); margin-bottom: 7px; }
.og-mode p  { font-size: .88rem; color: var(--text-light); margin: 0; }

.design-deliverable h2 { margin-bottom: 28px; }

.deliv-item {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.deliv-item:last-child { border-bottom: none; }
.deliv-check { font-size: 1.1rem; color: var(--teal); font-weight: 900; padding-top: 2px; }
.deliv-item strong { display: block; color: var(--navy); margin-bottom: 2px; }
.deliv-item p { font-size: .88rem; color: var(--text-light); margin: 0; }

/* Design guarantee */
.design-guarantee {
  margin-bottom: 56px;
  padding: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  border-top: 3px solid var(--red);
  color: var(--white);
}

.design-guarantee .gtag {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.design-guarantee .gtag::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 2px;
  background: var(--red);
}

.design-guarantee h2 { color: var(--white); margin-bottom: 12px; font-size: clamp(1.4rem, 3vw, 2rem); }
.design-guarantee > p { color: rgba(255,255,255,.75); font-size: .93rem; margin-bottom: 28px; }

.design-guarantee .guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.design-guarantee .g-formula {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.design-guarantee .g-formula span {
  padding: 11px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
}

.design-guarantee .g-formula .times,
.design-guarantee .g-formula .eq {
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--orange);
  padding: 0;
}

.design-guarantee .g-formula .result {
  background: rgba(246,139,31,.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 1rem;
}

.guarantee-exclusions {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 20px 24px;
}

.excl-label {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 10px;
}

.guarantee-exclusions ul { list-style: none; padding: 0; }
.guarantee-exclusions li {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin: 0;
}
.guarantee-exclusions li:last-child { border-bottom: none; }
.guarantee-exclusions li::before { content: '— '; opacity: .5; }

/* Contact */
.section-contact { padding: var(--section-pad) 0; background: #FFFFFF; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 20px; color: var(--navy); }

.inquiry-types { display: flex; flex-direction: column; gap: 16px; }

.inq-type {
  padding: 14px 18px;
  border-left: 3px solid var(--teal);
  background: #E6F2F3;
}
.inq-type strong { display: block; margin-bottom: 3px; color: var(--navy); }
.inq-type p { font-size: .85rem; color: var(--text-light); margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit { width: 100%; justify-content: center; padding: 14px; font-size: 1.05rem; letter-spacing: .1em; }
.form-note { font-size: .78rem; color: var(--text-light); text-align: center; margin: 0; }

/* Footer */
.site-footer {
  background: #FFFFFF;
  color: var(--navy);
  padding: 48px 0 0;
  border-top: 3px solid var(--red);
  box-shadow: 0 -2px 12px rgba(4,30,66,0.08);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(4,30,66,.12);
  flex-wrap: wrap;
}

.footer-brand .logo-text { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); letter-spacing: .08em; }
.footer-brand .logo-text span { color: var(--red); }
.footer-brand p { font-size: .82rem; margin-top: 6px; color: var(--text-light); }

.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: .06em;
  cursor: pointer;
  transition: color .15s;
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  padding: 16px 24px;
  text-align: center;
  font-size: .75rem;
  color: rgba(4,30,66,.4);
  font-family: var(--font-body);
  border-top: 1px solid rgba(4,30,66,.08);
}


/* Hero photo */
.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  z-index: 1;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Fade left into the dark hero background */
.hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--navy-dark) 0%,
    rgba(2,15,34,0.7) 25%,
    rgba(2,15,34,0.1) 60%,
    transparent 100%
  );
  z-index: 2;
}

/* Fade bottom slightly */
.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2,15,34,0.5) 0%,
    transparent 40%
  );
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-photo {
    width: 100%;
    opacity: 0.25;
  }
}

/* ══════════════════════ RESPONSIVE ══ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .mobile-menu.open { display: flex; }

  .service-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; gap: 28px; }
  .rep-modes { grid-template-columns: 1fr; }
  .offgrid-modes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .design-guarantee .guarantee-inner { grid-template-columns: 1fr; }
  .hero-badge { display: none; }
}

@media (max-width: 600px) {
  :root { --section-pad: 52px; }
  .hero { min-height: 75vh; }
  .hero-content { padding: 60px 24px 60px 28px; }
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .svc-block { grid-template-columns: 1fr; }
  .svc-icon { margin-bottom: 8px; }
  .section-cta-block { padding: 28px 20px; }
  .design-guarantee { padding: 28px 20px; }
  .footer-inner { flex-direction: column; }
  .logo-img { width: 36px; height: 36px; }
}
