:root {
  --color-red: #d71920;
  --color-blue: #1747a6;
  --color-dark: #111827;
  --color-text: #243041;
  --color-light: #ffffff;
  --color-grey: #f4f7fb;
  --color-border: #dbe2ea;
  --container: 1200px;
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

main {
  overflow: hidden;
}

.container {
  width: min(92%, var(--container));
  margin: 0 auto;
}

.section {
  padding: 50px 0;
}

.section--light {
  background: var(--color-grey);
}

.section--dark {
  background: var(--color-dark);
  color: var(--color-light);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.section-heading p {
  font-size: 1.05rem;
  color: #4a5b70;
}

.section--dark .section-heading h2,
.section--dark h2,
.section--dark p {
  color: var(--color-light);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-red);
}

.eyebrow--light {
  color: #c6d6ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-red);
  color: var(--color-light);
}

.btn--primary:hover {
  background: #b61219;
}

.btn--secondary {
  background: var(--color-blue);
  color: var(--color-light);
}

.btn--secondary:hover {
  background: #123980;
}

.btn--outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--color-light);
  background: transparent;
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn--outline-dark {
  border-color: var(--color-dark);
  color: var(--color-dark);
  background: transparent;
}

.btn--outline-dark:hover {
  background: #eef3f8;
}

/* TOPBAR */
.topbar {
  background: var(--color-dark);
  color: var(--color-light);
  font-size: 0.95rem;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 46px;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--color-light);
  font-weight: 700;
}

/* HEADER */
.site-header {
  top: 0;
  z-index: 1000;
  background: var(--color-light);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
  position: relative;
  flex-wrap: nowrap;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 100px;
  width: auto;
}

.site-nav {
  margin-left: auto;
}

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

.site-nav a {
  color: var(--color-dark);
  font-weight: 700;
  transition: 0.25s ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--color-red);
  color: var(--color-light) !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: #b61219;
  color: var(--color-light) !important;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 3px;
  transition: 0.3s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  color: var(--color-light);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 20, 35, 0.72), rgba(10, 20, 35, 0.72)),
    linear-gradient(
      135deg,
      rgba(17, 51, 111, 0.7),
      rgba(29, 87, 197, 0.45),
      rgba(215, 25, 32, 0.3)
    );
}

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

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 110px 0;
}

.hero__text {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.03;
  margin-bottom: 20px;
  color: var(--color-light);
}

.hero p {
  font-size: 1.1rem;
  max-width: 680px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.92);
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hero__highlights li {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
  font-size: 0.95rem;
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card h3,
.card p {
  padding-left: 24px;
  padding-right: 24px;
}

.card h3 {
  margin-top: 22px;
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: var(--color-dark);
}

.card p {
  padding-bottom: 24px;
}

/* SPLIT */
.about-split__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.about-split__image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-item {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-light);
}

.feature-item h3 {
  margin-bottom: 10px;
  color: var(--color-dark);
}

