﻿:root {
  --navy: #1f3150;
  --navy-deep: #162744;
  --navy-soft: #edf4ff;
  --blue: #2f60bc;
  --text: #161920;
  --muted: #5f6470;
  --line: rgba(31, 49, 80, 0.12);
  --white: #ffffff;
  --radius-xl: 42px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --shadow-soft: 0 24px 60px rgba(18, 29, 48, 0.12);
  --shadow-glass: 0 30px 70px rgba(0, 0, 0, 0.22);
  --container: min(1460px, calc(100vw - 48px));
  --services-preview: 250px;
  --services-overflow-right: 260px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

main {
  margin-top: -50px;
}

p {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  color: #fff;
}

.btn::after {
  content: "";
  width: 11px;
  height: 12px;
  margin-left: 10px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82055 0.686492C9.78545 0.273768 9.42242 -0.0323581 9.00969 0.00273895L2.28397 0.574687C1.87124 0.609784 1.56512 0.972816 1.60022 1.38554C1.63531 1.79826 1.99834 2.10439 2.41107 2.06929L8.38949 1.56089L8.89789 7.53932C8.93299 7.95204 9.29602 8.25817 9.70874 8.22307C10.1215 8.18797 10.4276 7.82494 10.3925 7.41222L9.82055 0.686492ZM9.07324 0.750042L8.49988 0.266556L-0.000117258 10.3466L0.573242 10.8301L1.1466 11.3136L9.6466 1.23353L9.07324 0.750042Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(96.77deg, #1B2A4B 0%, #1E4B95 77.39%);
  color: var(--white);
  border-radius: 50px;
  box-shadow: 0 14px 30px rgba(30, 75, 149, 0.22);
}

.btn-dark {
  background: linear-gradient(96.77deg, #1B2A4B 0%, #1E4B95 77.39%);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(24, 64, 131, 0.34);
  background: linear-gradient(96.77deg, #3b78d8 0%, #23365d 77.39%);
  color: #fff;
}

.btn:hover::after {
  transform: translateX(2px) translateY(-1px);
  filter: brightness(0) invert(1);
}

.btn:hover,
.btn:hover span,
.btn:hover strong,
.btn:hover em,
.btn:hover b,
.btn:hover i {
  color: #fff !important;
}

.btn::after {
  transition: transform 0.25s ease;
}

.btn:active {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 8px 0 auto;
  z-index: 100;
}

.admin-bar .site-header {
  inset: 40px 0 auto;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    inset: 54px 0 auto;
  }
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 10px 14px 10px 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 30px rgba(23, 35, 58, 0.1);
}

.brand img {
  width: auto;
  max-width: 226px;
  max-height: 40px;
  transform: scale(1.25);
  padding-left: 15px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list,
.footer-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  font-size: 16px;
  font-weight: 500;
  color: #2f333b;
}

.nav-list a.is-active,
.nav-list a:hover {
  color: var(--blue);
}

.nav-list .current-menu-item > a,
.nav-list .current-menu-ancestor > a,
.nav-list .current-page-parent > a {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero-section {
  position: relative;
  min-height: 758px;
  padding: 152px 0 116px;
  overflow: hidden;
  background: url("../images/hero-banner.webp") center center / cover no-repeat;
  color: var(--white);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 31, 40, 0.34);
}

.hero-layout {
  position: static;
  z-index: 999;
  display: grid;
  grid-template-columns: minmax(0, 950px) 1fr;
  align-items: center;
  min-height: 470px;
}

.hero-content {
  z-index: 99;
  position: relative;
  min-width: 0;
}

.hero-kicker,
.section-intro h2,
.section-intro.split h2,
.faq-copy h2,
.contact-card h2 {
  font-family: "Open Sans", sans-serif;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-kicker {
  margin: 0 0 8px;
  font-size: 70px;
  font-weight: 700;
  line-height: 80px;
}

.hero-content h1 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 120px;
  font-weight: 800;
  line-height: 119px;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 606px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.hero-content .btn {
  margin-top: 28px;
}

.hero-scroll {
  position: absolute;
  top: 50%;
  right: 26px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  z-index: 3;
}

.hero-scroll a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
}

.hero-scroll span {
  position: relative;
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.hero-scroll span::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 49px;
  margin: 18px auto 0;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='49' viewBox='0 0 6 49' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle opacity='0.4' cx='2.67627' cy='46.5' r='2.5' fill='white'/%3E%3Cpath d='M2.6665 46.6667C4.13926 46.6667 5.33317 45.4728 5.33317 44C5.33317 42.5272 4.13926 41.3333 2.6665 41.3333C1.19375 41.3333 -0.000162565 42.5272 -0.00016284 44C-0.000163115 45.4728 1.19374 46.6667 2.6665 46.6667ZM2.6665 44L3.1665 44L3.16651 9.33852e-08L2.66651 0L2.16651 -9.33852e-08L2.1665 44L2.6665 44Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  bottom: -52px;
  right: 7px;
}

.hero-watermark {
  position: absolute;
  left: 0;
  bottom: -18px;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(110px, 13vw, 220px);
  line-height: 0.82;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-section,
.projects-section,
.faq-section {
  position: relative;
  padding: 118px 0;
  background: var(--white);
}

.trust-section {
  margin-top: -38px;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.section-intro {
  display: grid;
  gap: 18px;
  margin-bottom: 44px;
}

.section-intro.centered {
  justify-items: center;
  text-align: center;
}

.section-intro h2,
.faq-copy h2,
.contact-card h2 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: 70px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #121212;
}

.section-intro p,
.faq-copy p,
.contact-lead,
.contact-meta {
  margin: 0;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.section-intro.centered p {
  max-width: 1086px;
}

.trust-section .section-intro.centered h2 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: start;
}

.trust-image img,
.faq-image img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.trust-image img {
  min-height: 560px;
}

.trust-features {
  display: grid;
  gap: 0;
}

.feature-item {
  display: grid;
  grid-template-columns: 51px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 0 24px;
}

.feature-item:first-child {
  padding-top: 0;
}

.feature-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-item img {
  display: block;
  max-width: 47px;
  height: auto;
  width: 100% !important;
}

.feature-count {
  display: block;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #2E2E2E;
  border-bottom: 1px solid #00000030;
  padding-bottom: 13px;
}

.feature-body h3 {
  margin: 0 0 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 28px;
  line-height: 1.08;
  color: #171b22;
}

.feature-body p {
  margin: 0;
  color: var(--muted);
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
}

.services-section {
  padding: 118px 0 84px;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  background: var(--navy-deep);
  overflow: hidden;
}

.section-intro.split {
  grid-template-columns: 1.22fr 0.9fr;
  align-items: end;
}

.section-intro.split h2,
.section-intro.split p {
  color: var(--white);
}

.services-slider {
  position: relative;
  width: calc(100% + var(--services-overflow-right));
  margin-right: calc(var(--services-overflow-right) * -1);
}

.services-viewport {
  overflow: hidden;
}

.services-rail {
  --service-gap: 24px;
  display: flex;
  gap: var(--service-gap);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.service-card {
  position: relative;
  flex: 0 0 calc((100% - var(--services-preview) - (var(--service-gap) * 2)) / 3);
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #254372;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.service-card-base::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 24, 44, 0.04), rgba(9, 18, 34, 0.75));
}

.service-card-base,
.service-card-overlay {
  position: absolute;
  inset: 0;
}

.service-card-base {
  z-index: 1;
}

.service-card-title {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  line-height: 1.1;
  color: var(--white);
  text-align: center;
  transition: opacity 0.25s ease;
}

.service-card-overlay {
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(0deg, rgba(30, 75, 149, 0.9), rgba(30, 75, 149, 0.9));
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: var(--white);
  transform: translateY(18px);
  transition: transform 0.4s ease, opacity 0.35s ease;
  opacity: 0;
}

.service-card-content h3 {
  margin: 0 0 18px;
  font-family: "Open Sans", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.service-card-content p {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card:hover .service-card-title {
  opacity: 0;
}

.service-card:hover .service-card-content {
  transform: translateY(0);
  opacity: 1;
}

.rail-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 30px;
  width: 100%;
  margin-right: calc(var(--services-overflow-right) * -1);
}

.rail-line {
  flex: 1 1 auto;
  max-width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
}

.rail-progress-bar {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  transition: width 0.4s ease;
}

.rail-buttons {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.rail-arrow,
.ghost-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
  font-size: 22px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.rail-arrow.is-active,
.ghost-arrow.is-active {
  background: var(--white);
  color: #192131;
}

.rail-arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 24px rgba(9, 18, 34, 0.18);
}

.rail-arrow.is-active:hover {
  background: #eef5ff;
  border-color: #eef5ff;
  color: #192131;
  box-shadow: 0 12px 28px rgba(9, 18, 34, 0.2);
}

.projects-section {
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

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

.project-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  height: 500px;
}

.project-card-wide {
  grid-column: span 2;
}

.project-card-wide img {
  height: 500px;
}

.project-card h3 {
  margin: 18px 0 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 26px;
  line-height: 1;
}

.project-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 100%;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.project-card-wide p {
  max-width: 560px;
}

.project-card-accent {
  border-radius: var(--radius-lg);
  background: #fff;
}

.project-card-hidden {
  display: none;
}

.project-card-revealed {
  animation: projectCardReveal 0.45s ease both;
}

[data-projects-load-more].is-loading {
  pointer-events: none;
  opacity: 0.7;
}

@keyframes projectCardReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.testimonial-section {
  padding: 0 0 110px 0;
  background: linear-gradient(180deg, #EEF5FF 0%, rgba(238, 245, 255, 0) 100%);
  border-radius: 60px 60px 0px 0px;
  overflow: visible;
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 56px minmax(0, 920px) 56px;
  align-items: center;
  justify-content: center;
  gap: 36px;
  overflow: visible;
}

.testimonial-center {
  position: relative;
  min-width: 0;
  width: 100%;
}

.testimonial-content {
  position: relative;
  text-align: center;
  overflow: visible;
}

.testimonial-badge {
  width: 230px;
  margin: -25px auto 24px;
  height: auto;
  object-fit: contain;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  width: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

.testimonial-slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
}

.testimonial-quote {
  max-width: 920px;
  margin: 0 auto 18px;
  color: #1e2229;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.6;
}

.testimonial-content strong {
  display: block;
  color: var(--blue);
  font-size: 18px;
}

.testimonial-content span {
  color: var(--muted);
  font-size: 16px;
}

.ghost-arrow {
  border-color: rgba(31, 49, 80, 0.18);
  color: #9ea7b5;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.ghost-arrow:hover {
  background: #1f3150;
  border-color: #1f3150;
  color: #fff;
  transform: translateY(-1px);
}

.faq-section {
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.faq-item {
  overflow: hidden;
  border-radius: 0;
  background: var(--white);
  border: none;
  box-shadow: none;
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background-color 0.32s ease,
    transform 0.32s ease;
}

.faq-item.is-open {
  border-color: rgba(21, 28, 44, 0.04);
  background: #FFFFFF;
  box-shadow: 2px 5px 25px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  padding-bottom: 20px;
}

.faq-question {
  width: 100%;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 18px 18px 28px;
  border: 0;
  background: #fff;
  cursor: pointer;
  text-align: left;
  border-radius: 0 !important;
  border-bottom: 1px solid #E8E8E8;
}

.faq-question:hover {
  background: rgba(246, 249, 255, 0.78);
}

.faq-item.is-open .faq-question {
  background: transparent;
  border-color: #fff !important;
}

.faq-question-text {
  color: #191d24;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-icon {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(31, 49, 80, 0.16);
  background: #fff;
  color: #2f3647;
  position: relative;
  transition:
    transform 0.35s ease,
    background-color 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.faq-icon::before {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.81848 12.6368V0.99988M6.81848 0.99988L12.637 6.81836M6.81848 0.99988L1 6.81836' stroke='%232f3647' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(180deg);
  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.faq-item.is-open .faq-icon {
  background: #2d3350;
  border-color: #2d3350;
  color: var(--white);
  box-shadow: 0 10px 24px rgba(45, 51, 80, 0.2);
}

.faq-item.is-open .faq-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.81848 12.6368V0.99988M6.81848 0.99988L12.637 6.81836M6.81848 0.99988L1 6.81836' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transform: rotate(0deg);
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 28px;
  border-top: 1px solid transparent;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    padding 0.35s ease,
    border-color 0.35s ease;
  will-change: max-height;
}

.faq-item.is-open .faq-answer {
  opacity: 1;
  padding: 0 28px 22px;
  border-top-color: rgba(31, 49, 80, 0.08);
}

.faq-answer-inner {
  padding-top: 18px;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.faq-image img {
  min-height: 590px;
  border-radius: 28px;
}

.contact-section {
  padding: 100px 0 34px;
  background:
    linear-gradient(180deg, rgba(8, 13, 24, 0.08), rgba(8, 13, 24, 0.78)),
    url("../images/luxury-exterior-night.png") center center / cover no-repeat;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
}

.contact-card {
  margin: 0 auto;
  padding: 56px 52px 44px;
  border-radius: 40px;
  background: rgba(88, 82, 76, 0.25);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glass);
  color: var(--white);
  width: var(--container);
}

.contact-card h2 {
  color: var(--white);
  text-align: center;
}

.contact-lead,
.contact-meta {
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
}

.contact-lead {
  margin-top: 14px;
}

.contact-meta {
  margin-top: 10px;
}
.contact-meta a {
  color: inherit;
  text-decoration: none;
}

.contact-meta a:hover {
  color: #fff;
}
.contact-meta span {
  margin: 0 10px;
}

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

.gravity-form-shell {
  margin-top: 30px;
}

.gravity-form-shell .gform_wrapper.gravity-theme,
.gravity-form-shell .gform_wrapper.gform-theme {
  --gf-radius: 999px;
  --gf-color-primary: #1e4b95;
  --gf-color-primary-rgb: 30, 75, 149;
  --gf-color-primary-contrast: #fff;
  --gf-color-primary-contrast-rgb: 255, 255, 255;
  --gf-ctrl-border-color: rgba(255, 255, 255, 0.18);
  --gf-color-in-ctrl: rgba(255, 255, 255, 0.05);
  --gf-color-in-ctrl-rgb: 255, 255, 255;
  --gf-color-in-ctrl-contrast: #fff;
  --gf-color-in-ctrl-contrast-rgb: 255, 255, 255;
  --gf-color-in-ctrl-light: rgba(255, 255, 255, 0.18);
  --gf-color-in-ctrl-light-rgb: 255, 255, 255;
  --gf-color-in-ctrl-dark: rgba(255, 255, 255, 0.84);
  --gf-color-in-ctrl-dark-rgb: 255, 255, 255;
  --gf-ctrl-btn-border-radius: 999px;
}

.gravity-form-shell .gform_wrapper,
.gravity-form-shell .gform_wrapper form,
.gravity-form-shell .gform_wrapper.gravity-theme .gform-body,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_footer {
  margin: 0;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.gform-theme--foundation .gform_fields {
  -moz-column-gap: var(--gf-form-gap-x);
  column-gap: var(--gf-form-gap-x);
  row-gap: 25px;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield {
  margin: 0;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield--type-textarea {
  grid-column: 1 / -1;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform-body {
  padding: 0;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield.full-width,
.gravity-form-shell .gform_wrapper.gravity-theme .gfield--width-full,
.gravity-form-shell .gform_wrapper.gravity-theme .gfield textarea {
  grid-column: 1 / -1;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield_label,
label.gfield_label.gform-field-label,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_required_legend,
.gravity-form-shell .gravity-theme .gform_validation_errors,
.gravity-form-shell .gravity-theme .validation_message {
  display: none !important;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield input,
.gravity-form-shell .gform_wrapper.gravity-theme .gfield textarea,
.gravity-form-shell .gform_wrapper.gravity-theme .gfield select {
  margin: 0;
  box-shadow: none;
}

.gravity-form-shell .gform_wrapper.gravity-theme .ginput_container,
.gravity-form-shell .gform_wrapper.gravity-theme .gfield .ginput_container {
  margin: 0;
}

.gravity-form-shell .gform_wrapper.gravity-theme input[type="text"],
.gravity-form-shell .gform_wrapper.gravity-theme input[type="email"],
.gravity-form-shell .gform_wrapper.gravity-theme input[type="tel"],
.gravity-form-shell .gform_wrapper.gravity-theme textarea,
.gravity-form-shell .gform_wrapper.gravity-theme select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 15px 28px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
  appearance: none;
  box-shadow: none !important;
  outline: none !important;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
  width: 100% !important;
  min-width: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  padding: 15px 28px !important;
  height: 62px !important;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 26px !important;
}

.gravity-form-shell .gform_wrapper.gravity-theme input[type="text"],
.gravity-form-shell .gform_wrapper.gravity-theme input[type="email"],
.gravity-form-shell .gform_wrapper.gravity-theme input[type="tel"],
.gravity-form-shell .gform_wrapper.gravity-theme select {
  height: 62px;
  min-height: 62px;
}

.gravity-form-shell .gform_wrapper.gravity-theme textarea {
  min-height: 150px;
  padding-top: 20px;
  padding-right: 28px;
  padding-left: 28px;
  border-radius: 28px;
  resize: none;
  padding-bottom: 20px;
}

textarea#input_1_5 {
  width: 100% !important;
  min-width: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 35px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  padding: 24px 28px !important;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 26px !important;
}

.gravity-form-shell .gform_wrapper.gravity-theme input::placeholder,
.gravity-form-shell .gform_wrapper.gravity-theme textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.gravity-form-shell .gform_wrapper.gravity-theme input:focus,
.gravity-form-shell .gform_wrapper.gravity-theme textarea:focus,
.gravity-form-shell .gform_wrapper.gravity-theme select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.04);
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_footer {
  margin: 28px 0 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gform_footer.top_label {
  justify-content: center;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  min-width: 188px;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  background: linear-gradient(96.77deg, #1B2A4B 0%, #1E4B95 77.39%);
  box-shadow: 0 14px 30px rgba(30, 75, 149, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  appearance: none;
  -webkit-appearance: none;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_button::after {
  content: "";
  width: 11px;
  height: 12px;
  margin-left: 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82055 0.686492C9.78545 0.273768 9.42242 -0.0323581 9.00969 0.00273895L2.28397 0.574687C1.87124 0.609784 1.56512 0.972816 1.60022 1.38554C1.63531 1.79826 1.99834 2.10439 2.41107 2.06929L8.38949 1.56089L8.89789 7.53932C8.93299 7.95204 9.29602 8.25817 9.70874 8.22307C10.1215 8.18797 10.4276 7.82494 10.3925 7.41222L9.82055 0.686492ZM9.07324 0.750042L8.49988 0.266556L-0.000117258 10.3466L0.573242 10.8301L1.1466 11.3136L9.6466 1.23353L9.07324 0.750042Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_button,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_button:hover,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_button:focus {
  color: #fff !important;
}

.gravity-form-shell .gform_wrapper.gravity-theme input.gform_button.button,
.gravity-form-shell .gform_wrapper.gravity-theme input[type="submit"].gform_button,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_footer input[type="submit"] {
  width: auto !important;
  height: 52px !important;
  min-width: 188px !important;
  padding: 0 44px 0 30px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(96.77deg, #1B2A4B 0%, #1E4B95 77.39%) !important;
  background-image:
    url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82055 0.686503C9.78545 0.27378 9.42242 -0.0323467 9.00969 0.00275039L2.28397 0.574699C1.87124 0.609796 1.56512 0.972827 1.60022 1.38555C1.63531 1.79827 1.99834 2.1044 2.41107 2.0693L8.38949 1.56091L8.89789 7.53933C8.93299 7.95205 9.29602 8.25818 9.70874 8.22308C10.1215 8.18798 10.4276 7.82495 10.3925 7.41223L9.82055 0.686503ZM9.07324 0.750053L8.49988 0.266567L-0.000117258 10.3466L0.573242 10.8301L1.1466 11.3136L9.6466 1.23354L9.07324 0.750053Z' fill='white'/%3E%3C/svg%3E"),
    linear-gradient(96.77deg, #1B2A4B 0%, #1E4B95 77.39%) !important;
  background-repeat: no-repeat, no-repeat !important;
  background-position: calc(100% - 24px) center, center !important;
  background-size: 11px 12px, 100% 100% !important;
  box-shadow: 0 14px 30px rgba(30, 75, 149, 0.22) !important;
  color: #fff !important;
  font-family: "Poppins", sans-serif !important;
  font-style: normal;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 1 !important;
  text-align: center;
  cursor: pointer;
  position: relative;
}

input#gform_submit_button_1 {
  color: var(--white);
  box-shadow: rgba(30, 75, 149, 0.22) 0px 14px 30px;
  background-color: #1E4B95;
  border-radius: 50px;
  position: relative;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82055 0.686503C9.78545 0.27378 9.42242 -0.0323467 9.00969 0.00275039L2.28397 0.574699C1.87124 0.609796 1.56512 0.972827 1.60022 1.38555C1.63531 1.79827 1.99834 2.1044 2.41107 2.0693L8.38949 1.56091L8.89789 7.53933C8.93299 7.95205 9.29602 8.25818 9.70874 8.22308C10.1215 8.18798 10.4276 7.82495 10.3925 7.41223L9.82055 0.686503ZM9.07324 0.750053L8.49988 0.266567L-0.000117258 10.3466L0.573242 10.8301L1.1466 11.3136L9.6466 1.23354L9.07324 0.750053Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat no-repeat;
  background-position: 81% 50%;
  background-size: 11px;
  padding: 20px 58px;
  font-family: "Poppins", sans-serif;
}

input#gform_submit_button_1::after {
  content: "";
  width: 11px;
  height: 12px;
  margin-left: 10px;
  display: inline-block;
  background-image: url("data:image/svg+xml,%3Csvg width='11' height='12' viewBox='0 0 11 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.82055 0.686492C9.78545 0.273768 9.42242 -0.0323581 9.00969 0.00273895L2.28397 0.574687C1.87124 0.609784 1.56512 0.972816 1.60022 1.38554C1.63531 1.79826 1.99834 2.10439 2.41107 2.06929L8.38949 1.56089L8.89789 7.53932C8.93299 7.95204 9.29602 8.25817 9.70874 8.22307C10.1215 8.18797 10.4276 7.82494 10.3925 7.41222L9.82055 0.686492ZM9.07324 0.750042L8.49988 0.266556L-0.000117258 10.3466L0.573242 10.8301L1.1466 11.3136L9.6466 1.23353L9.07324 0.750042Z' fill='white'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  z-index: 1;
  background-position: center center;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gform_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(24, 64, 131, 0.34);
  background: linear-gradient(96.77deg, #3b78d8 0%, #23365d 77.39%);
}

.gravity-form-shell .gform_wrapper.gravity-theme input.gform_button.button:hover,
.gravity-form-shell .gform_wrapper.gravity-theme input[type="submit"].gform_button:hover,
.gravity-form-shell .gform_wrapper.gravity-theme .gform_footer input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(24, 64, 131, 0.34) !important;
  background: linear-gradient(96.77deg, #3b78d8 0%, #23365d 77.39%) !important;
}

.gravity-form-shell .gform_wrapper.gravity-theme .gfield_error [aria-invalid="true"] {
  border-color: rgba(255, 210, 210, 0.72);
  background: rgba(118, 32, 32, 0.12);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 18px;
}

.field {
  display: block;
}

.field input,
.field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 28px;
}

.field input {
  min-height: 62px;
}

.field textarea {
  min-height: 150px;
  padding-top: 20px;
  border-radius: 28px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.9);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  position: relative;
  z-index: 1;
  padding: 28px 0 0 0;
  margin-top: 50px;
  width: var(--container);
}

.footer-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='1466' height='6' viewBox='0 0 1466 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='0.23' d='M8.13007e-05 2.6665C8.1172e-05 4.13926 1.19399 5.33317 2.66675 5.33317C4.13951 5.33317 5.33341 4.13926 5.33341 2.6665C5.33341 1.19374 4.13951 -0.000162711 2.66675 -0.00016284C1.19399 -0.000162969 8.14295e-05 1.19374 8.13007e-05 2.6665ZM1460 2.66663C1460 4.13939 1461.19 5.3333 1462.67 5.3333C1464.14 5.3333 1465.33 4.13939 1465.33 2.66663C1465.33 1.19387 1464.14 -3.50739e-05 1462.67 -3.52026e-05C1461.19 -3.53314e-05 1460 1.19387 1460 2.66663ZM2.66675 2.6665L2.66675 3.1665L1462.67 3.16663L1462.67 2.66663L1462.67 2.16663L2.66675 2.1665L2.66675 2.6665Z' fill='white'/%3E%3C/svg%3E") center center / 100% 6px no-repeat;
  pointer-events: none;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  width: min(1920px, 165%);
  max-width: none;
  height: clamp(52px, 7vw, 132px);
  object-fit: contain;
  opacity: 1;
  pointer-events: none;
  z-index: 999999;
}

.footer-nav a,
.footer-copy {
  color: rgba(255, 255, 255, 0.96);
}

.footer-nav a {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 0.25s ease, opacity 0.25s ease;
  font-family: "Poppins", sans-serif;
}

.footer-nav a:hover {
  color: #7fb0ff;
  opacity: 1;
}

.footer-copy {
  margin: 0;
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
  transition: color 0.25s ease, opacity 0.25s ease;
  font-family: "Poppins", sans-serif;
}

.page-content {
  padding: 74px 0 90px;
}

.page-banner {
  position: relative;
  padding: 250px 0 88px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.page-banner-content {
  max-width: 820px;
  color: #fff;
}

.page-banner-kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-banner h1 {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 76px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.page-content .container {
  width: var(--container);
}

.page-content h1 {
  margin: 0 0 22px;
  font-family: "Open Sans", sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #121212;
}

.page-content h2 {
  margin: 34px 0 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #121212;
}

.page-content p {
  margin: 0 0 16px;
  color: var(--muted);
}


.editor-styles-wrapper .wp-block[data-type^="acf/stormguard-"] {
  max-width: none !important;
  width: 100%;
}

.editor-styles-wrapper .wp-block[data-type^="acf/stormguard-"] > .acf-block-component {
  width: 100%;
}

.editor-styles-wrapper .wp-block[data-type="acf/stormguard-trust"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-services"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-projects"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-testimonials"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-faq"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-contact"] .container,
.editor-styles-wrapper .wp-block[data-type="acf/stormguard-hero"] .container {
  width: min(100% - 40px, 1196px);
}

.editor-styles-wrapper .wp-block[data-type="acf/stormguard-trust"] .trust-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.editor-styles-wrapper .wp-block[data-type="acf/stormguard-trust"] .trust-features {
  min-width: 0;
}

.editor-styles-wrapper .wp-block[data-type="acf/stormguard-trust"] .feature-body {
  min-width: 0;
}
