﻿:root {
  --bg: #07111b;
  --bg-soft: #0d1a28;
  --surface: #101f30;
  --surface-soft: #13263b;
  --card: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #ecf3f9;
  --muted: #9db0c3;
  --heading: #ffffff;
  --white: #ffffff;
  --dark: #08131f;
  --blue: #0d3c78;
  --blue-strong: #0d58b4;
  --orange: #f59d2a;
  --orange-soft: rgba(245, 157, 42, 0.14);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1200px;
  --font-body: "Inter", sans-serif;
  --font-display: "Plus Jakarta Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: linear-gradient(180deg, #08111a 0%, #0a1520 100%);
  color: var(--text);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffd9a1;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbf66, var(--orange));
  box-shadow: 0 0 12px rgba(245, 157, 42, 0.5);
}

.section-head {
  max-width: 780px;
  margin-bottom: 44px;
}

.section-head.narrow {
  max-width: 680px;
}

.section-head.no-margin {
  margin-bottom: 0;
}

.section-head.light h2,
.section-head.light p {
  color: var(--white);
}

.section-head h2,
.hero-copy h1,
.hero-panel h2,
.cta-banner h2,
.article-card h3,
.service-card h3,
.benefit-card h3,
.process-card h3,
.project-card h3,
.stat-card strong {
  font-family: var(--font-display);
}

.section-head h2 {
  margin: 18px 0 14px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  color: var(--heading);
}

.section-head p,
.hero-copy p,
.hero-panel p,
.stat-card span,
.service-card p,
.benefit-card p,
.process-card p,
.project-card p,
.contact-details,
.contact-form span,
.site-footer p,
.site-footer li,
.partners-strip span,
.hero-chips span {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(20px);
  background: rgba(7, 17, 27, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 218px;
  height: auto;
}

.nav-links,
.header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: #d2deeb;
  font-weight: 600;
}

.nav-links a:hover,
.phone-link:hover {
  color: #ffffff;
}

.phone-link {
  color: #f7fbff;
  font-weight: 700;
  white-space: nowrap;
}

.button,
.menu-toggle {
  border: 0;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  color: #1a1205;
  box-shadow: 0 18px 34px rgba(245, 157, 42, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(245, 157, 42, 0.34);
}

.button-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  color: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  transform: scale(1.02);
  transition: transform 240ms ease;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 19, 31, 0.9) 0%, rgba(8, 19, 31, 0.56) 42%, rgba(8, 19, 31, 0.76) 100%),
    radial-gradient(circle at 78% 18%, rgba(245,157,42,0.18), transparent 18%);
}

.hero-cinematic {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(245, 157, 42, 0.22), transparent 18%),
    linear-gradient(120deg, rgba(12, 48, 97, 0.22), rgba(8, 19, 31, 0.12));
}

.hero-fallback {
  opacity: 0;
  pointer-events: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1200ms ease, transform 7000ms ease;
  filter: saturate(1.06) contrast(1.04);
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8, 19, 31, 0.28), rgba(8, 19, 31, 0.54)),
    linear-gradient(120deg, rgba(12, 48, 97, 0.36), rgba(8, 19, 31, 0.18));
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.02);
}

.hero-slide.active::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.08) 48%, transparent 56%);
  transform: translateX(-120%);
  animation: heroSweep 7.5s ease-in-out forwards;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 30px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 11ch;
  margin: 18px 0 18px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 1.02;
  color: var(--heading);
}

.hero-copy h1 .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(8px);
  animation: wordReveal 700ms cubic-bezier(.2,.8,.2,1) forwards;
}

.hero-copy h1 .word.space {
  width: 0.28em;
}

.hero-copy p {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 26px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chips span {
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eaf3fb;
}

.hero-legal-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(8,19,31,0.42);
  border: 1px solid rgba(255,255,255,0.08);
  color: #94a8bb;
  font-size: 0.78rem;
}

.hero-panel {
  display: flex;
  justify-content: flex-end;
}

.hero-panel-card {
  width: min(100%, 470px);
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(10, 21, 32, 0.75), rgba(12, 25, 40, 0.96));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
  transition: transform 240ms ease;
}