/* AREAS */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.area-pill {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  font-weight: 700;
  box-shadow: var(--shadow);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* SEO COPY */
.seo-copy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* CTA */
.cta-box {
  background: var(--color-grey);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  color: var(--color-dark);
  margin-bottom: 12px;
}

.cta-box p {
  color: #4a5b70;
  max-width: 700px;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* FOOTER */
/* =========================
   FOOTER
========================= */
.site-footer {
  background: #0d1522;
  color: rgba(255, 255, 255, 0.82);
  padding-top: 72px;
}

/* TOP GRID */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 0.9fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
}

/* BRAND */
.footer-brand h3 {
  color: #ffffff;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #e62429;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

/* BADGES */
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: all 0.25s ease;
}

.footer-social a:hover {
  background: #e62429;
  border-color: #e62429;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* COLUMNS */
.footer-column h4 {
  color: #ffffff;
  margin-bottom: 18px;
  font-size: 1.1rem;
}

/* LINKS */
.footer-links,
.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 12px;
}

.footer-links a,
.footer-contact a,
.footer-bottom__links a,
.credit a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom__links a:hover,
.credit a:hover {
  color: #ffffff;
}

/* CONTACT CTA */
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* OUTLINE BUTTON */
.btn--outline-light {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.btn--outline-light:hover {
  background: #ffffff;
  color: #0d1522;
  border-color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.95rem;
}

.footer-bottom__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.credit {
  text-align: right;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom__links {
    justify-content: center;
  }

  .credit {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .site-footer {
    padding-top: 56px;
  }

  .footer-top {
    gap: 24px;
    padding-bottom: 32px;
  }

  .footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-actions .btn {
    width: 100%;
    text-align: center;
  }
}

.site-footer {
  border-top: 1px solid rgba(230, 36, 41, 0.25);
}
/* TABLET */
@media (max-width: 991px) {
  .card-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-split__grid,
  .feature-grid,
  .footer__grid,
  .cta-box,
  .seo-copy__grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-nav ul {
    gap: 16px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section {
    padding: 64px 0;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    padding: 10px 0;
    min-height: auto;
  }

  .topbar__right {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar p,
  .topbar a {
    font-size: 0.9rem;
  }

  .navbar {
    min-height: 76px;
    padding: 10px 0;
    gap: 12px;
  }

  .site-logo {
    flex: 0 1 auto;
    max-width: calc(100% - 60px);
  }

  .site-logo img {
    height: 70px;
    width: auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 1002;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    margin-left: 0;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    padding: 16px;
    z-index: 1001;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .site-nav li {
    width: 100%;
  }

  .site-nav a {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
  }

  .site-nav a:hover,
  .site-nav a.active {
    background: #f4f7fb;
    color: var(--color-blue);
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 88px 0 84px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

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

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn,
  .cta__buttons .btn {
    width: 100%;
  }

  .hero__highlights {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .card__image img,
  .gallery-item img {
    height: 240px;
  }

  .about-split__image img {
    min-height: 320px;
  }

  .cta-box {
    padding: 28px;
  }

  .footer__grid {
    padding: 50px 0 30px;
  }
}
/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--color-light);
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 20, 35, 0.72), rgba(10, 20, 35, 0.72)),
    linear-gradient(
      135deg,
      rgba(17, 51, 111, 0.72),
      rgba(29, 87, 197, 0.4),
      rgba(215, 25, 32, 0.2)
    );
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 110px 0;
}

/* ===== SERVICES PAGE BLOCKS ===== */
.services-list {
  display: grid;
  gap: 32px;
}

.service-block {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 32px;
  align-items: center;
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.service-block--reverse .service-block__image {
  order: 2;
}

.service-block--reverse .service-block__content {
  order: 1;
}

.service-block__image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

.service-block__content h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--color-dark);
}

.service-block__content p + p {
  margin-top: 14px;
}

/* ===== BENEFITS ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--color-dark);
  font-size: 1.2rem;
}

/* ===== PAGE-SPECIFIC CTA TIDYING ===== */
.page-hero .hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .service-block,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .service-block--reverse .service-block__image,
  .service-block--reverse .service-block__content {
    order: initial;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .page-hero {
    min-height: auto;
  }

  .page-hero__content {
    padding: 88px 0 84px;
  }

  .service-block {
    padding: 18px;
    gap: 20px;
  }

  .service-block__image img {
    height: 240px;
  }

  .benefit-card {
    padding: 22px;
  }
}
/* ===== SMALL HERO ===== */
.page-hero--small {
  min-height: 420px;
}

/* ===== CONTACT PAGE ===== */
.contact-intro {
  margin-bottom: 28px;
}

.contact-intro__heading {
  max-width: 760px;
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 18px;
}

.contact-detail-card {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-detail-card h3 {
  margin-bottom: 10px;
  color: var(--color-dark);
  font-size: 1.1rem;
}

.contact-detail-card p {
  margin: 0;
  color: #4a5b70;
}

.contact-detail-card a {
  color: var(--color-blue);
  font-weight: 700;
  word-break: break-word;
}

.contact-detail-card--highlight {
  background: linear-gradient(135deg, #11336f 0%, #1747a6 100%);
  color: var(--color-light);
  border-color: transparent;
}

.contact-detail-card--highlight h3,
.contact-detail-card--highlight p {
  color: var(--color-light);
}

.contact-form-wrap {
  background: var(--color-light);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  font-weight: 700;
  color: var(--color-dark);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font: inherit;
  color: var(--color-text);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-row textarea {
  min-height: 170px;
  padding: 14px 16px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(23, 71, 166, 0.12);
}

.contact-submit {
  width: 100%;
  min-height: 56px;
  font-size: 1rem;
}

.form-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.form-message--success {
  background: #eaf8ef;
  color: #166534;
  border: 1px solid #b7e4c7;
}

.form-message--error {
  background: #fff1f2;
  color: #b42318;
  border: 1px solid #f3b5bd;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* ===== CONTACT PAGE RESPONSIVE ===== */
@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .contact-form-wrap {
    padding: 22px;
  }

  .contact-detail-card {
    padding: 20px;
  }
}

/* ===== ABOUT PAGE TWEAKS ===== */
.about-split__content p + p {
  margin-top: 14px;
}

.about-split__content h2 {
  margin-bottom: 16px;
  color: var(--color-dark);
}

.feature-item p,
.card p {
  color: #4a5b70;
}

@media (max-width: 991px) {
  .about-split__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #111827;
  color: #fff;
  padding: 16px 20px;
  border-radius: 12px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #c6d6ff;
  text-decoration: underline;
}

.cookie-banner button {
  background: var(--color-red);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}

/* ===== POLICY PAGES ===== */
.policy-hero {
  background: linear-gradient(135deg, #0f274f 0%, #1747a6 100%);
  color: var(--color-light);
  padding: 90px 0 70px;
}

.policy-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  margin-bottom: 14px;
  color: var(--color-light);
}

.policy-hero p {
  max-width: 760px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}

.policy-updated {
  margin-top: 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78) !important;
}

.policy h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--color-dark);
}

.policy h2:first-child {
  margin-top: 0;
}

.policy p,
.policy li {
  font-size: 1.02rem;
  line-height: 1.8;
  color: #4a5b70;
}

.policy p {
  margin-bottom: 14px;
}

.policy ul {
  margin: 0 0 18px 22px;
  padding: 0;
  list-style: disc;
}

.policy li {
  margin-bottom: 6px;
}

.policy a {
  color: var(--color-blue);
  font-weight: 600;
}

.policy a:hover {
  text-decoration: underline;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .policy-hero {
    padding: 72px 0 56px;
  }

  .policy h2 {
    font-size: 1.35rem;
  }

  .policy p,
  .policy li {
    font-size: 1rem;
  }
}
/* =========================================================
   PREMIUM LOCATION PAGE TEMPLATE
   Scoped to .location-page
========================================================= */

.location-page {
  --location-surface: #ffffff;
  --location-border: #dbe2ea;
  --location-text-soft: #5a6b80;
  --location-dark: #0f1724;
  --location-shadow-sm: 0 8px 22px rgba(16, 24, 40, 0.06);
  --location-shadow-md: 0 16px 40px rgba(15, 23, 36, 0.1);
  --location-shadow-lg: 0 22px 60px rgba(15, 23, 36, 0.14);
}

/* HERO */
.location-page .location-hero--premium {
  min-height: 680px;
}

.location-page .location-hero--premium .page-hero__bg::after {
  background:
    linear-gradient(180deg, rgba(8, 18, 34, 0.72), rgba(8, 18, 34, 0.82)),
    linear-gradient(
      135deg,
      rgba(17, 51, 111, 0.72),
      rgba(23, 71, 166, 0.35),
      rgba(215, 25, 32, 0.18)
    );
}

.location-page .location-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 380px;
  gap: 34px;
  align-items: end;
  width: 100%;
}

.location-page .location-hero__text {
  width: 100%;
  max-width: 760px;
}

.location-page .location-hero__text h1 {
  max-width: 760px;
}

.location-page .location-hero__text p {
  max-width: 680px;
}

.location-page .hero__highlights--premium {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.location-page .hero__highlights--premium li {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  font-weight: 700;
  font-size: 0.92rem;
  color: #fff;
}

.location-page .hero-info-card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 24px;
  padding: 26px;
  box-shadow: var(--location-shadow-lg);
  backdrop-filter: blur(10px);
}

.location-page .hero-info-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  color: #d8e5ff;
}

.location-page .hero-info-card h2 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.location-page .hero-info-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.location-page .hero-info-card__list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.location-page .hero-info-item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.location-page .hero-info-item strong {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}

.location-page .hero-info-item span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.location-page .hero-info-card__actions {
  display: grid;
  gap: 12px;
}

.location-page .hero-info-card .btn {
  width: 100%;
}

/* BREADCRUMBS */
.breadcrumbs-section {
  padding: 18px 0 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.95rem;
  color: #66758a;
}

.breadcrumbs a {
  color: var(--color-blue);
  font-weight: 700;
}

.breadcrumbs span[aria-current="page"] {
  color: var(--color-text);
  font-weight: 700;
}

/* TRUST STRIP */
.location-page .location-trust-strip-section {
  padding-top: 32px;
  padding-bottom: 16px;
}

.location-page .location-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.location-page .location-trust-item {
  background: var(--location-surface);
  border: 1px solid var(--location-border);
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--location-shadow-sm);
}

