:root {
  /* Brand */
  --color-primary: #165d9b;
  --color-primary-strong: #114778;
  --color-accent: #1c74bf;
  --color-bg: #ffffff;
  --color-bg-soft: #f4f7fb;
  --color-footer: #082744;

  --blue-950: #082744;
  --blue-900: #0c3154;
  --blue-800: #114778;
  --blue-700: #165d9b;
  --blue-600: #1c74bf;
  --blue-100: #eaf3ff;
  --green-600: #1fa45f;
  --green-700: #16844b;
  --white: #ffffff;
  --gray-50: #f4f7fb;
  --gray-100: #e7edf5;
  --gray-300: #b4c1d3;
  --gray-500: #5b6f89;
  --gray-700: #2d4057;

  --shadow-card: 0 2px 14px rgba(12, 49, 84, 0.07);
  --shadow-sm: 0 3px 10px rgba(12, 49, 84, 0.08);
  --shadow-md: 0 12px 28px rgba(12, 49, 84, 0.12);
  --shadow-lg: 0 24px 54px rgba(12, 49, 84, 0.16);

  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;

  --header-h: 72px;
  --space-section: clamp(3rem, 6vw, 5rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal,
  .hero-bg,
  .btn,
  .card,
  .service-card,
  .pill,
  .why-card,
  .quote,
  .scroll-cta {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--blue-600);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--blue-800);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid rgba(28, 116, 191, 0.45);
  outline-offset: 3px;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(180, 193, 211, 0.35);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding-block: 0.5rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  padding: 0.15rem 0.4rem 0.15rem 0;
  margin-left: -0.05rem;
  border-radius: 12px;
  transition: background 0.2s var(--ease);
}

.logo-mark:hover {
  background: rgba(22, 93, 155, 0.07);
}

.logo-mark:focus-visible {
  outline: 3px solid rgba(28, 116, 191, 0.45);
  outline-offset: 3px;
  border-radius: 12px;
}

/* Full brand PNG is tall; crop to top lockup so nav stays readable (not thin transparent sheet for dark BG) */
.logo-mark img {
  display: block;
  height: 48px;
  width: 48px;
  max-width: 48px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 1px 2px rgba(8, 39, 68, 0.1));
}

@media (max-width: 520px) {
  .logo-mark img {
    height: 42px;
    width: 42px;
    max-width: 42px;
  }
}

@media (max-width: 400px) {
  .logo-mark img {
    height: 38px;
    width: 38px;
    max-width: 38px;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: clamp(0.35rem, 1.5vw, 1.1rem);
  flex-wrap: nowrap;
  justify-content: center;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  padding: 0.4rem 0.55rem;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav a:hover {
  color: var(--blue-800);
  background: rgba(22, 93, 155, 0.08);
}

.nav a.active {
  color: var(--blue-900);
  background: var(--blue-100);
  border-color: rgba(22, 93, 155, 0.2);
}

.header-cta {
  display: none;
  padding: 0.62rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue-700);
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(22, 93, 155, 0.38);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  white-space: nowrap;
}

.header-cta:hover {
  color: var(--white);
  transform: translateY(-2px);
  background: var(--blue-800);
  box-shadow: 0 8px 24px rgba(17, 71, 120, 0.45);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}

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

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

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

@media (min-width: 880px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 0.75rem;
  }

  .logo-mark {
    flex: 0 0 auto;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
    flex: 1 1 auto;
    justify-content: center;
    gap: clamp(0.12rem, 0.8vw, 0.55rem);
  }

  .header-cta {
    display: inline-flex;
    flex: 0 0 auto;
  }
}

.site-header.is-open .nav {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1.25rem 1.5rem 1.5rem;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
}

@media (min-width: 880px) {
  .site-header.is-open .nav {
    position: static;
    flex-direction: row;
    padding: 0;
    border: none;
    box-shadow: none;
  }
}

.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(3rem, 8vw, 5rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(28, 116, 191, 0.12), transparent),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(12, 49, 84, 0.08), transparent),
    linear-gradient(180deg, var(--gray-50) 0%, var(--white) 55%);
  animation: heroFade 1.2s var(--ease) forwards;
}

