:root {
  --blue: #1598d4;
  --blue-deep: #0673b7;
  --cyan: #63c9ee;
  --ink: #182836;
  --ink-soft: #536270;
  --line: #d9eaf2;
  --surface: #ffffff;
  --surface-blue: #eef9fd;
  --green: #41b66b;
  --shadow: 0 24px 70px rgba(10, 70, 110, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(238, 249, 253, 0.95) 0%, rgba(255, 255, 255, 0.95) 28%),
    #ffffff;
  max-width: 100%;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(21, 152, 212, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 152, 212, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
  z-index: -2;
}

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

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  z-index: 200;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(21, 152, 212, 0.16), transparent 66%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 220ms ease;
  z-index: -1;
}

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(217, 234, 242, 0.86);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 60px rgba(9, 69, 102, 0.12);
  backdrop-filter: blur(18px);
  z-index: 100;
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 52px rgba(9, 69, 102, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
}

.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  scroll-margin-top: 112px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5vw, 78px);
  min-height: 100vh;
  padding-top: 132px;
  padding-bottom: 118px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  width: min(820px, 86vw);
  height: 220px;
  border: 2px solid rgba(21, 152, 212, 0.18);
  border-color: transparent transparent rgba(21, 152, 212, 0.2) transparent;
  border-radius: 0 0 50% 50%;
  pointer-events: none;
  transform: translateX(-50%) rotate(-7deg);
}

.hero::before {
  top: 170px;
  animation: driftLine 8s ease-in-out infinite;
}

.hero::after {
  top: 220px;
  width: min(960px, 94vw);
  opacity: 0.7;
  animation: driftLine 10s ease-in-out infinite reverse;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.3vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  font-weight: 900;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
}

.hero-text {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.7;
}

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

.button {
  padding: 0 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  box-shadow: 0 18px 36px rgba(21, 152, 212, 0.25);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.logo-plate {
  position: absolute;
  top: 0;
  right: 8%;
  width: min(360px, 70vw);
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  z-index: 4;
  animation: floatPlate 6s ease-in-out infinite;
}

.logo-plate img {
  border-radius: 16px;
}

.building-scene {
  position: absolute;
  inset: 150px 0 0;
  min-height: 390px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 249, 253, 0.78)),
    linear-gradient(135deg, rgba(21, 152, 212, 0.16), transparent 58%);
  border: 1px solid rgba(217, 234, 242, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.building-scene::before {
  content: "";
  position: absolute;
  inset: auto -10% 64px;
  height: 190px;
  border-top: 26px solid rgba(21, 152, 212, 0.2);
  border-radius: 50% 50% 0 0;
  transform: rotate(-6deg);
}

.building-scene::after {
  content: "";
  position: absolute;
  inset: auto -12% 42px;
  height: 170px;
  border-top: 18px solid rgba(255, 255, 255, 0.92);
  border-radius: 50% 50% 0 0;
  transform: rotate(5deg);
}

.tower {
  position: absolute;
  bottom: 96px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 18px;
  background: linear-gradient(180deg, #223443, #182836);
  border-radius: 16px 16px 6px 6px;
  box-shadow: 0 22px 42px rgba(24, 40, 54, 0.18);
}

.tower span {
  width: 28px;
  height: 22px;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(99, 201, 238, 0.85), rgba(255, 255, 255, 0.72));
  animation: windowShine 3.6s ease-in-out infinite;
}

.tower-a {
  left: 10%;
  height: 190px;
}

.tower-b {
  left: 36%;
  height: 255px;
  bottom: 94px;
  background: linear-gradient(180deg, #1598d4, #0673b7);
}

.tower-c {
  right: 10%;
  height: 170px;
}

.green-strip {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 54px;
  height: 34px;
  border-radius: 999px;
  background: repeating-linear-gradient(
    90deg,
    var(--green) 0 18px,
    #77d48d 18px 30px
  );
  box-shadow: 0 16px 30px rgba(65, 182, 107, 0.25);
}

.clean-sweep {
  position: absolute;
  left: -28%;
  width: 78%;
  height: 50px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), rgba(99, 201, 238, 0.55), transparent);
  filter: blur(1px);
  transform: rotate(-10deg);
  animation: sweep 4.8s ease-in-out infinite;
  z-index: 5;
}

.sweep-one {
  top: 190px;
}

.sweep-two {
  top: 252px;
  animation-delay: 1.4s;
  opacity: 0.7;
}

.sparkle {
  position: absolute;
  width: 34px;
  height: 34px;
  background: var(--blue);
  clip-path: polygon(50% 0, 62% 35%, 100% 50%, 62% 65%, 50% 100%, 38% 65%, 0 50%, 38% 35%);
  animation: twinkle 2.6s ease-in-out infinite;
  z-index: 6;
}