.location-page .location-trust-item strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.location-page .location-trust-item span {
  color: var(--location-text-soft);
  font-size: 0.96rem;
}

/* INTRO / CONTENT GRID */
.location-page .location-heading-narrow {
  max-width: 860px;
}

.location-page .location-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.location-page .location-content-main {
  display: grid;
  gap: 22px;
}

.location-page .location-copy-card,
.location-page .sidebar-card--premium {
  background: var(--location-surface);
  border: 1px solid var(--location-border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--location-shadow-sm);
}

.location-page .location-copy-card h3,
.location-page .sidebar-card--premium h3 {
  color: var(--color-dark);
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.location-page .location-copy-card p + p {
  margin-top: 14px;
}

.location-page .location-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 110px;
}

.location-page .sidebar-card--cta {
  background: var(--color-grey);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--location-shadow-md);
}

.location-page .sidebar-card--cta h3,
.location-page .sidebar-card--cta p {
  color: var(--location-text-soft);
}

.location-page .sidebar-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--location-text-soft);
}

.location-page .sidebar-contact-list {
  display: grid;
  gap: 10px;
}

.location-page .sidebar-contact-list a {
  color: var(--color-blue);
  font-weight: 700;
}

.location-page .sidebar-card--cta .sidebar-btn {
  width: 100%;
  margin-top: 8px;
}

/* BENEFITS */
.location-page .location-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.location-page .location-benefit-card {
  background: #f8fbff;
  border: 1px solid var(--location-border);
  border-radius: 18px;
  padding: 22px;
}

