/* SD Exterior Cleaning mockup-derived frontend CSS. */
/* Source: mockup-blended/styles.css */
:root {
  --navy: #071b2d;
  --navy-2: #0a2740;
  --blue: #16a9e7;
  --blue-deep: #0877be;
  --green: #9bdc45;
  --ink: #071827;
  --muted: #637284;
  --line: #dfe8ef;
  --white: #ffffff;
  --soft: #f3f8fb;
  --shadow: 0 24px 80px rgba(3, 18, 31, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.hero {
  position: relative;
  color: var(--white);
  background: radial-gradient(
      circle at 72% 18%,
      rgba(22, 169, 231, 0.22),
      transparent 24rem
    ),
    linear-gradient(135deg, var(--navy) 0%, #09253e 52%, #061523 100%);
  padding: 26px clamp(22px, 4vw, 72px) 44px;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 75%);
}

.site-header,
.hero-grid,
.trust-strip {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: block;
  width: 208px;
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a[aria-current='page'] {
  color: var(--blue);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #041725;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(155, 220, 69, 0.28);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5.4vw, 86px);
  align-items: center;
  padding: 30px 0 54px;
}

.service-area {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 13px 9px 15px;
  color: #dff7ff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(
    calc(3.6rem - 10px),
    calc(7.1vw - 10px),
    calc(6.85rem - 10px)
  );
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 600px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 34px;
}

.secondary-button {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-media {
  min-width: 0;
}

.image-stage {
  position: relative;
  isolation: isolate;
}

.image-stage::before,
.image-stage::after {
  position: absolute;
  content: '';
  border-radius: 8px;
  pointer-events: none;
}

.image-stage::before {
  top: -22px;
  right: 26px;
  bottom: 32px;
  left: 34px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.image-stage::after {
  right: -18px;
  bottom: -18px;
  width: 42%;
  height: 40%;
  z-index: -1;
  background: var(--blue);
}

.main-photo-crop {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

.result-note {
  position: absolute;
  left: -22px;
  bottom: 30px;
  width: min(280px, 46%);
  padding: 18px 18px 20px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(5, 18, 31, 0.22);
}

.result-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-deep);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-note strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.16;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.trust-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 22px;
  background: rgba(3, 20, 34, 0.64);
  backdrop-filter: blur(14px);
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--blue);
  background: rgba(22, 169, 231, 0.12);
  border: 1px solid rgba(22, 169, 231, 0.34);
  border-radius: 8px;
}

.trust-icon svg {
  display: block;
  width: 34px;
  height: 34px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.trust-item strong,
.trust-item div span {
  display: block;
}

.trust-item strong {
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-item div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.home-services {
  background: #ffffff;
  padding: 58px clamp(22px, 5vw, 76px) 58px;
}

.home-services-inner {
  max-width: 1210px;
  margin: 0 auto;
}

.section-label {
  margin: 0 0 13px;
  color: #0077d9;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-services h2 {
  max-width: none;
  margin: 0;
  color: #09233d;
  font-size: clamp(2rem, 3.3vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.services-intro {
  max-width: none;
  margin: 16px 0 34px;
  color: #435163;
  font-size: 1rem;
  line-height: 1.45;
}

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

.cleaning-card {
  overflow: hidden;
  min-height: 288px;
  background: #f8fbff;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(6, 28, 49, 0.08);
}

.cleaning-image {
  height: 164px;
  overflow: hidden;
}

.cleaning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.window-cleaning-photo {
  object-position: center 42%;
}

.cleaning-body {
  position: relative;
  min-height: 124px;
  padding: 24px 20px 22px;
  background: #ffffff;
}

.cleaning-body h3 {
  margin: 0 0 8px;
  color: #09233d;
  font-size: 1.34rem;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.cleaning-body p {
  margin: 0;
  color: #2f3b49;
  font-size: 0.92rem;
  line-height: 1.28;
}

.arrow {
  position: absolute;
  right: 22px;
  bottom: 26px;
  width: 24px;
  height: 24px;
  color: #09233d;
}

.arrow svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer {
  color: #ffffff;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(22, 169, 231, 0.24),
      transparent 30rem
    ),
    linear-gradient(135deg, #061a2c 0%, #082f4c 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 295px) max-content max-content max-content;
  justify-content: space-between;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 36px clamp(22px, 4vw, 48px) 28px;
}

.footer-brand img {
  width: 172px;
  height: auto;
  margin-bottom: 17px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-brand p {
  max-width: 295px;
  margin: 0 0 22px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 6px;
}

.footer-column p {
  margin: 0;
}

.trusted p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
}

.trusted svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trusted p:nth-of-type(1) svg {
  color: #ffffff;
}

.trusted p:nth-of-type(2) svg {
  color: #ffffff;
}

.trusted p:nth-of-type(3) svg {
  color: #8bea75;
}

.trusted .social-links {
  margin-top: 20px;
}

.trusted .social-links svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px clamp(22px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 46px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .brand {
    width: 180px;
  }

  .nav-links {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 46px;
  }

  .hero h1,
  .hero-intro {
    max-width: 820px;
  }

  .hero-media {
    max-width: 800px;
  }

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

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

@media (max-width: 760px) {
  .hero {
    padding: 18px 18px 32px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 158px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    gap: 30px;
    padding: 38px 0 34px;
  }

  .hero h1 {
    font-size: clamp(
      calc(2.65rem - 10px),
      calc(15vw - 10px),
      calc(4rem - 10px)
    );
  }

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

  .hero-actions {
    display: grid;
  }

  .image-stage::before,
  .image-stage::after,
  .result-note {
    display: none;
  }

  .main-photo-crop {
    aspect-ratio: 1 / 0.86;
    border-width: 6px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 94px;
  }

  .home-services {
    padding: 50px 18px 54px;
  }

  .cleaning-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .cleaning-image {
    height: 178px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    gap: 24px;
  }
}

/* Final homepage mobile override: keep the hero trust cards stacked after merged mockup rules. */
@media (max-width: 760px) {
  .sdec-page-home .hero .trust-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .sdec-page-home .hero .trust-item {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .sdec-page-home .hero .trust-item > div {
    min-width: 0;
  }

  .sdec-page-home .hero .trust-item strong {
    overflow-wrap: anywhere;
  }

  .sdec-page-contact .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sdec-page-contact .contact-panel {
    min-width: 0;
  }

  .sdec-page-contact .contact-method {
    grid-template-columns: 52px minmax(0, 1fr);
    min-width: 0;
  }

  .sdec-page-contact .contact-method > span:not(.method-icon),
  .sdec-page-contact .contact-method small {
    min-width: 0;
    max-width: 100%;
  }

  .sdec-page-contact .contact-method small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 760px) {
  .sdec-page-home .hero .trust-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .sdec-page-home .hero .trust-item {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .sdec-page-home .hero .trust-item > div {
    min-width: 0;
  }

  .sdec-page-home .hero .trust-item strong {
    overflow-wrap: anywhere;
  }

  .sdec-page-contact .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sdec-page-contact .contact-panel {
    min-width: 0;
  }

  .sdec-page-contact .contact-method {
    grid-template-columns: 52px minmax(0, 1fr);
    min-width: 0;
  }

  .sdec-page-contact .contact-method > span:not(.method-icon),
  .sdec-page-contact .contact-method small {
    min-width: 0;
    max-width: 100%;
  }

  .sdec-page-contact .contact-method small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mobile-menu {
    display: block;
    justify-self: end;
  }

  .mobile-menu-toggle {
    display: grid;
    align-content: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
  }

  .mobile-menu[open] .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.14);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    z-index: 20;
    display: grid;
    min-width: min(270px, calc(100vw - 36px));
    padding: 12px;
    color: #ffffff;
    background: #071b2d;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 46px rgba(3, 18, 31, 0.28);
  }

  .mobile-nav a {
    padding: 13px 12px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--blue);
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav .mobile-nav-cta {
    margin-top: 6px;
    color: #041725;
    background: var(--green);
    text-align: center;
  }
}

/* WordPress integration fixes for class names shared across separate mockups. */
.sdec-page-home .hero .trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
  padding: 0;
}

.sdec-page-home .hero .trust-item {
  background: rgba(3, 20, 34, 0.64);
}

.sdec-page-home .hero .trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-top: 0;
  color: var(--blue);
  background: rgba(22, 169, 231, 0.12);
  border-color: rgba(22, 169, 231, 0.34);
  border-radius: 8px;
}

.sdec-page-home .hero .trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.sdec-page-home .hero .trust-item strong {
  color: #ffffff;
  font-size: 0.94rem;
  letter-spacing: 0.04em;
  line-height: normal;
  text-transform: uppercase;
}

.sdec-page-home .hero .trust-item div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.35;
}

.sdec-page-home .home-services .services-intro {
  max-width: none;
  margin: 16px 0 34px;
  padding: 0;
  color: #435163;
  background: transparent;
  font-size: 1rem;
  line-height: 1.45;
}

.default-page-intro {
  padding: 58px clamp(22px, 5vw, 76px) 24px;
  background: var(--white);
}

.default-page-intro-inner,
.default-page-content {
  max-width: 1320px;
  margin-inline: auto;
}

.default-page-intro h1 {
  max-width: 1180px;
  margin: 0;
  color: #09233d;
  font-size: clamp(2.65rem, 3.8vw, 3.75rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.default-page-content-section {
  padding: 18px clamp(22px, 5vw, 76px) 58px;
  background: var(--white);
}

.default-page-content {
  max-width: 1320px;
  color: #2f3b49;
  font-size: 1.05rem;
  line-height: 1.62;
}

.default-page-content > * {
  width: 100%;
  max-width: none;
}

.default-page-content > *:first-child {
  margin-top: 0;
}

.default-page-content > *:last-child {
  margin-bottom: 0;
}

.default-page-content h2,
.default-page-content h3,
.default-page-content h4 {
  color: #09233d;
  letter-spacing: 0;
}

.default-page-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.85rem, 2.4vw, 2.45rem);
  line-height: 1;
}

.default-page-content h3 {
  margin: 28px 0 12px;
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  line-height: 1.08;
}

.default-page-content p,
.default-page-content ul,
.default-page-content ol {
  margin: 0 0 18px;
}

.default-page-content ul,
.default-page-content ol {
  padding-left: 1.35rem;
}

.default-page-content li + li {
  margin-top: 8px;
}

.default-page-content a:not(.wp-block-button__link) {
  color: var(--blue-deep);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.default-page-content .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #041725;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(155, 220, 69, 0.28);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.default-page-content figure {
  margin: 28px 0;
}

.default-page-content img {
  border-radius: 8px;
}

.default-page-content figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.default-page-content .wp-block-quote {
  margin: 30px 0;
  padding: 24px 28px;
  background: #f8fbff;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
}

.default-page-content table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.default-page-content th,
.default-page-content td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.default-page-content th {
  color: #09233d;
  background: #f8fbff;
}

.sdec-page-contact .trust-section .trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: none;
}

.sdec-page-contact .trust-section .trust-strip strong {
  color: #09233d;
  font-size: 1.5rem;
  line-height: 1.08;
}

.sdec-page-contact .trust-section .trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.sdec-page-contact .trust-section .trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  color: #09233d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

body.admin-bar .site-shell {
  min-height: calc(100vh - 32px);
}

/* Source: mockup-services/styles.css */
:root {
  --navy: #071b2d;
  --navy-2: #0a2740;
  --blue: #16a9e7;
  --blue-deep: #0877be;
  --green: #9bdc45;
  --ink: #071827;
  --muted: #637284;
  --line: #dfe8ef;
  --white: #ffffff;
  --soft: #f3f8fb;
  --shadow: 0 24px 80px rgba(3, 18, 31, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.header-band {
  color: var(--white);
  background: radial-gradient(
      circle at 82% 0%,
      rgba(22, 169, 231, 0.2),
      transparent 24rem
    ),
    linear-gradient(135deg, var(--navy) 0%, #08243c 100%);
  padding: 26px clamp(22px, 4vw, 72px);
}

.site-header,
.services-intro-grid,
.services-grid,
.quote-panel,
.footer-inner,
.footer-bottom {
  max-width: 1320px;
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: block;
  width: 208px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a[aria-current='page'] {
  color: var(--blue);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #041725;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(155, 220, 69, 0.28);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-intro {
  margin: 0;
  padding: 58px clamp(22px, 5vw, 76px) 14px;
  background: var(--white);
}

.services-intro-grid {
  display: block;
}

.services-intro h1 {
  max-width: none;
  margin: 0;
  color: #09233d;
  font-size: clamp(2.65rem, 3.8vw, 3.75rem);
  line-height: 0.91;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.services-intro p {
  max-width: none;
  margin: 20px 0 0;
  color: #435163;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.services-grid-section {
  padding: 0 clamp(22px, 5vw, 76px) 58px;
  background: var(--white);
}

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

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(6, 28, 49, 0.08);
}

.service-image {
  height: 238px;
  overflow: hidden;
  background: var(--soft);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.window-image img {
  object-position: center 42%;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 22px 23px;
  background: var(--white);
}

.service-body h2 {
  margin: 0 0 10px;
  color: #09233d;
  font-size: clamp(1.42rem, 1.7vw, 1.74rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.service-body p {
  margin: 0 0 18px;
  color: #2f3b49;
  font-size: 0.98rem;
  line-height: 1.43;
}

.service-body span {
  color: #09233d;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.quote-panel-section {
  padding: 0 clamp(22px, 5vw, 76px) 64px;
  background: var(--white);
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 31px 34px;
  color: var(--white);
  background: radial-gradient(
      circle at 92% 0%,
      rgba(22, 169, 231, 0.28),
      transparent 20rem
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 8px;
}

.quote-panel h2 {
  margin: 0 0 9px;
  font-size: clamp(1.56rem, 2.3vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.quote-panel p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.site-footer {
  color: #ffffff;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(22, 169, 231, 0.24),
      transparent 30rem
    ),
    linear-gradient(135deg, #061a2c 0%, #082f4c 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 295px) max-content max-content max-content;
  justify-content: space-between;
  gap: 0;
  padding: 36px clamp(22px, 4vw, 48px) 28px;
}

.footer-brand img {
  width: 172px;
  height: auto;
  margin-bottom: 17px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-brand p {
  max-width: 295px;
  margin: 0 0 22px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 6px;
}

.footer-column p {
  margin: 0;
}

.trusted p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
}

.trusted svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trusted p:nth-of-type(3) svg {
  color: #8bea75;
}

.trusted .social-links {
  margin-top: 20px;
}

.trusted .social-links svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  gap: 22px;
  padding: 16px clamp(22px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 46px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .brand {
    width: 180px;
  }

  .nav-links {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

  .services-intro h1 {
    max-width: 820px;
    white-space: normal;
  }

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

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 44px;
  }
}

@media (max-width: 760px) {
  .header-band {
    padding: 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 158px;
  }

  .nav-links {
    display: none;
  }

  .services-intro {
    padding: 42px 18px 18px;
  }

  .services-intro h1 {
    font-size: clamp(2.45rem, 14vw, 4rem);
  }

  .services-intro p {
    font-size: 1rem;
  }

  .services-grid-section {
    padding: 8px 18px 42px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .service-card {
    min-height: 0;
  }

  .service-image {
    height: 230px;
  }

  .quote-panel-section {
    padding: 0 18px 46px;
  }

  .quote-panel {
    display: grid;
    padding: 24px;
  }

  .quote-panel .primary-button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    gap: 24px;
  }
}

/* Source: mockup-about/styles.css */
:root {
  --navy: #071b2d;
  --navy-2: #0a2740;
  --blue: #16a9e7;
  --blue-deep: #0877be;
  --green: #9bdc45;
  --ink: #071827;
  --muted: #637284;
  --line: #dfe8ef;
  --white: #ffffff;
  --soft: #f3f8fb;
  --shadow: 0 24px 80px rgba(3, 18, 31, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.header-band {
  color: var(--white);
  background: radial-gradient(
      circle at 82% 0%,
      rgba(22, 169, 231, 0.2),
      transparent 24rem
    ),
    linear-gradient(135deg, var(--navy) 0%, #08243c 100%);
  padding: 26px clamp(22px, 4vw, 72px);
}

.site-header,
.about-intro-inner,
.story-layout,
.process-panel,
.quote-panel,
.footer-inner,
.footer-bottom {
  max-width: 1320px;
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: block;
  width: 208px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a[aria-current='page'] {
  color: var(--blue);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #041725;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(155, 220, 69, 0.28);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-intro {
  padding: 58px clamp(22px, 5vw, 76px) 24px;
}

.about-intro h1 {
  max-width: 1180px;
  margin: 0;
  color: #09233d;
  font-size: clamp(2.65rem, 3.8vw, 3.75rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-intro p {
  max-width: none;
  margin: 20px 0 0;
  color: #435163;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.story-section {
  padding: 18px clamp(22px, 5vw, 76px) 54px;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 30px;
  align-items: stretch;
}

.section-label {
  margin: 0 0 13px;
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.story-panel {
  min-height: 520px;
  padding: 34px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.story-panel h2,
.property-copy h2,
.process-heading h2,
.quote-panel h2 {
  margin: 0;
  font-size: clamp(1.85rem, 2.6vw, 2.65rem);
  line-height: 1;
  letter-spacing: 0;
}

.story-panel h2 {
  max-width: 690px;
  color: #09233d;
  margin-bottom: 20px;
}

.story-panel p:not(.section-label) {
  max-width: 760px;
  margin: 0 0 17px;
  color: #435163;
  font-size: 1rem;
  line-height: 1.6;
}

.story-panel p:last-child {
  margin-bottom: 0;
}

.property-panel {
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(
      circle at 92% 4%,
      rgba(22, 169, 231, 0.26),
      transparent 20rem
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(6, 28, 49, 0.14);
}

.property-image {
  height: 270px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.property-copy {
  padding: 28px;
}

.property-copy .section-label {
  color: var(--blue);
}

.property-copy h2 {
  margin-bottom: 12px;
}

.property-copy p:not(.section-label) {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
}

.process-section {
  padding: 0 clamp(22px, 5vw, 76px) 54px;
}

.process-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: start;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-heading h2 {
  color: #09233d;
}

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

.process-steps article {
  min-height: 132px;
  padding: 18px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-steps strong,
.process-steps span {
  display: block;
}

.process-steps strong {
  color: #09233d;
  font-size: 1rem;
  line-height: 1.2;
}

.process-steps span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.36;
}

.quote-panel-section {
  padding: 0 clamp(22px, 5vw, 76px) 64px;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 31px 34px;
  color: var(--white);
  background: radial-gradient(
      circle at 92% 0%,
      rgba(22, 169, 231, 0.28),
      transparent 20rem
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 8px;
}

.quote-panel h2 {
  margin-bottom: 9px;
}

.quote-panel p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.site-footer {
  color: #ffffff;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(22, 169, 231, 0.24),
      transparent 30rem
    ),
    linear-gradient(135deg, #061a2c 0%, #082f4c 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 295px) max-content max-content max-content;
  justify-content: space-between;
  gap: 0;
  padding: 36px clamp(22px, 4vw, 48px) 28px;
}

.footer-brand img {
  width: 172px;
  height: auto;
  margin-bottom: 17px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-brand p {
  max-width: 295px;
  margin: 0 0 22px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 6px;
}

.footer-column p {
  margin: 0;
}

.trusted p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
}

.trusted svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trusted p:nth-of-type(3) svg {
  color: #8bea75;
}

.trusted .social-links {
  margin-top: 20px;
}

.trusted .social-links svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  gap: 22px;
  padding: 16px clamp(22px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 46px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .brand {
    width: 180px;
  }

  .nav-links {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

  .story-layout,
  .process-panel {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 44px;
  }
}

@media (max-width: 760px) {
  .header-band {
    padding: 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 158px;
  }

  .nav-links {
    display: none;
  }

  .about-intro {
    padding: 42px 18px 18px;
  }

  .about-intro h1 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .about-intro p {
    font-size: 1rem;
  }

  .story-section {
    padding: 8px 18px 42px;
  }

  .story-panel {
    min-height: 0;
    padding: 24px;
  }

  .property-image {
    height: 230px;
  }

  .property-copy {
    padding: 24px;
  }

  .process-section {
    padding: 0 18px 42px;
  }

  .process-panel {
    padding: 24px;
  }

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

  .quote-panel-section {
    padding: 0 18px 46px;
  }

  .quote-panel {
    display: grid;
    padding: 24px;
  }

  .quote-panel .primary-button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    gap: 24px;
  }
}

/* Source: mockup-contact/styles.css */
:root {
  --navy: #071b2d;
  --navy-2: #0a2740;
  --blue: #16a9e7;
  --blue-deep: #0877be;
  --green: #9bdc45;
  --ink: #071827;
  --muted: #637284;
  --line: #dfe8ef;
  --white: #ffffff;
  --soft: #f3f8fb;
  --shadow: 0 24px 80px rgba(3, 18, 31, 0.22);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
  background: var(--white);
}

.header-band {
  color: var(--white);
  background: radial-gradient(
      circle at 82% 0%,
      rgba(22, 169, 231, 0.2),
      transparent 24rem
    ),
    linear-gradient(135deg, var(--navy) 0%, #08243c 100%);
  padding: 26px clamp(22px, 4vw, 72px);
}

.site-header,
.contact-intro-inner,
.contact-layout,
.trust-strip,
.footer-inner,
.footer-bottom {
  max-width: 1320px;
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
}

.brand {
  display: block;
  width: 208px;
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a[aria-current='page'] {
  color: var(--blue);
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  color: #041725;
  background: var(--green);
  box-shadow: 0 12px 34px rgba(155, 220, 69, 0.28);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.contact-intro {
  padding: 58px clamp(22px, 5vw, 76px) 24px;
}

.contact-intro h1 {
  max-width: 1180px;
  margin: 0;
  color: #09233d;
  font-size: clamp(2.65rem, 3.8vw, 3.75rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-intro p {
  max-width: none;
  margin: 20px 0 0;
  color: #435163;
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.58;
}

.contact-main {
  padding: 18px clamp(22px, 5vw, 76px) 54px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.section-label {
  margin: 0 0 13px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-panel {
  display: flex;
  flex-direction: column;
  padding: 30px;
  color: var(--white);
  background: radial-gradient(
      circle at 92% 4%,
      rgba(22, 169, 231, 0.26),
      transparent 20rem
    ),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  border-radius: 8px;
  box-shadow: 0 20px 55px rgba(6, 28, 49, 0.14);
}

.contact-panel h2,
.quote-guide h2,
.areas-panel h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(1.75rem, 2.4vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contact-method {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.method-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--blue);
  background: rgba(22, 169, 231, 0.14);
  border-radius: 8px;
}

.method-icon-green {
  color: var(--green);
  background: rgba(155, 220, 69, 0.14);
}

.method-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.method-icon-green svg {
  fill: none;
}

.contact-method strong,
.contact-method small {
  display: block;
}

.contact-method strong {
  font-size: 1rem;
}

.contact-method small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 7px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.contact-social-links a:hover {
  color: var(--white);
}

.contact-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-panel .primary-button {
  width: fit-content;
  margin-top: auto;
}

.contact-support {
  display: grid;
  gap: 22px;
}

.quote-guide,
.areas-panel {
  padding: 28px;
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-guide {
  background: #f8fbff;
}

.quote-guide .section-label,
.areas-panel .section-label {
  color: var(--blue-deep);
}

.quote-guide h2,
.areas-panel h2 {
  color: #09233d;
}

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

.quote-steps div {
  min-height: 116px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quote-steps strong,
.quote-steps span {
  display: block;
}

.quote-steps strong {
  color: #09233d;
}

.quote-steps span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.36;
}

.areas-panel {
  background: var(--white);
}

.areas-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 34px;
  align-items: start;
}

.areas-grid h2 {
  max-width: 330px;
  font-size: clamp(1.72rem, 2vw, 2.05rem);
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-tags span {
  padding: 11px 13px;
  color: #09233d;
  background: var(--soft);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1;
}

.trust-section {
  padding: 0 clamp(22px, 5vw, 76px) 54px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 28px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.trust-strip strong {
  color: #09233d;
  font-size: 1.5rem;
  line-height: 1.08;
}

.trust-strip span {
  margin-top: 6px;
  color: var(--muted);
}

.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  color: #09233d;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.site-footer {
  color: #ffffff;
  background: radial-gradient(
      circle at 88% 8%,
      rgba(22, 169, 231, 0.24),
      transparent 30rem
    ),
    linear-gradient(135deg, #061a2c 0%, #082f4c 100%);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 295px) max-content max-content max-content;
  justify-content: space-between;
  gap: 0;
  padding: 36px clamp(22px, 4vw, 48px) 28px;
}

.footer-brand img {
  width: 172px;
  height: auto;
  margin-bottom: 17px;
}

.footer-brand p,
.footer-column p,
.footer-column a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  line-height: 1.35;
}

.footer-brand p {
  max-width: 295px;
  margin: 0 0 22px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.footer-column h2 {
  margin: 0 0 15px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin-top: 6px;
}

.footer-column p {
  margin: 0;
}

.trusted p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 14px;
}

.trusted svg {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trusted p:nth-of-type(3) svg {
  color: #8bea75;
}

.trusted .social-links {
  margin-top: 20px;
}

.trusted .social-links svg {
  width: 20px;
  height: 20px;
  flex: none;
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  text-align: right;
  gap: 22px;
  padding: 16px clamp(22px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 46px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 180px 1fr;
  }

  .brand {
    width: 180px;
  }

  .nav-links {
    justify-content: end;
  }

  .header-cta {
    display: none;
  }

  .contact-layout,
  .areas-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 44px;
  }
}

@media (max-width: 760px) {
  .header-band {
    padding: 18px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 158px;
  }

  .nav-links {
    display: none;
  }

  .contact-intro {
    padding: 42px 18px 18px;
  }

  .contact-intro h1 {
    font-size: clamp(2.4rem, 13vw, 3.8rem);
  }

  .contact-intro p {
    font-size: 1rem;
  }

  .contact-main {
    padding: 8px 18px 42px;
  }

  .contact-panel,
  .quote-guide,
  .areas-panel {
    padding: 24px;
  }

  .quote-steps {
    grid-template-columns: 1fr;
  }

  .contact-panel .primary-button,
  .primary-button {
    width: 100%;
  }

  .trust-section {
    padding: 0 18px 46px;
  }

  .trust-strip {
    display: grid;
    padding: 22px;
  }

  .trust-strip ul {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom div {
    gap: 24px;
  }
}

/* Final mobile overrides: keep narrow layouts inside the viewport after merged mockup rules. */
@media (max-width: 760px) {
  .site-header {
    z-index: 1000;
  }

  .mobile-nav {
    z-index: 1001;
  }

  .sdec-page-home .hero .trust-strip {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .sdec-page-home .hero .trust-item {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: auto;
    padding: 18px;
  }

  .sdec-page-home .hero .trust-item > div {
    min-width: 0;
  }

  .sdec-page-home .hero .trust-item strong {
    overflow-wrap: anywhere;
  }

  .sdec-page-contact .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .sdec-page-contact .contact-panel {
    min-width: 0;
  }

  .sdec-page-contact .contact-method {
    grid-template-columns: 52px minmax(0, 1fr);
    min-width: 0;
  }

  .sdec-page-contact .contact-method > span:not(.method-icon),
  .sdec-page-contact .contact-method small {
    min-width: 0;
    max-width: 100%;
  }

  .sdec-page-contact .contact-method small {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