@keyframes heroFade {
  from {
    opacity: 0.7;
  }
  to {
    opacity: 1;
  }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.hero-sub {
  margin: 0 0 1.75rem;
  font-size: 1.0625rem;
  color: var(--gray-500);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.95rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 521px) {
  .hero-actions .btn {
    flex: 1 1 auto;
    min-width: 168px;
    max-width: 260px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 50px;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.965rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s, border-color 0.2s;
}

@media (max-width: 479px) {
  .btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    min-height: 48px;
  }
}

.btn-primary {
  color: var(--white);
  background: var(--blue-700);
  border: 2px solid var(--blue-700);
  box-shadow: 0 10px 22px rgba(22, 93, 155, 0.35);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--blue-800);
  border-color: var(--blue-800);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(12, 49, 84, 0.4);
}

.btn-secondary {
  color: var(--blue-800);
  background: var(--white);
  border-color: var(--blue-700);
  box-shadow: 0 4px 12px rgba(12, 49, 84, 0.08);
}

.btn-secondary:hover {
  color: var(--blue-900);
  border-color: var(--blue-800);
  background: var(--blue-100);
  transform: translateY(-2px);
}

.btn-light {
  color: var(--blue-900);
  background: var(--white);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  color: var(--blue-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-card {
  margin-top: auto;
  padding: 0.65rem 1.15rem;
  font-size: 0.9375rem;
  color: var(--blue-800);
  background: var(--white);
  border: 2px solid var(--blue-700);
  box-shadow: 0 3px 10px rgba(12, 49, 84, 0.07);
}

.btn-card:hover {
  color: var(--blue-900);
  background: var(--blue-100);
  border-color: var(--blue-800);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.btn-icon-wa {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  object-fit: contain;
}

/* Inline WhatsApp glyph: vector-crisp, slightly larger than .btn-icon phone for optical balance */
.btn-icon-wa-svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: block;
  shape-rendering: geometricPrecision;
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

.hero-trust {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--gray-500);
  font-size: 0.9375rem;
}

.hero-trust li {
  margin-bottom: 0.35rem;
}

.hero-circle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 540px;
  margin-left: auto;
}

.hero-circle {
  margin: 0;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  background: var(--gray-100);
}

.hero-circle-main {
  grid-column: 1 / -1;
  width: min(280px, 100%);
  justify-self: center;
}

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

@media (max-width: 900px) {
  .hero-circle-grid {
    margin: 0 auto;
    max-width: 420px;
  }

  .hero-circle-main {
    width: min(240px, 100%);
  }
}

.section {
  padding: var(--space-section) 0;
}

.section-alt {
  background: var(--gray-50);
}

.section-accent {
  background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-950) 100%);
  color: rgba(255, 255, 255, 0.92);
}

.section-accent .section-title.light {
  color: var(--white);
}

.section-accent p {
  color: rgba(255, 255, 255, 0.88);
}

.section-accent a:not(.btn) {
  color: var(--blue-100);
}

.trust-strip {
  padding-top: clamp(1.4rem, 4vw, 2.1rem);
  padding-bottom: clamp(1.4rem, 4vw, 2.1rem);
}

.trust-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.trust-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 100%);
  border: 1px solid rgba(126, 157, 193, 0.28);
  box-shadow: 0 14px 30px rgba(16, 72, 124, 0.1);
  border-radius: 22px;
  padding: 1rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.trust-card::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  right: -38px;
  top: -44px;
  background: radial-gradient(circle, rgba(22, 93, 155, 0.14), rgba(22, 93, 155, 0));
  pointer-events: none;
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 93, 155, 0.4);
  box-shadow: 0 18px 34px rgba(16, 72, 124, 0.16);
}

.trust-card:nth-child(1) {
  border-radius: 26px 14px 26px 14px;
}

.trust-card:nth-child(2) {
  border-radius: 16px 26px 16px 26px;
}

.trust-card:nth-child(3) {
  border-radius: 30px 16px 16px 24px;
}