.location-page .location-benefit-card h3 {
  color: var(--color-dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.location-page .location-benefit-card p {
  color: var(--location-text-soft);
  margin: 0;
}

/* SERVICE CARDS */
.location-page .location-service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.location-page .location-service-card {
  border-radius: 22px;
  box-shadow: var(--location-shadow-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.location-page .location-service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--location-shadow-lg);
}

.location-page .location-service-card .card__image img {
  height: 260px;
}

.location-page .location-service-card__content {
  padding-bottom: 6px;
}

.location-page .location-service-card__content h3,
.location-page .location-service-card__content p {
  padding-left: 24px;
  padding-right: 24px;
}

.location-page .location-service-card__content h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}

.location-page .location-service-card__content p {
  padding-bottom: 24px;
}

/* MID PAGE PROOF BOX */
.location-page .location-proof-section {
  padding-top: 0;
}

.location-page .location-proof-box {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fd 100%);
  border: 1px solid var(--location-border);
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--location-shadow-md);
}

.location-page .location-proof-box__content h2 {
  color: var(--color-dark);
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.08;
}

.location-page .location-proof-box__content p {
  color: var(--location-text-soft);
  max-width: 720px;
}

.location-page .location-proof-box__stats {
  display: grid;
  gap: 14px;
}

.location-page .proof-stat {
  background: #fff;
  border: 1px solid var(--location-border);
  border-radius: 18px;
  padding: 18px 20px;
}

.location-page .proof-stat strong {
  display: block;
  color: var(--color-dark);
  margin-bottom: 5px;
}

.location-page .proof-stat span {
  color: var(--location-text-soft);
  font-size: 0.95rem;
}

/* FEATURE GRID */
.location-page .location-feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

/* AREAS */
.location-page .location-areas-grid .area-pill {
  box-shadow: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.location-page .location-areas-grid .area-pill:hover {
  transform: translateY(-2px);
  border-color: #b8c7d9;
  /* background: #fff; */
}

.location-page .location-areas-grid .area-pill--active {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

/* PROCESS */
.location-page .location-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.location-page .process-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 26px;
}

.location-page .process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  margin-bottom: 18px;
}

.location-page .process-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.location-page .process-card p {
  color: rgba(255, 255, 255, 0.82);
}

/* FAQ */
.location-page .faq-list--premium {
  display: grid;
  gap: 16px;
}

.location-page .faq-item {
  background: #fff;
  border: 1px solid var(--location-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--location-shadow-sm);
}

.location-page .faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  color: var(--color-dark);
}

.location-page .faq-question span:first-child {
  font-size: 1.08rem;
  line-height: 1.35;
}

.location-page .faq-icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex-shrink: 0;
}

.location-page .faq-icon::before,
.location-page .faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--color-blue);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.location-page .faq-icon::before {
  width: 16px;
  height: 2px;
}

.location-page .faq-icon::after {
  width: 2px;
  height: 16px;
}

.location-page .faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.location-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.location-page .faq-answer p {
  padding: 0 24px 22px;
  color: var(--location-text-soft);
}

.location-page .faq-item.is-open .faq-answer {
  max-height: 220px;
}

/* LOCATION LINKS */
.location-page .location-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.location-page .location-link-card {
  display: block;
  background: #fff;
  border: 1px solid var(--location-border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--location-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.location-page .location-link-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--location-shadow-md);
  border-color: #c2cfde;
}

.location-page .location-link-card h3 {
  color: var(--color-dark);
  margin-bottom: 10px;
}

.location-page .location-link-card p {
  color: var(--location-text-soft);
  margin-bottom: 16px;
}

.location-page .location-link-card__cta {
  color: var(--color-blue);
  font-weight: 700;
}

/* CTA */
.location-page .cta-box--premium {
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  border-radius: 28px;
  padding: 42px;
  box-shadow: var(--location-shadow-md);
}

.location-page .cta-box__actions--stacked {
  display: grid;
  gap: 14px;
  min-width: 250px;
}

.location-page .cta-box__actions--stacked .btn {
  width: 100%;
}

/* POLISH */
.location-page .section-heading p,
.location-page .location-copy-card p,
.location-page .sidebar-card p,
.location-page .feature-item p,
.location-page .card p {
  color: var(--location-text-soft);
}

.location-page .feature-item {
  border-radius: 20px;
  box-shadow: var(--location-shadow-sm);
}

/* CAROUSEL WRAPPERS */
.location-page .location-trust-carousel,
.location-page .location-benefits-carousel,
.location-page .location-services-carousel,
.location-page .location-features-carousel,
.location-page .location-process-carousel,
.location-page .location-links-carousel {
  position: relative;
}

/* DOTS - hidden by default */
.location-page .location-trust-dots,
.location-page .location-benefits-dots,
.location-page .location-services-dots,
.location-page .location-features-dots,
.location-page .location-process-dots,
.location-page .location-links-dots {
  display: none;
}

