:root {
  --navy: #022f66;
  --navy-text: #f5f5f5;
  --header-bg: #f5f5f5;
  --soft: #f5f5f5;
  --soft-2: #fdfdfd;
  --btn-soft: #e5ebfa;
  --muted: #8da3ba;
  --gray-text: #a9b0bb;
  --white: #ffffff;
  --black: #000000;
  --page: 1440px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  color: var(--navy);
  background: var(--soft);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

p {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  background: var(--navy);
  color: #fff;
  padding: 0.5rem 1rem;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 100px;
  background: var(--header-bg);
  display: flex;
  align-items: stretch;
}

.header-left {
  display: flex;
  align-items: center;
  padding-left: 6px;
  flex: 0 0 auto;
}

.logo img {
  width: 244px;
  height: 77px;
  object-fit: contain;
}

.header-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}

.header-nav a {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  padding: 8px;
  position: relative;
  transition: color 0.4s ease;
}

.header-nav a:hover {
  color: var(--black);
}

.header-nav a.active {
  color: var(--black);
  border-top: 5px solid var(--black);
  padding-top: 3px;
  padding-bottom: 8px;
}

.header-nav a.active::before {
  display: none;
}

.header-quote {
  width: 256px;
  align-self: stretch;
  background: var(--navy);
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.header-quote:hover {
  background: #f5f5f5;
  color: var(--navy) !important;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  margin-right: 1rem;
  cursor: pointer;
}

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

/* ========== HERO SLIDER (matched to live Wix mesh @ 1440) ========== */
.hero {
  position: relative;
  background: var(--navy);
  height: 904px;
  overflow: hidden;
}

/* Wix centers the 1440px mesh on wide viewports; arrows stay at viewport edges */
.hero-slide {
  position: absolute;
  top: 0;
  left: max(0px, calc((100vw - 1440px) / 2));
  width: 1440px;
  height: 904px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-img {
  position: absolute;
  width: 381px;
  height: 481px;
  object-fit: cover;
  z-index: 1;
}

.hero-title {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-weight: 700;
}

/* Slide 1 — Most Reliable */
.hero-slide-1 .hero-title {
  left: 281px;
  top: 162px;
  width: 431px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 70px;
  line-height: 0.9;
}

.hero-slide-1 .hero-img-a {
  left: 780px;
  top: 0;
}

.hero-slide-1 .hero-img-b {
  left: 281px;
  top: 515px;
}

.hero-call {
  position: absolute;
  left: 767px;
  top: 644px;
  z-index: 3;
}

/* Slide 2 — Fast & Free Delivery */
.hero-slide-2 .hero-img-a {
  left: 282px;
  top: 0;
}

.hero-slide-2 .hero-title {
  left: 768px;
  top: 146px;
  width: 403px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 70px;
  line-height: 1;
}

.hero-slide-2 .hero-img-b {
  left: 824px;
  top: 416px;
}

.hero-cta {
  position: absolute;
  left: 384px;
  top: 591px;
  z-index: 3;
  width: 231px;
  height: 69px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  background: var(--btn-soft);
}

.hero-cta:hover {
  color: #000000;
}

/* Slide 3 — Experience the Difference */
.hero-slide-3 .hero-title {
  left: 283px;
  top: 136px;
  width: 431px;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 35px;
  line-height: 1.35;
}

.hero-slide-3 .hero-img-a {
  left: 283px;
  top: 334px;
}

.hero-slide-3 .hero-img-b {
  left: 781px;
  top: 0;
}

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

@media (prefers-reduced-motion: no-preference) {
  .hero-slide.active .hero-title,
  .hero-slide.active .hero-call,
  .hero-slide.active .hero-cta {
    animation: heroFadeInUp 1s cubic-bezier(0.445, 0.05, 0.55, 0.95) both;
  }

  .hero-slide.active .hero-call,
  .hero-slide.active .hero-cta {
    animation-delay: 180ms;
  }
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 169px;
  height: 45px;
  border-radius: 60px;
  background: var(--btn-soft);
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  border: 0;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.btn-pill:hover {
  background: #689ade;
  color: var(--navy);
}

.btn-pill.hero-cta {
  width: 231px;
  height: 69px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

.btn-pill.hero-cta:hover {
  color: #000000;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 72px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  pointer-events: auto;
  opacity: 0.45;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-arrow svg {
  width: 21px;
  height: 41px;
  fill: #ffffff;
  display: block;
}

.hero-arrow:hover {
  opacity: 0.9;
}

.hero-arrow.prev {
  left: 8px;
}

.hero-arrow.next {
  right: 8px;
}

.hero-arrow.next svg {
  transform: scaleX(-1);
}

/* ========== INTRO SPLIT ========== */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 900px;
  background: #dae6f2;
}

.intro-left {
  background: var(--navy);
  color: var(--navy-text);
  padding: 100px 80px 70px 135px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
}

.intro-left h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  max-width: 440px;
}

.intro-left p {
  margin-top: 28px;
  font-size: 16px;
  line-height: 1.6;
  color: #f5f5f5;
  max-width: 440px;
}

.intro-left .btn-pill,
.intro-cta {
  margin-top: 40px;
  width: 169px;
  height: 45px;
  background: #e5ebfa;
  color: var(--navy);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
}

.intro-thumb {
  display: none;
}

.intro-right {
  background: #dae6f2;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  overflow: hidden;
}

.intro-right img {
  position: relative;
  width: 490px;
  height: 813px;
  max-width: calc(100% - 80px);
  object-fit: cover;
  inset: auto;
}

/* ========== SERVICES GRID ========== */
.services-section {
  background: var(--white);
  padding: 90px 80px 70px;
}

.services-section > h2 {
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 50px;
  color: var(--navy);
  margin-bottom: 50px;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 15px;
  max-width: 1280px;
  margin: 0 auto;
}

.service-card img {
  width: 100%;
  height: 504px;
  object-fit: cover;
}

.service-card h3 {
  margin-top: 22px;
  margin-left: 43px;
  font-size: 32px;
  color: var(--navy);
  font-weight: 700;
}

.service-card p {
  margin-top: 10px;
  margin-left: 43px;
  font-size: 16px;
  font-style: italic;
  color: var(--navy);
  max-width: 520px;
}

.btn-read {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 40px;
  margin-left: 43px;
  width: 170px;
  height: 50px;
  background: var(--navy);
  color: #f5f5f5;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.btn-read:hover {
  background: #f5f5f5;
  color: var(--navy);
}

/* ========== WHY ========== */
.why-section {
  position: relative;
  min-height: 780px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.why-bg {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: brightness(1.15) contrast(0.9);
  transform: scale(1.08);
  transition: none;
}

.why-section h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  padding: 140px 20px 160px;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.95), 0 0 8px rgba(255, 255, 255, 0.9);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.clients-section h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 48px 72px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

/* Bottom row: center the last two logos under the 3-col grid */
.clients-grid img:nth-child(7) {
  grid-column: 1;
  justify-self: end;
}

.clients-grid img:nth-child(8) {
  grid-column: 2;
  justify-self: start;
}

.footer-top h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  color: #f5f5f5;
}

.why-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.why-feature {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  gap: 14px;
}

.why-feature:nth-child(1) {
  background: #f2f2f2;
  color: var(--navy);
}

.why-feature:nth-child(2) {
  background: var(--navy);
  color: var(--navy-text);
}

.why-feature:nth-child(3) {
  background: #f2f2f2;
  color: var(--navy);
}

.why-feature .icon {
  width: 42px;
  height: 42px;
  opacity: 1;
  stroke: currentColor;
}

.why-feature p {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 280px;
}

/* ========== CLIENTS ========== */
.clients-section {
  background: var(--white);
  padding: 80px 40px 90px;
  text-align: center;
}

.clients-section h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 50px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  gap: 48px 72px;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  justify-items: center;
}

.clients-grid img {
  max-height: 90px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.clients-grid img:hover {
  opacity: 0.8;
  transform: scale(1.04);
}

.clients-grid img:nth-child(7) {
  grid-column: 1;
  justify-self: end;
  transform: translateX(50%);
}

.clients-grid img:nth-child(8) {
  grid-column: 2;
  justify-self: start;
  transform: translateX(50%);
}

.clients-grid img:nth-child(7):hover,
.clients-grid img:nth-child(8):hover {
  transform: translateX(50%) scale(1.04);
}

/* ========== PAGE HERO (About / Services / Contact) ========== */
.page-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.page-split-title {
  background: var(--navy);
  color: var(--navy-text);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  text-align: center;
}

.page-split-title h1 {
  font-size: 80px;
  font-weight: 700;
  color: var(--navy-text);
  line-height: 1.05;
}

.page-split-body {
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 70px;
  text-align: center;
}

.page-split-body p {
  font-size: 16px;
  color: var(--navy);
  font-style: italic;
  line-height: 1.7;
  max-width: 520px;
}

.page-split-body .btn-read,
.page-split-body .btn-pill {
  margin-top: 28px;
}

.page-title-banner {
  background: var(--soft);
  text-align: center;
  padding: 70px 20px 40px;
}

.page-title-banner h1 {
  font-size: 62px;
  color: var(--navy);
  font-weight: 700;
}

/* ========== SERVICE DETAIL BLOCKS ========== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
}

.service-detail.reverse .service-detail-media {
  order: 2;
}

.service-detail.reverse .service-detail-copy {
  order: 1;
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  min-height: 555px;
  object-fit: cover;
}

.service-detail-copy {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}

.service-detail-copy h2 {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 18px;
}

.service-detail-copy p {
  font-size: 16px;
  color: var(--navy);
  font-style: italic;
  line-height: 1.7;
}

.quality-block {
  background: var(--soft);
  padding: 90px 80px;
  text-align: center;
}

.quality-block h2 {
  font-size: 62px;
  color: var(--navy);
  margin-bottom: 24px;
}

.quality-block p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.7;
}

.expert-banner {
  background: var(--navy);
  color: var(--navy-text);
  padding: 100px 80px;
  text-align: center;
}

.expert-banner h2 {
  font-size: 80px;
  margin-bottom: 24px;
  color: var(--navy-text);
}

.expert-banner p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--navy-text);
  line-height: 1.7;
}

/* ========== FOOTER / QUOTE ========== */
.site-footer {
  background: var(--navy);
  color: var(--navy-text);
  padding: 70px 80px 50px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-top h2 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.05;
  color: #f5f5f5;
}

.quote-form {
  display: grid;
  gap: 14px;
}

.quote-form label {
  display: block;
  font-size: 14px;
  color: #ffffff;
  margin-bottom: 4px;
}

.quote-form input,
.quote-form textarea {
  width: 100%;
  background: #ffffff;
  border: 0;
  color: var(--navy);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(2, 47, 102, 0.45);
}

.quote-form textarea {
  min-height: 110px;
  resize: vertical;
}

.quote-form .btn-pill {
  margin-top: 8px;
  border: 0;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.quote-form .btn-pill:hover {
  background: #689ade;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 30px;
  align-items: start;
}

.footer-bottom h4 {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(245, 245, 245, 0.7);
  display: inline-block;
  padding-bottom: 4px;
  margin-bottom: 18px;
  color: var(--navy-text);
}

.footer-bottom p,
.footer-bottom a,
.footer-bottom li {
  font-size: 18px;
  color: var(--navy-text);
  line-height: 1.55;
}

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

.map-embed {
  width: 100%;
  min-height: 260px;
  background: #1a4575;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 260px;
  border: 0;
  filter: grayscale(0.2);
}

.form-success {
  display: none;
  margin-top: 10px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ========== 404 ========== */
.error-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--soft);
  padding: 40px 20px;
}

.error-page h1 {
  font-size: 48px;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ========== TABLET / NARROW DESKTOP ========== */
@media (max-width: 1200px) and (min-width: 901px) {
  .hero {
    height: 754px;
  }

  .hero-slide {
    width: 1440px;
    height: 904px;
    transform: scale(0.833);
    transform-origin: top left;
  }

  .intro-left h2,
  .why-section h2,
  .clients-section h2,
  .footer-top h2,
  .quality-block h2 {
    font-size: 42px;
  }

  .page-split-title h1,
  .expert-banner h2 {
    font-size: 48px;
  }
}

@media (max-width: 1100px) and (min-width: 901px) {
  .hero {
    height: 691px;
  }

  .hero-slide {
    transform: scale(0.764);
  }
}

@media (max-width: 1000px) and (min-width: 901px) {
  .hero {
    height: 628px;
  }

  .hero-slide {
    transform: scale(0.694);
  }
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  /* Header: Free Quote bar on top (matches Wix mobile), logo + hamburger below */
  .site-header {
    height: auto;
    flex-wrap: wrap;
    align-items: center;
    position: sticky;
  }

  .header-quote {
    order: -1;
    flex: 0 0 100%;
    width: 100%;
    height: 44px;
    font-size: 16px;
    background: var(--navy) !important;
    color: #ffffff !important;
  }

  .header-quote:hover,
  .header-quote:focus,
  .header-quote:active {
    background: var(--navy) !important;
    color: #ffffff !important;
  }

  .header-left {
    flex: 1 1 auto;
    min-width: 0;
    padding: 10px 8px 10px 12px;
  }

  .logo img {
    width: min(190px, 58vw);
    height: auto;
  }

  .nav-toggle {
    display: block;
    margin: 0 14px 0 0;
    padding: 10px 4px;
  }

  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    gap: 0.35rem;
    border-bottom: 1px solid rgba(2, 47, 102, 0.12);
    box-shadow: 0 10px 24px rgba(2, 47, 102, 0.08);
  }

  .header-nav.open {
    display: flex;
  }

  .header-nav a {
    font-size: 17px;
    padding: 10px 8px;
  }

  .header-nav a.active {
    border-top: 0;
    border-left: 4px solid var(--black);
    padding-top: 10px;
    padding-left: 10px;
  }

  /* Hero: restore height (was collapsing to 0) + Wix-like 2-col mesh */
  .hero {
    height: auto !important;
    min-height: 0;
    overflow: hidden;
  }

  .hero-slide {
    display: none !important;
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
  }

  .hero-slide.active {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 14px 12px;
    padding: 22px 16px 28px;
    align-items: center;
  }

  .hero-slide-1.active {
    grid-template-areas:
      "title imga"
      "imgb cta";
  }

  .hero-slide-1 .hero-title { grid-area: title; }
  .hero-slide-1 .hero-img-a { grid-area: imga; }
  .hero-slide-1 .hero-img-b { grid-area: imgb; }
  .hero-slide-1 .hero-call { grid-area: cta; }

  .hero-slide-2.active {
    grid-template-areas:
      "imga title"
      "cta imgb";
  }

  .hero-slide-2 .hero-img-a { grid-area: imga; }
  .hero-slide-2 .hero-title { grid-area: title; }
  .hero-slide-2 .hero-img-b { grid-area: imgb; }
  .hero-slide-2 .hero-cta { grid-area: cta; }

  .hero-slide-3.active {
    grid-template-areas:
      "title imgb"
      "imga imgb";
  }

  .hero-slide-3 .hero-title { grid-area: title; }
  .hero-slide-3 .hero-img-a { grid-area: imga; }
  .hero-slide-3 .hero-img-b { grid-area: imgb; align-self: stretch; height: 100%; }

  .hero-title {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    font-size: clamp(24px, 7.2vw, 34px) !important;
    line-height: 1.05 !important;
    margin: 0;
  }

  .hero-slide-3 .hero-title {
    font-size: clamp(18px, 5.2vw, 24px) !important;
    line-height: 1.25 !important;
  }

  .hero-img {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none;
    height: auto !important;
    aspect-ratio: 381 / 420;
    object-fit: cover;
  }

  .hero-call,
  .hero-cta {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    margin: 0;
    justify-self: start;
    align-self: center;
    width: auto;
    min-width: 128px;
    height: 48px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-cta {
    width: auto;
    height: 48px;
    font-size: 15px;
  }

  .hero-arrow {
    width: 22px;
    opacity: 0.5;
  }

  .hero-arrow.prev { left: 2px; }
  .hero-arrow.next { right: 2px; }

  /* Intro: team image first (Wix order), then copy */
  .intro-split {
    display: flex;
    flex-direction: column;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .intro-right {
    order: -1;
    min-height: 0;
    padding: 0;
  }

  .intro-right img {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16 / 11;
    object-fit: cover;
  }

  .intro-left {
    padding: 40px 20px 44px;
  }

  .intro-left h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.1;
    max-width: none;
  }

  .intro-left p {
    max-width: none;
    margin-top: 18px;
  }

  .intro-left .btn-pill,
  .intro-cta {
    margin-top: 28px;
  }

  .intro-thumb {
    display: none;
  }

  /* Stack remaining multi-column sections */
  .page-split,
  .services-grid,
  .service-detail,
  .footer-top,
  .footer-bottom,
  .why-features {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-media,
  .service-detail.reverse .service-detail-copy {
    order: unset;
  }

  .services-section {
    padding: 48px 0 36px;
  }

  .services-section > h2 {
    font-size: clamp(28px, 8vw, 36px);
    margin-bottom: 28px;
    padding: 0 20px;
  }

  .services-grid {
    gap: 36px 0;
  }

  .service-card img,
  .service-detail-media img {
    height: 240px;
    width: 100%;
  }

  .service-card h3,
  .service-card p,
  .btn-read {
    margin-left: 20px;
    margin-right: 20px;
  }

  .service-card h3 {
    font-size: 26px;
    margin-top: 16px;
  }

  .page-split-title {
    padding: 48px 24px;
  }

  .page-split-title h1 {
    font-size: clamp(32px, 9vw, 44px);
  }

  .page-split-body {
    padding: 40px 24px;
  }

  .page-title-banner {
    padding: 48px 20px 28px;
  }

  .page-title-banner h1 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .service-detail-copy {
    padding: 36px 20px 44px;
  }

  .service-detail-copy h2 {
    font-size: 26px;
  }

  .service-detail-media img {
    min-height: 240px;
  }

  .quality-block {
    padding: 48px 20px;
  }

  .quality-block h2,
  .expert-banner h2,
  .why-section h2,
  .clients-section h2,
  .footer-top h2 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .expert-banner {
    padding: 56px 20px;
  }

  .why-section {
    min-height: 0;
  }

  .why-section h2 {
    padding: 64px 20px 48px;
    line-height: 1.15;
  }

  .why-bg {
    inset: 0;
    width: 100%;
    height: 100%;
    transform: none !important;
    filter: brightness(1.08) contrast(0.92);
  }

  .why-feature {
    min-height: 140px;
    padding: 24px 20px;
  }

  .clients-section {
    padding: 48px 16px 56px;
  }

  .clients-section h2 {
    margin-bottom: 28px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    max-width: 100%;
    padding: 0 8px;
  }

  .clients-grid img {
    max-width: 150px;
    width: 100%;
    height: auto;
  }

  .clients-grid img:nth-child(7),
  .clients-grid img:nth-child(8) {
    grid-column: auto;
    justify-self: center;
  }

  .site-footer {
    padding: 48px 20px 36px;
  }

  .footer-top {
    gap: 28px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    gap: 28px;
  }

  .map-embed {
    min-height: 220px;
  }

  .page-split-body,
  .service-detail-copy,
  .quality-block,
  .expert-banner {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Phone: show content immediately (Wix mobile does not hide sections pre-scroll) */
  [data-float] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

@media (max-width: 480px) {
  .hero-slide.active {
    padding: 18px 12px 22px;
    gap: 12px 10px;
  }

  .hero-title {
    font-size: clamp(22px, 7vw, 28px) !important;
  }

  .hero-call,
  .hero-cta {
    min-width: 112px;
    height: 44px;
    font-size: 15px;
    padding: 0 14px;
  }

  .logo img {
    width: min(168px, 56vw);
  }
}

/* ========== WIX motion-floatIn (scroll reveal) ========== */
@keyframes motion-floatIn {
  0% {
    opacity: 0;
    animation-timing-function: step-end;
  }
  0.0001% {
    opacity: 0;
    transform: translate(var(--motion-translate-x, 0px), var(--motion-translate-y, 60px));
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  [data-float] {
    opacity: 0;
    --motion-translate-x: 0px;
    --motion-translate-y: 60px;
    animation: motion-floatIn 1200ms cubic-bezier(0.445, 0.05, 0.55, 0.95) 1ms 1 normal forwards paused;
  }

  [data-float].is-inview {
    animation-play-state: running;
    opacity: 1;
  }

  [data-float][data-float-delay="200"] {
    animation-delay: 200ms;
  }

  [data-float][data-float-delay="400"] {
    animation-delay: 400ms;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-float] {
    opacity: 1;
    transform: none;
  }
}

/* Form inputs focus transition */
.quote-form input,
.quote-form textarea {
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(229, 235, 250, 0.9);
  background: #ffffff;
}

/* Soft image reveal for service cards */
.service-card .service-media,
.service-detail-media,
.intro-right {
  overflow: hidden;
}

.service-card img,
.service-detail-media img,
.intro-right img {
  transition: transform 0.7s cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

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

.service-card img {
  width: 100%;
}
