@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #071a2f;
  --gold: #d7ad47;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  color: var(--navy);
  font-family: 'Poppins', Arial, Helvetica, sans-serif;
}

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

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

.reveal-delay-1 { transition-delay: 210ms; }
.reveal-delay-2 { transition-delay: 420ms; }
.reveal-delay-3 { transition-delay: 630ms; }

.service-card,
.why-card,
.process-step,
.testimonial-card,
.quote-form,
.reassurance-card,
.about-image-wrap,
.about-copy,
.hero-content,
.page-banner-copy {
  will-change: transform, opacity;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 26, 47, 0.98);
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.18);
}
.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 60px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: inline-block;
}
.footer-brand .brand-logo {
  width: 56px;
  height: 56px;
}
.brand-mark {
  width: 33px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  clip-path: polygon(50% 0, 94% 16%, 88% 70%, 50% 100%, 12% 70%, 6% 16%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  color: #e6ebf1;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-link,
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.phone-link:hover,
.whatsapp-link:hover {
  color: var(--gold);
}
.whatsapp-link {
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid #f0c85d;
  border-radius: 50%;
  background: rgba(7, 26, 47, 0.98);
  overflow: hidden;
}

.whatsapp-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.cta {
  display: inline-block;
  padding: 12px 17px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-radius 0.25s ease,
    filter 0.25s ease;
}
.cta:hover,
.cta:focus-visible {
  background: #f7d978;
  transform: translateY(-3px) scale(1.015);
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(7, 26, 47, 0.18);
  filter: saturate(1.05);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  content: "";
  transition:
    transform 0.2s,
    opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-7px) rotate(-45deg);
}
.page-banner {
  position: relative;
  padding: 52px 20px 46px;
  background:
    linear-gradient(90deg, rgba(7, 26, 47, 0.97) 0%, rgba(7, 26, 47, 0.86) 45%, rgba(7, 26, 47, 0.72) 100%),
    url("https://source.unsplash.com/1600x900/?security-guard,security,protection&sig=11")
      center/cover,
    var(--navy);
  color: var(--white);
}

.page-banner-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #dfeaf3;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: #dfeaf3;
  text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
  color: var(--gold);
}

.page-banner-copy {
  max-width: 700px;
  margin-top: 20px;
}