/* DOT BUTTONS - shared */
.location-page .location-trust-dot,
.location-page .location-benefits-dot,
.location-page .location-services-dot,
.location-page .location-features-dot,
.location-page .location-process-dot,
.location-page .location-links-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  background: #cfd8e3;
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.location-page .location-trust-dot.is-active,
.location-page .location-benefits-dot.is-active,
.location-page .location-services-dot.is-active,
.location-page .location-features-dot.is-active,
.location-page .location-process-dot.is-active,
.location-page .location-links-dot.is-active {
  background: var(--color-blue);
  transform: scale(1.15);
}

/* TABLET */
@media (max-width: 1100px) {
  .location-page .location-hero__grid,
  .location-page .location-content-grid,
  .location-page .location-proof-box {
    grid-template-columns: 1fr;
  }

  .location-page .location-sidebar {
    position: static;
  }

  .location-page .location-service-grid,
  .location-page .location-links-grid,
  .location-page .location-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-page .location-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .location-page .location-benefits-grid,
  .location-page .location-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .location-page .location-hero--premium {
    min-height: auto;
  }

  .location-page .page-hero__content {
    padding: 28px 0 20px;
  }

  .location-page .location-hero__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-items: start;
  }

  .location-page .location-hero__text {
    max-width: 100%;
  }

  .location-page .location-hero__text h1 {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
    line-height: 1.05;
    margin-bottom: 10px;
  }

  .location-page .location-hero__text p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .location-page .hero__buttons {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
  }

  .location-page .hero__buttons .btn {
    width: 100%;
    min-height: 46px;
  }

  .location-page .hero__highlights--premium {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .location-page .hero__highlights--premium::-webkit-scrollbar {
    display: none;
  }

  .location-page .hero__highlights--premium li {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 8px 12px;
    font-size: 0.82rem;
    line-height: 1.2;
  }

  .location-page .hero-info-card {
    padding: 16px;
    border-radius: 16px;
  }

  .location-page .hero-info-card h2 {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .location-page .hero-info-card p {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .location-page .hero-info-card__list {
    gap: 8px;
    margin-bottom: 12px;
  }

  .location-page .hero-info-item {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .location-page .hero-info-item strong {
    font-size: 0.95rem;
  }

  .location-page .hero-info-item span {
    font-size: 0.88rem;
  }

  .location-page .hero-info-card__actions {
    gap: 10px;
  }

  .location-page .hero-info-card .btn {
    min-height: 44px;
  }

  .location-page .hero-info-card__list .hero-info-item:last-child {
    display: none;
  }

  .location-page .location-trust-strip-section {
    padding-top: 22px;
    padding-bottom: 0;
  }

  .location-page .location-proof-box,
  .location-page .cta-box--premium {
    padding: 24px;
  }

  .location-page .location-service-card .card__image img {
    height: 220px;
  }

  .location-page .faq-question {
    padding: 18px 20px;
  }

  .location-page .faq-answer p {
    padding: 0 20px 20px;
  }

  /* Shared mobile carousel track */
  .location-page .location-trust-strip,
  .location-page .location-benefits-grid,
  .location-page .location-service-grid,
  .location-page .location-feature-grid,
  .location-page .location-process-grid,
  .location-page .location-links-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .location-page .location-trust-strip::-webkit-scrollbar,
  .location-page .location-benefits-grid::-webkit-scrollbar,
  .location-page .location-service-grid::-webkit-scrollbar,
  .location-page .location-feature-grid::-webkit-scrollbar,
  .location-page .location-process-grid::-webkit-scrollbar,
  .location-page .location-links-grid::-webkit-scrollbar {
    display: none;
  }

  .location-page .location-trust-item,
  .location-page .location-benefit-card,
  .location-page .location-service-card,
  .location-page .feature-item,
  .location-page .process-card,
  .location-page .location-link-card {
    scroll-snap-align: start;
    min-width: 0;
  }

  /* Shared dots row */
  .location-page .location-trust-dots,
  .location-page .location-benefits-dots,
  .location-page .location-services-dots,
  .location-page .location-features-dots,
  .location-page .location-process-dots,
  .location-page .location-links-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
  }
}
/* REVIEWS PAGE */
.reviews-page {
  background: #f4f7fb;
}

.reviews-hero {
  position: relative;
}

.reviews-hero .page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13, 21, 34, 0.9) 0%,
    rgba(13, 21, 34, 0.7) 45%,
    rgba(13, 21, 34, 0.48) 100%
  );
}

.reviews-intro-section {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.reviews-intro-band {
  background: linear-gradient(135deg, #121c2c 0%, #0d1522 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 38px 40px;
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  color: #fff;
  box-shadow: 0 24px 60px rgba(13, 21, 34, 0.24);
}

.reviews-intro-band__main h2 {
  color: #fff;
  margin-bottom: 14px;
}

.reviews-intro-band__main p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  max-width: 760px;
}

.reviews-intro-band__side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.reviews-mini-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px 18px;
}

.reviews-mini-stat strong {
  display: block;
  color: #fff;
  font-size: 1.06rem;
  margin-bottom: 6px;
}

.reviews-mini-stat span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.reviews-list-section {
  background: #0d1522;
  position: relative;
  overflow: hidden;
}