.trust-card:nth-child(4) {
  border-radius: 16px 24px 30px 16px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-700);
  background: linear-gradient(160deg, #e9f3ff 0%, #dcecff 100%);
  border: 1px solid rgba(22, 93, 155, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.trust-card h2 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--blue-900);
  line-height: 1.3;
}

@media (max-width: 700px) {
  .trust-strip {
    padding-top: 0.8rem;
    padding-bottom: 0.85rem;
  }

  .trust-grid {
    gap: 0.62rem;
  }

  .trust-card {
    border-radius: 18px;
    padding: 0.72rem 0.75rem;
    gap: 0.55rem;
    box-shadow: 0 10px 22px rgba(16, 72, 124, 0.1);
  }

  .trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .trust-card h2 {
    font-size: 0.92rem;
    line-height: 1.22;
  }
}

.cta-banner {
  padding-top: clamp(1.2rem, 3.5vw, 1.8rem);
  padding-bottom: clamp(1.2rem, 3.5vw, 1.8rem);
}

.cta-banner-wrap {
  border-radius: 18px;
  border: 1px solid rgba(17, 71, 120, 0.2);
  background: linear-gradient(135deg, #f1f7ff 0%, #dbeafc 100%);
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 2.8vw, 1.45rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cta-banner-wrap h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.8rem);
  color: var(--blue-900);
}

@media (max-width: 780px) {
  .cta-banner-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}

.section-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.section-lead {
  margin: 0;
  color: var(--gray-500);
  font-size: 1.0625rem;
}

.section-accent .section-lead {
  color: rgba(255, 255, 255, 0.85);
}

.about-text {
  margin: 0;
  font-size: 1.125rem;
  color: var(--gray-700);
}

.why-choose {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 55%, var(--gray-50) 100%);
}

.why-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.why-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
  max-width: 1040px;
  margin-inline: auto;
  align-items: stretch;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

.why-card {
  position: relative;
  margin: 0;
  height: 100%;
  padding: 1.35rem 1.3rem 1.4rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(180, 193, 211, 0.45);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  background: linear-gradient(180deg, var(--blue-600), var(--blue-800));
  opacity: 0.85;
}

.why-card:hover {
  border-color: rgba(22, 93, 155, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.why-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 10px;
}

.why-card-title {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}

.why-card-text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 0.935rem;
  line-height: 1.56;
  color: var(--gray-500);
}

.services-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  align-items: stretch;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(180, 193, 211, 0.34);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 93, 155, 0.26);
}

.service-card-media {
  flex-shrink: 0;
  width: 100%;
  height: 220px;
  background: var(--gray-100);
  border-radius: 0;
  overflow: hidden;
  border: 0;
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 1.2rem 1.25rem 1.3rem;
  text-align: left;
  align-items: flex-start;
  min-width: 0;
}

.service-card-body .card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-900);
  line-height: 1.25;
}

.service-card p {
  margin: 0 0 1rem;
  max-width: none;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--gray-500);
  flex-grow: 1;
  line-clamp: 3;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .btn-card {
  margin-top: auto;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  box-shadow: none;
  width: 100%;
  white-space: normal;
}

@media (max-width: 920px) {
  .service-card-media {
    height: 200px;
  }
}

.ductable-section {
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.ductable-layout {
  display: grid;
  gap: 1.4rem;
  align-items: stretch;
}

@media (min-width: 900px) {
  .ductable-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.ductable-video {
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(180, 193, 211, 0.4);
  box-shadow: var(--shadow-card);
  background: var(--gray-100);
}

.ductable-video video {
  width: 100%;
  height: auto;
  min-height: 280px;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  background: #0f2234;
}

.card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180, 193, 211, 0.28);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(22, 93, 155, 0.26);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: var(--radius-sm);
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-900);
}

.card p {
  margin: 0 0 1.25rem;
  font-size: 0.98rem;
  color: var(--gray-500);
  flex-grow: 1;
}

.pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  max-width: 800px;
  margin-inline: auto;
}

.pill {
  padding: 0.65rem 1.2rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue-900);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
}

