:root {
  --blue: #064f86;
  --blue-dark: #07375f;
  --blue-deep: #021f38;
  --cyan: #2ab7d7;
  --ice: #edf6fb;
  --paper: #ffffff;
  --ink: #102033;
  --muted: #5d6d7f;
  --line: #d9e6ef;
  --shadow: 0 24px 70px rgba(4, 42, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #f7fbfe;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--cyan), #ffffff, var(--blue));
  box-shadow: 0 0 18px rgba(42, 183, 215, 0.45);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 79, 134, 0.12);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
}

.brand {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 8px;
  align-items: center;
  line-height: 1;
  color: var(--blue);
}

.brand-main {
  font-size: clamp(26px, 3.2vw, 42px);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 9px 14px;
  transform: skew(-10deg);
  color: #fff;
  background: var(--blue);
  font-size: clamp(21px, 2.4vw, 32px);
  font-style: italic;
  font-weight: 900;
}

.brand-sub {
  grid-column: 1 / -1;
  margin-top: 4px;
  color: #121a24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand.mini .brand-main {
  font-size: 28px;
}

.brand.mini .brand-badge {
  min-width: auto;
  padding: 7px 10px;
  font-size: 21px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 800;
}

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

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--cyan);
  transition: transform 0.2s ease;
}

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

.nav-phone {
  padding: 13px 17px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(6, 79, 134, 0.2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--blue);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 78px max(20px, calc((100vw - 1180px) / 2)) 72px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(42, 183, 215, 0.24), transparent 30%),
    linear-gradient(112deg, rgba(2, 31, 56, 0.98) 0%, rgba(6, 79, 134, 0.94) 55%, rgba(255, 255, 255, 0.9) 55.2%, rgba(255, 255, 255, 0.96) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000, transparent 65%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.intro h2,
.split-content h2,
.testimonials h2,
.contact-content h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions,
.trust-row,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 900;
}

.btn-primary {
  color: var(--blue-deep);
  background: #fff;
}

.contact-form .btn-primary {
  width: 100%;
  color: #fff;
  background: var(--blue);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.trust-row {
  margin-top: 32px;
}

.trust-row span {
  padding: 11px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 13px;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 480px;
}

.building-scene {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 251, 0.96)),
    linear-gradient(135deg, transparent 0 49%, rgba(6, 79, 134, 0.08) 49% 51%, transparent 51%);
  box-shadow: var(--shadow);
}

.building-scene::before,
.building-scene::after {
  position: absolute;
  content: "";
}

.building-scene::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 79, 134, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 79, 134, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
}

.building-scene::after {
  right: -55px;
  bottom: -55px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(42, 183, 215, 0.16);
}

.tower {
  position: absolute;
  bottom: 72px;
  width: 94px;
  border-radius: 8px 8px 0 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.64) 12px, transparent 12px) 16px 22px / 27px 28px,
    linear-gradient(var(--blue), var(--blue-dark));
  box-shadow: 0 18px 38px rgba(6, 79, 134, 0.18);
}

.tower-one {
  left: 68px;
  height: 255px;
}

.tower-two {
  left: 172px;
  height: 315px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66) 14px, transparent 14px) 16px 24px / 30px 31px,
    linear-gradient(160deg, var(--blue), var(--blue-deep));
}

.tower-three {
  left: 285px;
  height: 224px;
}

.worker {
  position: absolute;
  bottom: 46px;
  width: 76px;
  height: 76px;
  border-radius: 50% 50% 12px 12px;
  background: var(--cyan);
  opacity: 0.92;
}

.worker::before,
.worker::after {
  position: absolute;
  content: "";
  background: var(--blue-deep);
}

.worker::before {
  top: -18px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.worker::after {
  right: -28px;
  bottom: 20px;
  width: 70px;
  height: 8px;
  transform: rotate(-28deg);
  border-radius: 99px;
}

.worker-left {
  left: 46px;
  transform: scale(0.72);
}

.worker-right {
  right: 38px;
  transform: scale(0.84) rotateY(180deg);
}

.tower,
.worker,
.hero-visual,
.service-board {
  will-change: transform;
}

.service-strip {
  width: min(86%, 420px);
  margin: -42px auto 0;
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 48px rgba(6, 79, 134, 0.28);
}

.service-strip strong,
.service-strip span {
  display: block;
}

.service-strip span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

.section-pad {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.intro {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  align-items: start;
}

.intro h2,
.section-heading h2,
.split-content h2,
.testimonials h2,
.contact-content h2 {
  color: var(--blue-deep);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.05;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.intro-copy p {
  margin: 0 0 16px;
}

.services {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background: var(--ice);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading.compact {
  display: block;
  max-width: 720px;
}

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

.service-card {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(6, 79, 134, 0.12);
}

.service-card.accent {
  color: #fff;
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--blue), var(--blue-deep));
}

.service-icon,
.mini-icon,
.strip-icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--blue);
  background: var(--ice);
  font-weight: 900;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 27px;
}