.sparkle-one {
  top: 88px;
  left: 18%;
}

.sparkle-two {
  right: 14%;
  top: 170px;
  width: 22px;
  height: 22px;
  animation-delay: 0.9s;
}

.ticker {
  position: absolute;
  left: 50%;
  bottom: 34px;
  width: 100vw;
  height: 56px;
  transform: translateX(-50%);
  overflow: hidden;
  border-block: 1px solid rgba(217, 234, 242, 0.86);
  background: rgba(255, 255, 255, 0.78);
}

.ticker-track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  width: max-content;
  animation: tickerMove 28s linear infinite;
}

.ticker span {
  padding: 18px 32px;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.services {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: end;
  gap: 32px;
  margin-bottom: 44px;
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 48px rgba(10, 70, 110, 0.08);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(21, 152, 212, 0.45);
  box-shadow: 0 24px 70px rgba(10, 70, 110, 0.14);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: auto;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

.service-card p,
.contract-copy p,
.step p,
.contact-copy p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.contracts {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.contract-copy p {
  max-width: 520px;
  margin: 24px 0;
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-deep);
  font-weight: 900;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.contract-steps {
  position: relative;
  display: grid;
  gap: 14px;
}

.contract-steps::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background: linear-gradient(var(--blue), var(--line));
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
}

.step span {
  position: relative;
  z-index: 1;
  grid-row: 1 / span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 900;
}

.step h3 {
  grid-column: 2;
  margin: 0;
}

.step p {
  grid-column: 2;
  margin: 0;
  max-width: 58ch;
}

.standard {
  width: 100%;
  padding: 0;
  background: linear-gradient(135deg, #172837, #223443);
}

.standard-panel {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  padding: 92px 0;
  color: #fff;
}

.standard-panel .eyebrow {
  color: var(--cyan);
}

.standard-list {
  display: grid;
  gap: 14px;
}

.standard-list div {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.standard-list strong {
  font-size: 1.05rem;
}

.standard-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  padding: 120px 0;
}

.contact-copy p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.quote-form input[name="_honey"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.quote-form textarea {
  resize: vertical;
  min-height: 136px;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(21, 152, 212, 0.12);
}

.form-button {
  width: 100%;
  min-height: 54px;
}

.form-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.5;
}

.form-status.is-success {
  color: #147a41;
}

.form-status.is-error {
  color: #b42318;
}

.site-footer {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 28px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-footer img {
  width: 72px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes driftLine {
  0%,
  100% {
    transform: translateX(-50%) rotate(-7deg) translateY(0);
  }
  50% {
    transform: translateX(-50%) rotate(-4deg) translateY(18px);
  }
}

@keyframes floatPlate {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes windowShine {
  0%,
  100% {
    opacity: 0.72;
  }
  50% {
    opacity: 1;
  }
}

@keyframes sweep {
  0% {
    transform: translateX(0) rotate(-10deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(185%) rotate(-10deg);
    opacity: 0;
  }
}

@keyframes twinkle {
  0%,
  100% {
    transform: scale(0.78) rotate(0deg);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.08) rotate(45deg);
    opacity: 1;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    justify-self: end;
  }

  .hero,
  .contracts,
  .standard-panel,
  .contact,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 128px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    padding: 8px 10px;
    border-radius: 14px;
  }

  .brand span {
    display: none;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .section {
    width: min(100% - 24px, 1160px);
  }

  h1 {
    font-size: clamp(2.72rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .hero {
    gap: 18px;
    padding-bottom: 96px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 430px;
  }

  .logo-plate {
    right: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    border-radius: 18px;
  }

  .building-scene {
    inset: 134px 0 0;
    min-height: 292px;
    border-radius: 24px;
  }

  .tower {
    bottom: 76px;
    gap: 7px;
    padding: 12px;
  }

  .tower span {
    width: 20px;
    height: 16px;
  }

  .tower-a,
  .tower-c {
    height: 138px;
  }

  .tower-b {
    height: 186px;
  }

  .green-strip {
    bottom: 38px;
  }

  .services,
  .contracts,
  .contact {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

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

  .service-card {
    min-height: 238px;
  }

  .step {
    grid-template-columns: 48px 1fr;
    padding: 18px;
  }

  .standard-panel {
    width: min(100% - 24px, 1160px);
    padding: 76px 0;
  }

  .quote-form {
    padding: 18px;
  }

  .site-footer {
    width: min(100% - 24px, 1160px);
    grid-template-columns: 1fr;
  }
}
