@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root,
body.aquarius-site {
  --navy-950: #031426;
  --navy-900: #061a33;
  --navy-800: #092b4c;
  --blue-600: #138ee5;
  --blue-500: #1597e5;
  --blue-400: #32b8ff;
  --lime: #8dbe18;
  --ink: #09213b;
  --muted: #617086;
  --line: #dbe6ef;
  --soft: #f2f7fb;
  --white: #ffffff;
}

body.aquarius-site,
body.aquarius-site *,
body.aquarius-site *::before,
body.aquarius-site *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

html body.aquarius-site {
  margin: 0;
  padding: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.aquarius-site h1,
body.aquarius-site h2,
body.aquarius-site h3,
body.aquarius-site h4,
body.aquarius-site h5,
body.aquarius-site h6,
body.aquarius-site p,
body.aquarius-site ul,
body.aquarius-site ol,
body.aquarius-site figure {
  padding: 0;
}

body.aquarius-site a {
  color: inherit;
  text-decoration: none;
}

body.aquarius-site button,
body.aquarius-site input,
body.aquarius-site select,
body.aquarius-site textarea {
  font: inherit;
}

body.aquarius-site img,
body.aquarius-site svg {
  max-width: 100%;
}

body.aquarius-site img {
  border: 0;
}

body.aquarius-site main,
body.aquarius-site section,
body.aquarius-site header,
body.aquarius-site footer,
body.aquarius-site nav {
  display: block;
}

.page-shell {
  width: min(1320px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 96px;
  border-bottom: 1px solid rgba(9, 43, 76, 0.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1360px, calc(100% - 64px));
  height: 100%;
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  width: 132px;
  height: 84px;
  align-items: center;
}

.brand img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.6vw, 44px);
  font-size: 14px;
  font-weight: 650;
}

.desktop-nav a {
  position: relative;
  padding-block: 37px 34px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  height: 2px;
  content: "";
  transition: transform 180ms ease;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue-500);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  padding: 13px 18px;
  border-radius: 8px;
  background: var(--navy-900);
  color: white;
  font-size: 14px;
  font-weight: 750;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--blue-600);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: grid;
  width: 46px;
  height: 46px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 21px;
  height: 2px;
  background: var(--navy-900);
}

.mobile-menu nav {
  position: absolute;
  top: 58px;
  right: 0;
  display: grid;
  width: 250px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
  box-shadow: 0 24px 50px rgba(3, 20, 38, 0.18);
}

.mobile-menu nav a {
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 650;
}

.hero {
  position: relative;
  min-height: calc(100vh - 96px);
  overflow: hidden;
  background-color: var(--navy-950);
  background-image: url("../images/hero-aquarius.png");
  background-position: center;
  background-size: cover;
  color: white;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  content: "";
  background: linear-gradient(0deg, rgba(3, 20, 38, 0.9), transparent);
}

