/* Solar Powerstations Victoria — clean energy · professional tech */
:root {
  --primary: #0A4B5F;
  --primary-dark: #083d4e;
  --primary-light: #0d5a72;
  --gold: #F9B233;
  --gold-dark: #e09a1a;
  --green: #34A853;
  --green-dark: #2d9247;
  --white: #FFFFFF;
  --gray-50: #F5F7FA;
  --gray-200: #e2e6eb;
  --gray-text: #333333;
  --black: #111111;
  --max: 1440px;
  --font: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 120px; }
body {
  font-family: var(--font);
  color: var(--gray-text);
  line-height: 1.6;
  background: var(--white);
  min-width: 1280px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--primary);
  border-bottom: 3px solid var(--gold);
}
.top-bar {
  background: var(--primary-dark);
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.92);
}
.top-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.45rem 2.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
}
.top-bar a { color: var(--gold); }
.top-bar a:hover { text-decoration: underline; }
.top-bar-address { color: rgba(255,255,255,0.75); }

.header-main { background: var(--primary); }
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.65rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand-logo { height: 50px; width: auto; }
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}
.nav-link {
  padding: 0.6rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-link:hover, .nav-link.is-active {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.nav-link.has-chevron {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding-right: 0.9rem;
}
.chevron {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-top: 2px;
  transition: transform 0.2s ease;
}
.nav-item-dropdown:hover .chevron,
.nav-item-dropdown:focus-within .chevron {
  transform: rotate(180deg);
}
.nav-item-dropdown {
  position: relative;
}
/* Invisible bridge so cursor can move from trigger to menu without closing */
.nav-item-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 18px;
  z-index: 299;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 272px;
  padding-top: 14px;
  margin-top: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0s linear 0.35s;
  box-shadow: none;
  z-index: 300;
  pointer-events: none;
}
.nav-dropdown::before {
  content: "";
  display: block;
  height: 0;
}
.nav-dropdown > li {
  background: var(--primary-dark);
  border-left: 1px solid rgba(249, 178, 51, 0.28);
  border-right: 1px solid rgba(249, 178, 51, 0.28);
}
.nav-dropdown > li:first-child {
  border-top: 3px solid var(--gold);
  border-radius: 0;
}
.nav-dropdown > li:last-child {
  border-bottom: 1px solid rgba(249, 178, 51, 0.28);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
}
.nav-item-align-right .nav-dropdown {
  left: auto;
  right: 0;
}
.nav-item-dropdown.is-open .nav-dropdown,
.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
  pointer-events: auto;
}
.nav-dropdown-link {
  display: block;
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  transition: background 0.18s, color 0.18s, padding-left 0.18s;
  border-left: 3px solid transparent;
}
.nav-dropdown-link:hover,
.nav-dropdown-link.is-active {
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold);
  padding-left: 1.3rem;
  border-left-color: var(--green);
}
.btn-header-cta {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.65rem 1.3rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-header-cta:hover { background: var(--gold-dark); }

/* Footer */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.88);
}
.footer-main { padding: 3rem 2.5rem 2rem; }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
}
.footer-logo { height: 56px; margin-bottom: 1rem; }
.footer-legal-name { font-size: 0.75rem; opacity: 0.65; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.875rem; opacity: 0.85; max-width: 280px; line-height: 1.5; }
.footer-founded { font-size: 0.8125rem; opacity: 0.75; margin-top: 0.5rem; }
.footer-founded a { color: var(--gold); }
.footer-col h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a, .footer-contact p {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.4rem;
  opacity: 0.88;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 2.5rem;
}
.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  opacity: 0.75;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-legal-links a:hover { color: var(--gold); }