.pill:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
  background: var(--blue-100);
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 880px) {
  .split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.split-copy p {
  margin: 0 0 1rem;
}

.split-copy .btn {
  margin-top: 0.5rem;
}

.split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.split-img-mosaic {
  padding: 0;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.split-tile {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--shadow-sm);
}

.split-tile-large {
  grid-row: 1 / 3;
  border-radius: 36% 64% 30% 70% / 30% 36% 64% 70%;
}

.split-tile-top {
  border-radius: 64% 36% 62% 38% / 42% 58% 42% 58%;
}

.split-tile-bottom {
  border-radius: 34% 66% 68% 32% / 62% 36% 64% 38%;
}

.split-tile img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .split-img-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .split-tile-large {
    grid-row: auto;
  }

  .split-tile,
  .split-tile-large,
  .split-tile-top,
  .split-tile-bottom {
    border-radius: 16px;
  }

  .split-tile img {
    min-height: 170px;
  }
}

.gallery-page-lead {
  max-width: 42rem;
  margin: 0;
  color: var(--gray-500);
}

.gallery-preview {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .gallery-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-preview-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.gallery-preview-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.gallery-preview-item:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.gallery-preview-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-preview-item video {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  background: #0f3e6a;
}

.gallery-preview--home .gallery-preview-item:nth-child(1) {
  border-radius: 58% 42% 40% 60% / 42% 58% 42% 58%;
}

.gallery-preview--home .gallery-preview-item:nth-child(2) {
  border-radius: 24% 76% 68% 32% / 34% 26% 74% 66%;
}

.gallery-preview--home .gallery-preview-item:nth-child(3) {
  border-radius: 72% 28% 72% 28% / 32% 68% 32% 68%;
}

.gallery-preview.gallery-preview--quad {
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .gallery-preview.gallery-preview--quad {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .gallery-preview.gallery-preview--quad {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-inline-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
  margin: 0 0 1rem;
  display: block;
}

.appliance-strip {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 560px) {
  .appliance-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

.appliance-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

.appliance-strip-note {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--gray-500);
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
}

.appliance-strip-section {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.gallery-cta-wrap {
  margin-top: 1.75rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 560px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.92rem;
  color: var(--gray-500);
  background: var(--white);
}

.gallery-image-grid,
.gallery-video-grid {
  display: grid;
  gap: 1.05rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  align-items: start;
}

@media (min-width: 620px) {
  .gallery-image-grid,
  .gallery-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .gallery-image-grid,
  .gallery-video-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
  }
}

.gallery-shape {
  border-radius: 26px 14px 24px 16px;
}

.gallery-shape:nth-child(2),
.gallery-shape:nth-child(6),
.gallery-shape:nth-child(9) {
  border-radius: 68% 32% 56% 44% / 24% 64% 36% 76%;
}

.gallery-shape:nth-child(3),
.gallery-shape:nth-child(7) {
  border-radius: 30% 70% 24% 76% / 74% 24% 76% 26%;
}

.gallery-shape:nth-child(4),
.gallery-shape:nth-child(8),
.gallery-shape:nth-child(10) {
  border-radius: 16px 28px 16px 28px;
}

.gallery-video-card {
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(180, 193, 211, 0.34);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  background: var(--white);
  content-visibility: auto;
  contain-intrinsic-size: 360px;
}

.gallery-video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #0f3e6a 0%, #1b5c95 100%);
  color: rgba(255, 255, 255, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.gallery-video-card p {
  margin: 0;
  padding: 0.6rem 0.9rem 0.8rem;
  color: var(--gray-600);
  font-size: 0.92rem;
}

.gallery-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #0f3e6a;
}

.media-lightbox[hidden] {
  display: none;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.media-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 17, 32, 0.8);
}

.media-lightbox-dialog {
  position: relative;
  width: min(96vw, 1020px);
  max-height: 90vh;
  background: #061c33;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.42);
}

.media-lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #06213d;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.media-lightbox-content img,
.media-lightbox-content video {
  width: 100%;
  max-height: 90vh;
  display: block;
  object-fit: contain;
  background: #061c33;
}

.gallery-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 2rem 0 0;
}

.testimonials {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .testimonials {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.quote {
  margin: 0;
  height: 100%;
  padding: 1.35rem 1.3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(180, 193, 211, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.quote:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quote p {
  margin: 0 0 1.15rem;
  flex: 1 1 auto;
  font-size: 0.975rem;
  line-height: 1.58;
  color: var(--gray-700);
}

.quote footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.875rem;
}

.quote cite {
  font-style: normal;
  font-weight: 700;
  color: var(--blue-900);
}

.quote footer span {
  color: var(--gray-500);
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.contact-grid--home {
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.home-contact-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 2.75rem);
  max-width: min(1040px, 100%);
  margin-inline: auto;
}

.contact-intro {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}

.contact-intro .section-title {
  margin-bottom: 0.65rem;
}

.contact-intro .section-lead {
  margin: 0 auto;
  max-width: 48ch;
}

.contact-intro .contact-blurb {
  margin-inline: auto;
}

.home-map {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(180, 193, 211, 0.45);
  background: var(--gray-100);
}

.home-map-frame {
  display: block;
  width: 100%;
  min-height: 280px;
  height: clamp(280px, 42vw, 400px);
  border: 0;
}

.home-map-external {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0.65rem 1rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  background: var(--white);
  border-top: 1px solid rgba(180, 193, 211, 0.4);
}

.contact-info {
  min-width: 0;
}

.contact-info .section-title {
  text-align: left;
}

.contact-info .section-lead {
  text-align: left;
}

.address {
  margin: 1.5rem 0;
  font-style: normal;
  color: var(--gray-700);
}

.contact-line {
  margin: 0 0 1rem;
  color: var(--gray-700);
}

.contact-line a {
  font-weight: 600;
}

.contact-blurb {
  margin: 0.5rem 0 0;
  color: var(--gray-500);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40ch;
}

.contact-form {
  padding: 1.75rem;
  background: var(--gray-50);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180, 193, 211, 0.34);
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.form-note {
  margin: 0 0 1.25rem;
  font-size: 0.875rem;
  color: var(--gray-500);
}

.form-feedback {
  margin: 0 0 1rem;
  min-height: 1.2rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-feedback.is-error {
  color: #b42318;
}

.form-feedback.is-success {
  color: var(--green-700);
}

.faq-grid {
  display: grid;
  gap: 0.9rem;
  max-width: 980px;
  margin-inline: auto;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(16, 72, 124, 0.14);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  box-shadow: 0 8px 20px rgba(16, 72, 124, 0.07);
}

.faq-item summary {
  position: relative;
  padding-right: 1.8rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary);
  list-style: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-700);
  background: var(--blue-100);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0.7rem 0 0;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
}

.contact-form label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-900);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid rgba(180, 193, 211, 0.6);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(28, 116, 191, 0.2);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.footer {
  padding: 3rem 0 1.5rem;
  background: var(--blue-950);
  color: rgba(255, 255, 255, 0.85);
}

.footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: 1.2fr repeat(3, 1fr);
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 0.85rem;
  padding: 0;
  line-height: 0;
  text-decoration: none;
  background: transparent;
  border: none;
  border-radius: 0;
}

.footer-logo:hover {
  text-decoration: none;
}

.footer-logo img {
  height: 84px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  object-position: left center;
  opacity: 1;
}

.footer-logo:hover img {
  transform: scale(1.01);
}

.footer-tag {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 28ch;
}

.footer-heading {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.footer-bottom {
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.scroll-cta {
  position: fixed;
  left: 0.85rem;
  top: 50%;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transform: translate(-120%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s;
}

.scroll-cta.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-cta a {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  overflow: visible;
  box-sizing: border-box;
  padding: 0;
}

.scroll-cta-phone svg {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
}

.scroll-cta-wa-img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  object-fit: contain;
}

.scroll-cta a:hover {
  color: var(--white);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.scroll-cta-phone {
  background: var(--blue-700);
}

.scroll-cta-phone:hover {
  background: var(--blue-800);
}

.scroll-cta-wa {
  background: #25d366;
  line-height: 0;
}

.scroll-cta-wa:hover {
  background: #1ebe5d;
}

.scroll-enquiry {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 205;
  transform: translate(120%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  background: var(--green-600);
  border-radius: 12px 0 0 12px;
  padding: 0.9rem 0.58rem;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease), visibility 0.35s, background 0.2s;
}

.scroll-enquiry.is-visible {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scroll-enquiry:hover {
  color: var(--white);
  background: var(--green-700);
}

@media (max-width: 520px) {
  .scroll-cta {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(180, 193, 211, 0.55);
    border-radius: 16px;
    padding: 0.45rem;
    box-shadow: var(--shadow-md);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .scroll-cta.is-visible {
    transform: none;
  }

  .scroll-cta a {
    flex: 1;
    width: auto;
    height: 50px;
    border-radius: 12px;
  }

  .scroll-enquiry {
    display: none;
  }

  .scroll-enquiry.is-visible {
    transform: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

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

.reveal.reveal-instant {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-delay {
  transition-delay: 0.1s;
}

.page-hero {
  padding: clamp(2.75rem, 7vw, 4.25rem) 0 clamp(2.25rem, 5vw, 3rem);
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.page-hero h1 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.9vw, 2.35rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--blue-900);
  letter-spacing: -0.02em;
}

.page-hero p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.58;
  color: var(--gray-500);
  max-width: 38rem;
}

.about-hero {
  position: relative;
  min-height: clamp(360px, 56vw, 540px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(8, 39, 68, 0.82) 0%, rgba(8, 39, 68, 0.62) 45%, rgba(8, 39, 68, 0.38) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(3.1rem, 8vw, 5.1rem) 0;
}

.about-hero-content h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3rem);
  color: var(--white);
  letter-spacing: -0.02em;
}

.about-hero-content p {
  margin: 0;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 52ch;
}

.about-hero-actions {
  margin-top: 1.4rem;
}

.about-intro {
  padding-bottom: 2.2rem;
}

.about-intro .about-text {
  text-align: center;
  max-width: 72ch;
  margin-inline: auto;
}

.about-story-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.2rem;
  }
}

.about-story-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.about-story-copy {
  display: grid;
  gap: 1rem;
}

.about-trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 620px) {
  .about-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .about-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.about-trust-card {
  min-height: 184px;
  justify-content: center;
}

.about-trust-card h3 {
  margin: 0;
  text-align: left;
}

.about-gallery {
  display: grid;
  gap: 1rem;
}

@media (min-width: 680px) {
  .about-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-gallery-item {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180, 193, 211, 0.32);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.about-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-gallery-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.about-gallery-item figcaption {
  padding: 0.8rem 0.95rem 0.95rem;
  font-size: 0.9rem;
  color: var(--gray-500);
}

.about-cta {
  padding-top: 0;
}

.about-cta-inner {
  text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #eaf4ff 0%, #dceeff 100%);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: var(--shadow-sm);
}

.about-cta-inner .section-title {
  margin-bottom: 1rem;
}

.about-cta-inner .hero-actions {
  justify-content: center;
}

@media (max-width: 520px) {
  .about-hero-content p {
    font-size: 1rem;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

.about-page-hero {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
  padding-top: clamp(2.1rem, 5vw, 3rem);
  padding-bottom: clamp(1.4rem, 3.6vw, 2.2rem);
}

.about-page-hero .eyebrow {
  margin-bottom: 0.6rem;
}

.about-page-hero h1 {
  margin: 0 0 0.9rem;
  max-width: 20ch;
}

.about-page-hero p {
  max-width: 58ch;
}

.about-page-hero .container {
  position: relative;
  padding: clamp(1.35rem, 3.4vw, 2.3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 243, 255, 0.78) 100%);
  border: 1px solid rgba(180, 193, 211, 0.42);
  box-shadow: 0 12px 30px rgba(12, 49, 84, 0.08);
  overflow: hidden;
}

.about-page-hero .container::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 116, 191, 0.2) 0%, rgba(28, 116, 191, 0) 70%);
  pointer-events: none;
}

.about-intro-grid {
  display: grid;
  gap: clamp(1.4rem, 3.4vw, 2.2rem);
  align-items: center;
}

@media (min-width: 960px) {
  .about-intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.about-intro-copy .about-text {
  margin-bottom: 1.15rem;
}

.about-points {
  margin: 0 0 1.35rem;
  padding-left: 1.15rem;
  color: var(--gray-700);
}

.about-points li {
  margin-bottom: 0.45rem;
}

.about-shape-stack {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: end;
}

.about-shape {
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.about-shape-one {
  grid-column: 1 / 7;
  aspect-ratio: 16 / 10;
  border-radius: 28% 72% 60% 40% / 36% 40% 60% 64%;
}

.about-shape-two {
  grid-column: 3 / 7;
  margin-top: -3.1rem;
  aspect-ratio: 1 / 1;
  border-radius: 58% 42% 44% 56% / 42% 58% 46% 54%;
  max-width: 270px;
  justify-self: end;
}

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

.about-metrics {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.about-metrics .card {
  min-height: 180px;
}

.about-gallery-pro {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .about-gallery-pro {
    grid-template-columns: 1fr;
  }
}

.about-gallery-pro-item {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(180, 193, 211, 0.36);
  background: var(--white);
}

.about-gallery-pro-item:nth-child(1) {
  border-radius: 26% 74% 24% 76% / 18% 22% 78% 82%;
}

.about-gallery-pro-item:nth-child(2) {
  border-radius: 24% 76% 72% 28% / 22% 18% 82% 78%;
}

.about-gallery-pro-item:nth-child(3) {
  border-radius: 20% 80% 28% 72% / 72% 28% 72% 28%;
}

.about-gallery-pro-item:nth-child(4) {
  border-radius: 74% 26% 68% 32% / 26% 66% 34% 74%;
}

.about-gallery-pro-item img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
}

.service-page-hero {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
  padding-top: clamp(2.1rem, 5vw, 3rem);
  padding-bottom: clamp(1.4rem, 3.6vw, 2.2rem);
}

.service-page-hero h1 {
  margin: 0 0 0.9rem;
  max-width: 24ch;
}

.service-page-hero p {
  max-width: 58ch;
}

.service-page-hero .container {
  position: relative;
  padding: clamp(1.35rem, 3.4vw, 2.3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 243, 255, 0.78) 100%);
  border: 1px solid rgba(180, 193, 211, 0.42);
  box-shadow: 0 12px 30px rgba(12, 49, 84, 0.08);
  overflow: hidden;
}

.service-page-hero .container::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 116, 191, 0.2) 0%, rgba(28, 116, 191, 0) 70%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .about-page-hero .container,
  .service-page-hero .container {
    border-radius: 18px;
    padding: 1.15rem 1rem 1.2rem;
  }
}

.whyus-page-hero,
.reviews-page-hero,
.secondhand-page-hero,
.contact-page-hero,
.gallery-page-hero-pro {
  background: linear-gradient(180deg, #eef4fb 0%, #f8fbff 100%);
  padding-top: clamp(2.1rem, 5vw, 3rem);
  padding-bottom: clamp(1.4rem, 3.6vw, 2.2rem);
}

.whyus-page-hero .container,
.reviews-page-hero .container,
.secondhand-page-hero .container,
.contact-page-hero .container,
.gallery-page-hero-pro .container {
  position: relative;
  padding: clamp(1.35rem, 3.4vw, 2.3rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(234, 243, 255, 0.78) 100%);
  border: 1px solid rgba(180, 193, 211, 0.42);
  box-shadow: 0 12px 30px rgba(12, 49, 84, 0.08);
  overflow: hidden;
}

.whyus-page-hero .container::after,
.reviews-page-hero .container::after,
.secondhand-page-hero .container::after,
.contact-page-hero .container::after,
.gallery-page-hero-pro .container::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -90px;
  top: -105px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 116, 191, 0.2) 0%, rgba(28, 116, 191, 0) 70%);
  pointer-events: none;
}