.reviews-list-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -140px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 36, 41, 0.12) 0%,
    rgba(230, 36, 41, 0) 72%
  );
  pointer-events: none;
}

.reviews-list-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0) 72%
  );
  pointer-events: none;
}

.reviews-heading {
  position: relative;
  z-index: 1;
}

.reviews-heading h2,
.reviews-heading p {
  color: #fff;
}

.reviews-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.reviews-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.review-card--premium {
  position: relative;
  background: #ffffff;
  color: #0d1522;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(13, 21, 34, 0.08);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
}

.review-card--premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 54px rgba(0, 0, 0, 0.22);
}

.review-card__quote-mark {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(13, 21, 34, 0.06);
  font-weight: 800;
  pointer-events: none;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.review-card__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0d1522 0%, #1d2c44 100%);
  color: #fff;
  font-size: 1.02rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 3px solid rgba(230, 36, 41, 0.12);
  box-shadow: 0 10px 20px rgba(13, 21, 34, 0.16);
}

.review-card__author h3 {
  margin: 0 0 6px;
  color: #0d1522;
  font-size: 1.22rem;
}

.review-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: #66768b;
  font-weight: 600;
  font-size: 0.96rem;
}

.review-card__stars {
  color: #f2b01e;
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.review-card__body {
  flex: 1;
}

.review-card__text {
  position: relative;
  color: #334155;
  line-height: 1.86;
  font-size: 1.02rem;
}

.review-card__text p {
  margin: 0;
}

.review-card__text.is-collapsed {
  max-height: 170px;
  overflow: hidden;
}

.review-card__text.is-collapsed::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 76px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 1)
  );
}

.review-card__toggle {
  margin-top: 16px;
  padding: 0;
  border: 0;
  background: none;
  color: #e62429;
  font-weight: 700;
  cursor: pointer;
  font: inherit;
}

.review-card__toggle:hover {
  text-decoration: underline;
}

.review-card__footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 21, 34, 0.08);
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 36, 41, 0.1);
  color: #e62429;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 700;
}

.reviews-trust-section {
  background: #f4f7fb;
}

.reviews-trust-wrap {
  background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
  border: 1px solid rgba(13, 21, 34, 0.08);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 18px 40px rgba(13, 21, 34, 0.08);
}

.reviews-trust-header {
  max-width: 760px;
  margin-bottom: 28px;
}

.reviews-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reviews-trust-card {
  background: #0d1522;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(13, 21, 34, 0.14);
}

.reviews-trust-card h3 {
  color: #fff;
  margin-bottom: 10px;
}

.reviews-trust-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.reviews-cta-section {
  background: #0d1522;
}

.reviews-cta-section .cta-box--premium {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(13, 21, 34, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
}

@media (max-width: 991px) {
  .reviews-intro-band,
  .reviews-grid,
  .reviews-trust-grid {
    grid-template-columns: 1fr;
  }

  .reviews-intro-band {
    padding: 30px 24px;
  }

  .reviews-trust-wrap {
    padding: 30px 24px;
  }
}

@media (max-width: 767px) {
  .reviews-intro-section {
    margin-top: -18px;
  }

  .reviews-intro-band,
  .reviews-trust-wrap {
    border-radius: 22px;
  }

  .review-card--premium {
    padding: 22px;
    border-radius: 22px;
  }

  .review-card__avatar {
    width: 52px;
    height: 52px;
    font-size: 0.92rem;
  }

  .review-card__author h3 {
    font-size: 1.08rem;
  }

  .review-card__quote-mark {
    font-size: 3.2rem;
    top: 10px;
    right: 16px;
  }

  .review-card__text.is-collapsed {
    max-height: 190px;
  }
}

.homepage-reviews {
  background: #f5f7fb;
}

.reviews-slider {
  max-width: 920px;
  margin: 0 auto;
}

.reviews-slider__track {
  position: relative;
  min-height: 320px;
}

.reviews-slide {
  display: none;
  background: #ffffff;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(13, 21, 34, 0.08);
  border: 1px solid rgba(13, 21, 34, 0.06);
}

.reviews-slide.is-active {
  display: block;
  animation: fadeReview 0.4s ease;
}

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

.reviews-slide__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.reviews-slide__person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviews-slide__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d1522;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.reviews-slide__author h3 {
  margin: 0 0 4px;
  font-size: 1.1rem;
  color: #0d1522;
}

.reviews-slide__author span {
  color: #5f6b7a;
  font-size: 0.95rem;
}

.reviews-slide__stars {
  color: #d62828;
  font-size: 1.35rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.reviews-slide__body p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #243244;
}

.reviews-slider__controls {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.reviews-slider__arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(13, 21, 34, 0.12);
  background: #ffffff;
  color: #0d1522;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.25s ease;
}

.reviews-slider__arrow:hover {
  background: #0d1522;
  color: #ffffff;
}

.reviews-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #c7cfdb;
  cursor: pointer;
  transition: all 0.25s ease;
}