/* Layout */
.page-wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 2.5rem;
}
.section { padding: 4.5rem 0; }
.section-head { margin-bottom: 2rem; }
.section-head h2 { font-size: 1.85rem; color: var(--primary); margin-bottom: 0.5rem; }
.section-sub { font-size: 1rem; color: #555; max-width: 720px; line-height: 1.6; }
.section-alt { background: var(--gray-50); }
.section-primary { background: var(--primary); color: var(--white); }

/* Slogan strip */
.slogan-strip {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.85rem 0;
  text-align: center;
}
.slogan-strip p {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}
.slogan-strip .accent { color: var(--green); }

/* Hero home */
.hero-banner {
  background: var(--primary);
  color: var(--white);
  padding: 3.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero-banner .geo-pattern { opacity: 0.5; }
.hero-banner-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
}
.hero-banner h1 {
  font-size: 2.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.35rem;
}
.hero-banner .company-name {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.hero-banner .hero-desc {
  font-size: 1.0625rem;
  opacity: 0.95;
  max-width: 520px;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-grid {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.65rem;
}
.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  background: var(--primary-dark);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  animation: kenBurns 22s ease-in-out infinite alternate;
}
.hero-media-top img { min-height: 250px; }
@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08) translate(-1%, -0.5%); }
}
.hero-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0.65rem; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,75,95,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  color: #fff;
  pointer-events: none;
}
.hero-overlay .topline { font-size: 0.68rem; opacity: 0.9; }
.hero-overlay h3 { font-size: 1rem; font-weight: 600; }
.hero-media-waves {
  background: linear-gradient(135deg, rgba(10,75,95,0.9), rgba(10,75,95,0.75)),
    url("img/index-card-bess.jpg") center/cover;
}
.hero-media-waves canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.wave-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
}
.wave-dot:nth-child(2) { top: 40%; left: 30%; }
.wave-dot:nth-child(3) { top: 55%; left: 50%; animation-delay: 0.5s; }
.wave-dot:nth-child(4) { top: 45%; left: 70%; animation-delay: 1s; }
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.geo-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
}
.geo-pattern .geo-cell {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: rotate(45deg);
  animation: geoShimmer 4s ease-in-out infinite;
}
.geo-pattern .geo-cell.orange { background: var(--gold); }
.geo-pattern .geo-cell.yellow { background: var(--green); opacity: 0.85; }
@keyframes geoShimmer {
  0%, 100% { opacity: 0.35; transform: rotate(45deg) scale(0.9); }
  50% { opacity: 1; transform: rotate(45deg) scale(1); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 1.4rem;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); }

/* Content blocks */
.section-head { margin-bottom: 2.5rem; }
.section-head h2 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-head p { color: var(--gray-text); max-width: 720px; font-size: 0.95rem; }
.section-primary .section-head h2 { color: var(--white); }
.section-primary .section-head p { color: rgba(255,255,255,0.9); }

.intro-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gray-text);
  max-width: 900px;
}
.intro-text p + p { margin-top: 1rem; }

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  margin-top: 1.5rem;
}
.check-list li {
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9375rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 1px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.cap-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  border-left: 4px solid var(--green);
  transition: box-shadow 0.25s;
}
.cap-card:hover { box-shadow: 0 8px 24px rgba(10,75,95,0.1); }
.cap-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.4rem; }
.cap-card p { font-size: 0.875rem; color: var(--gray-text); }

/* Parallax */
.parallax-band {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.parallax-bg-wrap {
  position: absolute;
  inset: -12% 0;
  will-change: transform;
}
.parallax-bg { width: 100%; height: 115%; object-fit: cover; }
.parallax-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10,75,95,0.78);
}
.parallax-content {
  position: relative;
  z-index: 2;
  padding: 3.5rem 2.5rem;
  color: var(--white);
  max-width: 640px;
}
.parallax-content h2 { font-size: 2rem; font-weight: 700; margin-bottom: 0.75rem; }
.parallax-content p { margin-bottom: 1.25rem; opacity: 0.95; }