.page-banner-kicker {
  margin: 0 0 12px;
  color: #f2cc6a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.page-banner h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.page-banner-copy,
.hero-content,
.about-copy,
.about-image-wrap,
.quote-form,
.reassurance-card {
  animation: floatIn 1.8s ease both;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-banner-copy p:last-child {
  max-width: 620px;
  margin: 16px 0 0;
  color: #d5dde6;
  font-size: 1rem;
  line-height: 1.7;
}

.quote-form-section {
  padding: 90px 20px;
  background: #f3f6f8;
}

.quote-form-shell {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.quote-form-intro {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.quote-form-intro h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.quote-form-intro p:last-child {
  margin: 16px auto 0;
  color: #526474;
  line-height: 1.7;
}

.section-label {
  width: fit-content;
  margin: 0 auto 16px;
  color: #a67817;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.quote-content-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.7fr);
  align-items: start;
  gap: 28px;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.quote-reassurance {
  position: sticky;
  top: 92px;
}

.reassurance-card {
  padding: 28px 24px;
  border: 1px solid #dfe7ec;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8f3e5 0%, #fff 100%);
  box-shadow: 0 16px 40px rgba(7, 26, 47, 0.06);
}

.reassurance-kicker {
  margin: 0 0 10px;
  color: #a67817;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reassurance-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.reassurance-card > p:not(.reassurance-kicker) {
  margin: 14px 0 0;
  color: #50657a;
  line-height: 1.7;
}

.reassurance-points {
  margin: 22px 0 0;
  padding-left: 18px;
  color: var(--navy);
  font-size: 0.93rem;
  line-height: 1.8;
}

.reassurance-points li::marker {
  color: var(--gold);
}

.reassurance-contacts {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(7, 26, 47, 0.12);
}

.reassurance-contacts p {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reassurance-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}

.reassurance-contacts a:hover,
.reassurance-contacts a:focus-visible {
  color: #a67817;
}

.quote-form {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: 32px;
  border: 1px solid #dfe7ec;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 50px rgba(7, 26, 47, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d3dfe7;
  border-radius: 10px;
  background: #fefefe;
  color: var(--navy);
  font: inherit;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(215, 173, 71, 0.9);
  box-shadow: 0 0 0 4px rgba(215, 173, 71, 0.14);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #b53535;
  box-shadow: 0 0 0 4px rgba(181, 53, 53, 0.08);
}

.field-error {
  min-height: 18px;
  color: #b53535;
  font-size: 0.74rem;
  line-height: 1.4;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #425669;
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.checkbox-row a {
  color: var(--navy);
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.quote-submit {
  border: 0;
  cursor: pointer;
}

.form-success {
  margin: 0;
  color: #0a6542;
  font-weight: 700;
}

.privacy-policy-note {
  width: min(900px, 100%);
  margin: 24px auto 0;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: #edf3f7;
  color: #41556b;
  font-size: 0.9rem;
  line-height: 1.7;
}

.privacy-policy-note strong {
  color: var(--navy);
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 78px));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 84px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      rgba(4, 17, 31, 0.97) 0%,
      rgba(5, 23, 42, 0.88) 48%,
      rgba(5, 23, 42, 0.46) 100%
    ),
    url("https://media.istockphoto.com/id/833063564/photo/security-guard-standing-outside-the-house.webp?a=1&b=1&s=612x612&w=0&k=20&c=SVYlW7x0MQkcYnA2hc36HYlKYBZQUBVNe4OSt2W52ZQ=")
      center/cover,
    #071a2f;
}
.hero::after {
  position: absolute;
  right: 8%;
  bottom: -23%;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(215, 173, 71, 0.3);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(215, 173, 71, 0.06),
    0 0 0 90px rgba(215, 173, 71, 0.04);
  content: "";
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(290px, 0.65fr);
  align-items: center;
  gap: clamp(35px, 7vw, 110px);
}
.hero-content {
  max-width: 700px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: #f2cc6a;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--gold);
  content: "";
}
.hero h1 {
  max-width: 670px;
  margin: 0;
  font-size: clamp(2.9rem, 5.6vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.hero p {
  max-width: 610px;
  margin: 23px 0 0;
  color: #e4eaf0;
  font-size: clamp(1rem, 1.6vw, 1.17rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}
.hero .cta {
  padding: 15px 22px;
}
.hero .cta span {
  margin-left: 10px;
  font-size: 1.05rem;
}
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    border-radius 0.25s ease;
}
.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
  border-radius: 10px;
  box-shadow: 0 12px 24px rgba(7, 26, 47, 0.14);
}
.hero-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  color: #f3f5f7;
  font-size: 0.85rem;
  font-weight: 700;
  list-style: none;
}
.hero-reassurance li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.hero-reassurance li::before {
  color: var(--gold);
  content: "\2713";
}
.hero-panel {
  justify-self: end;
  width: min(100%, 350px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  background: linear-gradient(
    145deg,
    rgba(18, 47, 77, 0.88),
    rgba(5, 20, 37, 0.82)
  );
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #d3dde7;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.panel-top strong {
  margin-left: auto;
  color: #9fe0b5;
  font-size: 0.7rem;
}
.panel-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #73cf95;
  box-shadow: 0 0 0 5px rgba(115, 207, 149, 0.14);
}
.panel-body {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 26px 0;
}
.panel-shield {
  display: grid;
  width: 49px;
  height: 55px;
  place-items: center;
  color: var(--navy);
  background: var(--gold);
  clip-path: polygon(50% 0, 94% 16%, 88% 70%, 50% 100%, 12% 70%, 6% 16%);
  font-weight: 900;
}
.panel-label {
  display: block;
  margin-bottom: 5px;
  color: #c0ccd7;
  font-size: 0.78rem;
}
.panel-body strong {
  font-size: 1.25rem;
}
.panel-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.panel-services span {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #dce4ec;
  font-size: 0.72rem;
}
.panel-call {
  display: block;
  margin-top: 23px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}
.panel-call:hover {
  background: var(--gold);
  color: var(--navy);
}
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: var(--white);
}
.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 95px;
  padding: 18px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-icon {
  color: var(--gold);
  font-size: 1.5rem;
}
.trust-item strong,
.trust-item span {
  display: block;
}
.trust-item strong {
  font-size: 0.9rem;
}
.trust-item span {
  margin-top: 3px;
  color: #bfcbd6;
  font-size: 0.78rem;
}
.content-section {
  max-width: 900px;
  margin: auto;
  padding: 90px 20px;
  text-align: center;
}
.content-section:nth-of-type(even) {
  max-width: none;
  background: #f4f6f8;
}
.content-section h2 {
  margin-top: 0;
  font-size: 2rem;
}
.content-section p {
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.7;
}
@media (max-width: 980px) {
  .phone-link {
    display: none;
  }
  .nav-links {
    gap: 18px;
  }
}
@keyframes mobileSlideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileSlideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
    width: min(100% - 28px, 1180px);
    gap: 12px;
  }
  .nav-links {
    position: fixed;
    inset: 68px 0 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--navy);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.28s ease,
      opacity 0.28s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }
  .nav-links a {
    font-size: 1.45rem;
  }
  .nav-actions .cta {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .whatsapp-link {
    width: 38px;
    height: 38px;
  }
  .mobile-cta {
    display: inline-block;
  }
  .hero {
    min-height: 590px;
    padding-top: 76px;
    background-image:
      linear-gradient(90deg, rgba(4, 17, 31, 0.96), rgba(5, 23, 42, 0.72)),
      url("https://media.istockphoto.com/id/833063564/photo/security-guard-standing-outside-the-house.webp?a=1&b=1&s=612x612&w=0&k=20&c=SVYlW7x0MQkcYnA2hc36HYlKYBZQUBVNe4OSt2W52ZQ=");
    background-position: 62% center;
  }
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-panel {
    display: none;
  }
  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    padding: 0 10%;
  }
  .hero-actions a {
    flex: 0 0 50%;
    width: 45%;
    text-align: center;
    opacity: 0;
    animation-fill-mode: both;
  }
  .hero-actions .cta {
    animation: mobileSlideInLeft 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
  }
  .hero-actions .button-secondary {
    margin-left: auto;
    animation: mobileSlideInRight 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
  }
  .hero-reassurance {
    display: grid;
    gap: 10px;
  }
  .trust-strip {
    grid-template-columns: 1fr;
  }
  .trust-item {
    min-height: 76px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 761px) {
  .mobile-cta {
    display: none;
  }
}

/* Minimal, image-led hero */
.hero {
  min-height: 560px;
  padding-block: 80px 108px;
  background-image: linear-gradient(90deg, rgba(4, 15, 27, 0.96) 0%, rgba(4, 15, 27, 0.8) 39%, rgba(4, 15, 27, 0.16) 75%), url('https://media.istockphoto.com/id/833063564/photo/security-guard-standing-outside-the-house.webp?a=1&b=1&s=612x612&w=0&k=20&c=SVYlW7x0MQkcYnA2hc36HYlKYBZQUBVNe4OSt2W52ZQ=');
  background-position: center;
  border-bottom-right-radius: 50% 7%;
  border-bottom-left-radius: 50% 7%;
}
.hero::after { display: none; }
.hero-inner { display: block; }
.hero-content { max-width: 540px; }
.hero h1 { max-width: 530px; font-size: clamp(2.8rem, 5.2vw, 4.8rem); letter-spacing: -.055em; }
.hero h1 span { display: block; color: var(--gold); }
.hero p { max-width: 480px; margin-top: 19px; font-size: 1rem; }
.hero-actions { margin-top: 29px; }
.hero-reassurance, .hero-panel, .trust-strip { display: none; }

@media (max-width: 760px) {
  .hero {
    min-height: 545px;
    padding-block: 68px 88px;
    background-image: linear-gradient(90deg, rgba(4, 15, 27, 0.96), rgba(4, 15, 27, 0.55)), url('https://media.istockphoto.com/id/833063564/photo/security-guard-standing-outside-the-house.webp?a=1&b=1&s=612x612&w=0&k=20&c=SVYlW7x0MQkcYnA2hc36HYlKYBZQUBVNe4OSt2W52ZQ=');
    background-position: 62% center;
    border-bottom-right-radius: 20% 3%;
    border-bottom-left-radius: 20% 3%;
  }
  .hero h1 { font-size: clamp(2.6rem, 12vw, 3.6rem); }
}

.about-section { padding: 110px 0; }.about-container { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1fr); align-items: center; gap: clamp(42px, 7vw, 104px); width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.about-image-wrap { position: relative; }.about-image { display: block; width: 100%; min-height: 480px; object-fit: cover; }.about-image-accent { position: absolute; right: -30px; bottom: 30px; width: 190px; padding: 21px; background: var(--gold); color: var(--navy); box-shadow: 0 16px 36px rgba(0,0,0,.16); }.about-image-accent span { display: block; margin-bottom: 7px; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }.about-image-accent strong { font-size: 1.07rem; line-height: 1.2; }.section-label { width: fit-content; margin: 0 auto 18px; color: #a67817; font-size: clamp(1.12rem, 1.7vw, 1.3rem); font-weight: 800; letter-spacing: .1em; text-align: center; text-transform: uppercase; }.about-copy h2 { max-width: 470px; margin: 0; color: var(--navy); font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1.08; letter-spacing: -.04em; }.about-copy > p:not(.section-label) { margin: 18px 0 0; color: #4a5c6d; line-height: 1.75; }.about-points { display: grid; gap: 10px; margin: 26px 0 30px; padding: 0; color: var(--navy); font-size: .92rem; font-weight: 700; list-style: none; }.about-points li { display: flex; align-items: center; gap: 10px; }.about-points li::before { display: grid; width: 19px; height: 19px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--navy); content: '\2713'; font-size: .72rem; }.about-link { color: var(--navy); font-size: .9rem; font-weight: 800; text-decoration: none; }.about-link span { margin-left: 8px; color: #a67817; font-size: 1.1rem; }.about-link:hover { color: #a67817; }
@media (max-width: 760px) { .about-section { padding: 75px 0; }.about-container { grid-template-columns: 1fr; gap: 42px; width: min(100% - 40px, 540px); }.about-image { min-height: 350px; }.about-image-accent { right: 16px; bottom: -21px; width: 170px; }.about-copy h2 { font-size: 2.2rem; } }

.services-section { padding: 105px 20px; background: #f3f6f8; }.services-intro { max-width: 650px; margin: 0 auto 45px; text-align: center; }.services-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }.services-intro > p:last-child { margin: 14px auto 0; color: #526474; line-height: 1.6; }.services-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 1fr; gap: 20px; width: min(1120px, 100%); margin: auto; }.service-card { display: flex; flex-direction: column; min-height: 280px; padding: 30px; background: var(--white); border: 1px solid #e1e7eb; box-shadow: 0 10px 25px rgba(11,32,52,.05); transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }.service-card:hover { transform: translateY(-6px); border-color: rgba(215,173,71,.7); box-shadow: 0 18px 35px rgba(11,32,52,.12); }.service-icon { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 23px; background: #f8edce; color: #9d761e; font-size: 1.28rem; }.service-card h3 { margin: 0; color: var(--navy); font-size: 1.1rem; line-height: 1.28; }.service-card p { margin: 12px 0 23px; color: #5b6b79; font-size: .91rem; line-height: 1.65; }.service-card a { margin-top: auto; color: var(--navy); font-size: .84rem; font-weight: 800; text-decoration: none; }.service-card a span { margin-left: 6px; color: #a67817; font-size: 1rem; }.service-card a:hover { color: #a67817; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .services-section { padding: 75px 20px; }.services-grid { grid-template-columns: 1fr; }.service-card { min-height: 250px; padding: 28px; } }

.why-section { padding: 105px 20px; background: var(--navy); color: var(--white); }.why-intro { max-width: 675px; margin: 0 auto 48px; text-align: center; }.why-intro .section-label { color: #f2cc6a; }.why-intro h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }.why-intro > p:last-child { margin: 15px auto 0; color: #c5d0da; line-height: 1.65; }.why-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; width: min(1120px, 100%); margin: auto; background: rgba(255,255,255,.18); }.why-card { min-height: 260px; padding: 31px 27px; background: var(--navy); }.why-icon { display: grid; width: 43px; height: 43px; place-items: center; margin-bottom: 23px; border: 1px solid rgba(215,173,71,.75); color: var(--gold); font-size: 1.15rem; }.why-card h3 { margin: 0; font-size: 1.08rem; line-height: 1.3; }.why-card p { margin: 13px 0 0; color: #bfcbd6; font-size: .9rem; line-height: 1.65; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .why-section { padding: 75px 20px; }.why-grid { grid-template-columns: 1fr; }.why-card { min-height: 0; padding: 28px; } }

.process-section { padding: 105px 20px; background: var(--white); }.process-intro { max-width: 680px; margin: 0 auto 55px; text-align: center; }.process-intro h2 { margin: 0; color: var(--navy); font-size: clamp(2rem, 3.8vw, 3.2rem); line-height: 1.1; letter-spacing: -.04em; }.process-intro > p:last-child { margin: 15px auto 0; color: #526474; line-height: 1.65; }.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; width: min(1120px, 100%); margin: 0 auto; padding: 0; list-style: none; counter-reset: process; }.process-step { position: relative; min-height: 225px; padding: 0 27px 0 0; }.process-step:not(:last-child)::after { position: absolute; top: 25px; right: 0; left: 64px; height: 1px; background: #d7e0e6; content: ''; }.process-number { position: relative; z-index: 1; display: grid; width: 51px; height: 51px; place-items: center; margin-bottom: 23px; border-radius: 50%; background: var(--navy); color: var(--gold); font-size: .84rem; font-weight: 800; letter-spacing: .04em; }.process-step h3 { margin: 0; color: var(--navy); font-size: 1.06rem; line-height: 1.3; }.process-step p { max-width: 225px; margin: 12px 0 0; color: #5b6b79; font-size: .9rem; line-height: 1.65; }
@media (max-width: 800px) { .process-list { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }.process-step:nth-child(2)::after { display: none; } }
@media (max-width: 560px) { .process-section { padding: 75px 20px; }.process-list { grid-template-columns: 1fr; gap: 0; }.process-step { min-height: 0; padding: 0 0 34px 73px; }.process-step:not(:last-child)::after { top: 51px; right: auto; bottom: 0; left: 25px; width: 1px; height: calc(100% - 51px); }.process-number { position: absolute; top: 0; left: 0; }.process-step p { max-width: 100%; } }

/* Poppins-based type scale, matched to the compact hierarchy in example 2. */
body { font-size: 15px; }
.brand { font-size: 1.05rem; }.nav-links a, .phone-link, .whatsapp-link { font-size: .78rem; }.cta, .button-secondary { font-size: .8rem; }
.hero h1 { font-size: clamp(2.55rem, 4.5vw, 4.25rem); line-height: 1.12; }.hero p { font-size: .92rem; line-height: 1.65; }
.section-label { font-size: clamp(1rem, 1.4vw, 1.15rem); }.about-copy h2, .services-intro h2, .why-intro h2, .process-intro h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.18; }.about-copy > p:not(.section-label), .services-intro > p:last-child, .why-intro > p:last-child, .process-intro > p:last-child { font-size: .9rem; }.service-card h3, .why-card h3, .process-step h3 { font-size: 1rem; }.service-card p, .why-card p, .process-step p { font-size: .85rem; }
@media (max-width: 760px) { .hero h1 { font-size: clamp(2.35rem, 10vw, 3.2rem); } }

.testimonials-section { padding: 105px 20px; background: #f3f6f8; }.testimonials-intro { max-width: 665px; margin: 0 auto 48px; text-align: center; }.testimonials-intro h2 { margin: 0; color: var(--navy); font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1.18; letter-spacing: -.04em; }.testimonials-intro > p:last-child { margin: 15px auto 0; color: #526474; font-size: .9rem; line-height: 1.65; }.testimonials-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; width: min(1120px, 100%); margin: auto; }.testimonial-card { display: flex; flex-direction: column; min-height: 285px; margin: 0; padding: 32px; background: var(--white); border-top: 3px solid var(--gold); box-shadow: 0 10px 25px rgba(11,32,52,.05); }.testimonial-card blockquote { margin: 0; color: var(--navy); font-size: 1rem; font-weight: 500; line-height: 1.7; }.testimonial-card blockquote::before { display: block; margin-bottom: 8px; color: var(--gold); content: '“'; font-family: Georgia, serif; font-size: 3.4rem; font-weight: 700; line-height: .7; }.testimonial-card figcaption { margin-top: auto; padding-top: 25px; }.testimonial-card figcaption strong, .testimonial-card figcaption span { display: block; }.testimonial-card figcaption strong { color: var(--navy); font-size: .86rem; }.testimonial-card figcaption span { margin-top: 4px; color: #71808e; font-size: .78rem; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.testimonial-card:last-child { grid-column: 1 / -1; } }
@media (max-width: 560px) { .testimonials-section { padding: 75px 20px; }.testimonials-grid { grid-template-columns: 1fr; }.testimonial-card:last-child { grid-column: auto; }.testimonial-card { min-height: 245px; padding: 28px; } }

.content-section.cta-banner { max-width: none; padding: 0 20px; background: var(--gold); color: var(--navy); text-align: left; }.cta-banner-content { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: min(1120px, 100%); min-height: 230px; margin: auto; }.cta-banner-label { margin: 0 0 9px; font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }.cta-banner h2 { margin: 0; font-size: clamp(2rem, 3.7vw, 3.1rem); line-height: 1.1; letter-spacing: -.045em; }.cta-banner p:not(.cta-banner-label) { margin: 13px 0 0; font-size: .93rem; line-height: 1.6; }.cta-banner-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }.cta-banner .cta { border-color: var(--navy); background: var(--navy); color: var(--white); }.cta-banner .cta:hover { background: #123657; }.cta-banner-phone { color: var(--navy); font-size: .9rem; font-weight: 800; text-decoration: none; white-space: nowrap; }.cta-banner-phone span { margin-right: 6px; }.cta-banner-phone:hover { text-decoration: underline; }
@media (max-width: 900px) {
  .quote-content-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    order: 1;
  }

  .quote-reassurance {
    order: 2;
    position: static;
  }
}

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

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

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

@media (max-width: 760px) { .cta-banner-content { display: block; min-height: 0; padding: 65px 0; }.cta-banner-actions { margin-top: 26px; }.cta-banner-actions .cta { text-align: center; }.cta-banner-phone { padding: 11px 0; } }

.site-footer { background: #041322; color: #d5dee6; }.footer-main { display: grid; grid-template-columns: 1.4fr .7fr 1fr; gap: 65px; width: min(1120px, calc(100% - 40px)); margin: auto; padding: 68px 0 52px; }.footer-brand .brand { margin-bottom: 17px; }.footer-brand > p { max-width: 330px; margin: 0; color: #aebdca; font-size: .86rem; line-height: 1.7; }.footer-brand .footer-hours { margin-top: 20px; color: #f1c75c; font-size: .78rem; font-weight: 700; }.footer-hours span { margin-right: 5px; }.footer-column h2 { margin: 4px 0 19px; color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }.footer-column nav { display: grid; gap: 11px; }.footer-column a { display: block; color: #b8c5cf; font-size: .84rem; line-height: 1.5; text-decoration: none; }.footer-column a:hover { color: var(--gold); }.footer-contact { display: grid; align-content: start; gap: 11px; }.footer-contact h2 { margin-bottom: 4px; }.footer-contact p { margin: 0; color: #b8c5cf; font-size: .84rem; line-height: 1.55; }.footer-contact p span { color: #e6edf2; }.footer-bottom { display: flex; justify-content: space-between; gap: 20px; width: min(1120px, calc(100% - 40px)); margin: auto; padding: 19px 0; border-top: 1px solid rgba(255,255,255,.12); color: #8496a5; font-size: .73rem; }.footer-bottom p { margin: 0; }
@media (max-width: 760px) { .footer-main { grid-template-columns: 1fr; gap: 35px; padding: 55px 0 40px; }.footer-bottom { display: grid; gap: 6px; }.footer-column h2 { margin-top: 0; } }