.reviews-slider__dot.is-active {
  background: #0d1522;
  transform: scale(1.15);
}

.reviews-slider__footer {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 767px) {
  .reviews-slide {
    padding: 24px 20px;
    border-radius: 22px;
  }

  .reviews-slide__top {
    flex-direction: column;
    align-items: flex-start;
  }

  .reviews-slide__stars {
    font-size: 1.15rem;
  }

  .reviews-slide__body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .reviews-slider__controls {
    gap: 12px;
  }

  .reviews-slider__arrow {
    width: 40px;
    height: 40px;
  }
}

.trust-bar {
  background: #f8fafc;
  border-top: 1px solid rgba(13, 21, 34, 0.05);
  border-bottom: 1px solid rgba(13, 21, 34, 0.05);
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 18px 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #0d1522;
  box-shadow: 0 4px 14px rgba(13, 21, 34, 0.05);
}

.trust-bar__icon {
  font-size: 1rem;
}

@media (max-width: 767px) {
  .trust-bar__inner {
    gap: 10px;
    padding: 14px 0;
  }

  .trust-bar__item {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

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

.gallery-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(13, 21, 34, 0.08);
  border: 1px solid rgba(13, 21, 34, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(13, 21, 34, 0.12);
}

.gallery-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef2f7;
}

.gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-card__content {
  padding: 18px 18px 20px;
}

.gallery-card__content h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  color: #0d1522;
}

.gallery-card__content p {
  margin: 0;
  color: #5f6b7a;
  font-size: 0.95rem;
}

.gallery-video-placeholder__box {
  padding: 48px 24px;
  border: 2px dashed rgba(13, 21, 34, 0.16);
  border-radius: 20px;
  text-align: center;
  background: #f8fafc;
  color: #5f6b7a;
  font-weight: 600;
}

@media (max-width: 991px) {
  .gallery-grid--full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .gallery-grid--full {
    grid-template-columns: 1fr;
  }
}

.homepage-gallery-showcase {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.homepage-gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  background: #dfe6ef;
  box-shadow: 0 18px 45px rgba(13, 21, 34, 0.08);
}

.homepage-gallery-card--featured {
  grid-row: span 2;
  min-height: 580px;
}

.homepage-gallery-card__image {
  display: block;
  width: 100%;
  height: 100%;
}

.homepage-gallery-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.homepage-gallery-card:hover .homepage-gallery-card__image img {
  transform: scale(1.04);
}

.homepage-gallery-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(13, 21, 34, 0.85),
    rgba(13, 21, 34, 0.1)
  );
  color: #ffffff;
}

.homepage-gallery-card__location {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(4px);
  font-size: 0.85rem;
  font-weight: 600;
}

.homepage-gallery-card__overlay h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.3;
  color: #ffffff;
}

.homepage-gallery-actions {
  margin-top: 28px;
  text-align: center;
}

@media (max-width: 1100px) {
  .homepage-gallery-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .homepage-gallery-card--featured {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 420px;
  }
}