/* CTA band */
.cta-band {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 3rem 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.cta-band h2 { font-size: 1.65rem; color: var(--primary); margin-bottom: 0.5rem; }
.cta-band p { color: var(--gray-text); max-width: 560px; }

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(10,75,95,0.12);
}
.card-img { height: 170px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.25rem; }
.card-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green);
  margin-bottom: 0.35rem;
}
.card h3 { font-size: 1.05rem; color: var(--primary); margin-bottom: 0.4rem; }
.card p { font-size: 0.875rem; }

/* Page hero */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-size: 2.35rem; font-weight: 700; margin-bottom: 0.65rem; }
.page-hero .breadcrumb { font-size: 0.8125rem; opacity: 0.8; margin-bottom: 0.75rem; }
.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .lead { font-size: 1.05rem; opacity: 0.92; max-width: 720px; line-height: 1.65; }

.page-hero-bg {
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  padding: 3.5rem 0;
}
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8, 61, 78, 0.88) 0%, rgba(10, 75, 95, 0.72) 45%, rgba(10, 75, 95, 0.55) 100%);
  z-index: 0;
}
.page-hero-bg .geo-pattern { opacity: 0.35; }
.page-content-placeholder { min-height: 12rem; padding: 3rem 0; }

/* Services list */
.service-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-num {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--gold);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}
.service-item h2 { font-size: 1.25rem; color: var(--primary); margin-bottom: 0.5rem; }
.service-item p { font-size: 0.9375rem; color: var(--gray-text); }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.process-step .num {
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.65rem;
}
.process-step p { font-size: 0.8rem; color: var(--gray-text); font-weight: 500; }

/* Project table */
.project-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.project-table th {
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
}
.project-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
}
.project-table tr:nth-child(even) td { background: var(--gray-50); }

/* Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.value-card {
  padding: 1.25rem;
  background: var(--gray-50);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.value-card h3 { font-size: 0.9rem; color: var(--primary); }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  padding: 3rem 0 4rem;
}
.contact-block { margin-bottom: 1.75rem; }
.contact-block h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.5rem; }
.contact-block p, .contact-block a { font-size: 0.9375rem; }
.contact-block a { color: var(--primary); font-weight: 500; }
.contact-block a:hover { text-decoration: underline; }
.contact-form {
  background: var(--gray-50);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}
.contact-form label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--black);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.contact-form textarea { min-height: 130px; resize: vertical; }

/* Legal */
.legal-content, .page-content {
  max-width: 820px;
  padding: 3rem 0 4rem;
}
.legal-content h1, .page-content h1 { font-size: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.legal-content h2, .page-content h2 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 2rem 0 0.65rem;
}
.legal-content p, .legal-content li, .page-content p {
  font-size: 0.9375rem;
  margin-bottom: 0.85rem;
}
.legal-content ul { margin-left: 1.25rem; list-style: disc; }

.mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
.mv-box {
  padding: 1.75rem;
  background: var(--gray-50);
  border-left: 4px solid var(--primary);
}
.mv-box h3 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.1rem; }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.note-box {
  background: var(--gray-50);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  margin: 1.5rem 0;
}

/* —— Rich page content —— */
.page-content { max-width: none; padding: 3.5rem 0 4.5rem; }
.page-content .lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--primary);
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 2rem;
}
.prose { max-width: 920px; }
.prose-wide { max-width: none; }
.prose h2 {
  font-size: 1.45rem;
  color: var(--primary);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
}
.prose h3 { font-size: 1.1rem; color: var(--primary-dark); margin: 1.75rem 0 0.65rem; }
.prose p, .prose li { font-size: 0.96875rem; line-height: 1.75; margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.35rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.45rem; }

.content-split {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.content-aside {
  position: sticky;
  top: 140px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
}
.content-aside h3 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--primary); margin-bottom: 0.75rem; }
.content-aside a { display: block; font-size: 0.875rem; padding: 0.35rem 0; color: var(--primary); border-bottom: 1px solid var(--gray-200); }
.content-aside a:hover { color: var(--green); }