.accent .service-icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.mini-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  background-color: var(--blue);
  background-size: 16px;
}

.strip-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  background-color: rgba(255, 255, 255, 0.16);
  background-size: 24px;
}

.icon-sparkle { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l1.8 5.2L19 10l-5.2 1.8L12 17l-1.8-5.2L5 10l5.2-1.8L12 3z'/%3E%3Cpath d='M5 17l.8 2.2L8 20l-2.2.8L5 23l-.8-2.2L2 20l2.2-.8L5 17z'/%3E%3C/svg%3E"); }
.icon-bucket { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 9h10l-1 11H8L7 9z'/%3E%3Cpath d='M8 9a4 4 0 0 1 8 0'/%3E%3Cpath d='M9 13h6'/%3E%3C/svg%3E"); }
.icon-factory { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 21V9l6 4V9l6 4V5h4v16H3z'/%3E%3Cpath d='M7 17h1M11 17h1M15 17h1'/%3E%3C/svg%3E"); }
.icon-key { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='15' r='4'/%3E%3Cpath d='M12 15h9l-2-2 2-2'/%3E%3C/svg%3E"); }
.icon-snow { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2v20M4 6l16 12M20 6L4 18M8 4l4 4 4-4M8 20l4-4 4 4'/%3E%3C/svg%3E"); }
.icon-truck { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E"); }
.icon-hammer { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 4l6 6-2 2-6-6z'/%3E%3Cpath d='M12 6L4 14l3 3 8-8'/%3E%3Cpath d='M6 16l-3 3'/%3E%3C/svg%3E"); }
.icon-box { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7l8-4 8 4-8 4-8-4z'/%3E%3Cpath d='M4 7v10l8 4 8-4V7M12 11v10'/%3E%3C/svg%3E"); }
.icon-leaf { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 4C10 4 5 9 5 19c8 0 14-5 15-15z'/%3E%3Cpath d='M5 19c3-6 7-9 12-11'/%3E%3C/svg%3E"); }
.icon-tools { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14 7l3-3 3 3-3 3z'/%3E%3Cpath d='M4 20l8-8M12 12l4 4M6 4l14 14'/%3E%3C/svg%3E"); }
.icon-clock { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M12 7v5l3 2'/%3E%3C/svg%3E"); }
.icon-map { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21s7-5.1 7-11a7 7 0 1 0-14 0c0 5.9 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2'/%3E%3C/svg%3E"); }
.icon-shield { background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23064f86' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M8 12l3 3 5-6'/%3E%3C/svg%3E"); }
.icon-phone { background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M22 16.9v3a2 2 0 0 1-2.2 2A19.8 19.8 0 0 1 11.2 19 19.5 19.5 0 0 1 5 12.8 19.8 19.8 0 0 1 2.1 4.2 2 2 0 0 1 4.1 2h3a2 2 0 0 1 2 1.7c.1 1 .4 2 .7 2.8a2 2 0 0 1-.4 2.1L8.1 9.9a16 16 0 0 0 6 6l1.3-1.3a2 2 0 0 1 2.1-.4c.9.3 1.8.6 2.8.7a2 2 0 0 1 1.7 2z'/%3E%3C/svg%3E"); }
.icon-whatsapp { background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 11.5a8 8 0 0 1-11.8 7L4 20l1.5-4.1A8 8 0 1 1 20 11.5z'/%3E%3Cpath d='M9 8.8c.2 3 2.2 5 5.2 5.2l1.1-1.1-1.9-1-1 1a4.8 4.8 0 0 1-2.3-2.3l1-1-1-1.9L9 8.8z'/%3E%3C/svg%3E"); }
.icon-mail { background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6h16v12H4z'/%3E%3Cpath d='M4 7l8 6 8-6'/%3E%3C/svg%3E"); }
.icon-globe { background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3c3 3 3 15 0 18M12 3c-3 3-3 15 0 18'/%3E%3C/svg%3E"); }

.accent .icon-sparkle,
.accent .icon-truck {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 7h11v9H3zM14 10h4l3 3v3h-7z'/%3E%3Ccircle cx='7' cy='18' r='2'/%3E%3Ccircle cx='18' cy='18' r='2'/%3E%3C/svg%3E");
}

.accent .icon-sparkle {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l1.8 5.2L19 10l-5.2 1.8L12 17l-1.8-5.2L5 10l5.2-1.8L12 3z'/%3E%3Cpath d='M5 17l.8 2.2L8 20l-2.2.8L5 23l-.8-2.2L2 20l2.2-.8L5 17z'/%3E%3C/svg%3E");
}

.service-card h3,
.process-step h3 {
  margin: 22px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.service-card p,
.process-step p,
.split-content p,
.faq-answer,
.contact-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-card.accent p {
  color: rgba(255, 255, 255, 0.78);
}

.split,
.proof,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.image-panel {
  position: relative;
}

.image-panel::before {
  position: absolute;
  inset: -20px auto auto -20px;
  width: 60%;
  height: 45%;
  border-radius: 8px;
  content: "";
  background: var(--cyan);
  opacity: 0.18;
}

.split-content p {
  margin-top: 20px;
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--blue-deep);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: inset 0 0 0 5px #dff7fc;
}

.process {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: linear-gradient(120deg, var(--blue-deep), var(--blue));
}

.process .section-kicker,
.process h2 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.process-step {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-step span {
  color: var(--cyan);
  font-size: 42px;
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-card {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-board {
  min-height: 420px;
  padding: 32px;
  border-radius: 8px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 86% 18%, rgba(42, 183, 215, 0.28), transparent 24%),
    linear-gradient(145deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow);
}

.service-board::before {
  position: absolute;
  inset: auto -80px -80px auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  content: "";
  background: rgba(255, 255, 255, 0.08);
}

.board-title {
  position: relative;
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 30px;
  font-weight: 900;
}

.board-title .service-icon {
  background-color: rgba(255, 255, 255, 0.16);
  filter: brightness(0) invert(1);
}

.board-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.board-grid span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.metrics-card {
  display: grid;
  gap: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.metric {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 4px 16px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 79, 134, 0.08);
}

.metric .service-icon {
  grid-row: 1 / 3;
}

.metric .icon-clock {
  background-color: var(--blue);
}

.metric strong {
  color: var(--blue-deep);
  font-size: 30px;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.testimonials {
  display: grid;
  gap: 16px;
}

.quote {
  padding: 24px;
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(6, 79, 134, 0.08);
}

.quote p {
  margin: 0 0 12px;
  color: var(--blue-deep);
  font-size: 18px;
  line-height: 1.55;
}

.quote strong {
  color: var(--blue);
}

.faq {
  padding-top: 20px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue-deep);
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 900;
  text-align: left;
}

.faq-item strong {
  color: var(--blue);
  font-size: 24px;
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
}

.faq-answer.open {
  display: block;
}

.contact {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 88% 22%, rgba(42, 183, 215, 0.2), transparent 28%),
    linear-gradient(90deg, rgba(247, 251, 254, 0.98), rgba(237, 246, 251, 0.94));
}

.contact-content p {
  max-width: 560px;
  margin-top: 18px;
  font-size: 18px;
}

.contact-links {
  margin-top: 28px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 6px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(6, 79, 134, 0.08);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 28px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-deep);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfdff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.address {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 32px max(20px, calc((100vw - 1180px) / 2));
  color: #fff;
  background: var(--blue-deep);
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer .brand-sub {
  display: none;
}

.reveal,
.reveal-item {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.75s ease,
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-item {
  transition-delay: calc(var(--reveal-order, 0) * 75ms);
}

.service-card.is-visible,
.process-step.is-visible,
.metric.is-visible,
.quote.is-visible {
  animation: soft-pop 0.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: calc(var(--reveal-order, 0) * 75ms);
}

.site-header.scrolled {
  box-shadow: 0 12px 36px rgba(6, 79, 134, 0.1);
}

@keyframes soft-pop {
  0% {
    transform: translateY(28px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .reveal-item {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .nav {
    gap: 16px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-phone {
    display: none;
  }

  .hero,
  .intro,
  .split,
  .proof,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    background:
      radial-gradient(circle at 18% 18%, rgba(42, 183, 215, 0.22), transparent 34%),
      linear-gradient(145deg, rgba(2, 31, 56, 0.98), rgba(6, 79, 134, 0.92));
  }

  .hero-visual {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-badge {
    min-width: 58px;
    padding: 8px 10px;
    font-size: 20px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .hero {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-pad {
    width: min(100% - 28px, 1180px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .services,
  .process,
  .contact {
    padding-right: 14px;
    padding-left: 14px;
  }

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

  .service-card,
  .process-step {
    min-height: auto;
  }

  .building-scene,
  .service-board {
    min-height: 340px;
  }

  .tower-one {
    left: 36px;
  }

  .tower-two {
    left: 126px;
  }

  .tower-three {
    left: 226px;
  }

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

  .hero-actions .btn,
  .contact-links a {
    width: 100%;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