@media (max-width: 767px) {
  .homepage-gallery-showcase {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .homepage-gallery-card,
  .homepage-gallery-card--featured {
    min-height: 260px;
    grid-column: span 1;
  }

  .homepage-gallery-card__overlay {
    padding: 16px;
  }

  .homepage-gallery-card__overlay h3 {
    font-size: 1rem;
  }
}

.service-areas__intro {
  display: grid;
  grid-template-columns: 1.8fr 0.9fr;
  gap: 28px;
  align-items: start;
  margin-bottom: 32px;
}

.service-areas__heading {
  margin-bottom: 0;
}

.service-areas__card {
  background: #f8fafc;
  border: 1px solid rgba(13, 21, 34, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(13, 21, 34, 0.05);
}

.service-areas__card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #0d1522;
}

.service-areas__card p {
  margin: 0 0 18px;
  color: #516074;
  line-height: 1.7;
}

.service-areas__main {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.area-link-card {
  display: block;
  background: #ffffff;
  border: 1px solid rgba(13, 21, 34, 0.08);
  border-radius: 22px;
  padding: 20px;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(13, 21, 34, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.area-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(13, 21, 34, 0.09);
  border-color: rgba(13, 21, 34, 0.14);
}

.area-link-card__title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0d1522;
}

.area-link-card__text {
  display: block;
  color: #5f6b7a;
  line-height: 1.6;
  font-size: 0.95rem;
}

.service-areas__nearby {
  margin-top: 8px;
}

.service-areas__nearby-label {
  display: inline-block;
  margin-bottom: 14px;
  color: #0d1522;
  font-weight: 700;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.area-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(13, 21, 34, 0.1);
  box-shadow: 0 10px 24px rgba(13, 21, 34, 0.04);
  color: #243244;
  font-weight: 600;
}

@media (max-width: 1200px) {
  .service-areas__main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .service-areas__intro {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767px) {
  .service-areas__main {
    grid-template-columns: 1fr;
  }

  .area-link-card {
    padding: 18px;
  }

  .area-pill {
    padding: 10px 18px;
  }
}

.advice-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: start;
}

.advice-article {
  background: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(13, 21, 34, 0.06);
  border: 1px solid rgba(13, 21, 34, 0.06);
}

.advice-article h3 {
  margin-top: 28px;
  margin-bottom: 10px;
  color: #0d1522;
  font-size: 1.35rem;
}

.advice-article h4 {
  margin: 0 0 8px;
  color: #0d1522;
}

.advice-article p {
  color: #516074;
  line-height: 1.8;
  margin-bottom: 18px;
}

.advice-article a {
  color: #0d1522;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.advice-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.advice-sidebar__card {
  background: #f8fafc;
  border: 1px solid rgba(13, 21, 34, 0.08);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 14px 35px rgba(13, 21, 34, 0.04);
}

.advice-sidebar__card h3 {
  margin: 0 0 10px;
  color: #0d1522;
  font-size: 1.15rem;
}

.advice-sidebar__card p {
  margin: 0 0 16px;
  color: #5f6b7a;
  line-height: 1.7;
}

.advice-links {
  margin: 0;
  padding-left: 18px;
}

.advice-links li + li {
  margin-top: 10px;
}

.advice-links a {
  color: #0d1522;
  text-decoration: none;
  font-weight: 600;
}

.advice-links a:hover {
  text-decoration: underline;
}

.advice-callout {
  margin: 28px 0;
  padding: 22px 24px;
  border-radius: 20px;
  background: #f3f7fc;
  border-left: 4px solid #d62828;
}

.advice-callout strong {
  display: block;
  margin-bottom: 8px;
  color: #0d1522;
  font-size: 1.05rem;
}

.advice-callout p {
  margin: 0;
}

.faq-list {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 20px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(13, 21, 34, 0.08);
}

.faq-item p {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .advice-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .advice-article {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .advice-sidebar__card {
    padding: 20px;
    border-radius: 20px;
  }

  .advice-article h3 {
    font-size: 1.2rem;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.intro-image img {
  width: 100%;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

.benefits-simple__heading {
  max-width: 760px;
}

.benefits-simple__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 42px;
  margin-top: 42px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 0 22px;
  border-bottom: 1px solid #d9e0e7;
}

.benefit-item__icon {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227, 27, 35, 0.08);
  color: #c1121f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 2px;
}

.benefit-item__content h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #111827;
}

.benefit-item__content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
}

.benefits-simple__cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .benefits-simple__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.about-social {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #d9e0e7;
}

.about-social__label {
  display: block;
  margin-bottom: 14px;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111827;
}

.about-social__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.about-social__links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #d9e0e7;
  color: #111827;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
}

.about-social__links a:hover {
  border-color: #e31b23;
  color: #e31b23;
  transform: translateY(-2px);
}

.about-social__links svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gallery-video-placeholder__box {
  padding: 20px;
  background: #fafafa;
  border-radius: 16px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  /*max-width: 900px;*/
  margin: 0 auto;
}

.video-card {
  background: #f5f5f5;
  border-radius: 16px;
  padding: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

@media (max-width: 768px) {
  .video-grid {
    grid-template-columns: 1fr;
    /*max-width: 400px;*/
  }

  .video-card video {
    height: 480px;
  }
}

.seo-copy--coverage {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.seo-copy--coverage .seo-copy__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.seo-copy--coverage .seo-copy__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  transform: scale(1.03);
}

.seo-copy--coverage .seo-copy__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.seo-copy--coverage .seo-copy__content {
  position: relative;
  z-index: 2;
}

.seo-copy--coverage .section-heading h2,
.seo-copy--coverage .seo-copy__grid p {
  color: #ffffff;
}

.seo-copy--coverage .seo-copy__grid {
  position: relative;
}

@media (max-width: 768px) {
  .seo-copy--coverage .seo-copy__bg img {
    object-position: center;
    opacity: 0.18;
  }
}

@media (max-width: 768px) {
  .topbar {
    padding: 8px 0;
  }

  .topbar__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .topbar__left p {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .topbar__right {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .topbar__right a {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .topbar__right a:last-child {
    display: none;
  }

  .navbar {
    padding: 14px 0;
    min-height: auto;
  }

  .site-logo img {
    max-height: 42px;
    width: auto;
  }

  .nav-toggle {
    margin-left: auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 56px;
    padding-bottom: 40px;
  }

  .hero__text {
    max-width: 100%;
  }

  .hero__text .eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.76rem;
    letter-spacing: 0.12em;
  }

  .hero__text h1 {
    margin: 0 0 16px;
    font-size: 2.15rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    max-width: 30ch;
  }

  .hero__text p {
    margin: 0 0 22px;
    font-size: 0.98rem;
    line-height: 1.55;
    max-width: 34ch;
  }

  .hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    min-height: 54px;
    padding: 14px 18px;
  }

  .hero__buttons .btn--secondary {
    opacity: 0.95;
  }

  .hero__highlights {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
  }

  .hero__highlights li {
    width: 100%;
    text-align: center;
  }
}