.figure-block { margin: 2rem 0; }
.figure-block img {
  width: 100%;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(10,75,95,0.12);
}
.figure-block figcaption { font-size: 0.8125rem; color: #666; margin-top: 0.5rem; font-style: italic; }
.figure-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 2rem 0; }

.pull-quote {
  border-left: 4px solid var(--green);
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  background: var(--gray-50);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1.6;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.stat-box {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--primary);
  color: var(--white);
}
.stat-box .num { font-size: 2rem; font-weight: 700; color: var(--gold); display: block; }
.stat-box .label { font-size: 0.75rem; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.04em; }

.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 2rem 0; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin: 2rem 0; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10,75,95,0.14); }
.feature-card .card-img { height: 200px; }
.feature-card .card-body { padding: 1.35rem; }
.feature-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.875rem; margin-bottom: 0.75rem; }
.feature-card .card-link { font-size: 0.8125rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.04em; }

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: var(--primary);
  color: var(--white);
  margin: 3rem 0;
}
.cta-inline h3 { font-size: 1.25rem; margin-bottom: 0.35rem; }
.cta-inline p { font-size: 0.9rem; opacity: 0.9; margin: 0; }

/* Homepage v2 */
.hero-cinematic {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-cinematic-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroPan 28s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
.hero-cinematic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8,61,78,0.94) 0%, rgba(10,75,95,0.75) 50%, rgba(10,75,95,0.4) 100%);
}
.hero-cinematic .container { position: relative; z-index: 2; padding: 4rem 2.5rem; }
.hero-cinematic h1 { font-size: 2.75rem; color: var(--white); max-width: 680px; line-height: 1.15; margin-bottom: 1rem; }
.hero-cinematic .hero-tag { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 700; margin-bottom: 1rem; display: block; }
.hero-cinematic p { color: rgba(255,255,255,0.92); font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; line-height: 1.65; }
.hero-orbs { position: absolute; right: 8%; top: 50%; transform: translateY(-50%); width: 380px; height: 380px; z-index: 1; pointer-events: none; }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(249,178,51,0.35);
  animation: orbPulse 6s ease-in-out infinite;
}
.hero-orb:nth-child(1) { width: 100%; height: 100%; top: 0; left: 0; animation-delay: 0s; }
.hero-orb:nth-child(2) { width: 72%; height: 72%; top: 14%; left: 14%; animation-delay: 1s; border-color: rgba(52,168,83,0.4); }
.hero-orb:nth-child(3) { width: 44%; height: 44%; top: 28%; left: 28%; animation-delay: 2s; }
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

.home-stats {
  background: var(--gold);
  padding: 0;
  margin-top: -2px;
}
.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
}
.home-stat {
  text-align: center;
  padding: 1.75rem 1rem;
  border-right: 1px solid rgba(0,0,0,0.08);
  color: var(--black);
}
.home-stat:last-child { border-right: none; }
.home-stat .val { font-size: 2.25rem; font-weight: 800; color: var(--primary); display: block; line-height: 1; }
.home-stat .val::after { content: attr(data-suffix); font-size: 1.25rem; }
.home-stat .lbl { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 0.35rem; display: block; }