.hero-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 20, 38, 0.88) 0%, rgba(3, 20, 38, 0.62) 38%, rgba(3, 20, 38, 0.05) 69%),
    linear-gradient(0deg, rgba(3, 20, 38, 0.18), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: calc(100vh - 96px);
  padding-top: clamp(80px, 12vh, 150px);
  padding-bottom: 190px;
  align-items: flex-start;
  flex-direction: column;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  color: #8dd5ff;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(58px, 6.2vw, 96px);
  font-weight: 720;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 span {
  display: block;
  margin-top: 10px;
  color: var(--blue-500);
}

.hero-lead {
  max-width: 600px;
  margin: 30px 0 0;
  color: #e7f3fb;
  font-size: clamp(19px, 1.8vw, 26px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 54px;
  padding: 0 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 750;
  transition: transform 180ms ease, background 180ms ease, border 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  border-color: var(--blue-500);
  background: var(--blue-500);
  color: white;
  box-shadow: 0 12px 30px rgba(21, 151, 229, 0.24);
}

.button-primary:hover {
  border-color: var(--blue-400);
  background: var(--blue-400);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(3, 20, 38, 0.28);
  color: white;
  backdrop-filter: blur(8px);
}

.button-outline:hover {
  border-color: var(--blue-400);
  background: rgba(21, 151, 229, 0.13);
}

.hero-trust {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 10px;
  color: #bcd1df;
  font-size: 13px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(141, 190, 24, 0.12);
}

.hero-services {
  position: absolute;
  z-index: 4;
  right: 2.5vw;
  bottom: 42px;
  left: 2.5vw;
  display: grid;
  border: 1px solid rgba(113, 192, 243, 0.32);
  border-radius: 12px;
  background: rgba(3, 20, 38, 0.79);
  grid-template-columns: repeat(6, 1fr);
  backdrop-filter: blur(16px);
}

.hero-services a {
  display: flex;
  min-height: 106px;
  padding: 20px;
  align-items: center;
  gap: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease;
}

.hero-services a:last-child {
  border-right: 0;
}

.hero-services a:hover {
  background: rgba(21, 151, 229, 0.15);
}

.hero-services b {
  color: var(--blue-400);
  font-size: 13px;
  font-weight: 800;
}

.hero-services span {
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.section {
  padding-block: 120px;
}

.section-intro {
  padding-bottom: 76px;
}

.intro-grid {
  display: grid;
  align-items: end;
  gap: 10%;
  grid-template-columns: 1fr 0.8fr;
}

.section h2,
.energy-banner h2,
.contact-section h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.intro-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-600);
  font-weight: 750;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.services-section {
  padding-top: 0;
  background: white;
}

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

.service-card {
  min-height: 390px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 151, 229, 0.4);
  box-shadow: 0 24px 55px rgba(6, 26, 51, 0.1);
}

.service-topline {
  display: flex;
  margin-bottom: 54px;
  align-items: center;
  justify-content: space-between;
}

.service-topline span {
  color: var(--blue-500);
  font-size: 28px;
  font-weight: 800;
}

.service-topline small {
  padding: 7px 11px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 0 0 15px;
  color: var(--navy-900);
  font-size: 23px;
  letter-spacing: -0.025em;
}

.service-card > p {
  min-height: 78px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.service-card ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 14px;
  color: #38506a;
  font-size: 12px;
  font-weight: 650;
}

.service-card li::before {
  position: absolute;
  top: 6px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100%;
  content: "";
  background: var(--lime);
}

.energy-banner {
  position: relative;
  overflow: hidden;
  padding-block: 135px;
  background:
    radial-gradient(circle at 78% 55%, rgba(50, 184, 255, 0.22), transparent 31%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
  color: white;
}

.energy-banner::after {
  position: absolute;
  right: -10%;
  bottom: -50%;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(50, 184, 255, 0.2);
  border-radius: 100%;
  content: "";
}

.energy-content {
  position: relative;
  z-index: 2;
}

.section-kicker-light {
  color: #86d6ff;
}

.energy-banner h2,
.contact-section h2 {
  color: white;
}

.energy-content > p:not(.section-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: #bfd2df;
  font-size: 17px;
  line-height: 1.8;
}

.energy-stats {
  display: flex;
  margin-top: 54px;
  gap: 18px;
  flex-wrap: wrap;
}

.energy-stats div {
  display: grid;
  min-width: 180px;
  padding: 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.energy-stats strong {
  color: var(--blue-400);
  font-size: 30px;
}

.energy-stats span {
  margin-top: 4px;
  color: #c9d9e3;
  font-size: 12px;
}

.energy-orbit {
  position: absolute;
  border: 1px solid rgba(50, 184, 255, 0.26);
  border-radius: 100%;
}

.energy-orbit-one {
  top: -130px;
  right: 9%;
  width: 480px;
  height: 480px;
}

.energy-orbit-two {
  top: 120px;
  right: 2%;
  width: 290px;
  height: 290px;
}

.investor-section {
  background: var(--soft);
}

.investor-grid {
  display: grid;
  gap: 8%;
  grid-template-columns: 0.85fr 1.15fr;
}

.investor-panel {
  padding: 56px;
  border-radius: 16px;
  background: var(--navy-900);
  color: white;
}

.panel-label {
  display: inline-flex;
  margin-bottom: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(50, 184, 255, 0.28);
  border-radius: 20px;
  color: #86d6ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.investor-panel h2 {
  color: white;
  font-size: clamp(38px, 3.7vw, 58px);
}

.investor-panel p {
  margin: 25px 0 36px;
  color: #c4d4df;
  line-height: 1.8;
}

.investor-benefits {
  display: grid;
  align-content: center;
}

.investor-benefits article {
  display: grid;
  padding: 26px 0;
  gap: 24px;
  border-bottom: 1px solid #cad9e4;
  grid-template-columns: 45px 1fr;
}

.investor-benefits article:first-child {
  border-top: 1px solid #cad9e4;
}

.investor-benefits b {
  color: var(--blue-500);
  font-size: 14px;
}

.investor-benefits h3 {
  margin: 0 0 7px;
  color: var(--navy-900);
  font-size: 20px;
}

.investor-benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.section-heading {
  max-width: 830px;
  margin-bottom: 58px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.process-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

.process-grid article {
  position: relative;
  min-height: 240px;
  padding: 34px;
  border-top: 2px solid var(--blue-500);
  border-right: 1px solid var(--line);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--blue-500);
  font-size: 13px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 0 0 12px;
  color: var(--navy-900);
  font-size: 20px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.projects-section {
  background: var(--soft);
}

.project-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.project-card {
  position: relative;
  display: flex;
  min-height: 420px;
  overflow: hidden;
  padding: 40px;
  justify-content: flex-end;
  flex-direction: column;
  border-radius: 14px;
  color: white;
  isolation: isolate;
}

.project-card::before,
.project-card::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.project-card::before {
  inset: 0;
  background-color: var(--navy-900);
  background-position: center;
  background-size: cover;
  transition: transform 600ms ease;
}

.project-card:hover::before {
  transform: scale(1.035);
}

.project-home::before {
  background-image:
    linear-gradient(0deg, rgba(3, 20, 38, 0.98), rgba(3, 20, 38, 0.08) 72%),
    url("../images/project-home.webp");
}

.project-business::before {
  background-image:
    linear-gradient(0deg, rgba(3, 20, 38, 0.98), rgba(3, 20, 38, 0.1) 72%),
    url("../images/project-business.webp");
  background-position: 58% center;
}

.project-developer::before {
  background-image:
    linear-gradient(0deg, rgba(3, 20, 38, 0.98), rgba(3, 20, 38, 0.08) 72%),
    url("../images/project-developer.webp");
  background-position: center;
}

.project-card span {
  color: #8dd5ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 12px 0;
  font-size: 27px;
  line-height: 1.15;
}

.project-card p {
  margin: 0;
  color: #d2e0e9;
  font-size: 14px;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 10%;
  grid-template-columns: 0.55fr 1fr;
}

.about-mark {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 100%;
  background: var(--navy-900);
  box-shadow: 0 28px 70px rgba(6, 26, 51, 0.18);
}

.about-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy > p:not(.section-kicker) {
  margin: 26px 0 30px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.region-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.region-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 30px;
  color: #3c546c;
  font-size: 12px;
  font-weight: 650;
}

.contact-section {
  padding-block: 120px;
  background:
    radial-gradient(circle at 0% 100%, rgba(21, 151, 229, 0.22), transparent 27%),
    var(--navy-950);
  color: white;
}

.contact-grid {
  display: grid;
  gap: 8%;
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-copy > p:not(.section-kicker) {
  margin: 28px 0 40px;
  color: #bed1de;
  font-size: 16px;
  line-height: 1.75;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: grid;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.04);
  transition: border 180ms ease, background 180ms ease;
}

.contact-links a:hover {
  border-color: rgba(50, 184, 255, 0.48);
  background: rgba(50, 184, 255, 0.08);
}

.contact-links small {
  margin-bottom: 5px;
  color: #86d6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 19px;
}

.contact-form {
  padding: 42px;
  border-radius: 14px;
  background: white;
  color: var(--navy-900);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
}

.form-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.contact-form label {
  display: grid;
  margin-bottom: 16px;
  gap: 8px;
  color: #34506c;
  font-size: 12px;
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cedbe5;
  border-radius: 7px;
  outline: 0;
  background: #fbfdff;
  color: var(--navy-900);
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(21, 151, 229, 0.12);
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: #7a8a99;
  font-size: 10px;
  text-align: center;
}

footer {
  padding: 72px 0 28px;
  border-top: 1px solid #dce6ed;
  background: white;
}

.footer-grid {
  display: grid;
  padding-bottom: 54px;
  gap: 6%;
  grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
}

.footer-brand img {
  width: 150px;
  height: 110px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 20px;
  color: var(--navy-900);
  font-size: 13px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.footer-grid > div:not(.footer-brand) a {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 12px;
  transition: color 160ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: var(--blue-500);
}

.footer-bottom {
  display: flex;
  padding-top: 24px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: #8090a0;
  font-size: 11px;
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-services {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-services a {
    min-height: 70px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-content {
    padding-bottom: 240px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-grid {
    grid-template-columns: 1fr 1fr;
  }

  .project-card:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(100% - 40px, 680px);
  }

  .header-inner {
    width: calc(100% - 36px);
  }

  .site-header {
    height: 82px;
  }

  .brand {
    width: 105px;
    height: 74px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 860px;
    background-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 20, 38, 0.88), rgba(3, 20, 38, 0.38)),
      linear-gradient(0deg, rgba(3, 20, 38, 0.58), rgba(3, 20, 38, 0));
  }

  .hero-content {
    min-height: 860px;
    padding-top: 100px;
    padding-bottom: 330px;
  }

  .hero h1 {
    font-size: clamp(51px, 14vw, 78px);
  }

  .hero-services {
    right: 20px;
    bottom: 24px;
    left: 20px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-services a {
    min-height: 58px;
  }

  .section {
    padding-block: 82px;
  }

  .intro-grid,
  .investor-grid,
  .about-grid,
  .contact-grid {
    gap: 48px;
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .service-card > p {
    min-height: auto;
  }

  .process-grid {
    gap: 22px;
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid article {
    min-height: 220px;
    border-right: 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-card:first-child {
    grid-column: auto;
  }

  .about-mark {
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: calc(100% - 28px);
  }

  .mobile-menu nav {
    right: -2px;
    width: min(280px, calc(100vw - 28px));
  }

  .hero {
    min-height: 900px;
  }

  .hero-content {
    min-height: 900px;
    padding-top: 78px;
  }

  .eyebrow {
    max-width: 280px;
    line-height: 1.6;
  }

  .hero h1 {
    font-size: 49px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .hero-services {
    right: 14px;
    left: 14px;
  }

  .hero-services a {
    gap: 9px;
  }

  .hero-services span {
    font-size: 10px;
  }

  .section h2,
  .energy-banner h2,
  .contact-section h2 {
    font-size: 36px;
  }

  .service-card,
  .investor-panel,
  .contact-form {
    padding: 28px 24px;
  }

  .energy-banner,
  .contact-section {
    padding-block: 88px;
  }

  .energy-stats {
    display: grid;
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    min-height: 340px;
    padding: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    gap: 38px 26px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .footer-grid > div:last-child {
    grid-column: span 2;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* Joomla 5 integration */
.aquarius-site {
  overflow-x: hidden;
}

.joomla-content {
  min-height: 62vh;
  padding-block: 80px 120px;
  background: var(--soft);
}

.joomla-content > .page-shell {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 26, 51, 0.07);
}

.joomla-content h1,
.joomla-content h2,
.joomla-content h3 {
  color: var(--navy-900);
  letter-spacing: -0.03em;
}

.joomla-content h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.joomla-content p,
.joomla-content li {
  color: var(--muted);
  line-height: 1.75;
}

.joomla-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.joomla-content .moduletable {
  margin-block: 22px;
}

.joomla-content .breadcrumb {
  display: flex;
  margin: 0 0 26px;
  padding: 0;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
  list-style: none;
}

.alert {
  margin-bottom: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(21, 151, 229, 0.24);
  border-radius: 8px;
  background: rgba(21, 151, 229, 0.08);
  color: var(--navy-900);
}

.component-only .joomla-content {
  min-height: 100vh;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  place-items: center;
  background:
    radial-gradient(circle at 20% 80%, rgba(21, 151, 229, 0.24), transparent 30%),
    var(--navy-950);
}

.error-shell {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  text-align: center;
  backdrop-filter: blur(14px);
}

.error-shell img {
  width: 180px;
  height: 130px;
  margin-bottom: 28px;
  object-fit: contain;
  border-radius: 8px;
  background: white;
}

.error-shell h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 64px);
  letter-spacing: -0.05em;
}

.error-shell > p:not(.section-kicker) {
  margin: 0 0 30px;
  color: #c5d7e3;
  line-height: 1.7;
}

@media (max-width: 520px) {
  .joomla-content > .page-shell {
    padding: 26px 20px;
  }

  .error-shell {
    padding: 36px 22px;
  }
}
