:root {
  --bg: #050b16;
  --bg-soft: #0c1630;
  --panel: rgba(10, 21, 45, 0.72);
  --panel-solid: #0f1c39;
  --text: #f4f9ff;
  --muted: #b5c6e1;
  --line: rgba(109, 172, 255, 0.22);
  --blue-1: #3db7ff;
  --blue-2: #0074ff;
  --blue-3: #0a43b8;
  --accent: #ffd44d;
  --shadow: 0 20px 60px rgba(1, 13, 34, 0.55);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1220px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(61, 183, 255, 0.18), transparent 24%),
    radial-gradient(circle at left center, rgba(10, 67, 184, 0.24), transparent 28%),
    linear-gradient(180deg, #061120 0%, #050b16 40%, #081325 100%);
  color: var(--text);
  line-height: 1.6;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--max));
  margin-inline: auto;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

h1, h2, h3 {
  margin: 0 0 0.85rem;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3.1rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.skip-link,
.sr-only {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 300;
  background: #fff;
  color: #000;
  padding: 0.8rem 1rem;
  border-radius: 999px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(4, 10, 20, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.25rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-logo {
  width: 62px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(12, 116, 255, 0.38));
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.15;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: #d7e7ff;
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.header-cta-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.header-phone {
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #07111d;
  background: linear-gradient(135deg, var(--accent), #ffb400 80%);
  box-shadow: 0 16px 34px rgba(255, 191, 0, 0.28);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.hero {
  overflow: clip;
  padding-top: clamp(4rem, 8vw, 6.5rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(61, 183, 255, 0.2), transparent 16%),
    radial-gradient(circle at 80% 10%, rgba(255, 212, 77, 0.1), transparent 14%),
    linear-gradient(180deg, rgba(2, 12, 27, 0) 0%, rgba(2, 12, 27, 0.35) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lead {
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 1.4rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-strip li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, transparent, rgba(1, 8, 20, 0.64));
}

.hero-card-top {
  transform: rotate(-2deg);
}

.hero-card img {
  width: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: -0.2rem;
  bottom: -0.8rem;
  padding: 1rem 1.15rem;
  background: linear-gradient(135deg, #fff4c5, var(--accent));
  color: #09111f;
  border-radius: 1.2rem;
  box-shadow: 0 20px 44px rgba(255, 191, 0, 0.35);
  text-align: center;
  min-width: 150px;
}

.hero-badge span {
  display: block;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.hero-badge small {
  display: block;
  font-weight: 800;
  margin-top: 0.3rem;
}

.stats-bar {
  padding-top: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card,
.service-card,
.why-card,
.area-panel,
.process-card,
.gallery-card,
.faq-list details,
.lead-form,
.contact-copy {
  background: var(--panel);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.3rem 1.25rem;
}

.stat-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.stat-card span {
  color: var(--muted);
}

.service-grid,
.process-grid,
.gallery-grid {
  display: grid;
  gap: 1.15rem;
}

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

.service-card {
  padding: 1.35rem;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card:hover,
.service-card:focus-within,
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 212, 77, 0.34);
  box-shadow: 0 22px 44px rgba(1, 13, 34, 0.62);
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.55rem;
  background: linear-gradient(135deg, rgba(61, 183, 255, 0.18), rgba(10, 67, 184, 0.32));
  margin-bottom: 0.9rem;
}

.why-grid,
.area-grid,
.contact-grid,
.cta-band-inner {
  display: grid;
  gap: 1.2rem;
  align-items: start;
}

.why-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.why-card,
.process-card,
.area-panel,
.contact-copy,
.lead-form {
  padding: 1.35rem;
}

.area-grid,
.cta-band-inner {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
}

.area-panel ul {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.area-panel li {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.area-note {
  margin: 0;
}

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

.process-card {
  min-height: 220px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  color: #fff;
  font-weight: 900;
}

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

.gallery-card {
  grid-column: span 4;
  overflow: hidden;
}

.gallery-card.tall {
  grid-column: span 5;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.gallery-card.tall img {
  aspect-ratio: 4 / 5;
}

.gallery-card figcaption {
  padding: 1rem 1rem 1.15rem;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 920px;
  margin-inline: auto;
}

.faq-list details {
  padding: 1rem 1.15rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
  padding-right: 2rem;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin-top: 0.8rem;
}

.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  padding: 1.8rem;
  background: linear-gradient(135deg, rgba(6, 20, 45, 0.92), rgba(10, 67, 184, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-self: center;
}

.contact-points {
  display: grid;
  gap: 0.8rem;
}

.contact-points a,
.contact-points p {
  margin: 0;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row label {
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-radius: 14px;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: rgba(255, 212, 77, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 212, 77, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.form-row option {
  color: #000;
}

.hp-field {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-message {
  min-height: 1.25rem;
  font-weight: 700;
}

.form-message.success {
  color: #84ffc2;
}

.form-message.error {
  color: #ff9c9c;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  background: rgba(2, 7, 14, 0.95);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1fr;
  gap: 1.25rem;
}

.footer-logo {
  width: 82px;
  margin-bottom: 0.85rem;
}

.footer-brand {
  font-size: 1.15rem;
  font-weight: 900;
  color: #fff;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-credit {
  color: #fff;
  font-size: 1rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.92rem;
}

.floating-call {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 180;
  display: inline-grid;
  gap: 0.1rem;
  padding: 0.95rem 1.1rem;
  min-width: 176px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue-2), var(--blue-1));
  color: #fff;
  box-shadow: 0 22px 42px rgba(10, 67, 184, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-call span {
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0.9;
}

.floating-call strong {
  font-size: 1rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  border-radius: 999px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto 1fr auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: start;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(4, 11, 22, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .why-grid,
  .area-grid,
  .contact-grid,
  .cta-band-inner,
  .service-grid,
  .process-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-points {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-card,
  .gallery-card.tall {
    grid-column: auto;
  }

  .header-cta-wrap {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 78px;
  }

  .section {
    padding: 4.4rem 0;
  }

  .brand-text small,
  .header-phone {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .hero-actions,
  .trust-strip,
  .cta-band-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .why-points,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .floating-call {
    left: 0.8rem;
    right: 0.8rem;
    bottom: 0.8rem;
    text-align: center;
  }
}

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

  .reveal,
  .btn,
  .service-card,
  .gallery-card {
    transition: none;
  }
}


.contact-grid-noform {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  align-items: stretch;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-action-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13, 29, 61, 0.92), rgba(8, 18, 37, 0.96));
  box-shadow: var(--shadow);
}

.contact-action-card strong {
  font-size: 1.5rem;
  line-height: 1.1;
}

.contact-action-card span:last-child {
  color: var(--muted);
}

.contact-action-eyebrow {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 220;
  display: none;
  gap: 0.75rem;
  padding: 0.8rem 0.9rem calc(0.8rem + env(safe-area-inset-bottom));
  background: rgba(4, 10, 20, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
}

.mobile-cta-btn {
  flex: 1;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.mobile-call {
  color: #07111d;
  background: linear-gradient(135deg, var(--accent), #ffb400 80%);
}

.mobile-text {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 210;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-3));
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 70, 180, 0.4);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .contact-grid-noform {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 5.8rem;
  }

  .mobile-cta-bar {
    display: flex;
  }

  .back-to-top {
    bottom: 6.8rem;
  }
}



.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 440px;
  padding: 2rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at center, rgba(61, 183, 255, 0.22), transparent 42%),
    radial-gradient(circle at 50% 40%, rgba(0, 116, 255, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(10, 21, 45, 0.92), rgba(5, 11, 22, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), transparent 32%),
    linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.04) 50%, transparent 100%);
  pointer-events: none;
}

.hero-logo-large {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  object-fit: contain;
  filter: drop-shadow(0 14px 36px rgba(61, 183, 255, 0.35));
  animation: heroLogoFloat 6s ease-in-out infinite;
}

@keyframes heroLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.footer-credit-links {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
  margin-top: 0.75rem;
}

.footer-credit-link {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.footer-credit-link:hover {
  color: var(--accent);
}

.footer-madtown-logo-link {
  display: inline-block;
}

.footer-madtown-logo {
  width: min(100%, 180px);
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

@media (max-width: 768px) {
  .hero-logo-wrap {
    min-height: 320px;
    padding: 1.5rem 1rem;
  }

  .hero-logo-large {
    width: min(100%, 460px);
  }

  .footer-credit-links {
    justify-items: center;
  }
}


/* Flash upgrade */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(61, 183, 255, 0.08), transparent 16%),
    radial-gradient(circle at 86% 12%, rgba(255, 212, 77, 0.05), transparent 12%),
    radial-gradient(circle at 50% 0%, rgba(61, 183, 255, 0.05), transparent 30%);
  z-index: -1;
}

.btn,
.mobile-cta-btn,
.contact-action-card,
.gallery-card,
.stat-card,
.service-card,
.why-card,
.process-card,
.hero-logo-wrap,
.cta-band-inner {
  position: relative;
  overflow: hidden;
}

.btn::after,
.mobile-cta-btn::after,
.contact-action-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -140%;
  width: 70%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.12) 45%, rgba(255,255,255,0.38) 50%, rgba(255,255,255,0.12) 55%, transparent 100%);
  transform: skewX(-18deg);
  transition: left 0.7s ease;
}

.btn:hover::after,
.mobile-cta-btn:hover::after,
.contact-action-card:hover::after {
  left: 180%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 35%, rgba(61,183,255,0.12), transparent 14%),
    radial-gradient(circle at 30% 68%, rgba(255,212,77,0.08), transparent 12%);
  animation: heroPulse 8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.hero-logo-wrap {
  isolation: isolate;
}

.hero-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 12% 14%;
  border-radius: 50%;
  border: 1px solid rgba(61,183,255,0.18);
  box-shadow:
    0 0 0 20px rgba(61,183,255,0.04),
    0 0 0 45px rgba(61,183,255,0.025);
  animation: ripple 7s ease-in-out infinite;
}

@keyframes ripple {
  0%, 100% { transform: scale(0.96); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

.hero-water-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.28), rgba(61,183,255,0.18) 45%, rgba(61,183,255,0.02) 72%, transparent 74%);
  filter: blur(2px);
  opacity: 0.9;
  pointer-events: none;
}

.orb-one {
  width: 180px;
  height: 180px;
  top: -32px;
  left: -22px;
  animation: driftOne 11s ease-in-out infinite;
}

.orb-two {
  width: 120px;
  height: 120px;
  bottom: 14px;
  right: 20px;
  animation: driftTwo 9s ease-in-out infinite;
}

.orb-three {
  width: 72px;
  height: 72px;
  top: 28%;
  right: 10%;
  animation: driftThree 8s ease-in-out infinite;
}

.hero-shine {
  position: absolute;
  inset: -30% auto -30% -28%;
  width: 44%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
  transform: rotate(14deg);
  animation: heroShine 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes heroShine {
  0% { left: -35%; opacity: 0; }
  12% { opacity: 0.65; }
  30% { opacity: 0.2; }
  100% { left: 120%; opacity: 0; }
}

@keyframes driftOne {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(16px) translateX(8px); }
}
@keyframes driftTwo {
  0%,100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-12px) translateX(-8px); }
}
@keyframes driftThree {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}

.hero-logo-large {
  max-height: 410px;
}

.hero-badge {
  animation: badgeBob 4.8s ease-in-out infinite;
}

@keyframes badgeBob {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.stat-card,
.service-card,
.why-card,
.process-card,
.gallery-card,
.contact-action-card,
.cta-band-inner {
  box-shadow: 0 18px 40px rgba(1, 13, 34, 0.42);
}

.service-card::before,
.why-card::before,
.process-card::before,
.gallery-card::before,
.contact-action-card::before,
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), transparent 30%);
  pointer-events: none;
}

.service-card:hover,
.why-card:hover,
.process-card:hover,
.contact-action-card:hover,
.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(61,183,255,0.34);
  box-shadow: 0 28px 56px rgba(1, 13, 34, 0.6);
}

.gallery-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gallery-card img {
  transition: transform 0.55s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card figcaption strong {
  display: block;
  color: #fff;
  margin-bottom: 0.32rem;
}

.gallery-card figcaption span {
  color: var(--muted);
}

.cta-band-inner {
  background:
    radial-gradient(circle at 85% 20%, rgba(255,212,77,0.12), transparent 18%),
    linear-gradient(135deg, rgba(6, 20, 45, 0.96), rgba(10, 67, 184, 0.62));
}

.mobile-cta-bar {
  box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.28);
}

.back-to-top:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-logo-large {
    max-height: 290px;
  }
  .orb-one { width: 120px; height: 120px; }
  .orb-two { width: 88px; height: 88px; }
}

.site-header.site-header-scrolled {
  background: rgba(4, 10, 20, 0.9);
  box-shadow: 0 18px 40px rgba(0,0,0,0.26);
}