.whyus-page-hero h1,
.reviews-page-hero h1,
.secondhand-page-hero h1,
.contact-page-hero h1,
.gallery-page-hero-pro h1 {
  margin: 0 0 0.9rem;
  max-width: 24ch;
}

.whyus-page-hero p,
.reviews-page-hero p,
.secondhand-page-hero p,
.contact-page-hero p,
.gallery-page-hero-pro p {
  max-width: 58ch;
}

.service-page-grid .service-card h3 {
  font-size: 1rem;
}

.service-page-grid .service-card p {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.gallery-page-hero-pro .gallery-page-lead {
  max-width: 60ch;
}


.gallery-grid .gallery-item:nth-child(1) {
  border-radius: 24% 76% 20% 80% / 18% 26% 74% 82%;
}

.gallery-grid .gallery-item:nth-child(2) {
  border-radius: 70% 30% 66% 34% / 30% 70% 30% 70%;
}

.gallery-grid .gallery-item:nth-child(3) {
  border-radius: 26% 74% 74% 26% / 22% 20% 80% 78%;
}

.reviews-photo-wrap {
  display: flex;
  justify-content: flex-end;
}

.reviews-photo {
  margin: 0;
  width: min(100%, 430px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 68% 32% 62% 38% / 30% 64% 36% 70%;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

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

@media (max-width: 640px) {
  .whyus-page-hero .container,
  .reviews-page-hero .container,
  .secondhand-page-hero .container,
  .contact-page-hero .container,
  .gallery-page-hero-pro .container {
    border-radius: 18px;
    padding: 1.15rem 1rem 1.2rem;
  }

  .gallery-grid .gallery-item:nth-child(1),
  .gallery-grid .gallery-item:nth-child(2),
  .gallery-grid .gallery-item:nth-child(3) {
    border-radius: var(--radius);
  }

  .reviews-photo {
    width: 100%;
    border-radius: 20px;
  }
}

.service-intro-grid {
  display: grid;
  gap: clamp(1.4rem, 3.4vw, 2.2rem);
  align-items: center;
}

@media (min-width: 960px) {
  .service-intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.service-shape-stack {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.95rem;
  align-items: end;
}

.service-shape {
  margin: 0;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.service-shape-main {
  grid-column: 1 / 7;
  aspect-ratio: 16 / 10;
  border-radius: 64% 36% 54% 46% / 32% 56% 44% 68%;
}

.service-shape-side {
  grid-column: 3 / 7;
  margin-top: -3rem;
  aspect-ratio: 1 / 1;
  border-radius: 30% 70% 72% 28% / 38% 31% 69% 62%;
  max-width: 270px;
  justify-self: end;
}

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

.service-page-grid {
  margin-top: 0.6rem;
}

.content-grid {
  display: grid;
  gap: 1.4rem;
}

@media (min-width: 760px) {
  .content-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}

.feature-box {
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(180, 193, 211, 0.3);
  border-radius: var(--radius);
  padding: 1.5rem 1.45rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.feature-box .feature-inline-img {
  flex-shrink: 0;
}

.feature-box h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-900);
}

.feature-box p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.62;
  color: var(--gray-700);
}

.feature-box p:last-child {
  margin-bottom: 0;
}

.feature-box .btn {
  margin-top: auto;
  align-self: flex-start;
}

.feature-box .cta-row {
  margin-top: auto;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.service-detail h2,
.service-detail h3 {
  color: var(--blue-900);
}

.service-detail p {
  color: var(--gray-700);
}

.product-grid {
  display: grid;
  gap: 1.35rem;
  align-items: stretch;
}

@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(180, 193, 211, 0.34);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  flex-shrink: 0;
}

.product-copy {
  padding: 1.05rem 1.1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-copy h3 {
  margin: 0 0 0.4rem;
  color: var(--blue-900);
}

.price {
  margin: 0 0 0.75rem;
  color: var(--blue-700);
  font-weight: 700;
  font-size: 0.95rem;
}

.product-copy p:not(.price) {
  flex: 1;
  margin: 0 0 1rem;
}

.product-copy .btn {
  margin-top: auto;
  align-self: stretch;
}
