:root {
  --bg: #f6faff;
  --bg-blue: #eaf5ff;
  --surface: #ffffff;
  --surface-blue: #f1f8ff;
  --text: #0b223f;
  --muted: #52677f;
  --line: #cfe0f2;
  --primary: #0b6fdc;
  --primary-dark: #074d9f;
  --primary-soft: #dff0ff;
  --cyan: #19a9e5;
  --success: #0c8f6d;
  --shadow: 0 18px 40px rgba(19, 86, 160, 0.13);
  --shadow-soft: 0 10px 26px rgba(17, 88, 165, 0.09);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body::selection {
  background: var(--primary);
  color: #fff;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

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

.section-blue {
  background:
    linear-gradient(135deg, rgba(236, 247, 255, 0.96), rgba(255, 255, 255, 0.94)),
    repeating-linear-gradient(90deg, rgba(11, 111, 220, 0.08) 0 1px, transparent 1px 72px);
}

.section-soft {
  background: #fff;
}

.section-offer {
  background: linear-gradient(180deg, #f6faff 0%, #eaf5ff 100%);
}

.eyebrow {
  margin: 0 0 .65rem;
  color: var(--primary);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  font-family: "Sora", "Inter", sans-serif;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  max-width: 10ch;
  font-size: 3rem;
  font-weight: 800;
}

h2 {
  font-size: 1.85rem;
  font-weight: 800;
}

h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(207, 224, 242, 0.72);
  backdrop-filter: blur(12px);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 26px rgba(18, 83, 153, 0.1);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  color: #073d82;
  font-weight: 800;
  line-height: 1.1;
}

.brand-logo {
  width: min(48vw, 210px);
  height: auto;
  max-height: 70px;
  object-fit: contain;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.2rem;
  color: #2f5b89;
  font-size: .95rem;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: .45rem 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .18rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 2.4rem;
  padding: .45rem .75rem;
  border: 1px solid rgba(11, 111, 220, .28);
  border-radius: 999px;
  color: var(--primary-dark);
  background: #fff;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}

.header-call svg {
  width: .95rem;
  height: .95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: 4.6rem 0 3.5rem;
  background:
    linear-gradient(135deg, #ffffff 0%, #f4faff 52%, #e7f4ff 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--cyan), var(--primary));
  background-size: 200% 100%;
  animation: waterSweep 7s linear infinite;
  z-index: -1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .5;
  background:
    linear-gradient(90deg, rgba(11, 111, 220, .08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 111, 220, .06) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(110deg, transparent 0%, #000 20%, #000 85%, transparent 100%);
  animation: gridDrift 18s linear infinite;
  z-index: -1;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}

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

.hero-lead {
  max-width: 57ch;
  font-size: clamp(1.02rem, 3vw, 1.18rem);
  color: #2d4e73;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem;
}

.hero-actions {
  margin-top: 1.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 2.85rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .78rem 1.08rem;
  font: inherit;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn svg,
.trust-card svg,
.contact-list svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #058dd7);
  box-shadow: 0 14px 24px rgba(11, 111, 220, 0.27);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(11, 111, 220, 0.34);
}

.btn-secondary {
  color: var(--primary-dark);
  background: #fff;
  border-color: rgba(11, 111, 220, .32);
}

.btn-ghost {
  color: #124d91;
  background: rgba(255, 255, 255, .78);
  border-color: rgba(11, 111, 220, .22);
}

.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.35rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border: 1px solid #c9dff4;
  border-radius: 999px;
  padding: .38rem .68rem;
  color: #164f90;
  background: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 800;
}

.hero-media {
  position: relative;
  border: 1px solid #c2d9ef;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-strip {
  position: absolute;
  left: .75rem;
  right: .75rem;
  bottom: .75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem;
}

.service-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .32rem;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 999px;
  padding: .5rem .35rem;
  color: #fff;
  background: rgba(5, 39, 76, .7);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 800;
}

.service-strip svg {
  width: .86rem;
  height: .86rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 30px;
  height: 46px;
  border: 2px solid rgba(11, 111, 220, .38);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 5px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
  animation: scrollNudge 2s ease-in-out infinite;
}

.section-heading,
.section-copy {
  max-width: 720px;
}

.section-heading {
  margin-bottom: 1.55rem;
}

.service-grid,
.trust-grid,
.gallery-grid,
.stat-grid {
  display: grid;
  gap: .9rem;
}

.service-card,
.trust-card,
.contact-info,
.contact-panel,
.offer-card,
.stat-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card {
  position: relative;
  min-height: 100%;
  padding: 1.1rem;
  overflow: hidden;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--cyan));
}

.service-card:hover,
.service-card:focus-within,
.trust-card:hover,
.trust-card:focus-within {
  border-color: rgba(11, 111, 220, .38);
  box-shadow: 0 18px 36px rgba(15, 83, 160, .15);
  transform: translateY(-5px);
}

.service-card img {
  width: 58px;
  height: 58px;
  margin-bottom: .85rem;
}

.about-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

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

.stat-grid article {
  padding: 1rem;
}

.stat-grid strong {
  display: block;
  color: var(--primary-dark);
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: .45rem;
  color: #42617f;
  font-size: .86rem;
  font-weight: 800;
}

.gallery-grid {
  align-items: stretch;
}

.gallery-item {
  position: relative;
  min-height: 0;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #d9ecff;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  overflow: hidden;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.gallery-wide img {
  aspect-ratio: 16 / 11;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.04) contrast(1.02);
}

.trust-card {
  padding: 1rem;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.trust-card svg {
  width: 2.15rem;
  height: 2.15rem;
  margin-bottom: .8rem;
  border-radius: var(--radius);
  padding: .52rem;
  color: var(--primary);
  background: var(--primary-soft);
}

.contact-section {
  background:
    linear-gradient(180deg, #f6faff 0%, #ffffff 100%);
}

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

.contact-info,
.contact-panel {
  padding: 1.15rem;
}

.contact-list {
  display: grid;
  gap: .68rem;
  margin: 1.1rem 0 1.2rem;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: .62rem;
  color: #244c76;
  overflow-wrap: anywhere;
}

.contact-list svg {
  width: 1.08rem;
  height: 1.08rem;
  margin-top: .22rem;
  color: var(--primary);
}

.contact-list a {
  color: var(--primary-dark);
  font-weight: 800;
}

label {
  display: block;
  margin: 0 0 .32rem;
  color: #1b4168;
  font-size: .88rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  margin: 0 0 .85rem;
  border: 1px solid #bdd5ee;
  border-radius: var(--radius);
  padding: .78rem .84rem;
  background: #fbfdff;
  color: #0f355c;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.btn:focus-visible,
.main-nav a:focus-visible,
.gallery-item:focus-visible,
.header-call:focus-visible,
.brand:focus-visible,
.mobile-cta a:focus-visible,
.lightbox-close:focus-visible {
  outline: 3px solid rgba(25, 169, 229, .42);
  outline-offset: 3px;
}

.form-note {
  margin: .75rem 0 0;
  font-size: .86rem;
}

.map-wrap {
  margin-top: 1rem;
}

.map-wrap iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.offer-card {
  display: grid;
  gap: 1rem;
  padding: 1.2rem;
  background:
    linear-gradient(135deg, #ffffff 0%, #f2f9ff 70%, #e4f2ff 100%);
}

.offer-kicker {
  margin-bottom: .45rem;
  color: var(--primary);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.offer-card ul {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding-left: 1.1rem;
  color: #285980;
  font-weight: 700;
}

.site-footer {
  padding: 2.2rem 0 6rem;
  background: #072b55;
  color: #d6e9ff;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.site-footer h3 {
  color: #fff;
}

.site-footer p,
.site-footer a {
  margin-bottom: .35rem;
  color: #d6e9ff;
}

.site-footer a {
  font-weight: 800;
}

.site-footer .footer-social-link {
  display: inline-grid;
  place-items: center;
  width: 2.7rem;
  height: 2.7rem;
  margin-bottom: 0;
  border: 1px solid rgba(214, 233, 255, .32);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(214, 233, 255, .62);
  background: rgba(255, 255, 255, .14);
}

.footer-social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: currentColor;
}

.footer-bottom {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(214, 233, 255, .18);
  text-align: center;
}

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

.mobile-cta {
  position: fixed;
  left: .65rem;
  right: .65rem;
  bottom: .65rem;
  z-index: 140;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(178, 218, 255, .55);
  border-radius: 999px;
  background: rgba(6, 43, 85, .96);
  box-shadow: 0 18px 36px rgba(2, 24, 54, .42);
}

.mobile-cta a {
  display: grid;
  gap: .18rem;
  align-content: center;
  justify-items: center;
  min-height: 3.35rem;
  padding: .48rem .35rem;
  color: #fff;
  font-size: .77rem;
  font-weight: 800;
}

.mobile-cta a + a {
  border-left: 1px solid rgba(210, 234, 255, .24);
}

.mobile-cta svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(3, 20, 42, .88);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(94vw, 1120px);
  max-height: 84vh;
  border-radius: var(--radius);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(201, 230, 255, .58);
  border-radius: 999px;
  color: #fff;
  background: rgba(8, 49, 94, .86);
  cursor: pointer;
}

.lightbox-close svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

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

@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 62px 62px, 62px 62px; }
}

@keyframes waterSweep {
  from { background-position: 0 0; }
  to { background-position: 200% 0; }
}

@keyframes scrollNudge {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: .15; }
  100% { transform: translate(-50%, 0); opacity: 1; }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 1.2rem, var(--container));
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero {
    padding: 2.6rem 0 2.2rem;
  }

  .hero-grid {
    gap: 1.1rem;
  }

  h1 {
    max-width: 10ch;
    font-size: 2.85rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    gap: .55rem;
    margin-top: 1rem;
  }

  .hero-proof,
  .scroll-cue {
    display: none;
  }

  .hero-media img {
    height: 190px;
    aspect-ratio: auto;
  }

  .service-strip {
    display: none;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .header-call span {
    display: none;
  }
}

@media (min-width: 720px) {
  .main-nav {
    display: flex;
  }

  .hero {
    padding: 4rem 0 1rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 4rem;
  }

  h2 {
    font-size: 2.45rem;
  }

  .stat-grid strong {
    font-size: 2.35rem;
  }

  .hero-grid,
  .about-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
    gap: 1.5rem;
  }

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

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

  .gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.1fr .9fr .9fr;
  }

  .offer-card {
    grid-template-columns: 1.1fr .95fr auto;
    align-items: center;
    padding: 1.55rem;
  }
}

@media (min-width: 1040px) {
  .section {
    padding: 5.3rem 0;
  }

  .hero-grid {
    grid-template-columns: .92fr 1.08fr;
    gap: 2.2rem;
  }

  h1 {
    font-size: 4.65rem;
  }

  h2 {
    font-size: 2.9rem;
  }

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

  .mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
