:root {
  --ink: #071426;
  --ink-2: #13233a;
  --muted: #5f6c7f;
  --line: #dce5f2;
  --soft: #f5f8fc;
  --soft-2: #eef4fb;
  --white: #ffffff;
  --blue: #0758d8;
  --blue-2: #0043b4;
  --blue-3: #dceaff;
  --navy: #03111f;
  --navy-2: #071b31;
  --success: #16a36c;
  --shadow: 0 22px 55px rgba(8, 28, 57, 0.12);
  --shadow-blue: 0 18px 42px rgba(7, 88, 216, 0.28);
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(7, 88, 216, 0.08), transparent 26rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 52%, #ffffff 100%);
  font-family: "Outfit", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(7, 20, 38, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 20, 38, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 62%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(7, 88, 216, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 50;
  transform: translateY(-140%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.topbar {
  background: var(--navy);
  color: #eaf3ff;
  font-size: 0.9rem;
}

.topbar__inner {
  min-height: 46px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.topbar__group,
.meta-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.meta-link {
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.icon {
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 2.1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(7, 20, 38, 0.08), 0 12px 28px rgba(7, 20, 38, 0.06);
  backdrop-filter: blur(18px);
}

.nav-shell {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: max-content;
}

.brand__mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 4px solid currentColor;
  border-radius: 17px;
  transform: rotate(30deg);
  box-shadow: inset 0 0 0 5px #fff, 0 12px 25px rgba(7, 88, 216, 0.16);
}

.brand__mark span {
  transform: rotate(-30deg);
  font-size: 1.75rem;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.brand__text {
  line-height: 1;
}

.brand__text strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.brand__text span {
  display: block;
  margin-top: 0.16rem;
  color: #586476;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.55rem;
  font-weight: 700;
  color: var(--ink);
}

.nav a {
  position: relative;
  padding: 0.9rem 0;
  font-size: 0.98rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.35rem;
  height: 3px;
  border-radius: 99px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.86rem 1.3rem;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 800;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn--primary {
  color: var(--white);
  background: linear-gradient(180deg, #0965f0, var(--blue-2));
  box-shadow: var(--shadow-blue);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #0a6dff, #034fcf);
}

.btn--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn--light {
  color: var(--blue);
  background: var(--white);
  box-shadow: 0 14px 35px rgba(7, 20, 38, 0.12);
}

.hero {
  position: relative;
  min-height: 560px;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  background: var(--navy);
}

.hero--sub {
  min-height: 430px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 17, 31, 0.94) 0%, rgba(3, 17, 31, 0.78) 42%, rgba(3, 17, 31, 0.22) 100%),
    linear-gradient(180deg, rgba(3, 17, 31, 0.25), rgba(3, 17, 31, 0.84));
}

.hero__inner {
  min-height: inherit;
  display: grid;
  align-items: center;
  padding: 5.5rem 0 8rem;
}

.hero--sub .hero__inner {
  padding-bottom: 5.5rem;
}

.hero__content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 4px;
  border-radius: 99px;
  background: currentColor;
}

.hero .eyebrow {
  color: #2f82ff;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
.display {
  font-size: clamp(2.85rem, 7vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero__lead {
  max-width: 520px;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 3.5rem 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.84), rgba(255, 255, 255, 0.94));
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-head h2,
.split__copy h2,
.page-title {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-head p,
.split__copy p,
.page-intro {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.05rem;
}

.service-preview {
  position: relative;
  z-index: 3;
  margin-top: -4.7rem;
}

.cards-4,
.service-grid,
.values-grid,
.contact-grid,
.testimonial-grid,
.brand-grid,
.quick-grid {
  display: grid;
  gap: 1.25rem;
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.service-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid rgba(222, 232, 245, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 65px rgba(8, 28, 57, 0.16);
}

.service-card__image {
  position: relative;
  z-index: 1;
  height: 136px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: -28px auto 1.1rem;
  border: 5px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(180deg, #0965f0, var(--blue-2));
  box-shadow: 0 13px 30px rgba(7, 88, 216, 0.35);
}

.service-card__body {
  padding: 0 1.55rem 1.65rem;
  text-align: center;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
  line-height: 1.14;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.split__copy {
  display: grid;
  gap: 1.25rem;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin: 1.1rem 0 0.4rem;
}

.mini-feature {
  padding-right: 0.8rem;
  border-right: 1px solid var(--line);
}

.mini-feature:last-child {
  border-right: 0;
}

.mini-feature .icon-wrap,
.icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(7, 88, 216, 0.2);
  border-radius: 50%;
  color: var(--blue);
  background: var(--white);
}

.mini-feature strong {
  display: block;
  max-width: 13ch;
  font-size: 0.88rem;
  line-height: 1.3;
}

.image-panel {
  position: relative;
}

.image-panel > img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  width: min(270px, 72%);
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(180deg, #0965f0, var(--blue-2));
  box-shadow: var(--shadow-blue);
}

.stat-card strong {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-card span {
  display: block;
  margin-top: 0.45rem;
  font-weight: 700;
}

.quick-strip {
  padding: 1.4rem;
  border: 1px solid rgba(222, 232, 245, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(8, 28, 57, 0.07);
  backdrop-filter: blur(14px);
}

.quick-strip h2 {
  margin-bottom: 1rem;
  color: var(--blue);
  font-size: 1rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-grid {
  grid-template-columns: repeat(5, 1fr);
}

.quick-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 72px;
  padding: 0.85rem 1rem;
  border-right: 1px solid var(--line);
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item strong {
  font-size: 0.93rem;
  line-height: 1.3;
}

.brand-band {
  text-align: center;
}

.brand-grid {
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  align-items: center;
  margin-top: 1.2rem;
}

.brand-logo {
  display: grid;
  place-items: center;
  min-height: 78px;
  padding: 1rem;
}

.brand-logo img {
  max-height: 56px;
  object-fit: contain;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.quote-card,
.value-card,
.info-card,
.process-card {
  border: 1px solid rgba(222, 232, 245, 0.96);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(8, 28, 57, 0.08);
}

.quote-card {
  min-height: 170px;
  padding: 1.45rem;
}

.stars {
  color: var(--blue);
  letter-spacing: 0.08em;
}

.quote-card p {
  margin: 0.7rem 0 1rem;
  color: var(--ink-2);
}

.quote-card cite {
  font-style: normal;
  font-weight: 800;
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-tile {
  display: grid;
  grid-template-rows: 220px auto;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-tile__body {
  padding: 1.45rem;
}

.service-tile h3 {
  margin-bottom: 0.55rem;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.service-tile p {
  color: var(--muted);
}

.values-grid {
  grid-template-columns: repeat(3, 1fr);
}

.value-card,
.process-card,
.info-card {
  padding: 1.45rem;
}

.value-card h3,
.process-card h3,
.info-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}

.value-card p,
.process-card p,
.info-card p {
  color: var(--muted);
}

.dark-panel {
  overflow: hidden;
  border-radius: calc(var(--radius) + 6px);
  color: var(--white);
  background:
    radial-gradient(circle at 78% 24%, rgba(7, 88, 216, 0.44), transparent 26rem),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}

.dark-panel__inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.dark-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.dark-panel img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.contact-grid {
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
}

.contact-stack {
  display: grid;
  gap: 1rem;
}

.info-card a {
  color: var(--blue);
  font-weight: 800;
}

.booking-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--ink-2);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #fbfdff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
  min-height: 132px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(7, 88, 216, 0.65);
  box-shadow: 0 0 0 4px rgba(7, 88, 216, 0.1);
  outline: none;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.8rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0e6748;
  background: rgba(22, 163, 108, 0.12);
}

.form-status.is-error {
  color: #9e1f2d;
  background: rgba(204, 45, 65, 0.1);
}

.map-card {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 88, 216, 0.13), rgba(255, 255, 255, 0.1)),
    url("/wp-content/uploads/2019/12/home.jpg") center / cover;
  box-shadow: var(--shadow);
}

.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 17, 31, 0.9), rgba(3, 17, 31, 0.24));
}

.map-card__content {
  position: relative;
  z-index: 1;
  max-width: 380px;
  padding: 2rem;
  color: var(--white);
}

.footer {
  color: #d8e6f6;
  background:
    radial-gradient(circle at 14% 20%, rgba(7, 88, 216, 0.22), transparent 22rem),
    var(--navy);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 3rem 0 2.25rem;
}

.footer h3 {
  margin: 0 0 0.9rem;
  color: var(--white);
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer p,
.footer li,
.footer a {
  color: rgba(216, 230, 246, 0.84);
  font-size: 0.95rem;
}

.footer ul {
  display: grid;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .brand__text strong,
.footer .brand__text span {
  color: var(--white);
}

.socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
}

.socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 800;
}

.footer__bottom {
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(216, 230, 246, 0.76);
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  gap: 1rem;
  float: right;
}

@media (max-width: 1080px) {
  .cards-4,
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-item {
    border-right: 0;
  }

  .service-grid,
  .testimonial-grid,
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .topbar__inner {
    justify-content: center;
  }

  .topbar__group:last-child {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.6rem);
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: grid;
  }

  .header-actions .btn {
    display: none;
  }

  .nav-shell {
    min-height: 84px;
  }

  .split,
  .split--reverse,
  .dark-panel__inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 1.1rem, var(--max));
  }

  .topbar {
    display: none;
  }

  .brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .brand__text strong {
    font-size: 1.25rem;
  }

  .brand__text span {
    font-size: 0.75rem;
  }

  .hero,
  .hero--sub {
    min-height: 520px;
  }

  .hero__inner {
    padding: 4rem 0 6.5rem;
  }

  .hero__actions,
  .form-grid,
  .legal-links {
    display: grid;
  }

  .cards-4,
  .service-grid,
  .testimonial-grid,
  .values-grid,
  .brand-grid,
  .feature-row,
  .quick-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .service-preview {
    margin-top: -3.2rem;
  }

  .mini-feature {
    border-right: 0;
  }

  .stat-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -1.5rem;
  }

  .image-panel > img,
  .dark-panel img {
    min-height: 300px;
  }

  .footer__bottom {
    display: grid;
    gap: 0.8rem;
  }

  .legal-links {
    float: none;
  }
}