.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #ffd9a1;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-panel-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,157,42,0), rgba(245,157,42,0.45), rgba(245,157,42,0));
}

.hero-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  line-height: 1.2;
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.panel-stats article {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.panel-stats strong {
  display: block;
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.credibility {
  background: linear-gradient(180deg, #0a1520 0%, #0d1824 100%);
}

.stats-grid,
.services-grid,
.process-grid,
.projects-grid {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #ffffff;
  margin-bottom: 8px;
}

.stat-card.accent-orange {
  background: linear-gradient(145deg, rgba(245,157,42,0.16), rgba(255,255,255,0.04));
}

.stat-card.accent-blue {
  background: linear-gradient(145deg, rgba(13,88,180,0.18), rgba(255,255,255,0.04));
}

.partners-strip {
  margin-top: 28px;
  padding: 26px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
}

.partner-placeholders {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.partner-placeholders span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #d6e3ef;
  font-weight: 600;
}

.services-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.benefit-card,
.process-card,
.project-card,
.contact-form,
.cta-banner {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
}

.icon-box {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,157,42,0.14);
  color: #ffd392;
  margin-bottom: 18px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
}

.benefits-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.benefit-card h3,
.process-card h3,
.project-card h3,
.service-card h3,
.site-footer h3 {
  margin: 0 0 10px;
  color: var(--heading);
  font-size: 1.12rem;
}

.projects-section {
  position: relative;
  background:
    radial-gradient(circle at 80% 0%, rgba(245,157,42,0.08), transparent 16%),
    linear-gradient(180deg, #0a1520 0%, #0b1724 100%);
}

.project-summary-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.project-summary-bar article {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.project-summary-bar strong {
  display: block;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(245,157,42,0.3);
  box-shadow: 0 34px 62px rgba(0, 0, 0, 0.34);
}

.project-media {
  position: relative;
  aspect-ratio: 1.15;
  background:
    linear-gradient(145deg, rgba(13,88,180,0.75), rgba(8,19,31,0.55)),
    linear-gradient(120deg, #112841, #194d79 58%, #3c2b10 100%);
  overflow: hidden;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 460ms ease, filter 320ms ease;
  filter: saturate(1.02) contrast(1.02);
}

.project-card:hover .project-image,
.project-card:focus-within .project-image {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.05);
}

.project-media.theme-amber {
  background:
    linear-gradient(145deg, rgba(245,157,42,0.42), rgba(8,19,31,0.4)),
    linear-gradient(120deg, #6d3a0a, #123355 58%, #2b2218 100%);
}

.project-media.theme-blue {
  background:
    linear-gradient(145deg, rgba(13,88,180,0.62), rgba(8,19,31,0.46)),
    linear-gradient(120deg, #0f2740, #194d79 58%, #1b2634 100%);
}

.project-media.theme-copper {
  background:
    linear-gradient(145deg, rgba(183,103,36,0.55), rgba(8,19,31,0.46)),
    linear-gradient(120deg, #37200f, #184061 58%, #1a2430 100%);
}

.project-media.theme-slate {
  background:
    linear-gradient(145deg, rgba(84,108,137,0.5), rgba(8,19,31,0.44)),
    linear-gradient(120deg, #1a2836, #1d4467 58%, #121e2b 100%);
}

.project-media::after {
  content: "";
  position: absolute;
  inset: auto -10% -25% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,157,42,0.45), transparent 70%);
}

.project-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.1) 0%, rgba(5, 11, 18, 0.05) 30%, rgba(5, 11, 18, 0.64) 100%);
  z-index: 0;
}

.project-secondary-image {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 118px;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.88);
  box-shadow: 0 14px 28px rgba(0,0,0,0.28);
  z-index: 2;
}

.project-overlay {
  position: absolute;
  inset: 18px 18px auto 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}

.project-overlay strong {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(8,19,31,0.58);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 0.98rem;
}

.project-body {
  padding: 24px;
}

.project-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.project-topline span,
.project-pill {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(245,157,42,0.12);
  color: #ffd69a;
  font-size: 0.8rem;
  font-weight: 700;
}

.project-power {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.project-metrics article {
  padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.project-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 5px;
}

.projects-legal-note {
  position: absolute;
  top: 28px;
  right: 20px;
  max-width: 320px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(8, 19, 31, 0.56);
  border: 1px solid rgba(255,255,255,0.08);
  color: #8fa6ba;
  font-size: 0.8rem;
  line-height: 1.45;
}

.projects-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

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

.process-card {
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.process-step {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: #ffd498;
  font-weight: 700;
}

.cta-section {
  padding-top: 40px;
}

.cta-banner {
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #0d2f5f, #183250 44%, #3c2b10 100%);
  border: 1px solid rgba(255,255,255,0.08);
}

.cta-banner h2 {
  margin: 16px 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-details a,
.contact-details span {
  color: #dde8f2;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #ffffff;
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8fa6ba;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245,157,42,0.5);
  box-shadow: 0 0 0 4px rgba(245,157,42,0.1);
}

.map-section {
  padding-top: 32px;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 42px 0 28px;
  background: #06101a;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.8fr 0.8fr;
  gap: 28px;
}

.footer-brand img {
  width: 200px;
}

.site-footer h3 {
  margin-bottom: 14px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 480ms ease, transform 480ms ease, filter 480ms ease;
  filter: blur(8px);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes heroSweep {
  0% {
    transform: translateX(-120%);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  100% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@keyframes wordReveal {
  0% {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .split-layout,
  .contact-layout,
  .footer-inner,
  .cta-banner,
  .stats-grid,
  .services-grid,
  .process-grid,
  .projects-grid,
  .project-summary-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .split-layout,
  .contact-layout,
  .footer-inner,
  .cta-banner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .brand img {
    width: 168px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: fixed;
    inset: 84px 16px auto;
    display: none;
    padding: 18px;
    border-radius: 22px;
    background: rgba(7,17,27,0.98);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: grid;
    gap: 18px;
  }

  .nav-links,
  .header-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .hero-video {
    transform: scale(1.02);
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-grid,
  .stats-grid,
  .services-grid,
  .benefits-list,
  .projects-grid,
  .process-grid,
  .project-summary-bar,
  .contact-form,
  .project-metrics {
    grid-template-columns: 1fr;
  }

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

  .projects-legal-note {
    position: static;
    max-width: none;
    margin: 0 0 18px;
  }

  .project-secondary-image {
    width: 96px;
  }
}

/* April 2026 premium refresh: lighter solar palette, cleaner header, simpler projects, stronger mobile UX */
:root {
  --bg: #f7fbff;
  --bg-soft: #eef7fb;
  --surface: #ffffff;
  --surface-soft: #f1f8f4;
  --card: rgba(255, 255, 255, 0.96);
  --line: rgba(13, 43, 69, 0.08);
  --text: #18324a;
  --muted: #61768a;
  --heading: #0c2b44;
  --dark: #081d32;
  --blue: #0d5fd3;
  --blue-strong: #0b4eac;
  --orange: #f2c318;
  --orange-soft: rgba(242, 195, 24, 0.14);
  --shadow: 0 20px 48px rgba(13, 43, 69, 0.12);
}

body {
  background:
    radial-gradient(circle at top left, rgba(13, 95, 211, 0.08), transparent 20%),
    radial-gradient(circle at top right, rgba(25, 179, 107, 0.08), transparent 18%),
    linear-gradient(180deg, #f7fbff 0%, #eff7fb 100%);
  color: var(--text);
}

.section-dark,
.credibility,
.projects-section {
  background:
    radial-gradient(circle at 85% 12%, rgba(242, 195, 24, 0.12), transparent 14%),
    radial-gradient(circle at 10% 8%, rgba(25, 179, 107, 0.08), transparent 16%),
    linear-gradient(180deg, #f8fcff 0%, #eef7f8 100%);
}

.section-head.light h2,
.section-head.light p,
.benefit-card h3,
.process-card h3,
.project-card h3,
.service-card h3 {
  color: var(--heading);
}

.eyebrow {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(13, 95, 211, 0.1);
  color: #0d6e55;
}

.eyebrow::before {
  background: linear-gradient(135deg, #f2c318, #8ac926);
  box-shadow: 0 0 12px rgba(242, 195, 24, 0.28);
}

.site-header {
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(13, 43, 69, 0.08);
}

.header-inner {
  min-height: 78px;
}

.nav-links a {
  color: #35516b;
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--blue);
}

.button-primary {
  background: linear-gradient(135deg, #0d5fd3, #16a475);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(13, 95, 211, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 42px rgba(13, 95, 211, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.button-header {
  padding-inline: 20px;
}

.menu-toggle {
  background: rgba(13, 95, 211, 0.08);
  color: var(--heading);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 25, 45, 0.84) 0%, rgba(4, 25, 45, 0.48) 42%, rgba(4, 25, 45, 0.7) 100%),
    radial-gradient(circle at 78% 18%, rgba(242, 195, 24, 0.16), transparent 18%),
    radial-gradient(circle at 84% 78%, rgba(25, 179, 107, 0.14), transparent 20%);
}

.hero-cinematic {
  background:
    radial-gradient(circle at 82% 16%, rgba(242, 195, 24, 0.18), transparent 18%),
    linear-gradient(120deg, rgba(13, 95, 211, 0.18), rgba(8, 29, 50, 0.12));
}

.hero-chips span {
  background: rgba(255, 255, 255, 0.12);
}

.hero-legal-note {
  display: none;
}

.hero-panel-card {
  background: linear-gradient(180deg, rgba(4, 25, 45, 0.72), rgba(4, 25, 45, 0.9));
}

.panel-kicker {
  background: rgba(242, 195, 24, 0.14);
  color: #ffe493;
}

.panel-stats article,
.stat-card,
.service-card,
.benefit-card,
.project-summary-bar article,
.project-card,
.process-card,
.contact-form,
.map-frame {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(13, 43, 69, 0.08);
  box-shadow: var(--shadow);
}

.panel-stats article,
.hero-panel-card {
  color: #ffffff;
}

.stat-card strong,
.project-summary-bar strong,
.project-power,
.project-metrics strong {
  color: var(--heading);
}

.stat-card.accent-orange {
  background: linear-gradient(145deg, rgba(242, 195, 24, 0.16), rgba(255, 255, 255, 0.98));
}

.stat-card.accent-blue {
  background: linear-gradient(145deg, rgba(13, 95, 211, 0.12), rgba(255, 255, 255, 0.98));
}

.icon-box {
  background: rgba(25, 179, 107, 0.12);
  color: #129769;
}

.project-card:hover,
.project-card:focus-within {
  border-color: rgba(25, 179, 107, 0.24);
  box-shadow: 0 28px 58px rgba(13, 43, 69, 0.18);
}

.project-media {
  background:
    linear-gradient(145deg, rgba(13, 95, 211, 0.36), rgba(8, 29, 50, 0.12)),
    linear-gradient(120deg, #dff2ff, #d8f2e8 58%, #fff4c5 100%);
}

.project-media.theme-amber {
  background:
    linear-gradient(145deg, rgba(242, 195, 24, 0.28), rgba(8, 29, 50, 0.08)),
    linear-gradient(120deg, #fff4c9, #d8f3e6 58%, #dcebff 100%);
}

.project-media.theme-blue {
  background:
    linear-gradient(145deg, rgba(13, 95, 211, 0.28), rgba(8, 29, 50, 0.08)),
    linear-gradient(120deg, #dcebff, #d9f4ee 58%, #eef7ff 100%);
}

.project-media.theme-copper {
  background:
    linear-gradient(145deg, rgba(242, 195, 24, 0.22), rgba(8, 29, 50, 0.06)),
    linear-gradient(120deg, #fff8d7, #e5f7ef 58%, #e8f1fb 100%);
}

.project-media.theme-slate {
  background:
    linear-gradient(145deg, rgba(25, 179, 107, 0.18), rgba(8, 29, 50, 0.06)),
    linear-gradient(120deg, #e7f8f1, #def0ff 58%, #eef7fb 100%);
}

.project-media::after {
  background: radial-gradient(circle, rgba(242, 195, 24, 0.32), transparent 70%);
}

.project-media::before {
  background: linear-gradient(180deg, rgba(5, 11, 18, 0.04) 0%, rgba(5, 11, 18, 0.02) 36%, rgba(5, 11, 18, 0.38) 100%);
}

.project-topline span,
.project-pill {
  background: rgba(25, 179, 107, 0.12);
  color: #137857;
}

.project-overlay strong {
  background: rgba(4, 25, 45, 0.7);
}

.project-body {
  padding: 24px;
}

.project-power {
  margin-bottom: 4px;
}

.project-card p,
.project-secondary-image {
  display: none;
}

.project-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.project-metrics article {
  background: rgba(13, 95, 211, 0.04);
  border: 1px solid rgba(13, 43, 69, 0.08);
}

.projects-legal-note {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(13, 43, 69, 0.08);
  color: #5a7084;
}

.process-step {
  background: rgba(25, 179, 107, 0.12);
  color: #137857;
}

.cta-banner {
  background: linear-gradient(135deg, #0d5fd3, #159c7d 52%, #f2c318 145%);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-details a,
.contact-details span {
  color: #35516b;
}

.contact-form input,
.contact-form textarea {
  background: #ffffff;
  border: 1px solid rgba(13, 43, 69, 0.12);
  color: var(--heading);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(25, 179, 107, 0.45);
  box-shadow: 0 0 0 4px rgba(25, 179, 107, 0.1);
}

.map-frame {
  border: 1px solid rgba(13, 43, 69, 0.08);
}

.site-footer {
  background: #081d32;
}

@media (max-width: 820px) {
  .brand img {
    width: 156px;
  }

  .nav-panel {
    inset: 78px 12px auto;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(13, 43, 69, 0.08);
  }

  .nav-links a,
  .header-cta .button {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 104px 0 56px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 76px 0;
  }

  .stat-card,
  .service-card,
  .benefit-card,
  .process-card,
  .project-body,
  .contact-form {
    padding: 20px;
  }

  .project-summary-bar article {
    padding: 18px 20px;
  }

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

  .map-frame iframe {
    height: 320px;
  }
}

/* Hero premium refinement */
.site-header {
  background: rgba(248, 251, 255, 0.82);
  border-bottom: 1px solid rgba(12, 43, 68, 0.06);
  box-shadow: 0 10px 30px rgba(12, 43, 68, 0.06);
}

.header-inner {
  min-height: 82px;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  color: #284760;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.button-header {
  min-width: 210px;
  background: linear-gradient(135deg, #0c63d6 0%, #119e8b 100%);
  box-shadow: 0 16px 34px rgba(12, 99, 214, 0.18);
}

.hero {
  min-height: 88vh;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.14) 0%, rgba(248, 251, 255, 0) 14%),
    linear-gradient(90deg, rgba(5, 23, 40, 0.86) 0%, rgba(5, 23, 40, 0.58) 36%, rgba(5, 23, 40, 0.28) 58%, rgba(5, 23, 40, 0.62) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at 12% 18%, rgba(20, 190, 140, 0.16), transparent 18%),
    radial-gradient(circle at 78% 16%, rgba(242, 195, 24, 0.14), transparent 16%),
    linear-gradient(90deg, rgba(5, 23, 40, 0.42) 0%, rgba(5, 23, 40, 0.1) 48%, rgba(5, 23, 40, 0.26) 100%);
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: end;
  padding-top: 110px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 740px;
}

.hero-copy .eyebrow {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #0e6e56;
  box-shadow: 0 12px 28px rgba(5, 23, 40, 0.08);
}

.hero-copy h1 {
  max-width: 9.5ch;
  margin: 18px 0 18px;
  font-size: clamp(3.2rem, 5.2vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  color: #ffffff;
  text-wrap: balance;
  text-shadow: 0 10px 34px rgba(3, 12, 24, 0.28);
}

.hero-copy p {
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.68;
  color: rgba(233, 242, 250, 0.92);
}

.hero-actions {
  margin: 28px 0 20px;
  gap: 16px;
}

.hero-actions .button {
  min-height: 58px;
  padding-inline: 26px;
}

.hero-actions .button-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.hero-actions .button-secondary:hover,
.hero-actions .button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.hero-chips {
  gap: 10px;
}

.hero-chips span {
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(239, 246, 252, 0.92);
  font-size: 0.84rem;
}

.hero-panel {
  justify-content: flex-end;
}

.hero-panel-card {
  position: relative;
  width: min(100%, 460px);
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(7, 27, 47, 0.82), rgba(7, 27, 47, 0.94)),
    linear-gradient(135deg, rgba(12, 99, 214, 0.18), rgba(17, 158, 139, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 32px 70px rgba(4, 17, 31, 0.34);
  overflow: hidden;
}

.hero-panel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(242, 195, 24, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
  pointer-events: none;
}

.panel-kicker {
  position: relative;
  z-index: 1;
  padding: 10px 14px;
  background: rgba(242, 195, 24, 0.14);
  color: #f6d969;
  border: 1px solid rgba(242, 195, 24, 0.16);
  letter-spacing: 0.08em;
}

.hero-panel h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-panel p {
  position: relative;
  z-index: 1;
  color: rgba(215, 227, 239, 0.82);
  font-size: 0.98rem;
  line-height: 1.7;
}

.panel-stats {
  position: relative;
  z-index: 1;
  gap: 12px;
  margin-top: 24px;
}

.panel-stats article {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.panel-stats strong {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 8px;
  color: #ffffff;
}

.panel-stats span {
  color: rgba(214, 228, 239, 0.72);
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 7vw, 4.4rem);
  }

  .hero-panel {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-header {
    background: rgba(248, 251, 255, 0.94);
  }

  .nav-panel {
    background: rgba(248, 251, 255, 0.98);
  }

  .hero-grid {
    padding-top: 92px;
    padding-bottom: 32px;
    gap: 22px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .hero-chips {
    gap: 8px;
  }

  .hero-chips span {
    font-size: 0.84rem;
  }

  .hero-panel-card {
    width: 100%;
    padding: 24px;
    border-radius: 24px;
  }

  .hero-panel h2 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .panel-stats strong {
    font-size: 1.5rem;
  }
}

.brands-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.brand-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(13, 43, 69, 0.08);
  box-shadow: var(--shadow);
  color: #17324a;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
}

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

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e9f1f7;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .brands-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .brands-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .brand-badge {
    min-height: 70px;
  }
}

.brands-marquee-section {
  position: relative;
  padding: 18px 0 72px;
  background:
    linear-gradient(180deg, rgba(248, 252, 255, 0.98) 0%, rgba(239, 247, 248, 0.98) 100%);
  overflow: hidden;
}

.brands-marquee-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(12, 43, 68, 0.08), transparent);
}

.brands-intro {
  max-width: 700px;
  margin: 0 auto 20px;
  color: #73869a;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.7;
}

.brands-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: brandMarquee 54s linear infinite;
}

.brand-logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  height: 78px;
  padding: 14px 20px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(12, 43, 68, 0.06);
  box-shadow:
    0 10px 24px rgba(12, 43, 68, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.brand-logo-item img {
  max-width: 120px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: none;
  transition: opacity 220ms ease, filter 220ms ease, transform 220ms ease;
}

.brand-logo-item:hover img {
  opacity: 1;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.02);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 18px 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(18, 140, 126, 0.28);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex: 0 0 auto;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(18, 140, 126, 0.34);
}

@keyframes brandMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 820px) {
  .brands-marquee-section {
    padding: 14px 0 48px;
  }

  .brands-intro {
    margin-bottom: 14px;
    padding-inline: 16px;
    font-size: 0.9rem;
  }

  .brand-logo-item {
    min-width: 136px;
    height: 68px;
    padding: 12px 16px;
  }

  .brand-logo-item img {
    max-width: 96px;
    max-height: 28px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 0 16px 0 13px;
  }

  .whatsapp-float span {
    font-size: 0.92rem;
  }
}