.home-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.home-pillar {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.home-pillar:last-child { border-right: none; }
.home-pillar:hover { background: var(--gray-50); }
.home-pillar-num {
  font-size: 3rem;
  font-weight: 800;
  color: rgba(10,75,95,0.08);
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  line-height: 1;
}
.home-pillar h3 { font-size: 1.15rem; color: var(--primary); margin-bottom: 0.65rem; position: relative; }
.home-pillar p { font-size: 0.9rem; position: relative; }

.marquee-wrap {
  overflow: hidden;
  background: var(--primary);
  padding: 0.85rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  color: rgba(255,255,255,0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.marquee-track span::before { content: "◆ "; color: var(--gold); }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.project-spec-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.project-spec-table th { text-align: left; padding: 0.65rem 1rem; background: var(--gray-50); color: var(--primary); width: 35%; border: 1px solid var(--gray-200); }
.project-spec-table td { padding: 0.65rem 1rem; border: 1px solid var(--gray-200); }

.challenge-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}
.cs-box { padding: 1.75rem; border-top: 4px solid var(--primary); background: var(--gray-50); }
.cs-box.outcome { border-top-color: var(--green); }
.cs-box h3 { font-size: 1rem; color: var(--primary); margin-bottom: 0.75rem; }

.quote-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.quote-step {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.quote-step .step-n {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--black);
  font-weight: 800;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.65rem;
  font-size: 0.9rem;
}
.quote-step p { font-size: 0.78rem; margin: 0; }

.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; }
.form-required { color: #c0392b; }
.form-note { font-size: 0.8rem; color: #666; margin-top: -0.5rem; margin-bottom: 1rem; }

.insight-meta { font-size: 0.8125rem; color: #666; margin-bottom: 1.5rem; }
.insight-meta .tag { display: inline-block; background: var(--primary); color: var(--white); padding: 0.2rem 0.6rem; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; margin-right: 0.5rem; }

/* FAQ accordion */
.faq-section { margin: 2.75rem 0; padding: 2rem; background: var(--gray-50); border: 1px solid var(--gray-200); }
.faq-section > h2 { margin-top: 0 !important; border-bottom: none !important; padding-bottom: 0; }
.faq-list { margin-top: 1.25rem; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  margin-bottom: 0.65rem;
  border-radius: 2px;
}
.faq-item summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { background: rgba(10, 75, 95, 0.04); }
.faq-answer { padding: 0 1.25rem 1.15rem; border-top: 1px solid var(--gray-200); }
.faq-answer p { font-size: 0.9rem; margin-bottom: 0.65rem; line-height: 1.7; }
.faq-answer p:last-child { margin-bottom: 0; }

/* Testimonials */
.testimonial-strip {
  margin: 2.75rem 0;
  padding: 2.25rem;
  background: var(--primary);
  color: var(--white);
}
.testimonial-strip h2 {
  color: var(--white) !important;
  border-bottom-color: var(--gold) !important;
  margin-top: 0 !important;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--gold);
  padding: 1.35rem 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  font-style: normal;
}
.testimonial-card cite {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-style: normal;
  opacity: 0.85;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Mini enquiry form */
.mini-form-block {
  margin: 2.75rem 0;
  padding: 2rem;
  background: var(--white);
  border: 2px solid var(--primary);
}
.mini-form-block h2 { margin-top: 0 !important; font-size: 1.2rem !important; }
.mini-form-block .contact-form { background: transparent; padding: 0; border: none; margin-top: 1rem; }
.mini-form-block .btn { margin-top: 0.25rem; }

/* Related project showcase (2 cards) */
.showcase-row {
  margin: 2.75rem 0;
}
.showcase-row h2 { margin-top: 0 !important; }
.showcase-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}
.showcase-card {
  display: block;
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.showcase-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 75, 95, 0.12);
}
.showcase-card img { width: 100%; height: 140px; object-fit: cover; }
.showcase-card-body { padding: 1rem 1.15rem; background: var(--gray-50); }
.showcase-card-body h3 { font-size: 0.95rem; color: var(--primary); margin-bottom: 0.35rem; }
.showcase-card-body p { font-size: 0.8rem; margin: 0; color: #555; }
.showcase-card-body .link { font-size: 0.75rem; font-weight: 700; color: var(--green); text-transform: uppercase; }

/* Full-width page bands */
.page-band {
  padding: 3.5rem 0;
  margin: 0;
}
.page-band.section-alt { background: var(--gray-50); }

.reveal-stagger-children > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger-children > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger-children > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger-children > .reveal:nth-child(4) { transition-delay: 0.2s; }
