/* ==========================================================================
   Laptech — SETTINGS FILE
   Palette derived from official Laptech logo:
       logo blue:   #0091FC (Electric Cyan-Blue)
       brand blue:  #0077E6 (Accessible Action Blue, WCAG 2.2 AA)
       logo black:  #070604 (Tech Obsidian)
   ========================================================================== */

/* --- Local Self-Hosted Fonts -------------------------------------------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/sora-latin-500.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/sora-latin-600.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/sora-latin-700.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;

  /* --- brand ------------------------------------------------------------ */
  --color-logo:        #0091fc;   /* official logo electric cyan-blue        */
  --color-brand:       #0062cc;   /* accessible action blue (WCAG 2.2 AA)    */
  --color-brand-hover: #004da6;   /* deep action blue hover                  */
  --color-on-brand:    #ffffff;
  --color-ink:         #070604;   /* official logo tech obsidian black       */

  /* --- paired surfaces (background + its guaranteed text colour) -------- */
  --color-bg:          #ffffff;
  --color-on-bg:       #070604;
  --color-surface:     #f0f7ff;   /* soft ice blue tint                      */
  --color-on-surface:  #070604;
  --color-elevated:    #ffffff;   /* cards sitting on --color-surface        */
  --color-on-elevated: #070604;
  --color-inverse:     #0b0f19;   /* rich obsidian footer                    */
  --color-on-inverse:  #f0f7ff;

  /* --- support ---------------------------------------------------------- */
  --color-muted:       #334155;   /* readable slate secondary text           */
  --color-on-inverse-muted: #94a3b8;
  --color-border:      #d2e4f7;   /* light azure border                      */
  --color-border-strong: #9cc4f2;
  --color-warn:        #b3261e;
  --color-ok:          #0f6b46;
  --color-focus:       #0091fc;
  --color-scrim:       rgba(7, 6, 4, 0.66);
  --color-star:        #b56800;

  /* --- type ------------------------------------------------------------- */
  --font-display: "Sora", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body:    "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Fluid sizes. Each maximum is exactly twice its minimum, so the page
     still reads correctly at 200% browser zoom. rem carries the zoom;
     the vw term only adds the smooth growth in between.                     */
  --text-display: clamp(2.25rem, 1.10rem + 5.10vw, 4.5rem);
  --text-h1:      clamp(1.875rem, 1.05rem + 3.65vw, 3.75rem);
  --text-h2:      clamp(1.5rem, 0.95rem + 2.45vw, 3rem);
  --text-h3:      clamp(1.125rem, 0.87rem + 1.15vw, 2.25rem);
  /* Fixed sizes for reading text — deliberately not fluid. */
  --text-lead:  1.125rem;
  --text-body:  1rem;
  --text-small: 0.9375rem;
  --text-tiny:  0.8125rem;

  --leading-display: 1.04;
  --leading-heading: 1.16;
  --leading-body:    1.7;
  --measure: 68ch;

  /* --- space, shape, depth ---------------------------------------------- */
  --space-section: clamp(3.5rem, 2rem + 6vw, 7rem);
  --space-gutter:  clamp(1.25rem, 0.75rem + 2vw, 2.5rem);
  --radius-sm:   0.5rem;
  --radius-card: 1rem;
  --radius-lg:   1.5rem;
  --radius-pill: 999px;
  --shadow-soft: 0 1px 2px rgba(13, 22, 32, 0.06), 0 6px 20px rgba(13, 22, 32, 0.07);
  --shadow-lift: 0 2px 6px rgba(13, 22, 32, 0.10), 0 18px 44px rgba(13, 22, 32, 0.16);
  --ring-width: 3px;
}

/* --- stronger palette when the visitor asks for more contrast ------------ */
@media (prefers-contrast: more) {
  :root {
    --color-on-bg: #000000;
    --color-on-surface: #000000;
    --color-on-elevated: #000000;
    --color-muted: #1e293b;
    --color-brand: #005bb8;
    --color-brand-hover: #004488;
    --color-border: #64748b;
    --color-border-strong: #334155;
    --ring-width: 4px;
  }
}

/* --- Premium Hero & Map Styling ------------------------------------------ */
/* --- Full-Width Hero Background & Scrim System --------------------------- */
.hero-bg-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--color-inverse);
  color: var(--color-on-inverse);
  width: 100%;
  text-align: center;
}

.hero-bg-section .hero-pill-badge {
  margin-left: auto;
  margin-right: auto;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: -20;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -10;
  background: linear-gradient(
    180deg,
    rgba(6, 10, 20, 0.82) 0%,
    rgba(6, 10, 20, 0.88) 50%,
    rgba(6, 10, 20, 0.95) 100%
  );
  backdrop-filter: blur(1.5px);
}

/* --- Home editorial hero: approved full-image Option 2 ------------------ */
.home-editorial-hero {
  min-height: clamp(38rem, 63vh, 44rem);
  text-align: left;
  background-color: #061526;
}

.home-editorial-hero .hero-pill-badge {
  margin-left: 0;
  margin-right: 0;
}

.home-editorial-hero-media {
  object-position: center center;
  transform: none;
}

.home-editorial-hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.98) 0%, rgba(3, 15, 28, 0.92) 39%, rgba(3, 15, 28, 0.64) 60%, rgba(3, 15, 28, 0.12) 100%),
    linear-gradient(0deg, rgba(3, 15, 28, 0.78) 0%, rgba(3, 15, 28, 0.04) 48%, rgba(3, 15, 28, 0.24) 100%);
  backdrop-filter: none;
}

.home-editorial-hero-shell {
  position: relative;
  z-index: 1;
  min-height: inherit;
}

.home-editorial-hero-content {
  display: flex;
  min-height: inherit;
  width: min(56%, 46rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(5rem, 8vw, 7rem);
}

.home-editorial-hero-title {
  max-width: 44rem;
  margin-top: 1.15rem;
  font-size: clamp(3rem, 4.75vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.home-editorial-hero-copy {
  max-width: 41rem;
  margin-top: 1.35rem;
  font-size: clamp(1rem, 1.15vw, 1.125rem);
  line-height: 1.65;
}

.home-editorial-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.home-editorial-hero .hero-btn-whatsapp {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-editorial-hero .hero-btn-whatsapp:hover {
  background-color: rgba(255, 255, 255, 0.19);
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.home-editorial-services-link {
  padding-inline: 0.7rem;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.home-editorial-services-link:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.home-editorial-hero-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.6rem;
}

.home-editorial-hero-proof > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.home-editorial-rating-card {
  position: absolute;
  right: var(--space-gutter);
  bottom: 2.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 12.5rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  color: #ffffff;
  background: rgba(4, 20, 35, 0.84);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.home-editorial-rating-card:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.7);
  background: rgba(4, 20, 35, 0.94);
}

.home-editorial-rating-score {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fbbf24;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.home-editorial-rating-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: var(--text-tiny);
  font-weight: 600;
  line-height: 1.25;
}

.home-editorial-rating-copy small {
  margin-top: 0.15rem;
  color: #b9cce0;
  font-size: 0.6875rem;
  font-weight: 500;
}

@media (max-width: 1023px) {
  .home-editorial-hero-content {
    width: min(65%, 42rem);
  }

  .home-editorial-hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 15, 28, 0.98) 0%, rgba(3, 15, 28, 0.91) 46%, rgba(3, 15, 28, 0.56) 73%, rgba(3, 15, 28, 0.2) 100%),
      linear-gradient(0deg, rgba(3, 15, 28, 0.78) 0%, rgba(3, 15, 28, 0.08) 55%, rgba(3, 15, 28, 0.22) 100%);
  }
}

@media (max-width: 767px) {
  .home-editorial-hero {
    min-height: 43rem;
  }

  .home-editorial-hero-media {
    object-position: 69% center;
  }

  .home-editorial-hero-overlay {
    background:
      linear-gradient(0deg, rgba(3, 15, 28, 0.99) 0%, rgba(3, 15, 28, 0.93) 42%, rgba(3, 15, 28, 0.42) 73%, rgba(3, 15, 28, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 15, 28, 0.66) 0%, rgba(3, 15, 28, 0.12) 100%);
  }

  .home-editorial-hero-content {
    width: 100%;
    justify-content: flex-end;
    padding-block: 12rem 3.25rem;
  }

  .home-editorial-hero-title {
    max-width: 36rem;
    font-size: clamp(2.55rem, 9.5vw, 4rem);
    line-height: 1;
  }

  .home-editorial-rating-card {
    top: 1rem;
    right: var(--space-gutter);
    bottom: auto;
    min-width: 0;
    padding: 0.65rem 0.75rem;
  }

  .home-editorial-rating-copy small {
    display: none;
  }
}

@media (max-width: 639px) {
  .home-editorial-hero {
    min-height: 41.5rem;
  }

  .home-editorial-hero-content {
    padding-block: 11.5rem 2.5rem;
  }

  .home-editorial-hero-copy {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-editorial-hero-copy-detail {
    display: none;
  }

  .home-editorial-hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.35rem;
  }

  .home-editorial-hero-actions .hero-btn-primary,
  .home-editorial-hero-actions .hero-btn-whatsapp {
    width: 100%;
    padding-inline: 0.85rem;
  }

  .home-editorial-services-link {
    grid-column: 1 / -1;
    justify-self: start;
    padding-block: 0.4rem;
    padding-left: 0;
  }

  .home-editorial-hero-proof {
    gap: 0.55rem 0.85rem;
    margin-top: 1rem;
    font-size: 0.75rem;
  }

  .home-editorial-rating-score {
    font-size: 1.05rem;
  }

  .home-editorial-rating-copy {
    font-size: 0.6875rem;
  }
}

@media (max-width: 359px) {
  .home-editorial-hero-title {
    font-size: 2.3rem;
  }

  .home-editorial-hero-actions {
    grid-template-columns: 1fr;
  }

  .home-editorial-services-link {
    grid-column: auto;
  }
}

/* --- Inner-page editorial hero system ---------------------------------- */
.page-editorial-hero {
  min-height: clamp(33rem, 54vh, 38rem);
  padding-block: 0 !important;
  text-align: left;
  background-color: #061526;
}

.page-editorial-hero-overview {
  min-height: clamp(35rem, 58vh, 40rem);
}

.page-editorial-hero-contact {
  min-height: clamp(31rem, 50vh, 35rem);
}

.page-editorial-hero-detail {
  min-height: clamp(33rem, 54vh, 37rem);
}

.page-editorial-hero .hero-bg-media {
  object-position: var(--page-hero-position, 62% center);
  transform: none;
}

.page-editorial-hero .hero-bg-overlay {
  background:
    linear-gradient(90deg, rgba(3, 15, 28, 0.98) 0%, rgba(3, 15, 28, 0.93) 41%, rgba(3, 15, 28, 0.66) 63%, rgba(3, 15, 28, 0.15) 100%),
    linear-gradient(0deg, rgba(3, 15, 28, 0.74) 0%, rgba(3, 15, 28, 0.04) 55%, rgba(3, 15, 28, 0.2) 100%);
  backdrop-filter: none;
}

.page-editorial-hero > .mx-auto {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  width: 100%;
  max-width: 1280px;
  align-items: stretch;
  text-align: left;
}

.page-editorial-hero > .mx-auto > div {
  display: flex;
  min-height: inherit;
  width: min(59%, 47rem);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: clamp(4.5rem, 7vw, 6.5rem);
}

.page-editorial-hero .hero-pill-badge {
  margin-right: 0;
  margin-left: 0;
}

.page-editorial-hero h1 {
  max-width: 46rem;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(2.75rem, 4.2vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.045em;
  text-align: left;
  text-wrap: balance;
}

.page-editorial-hero-detail h1 {
  font-size: clamp(2.6rem, 3.85vw, 3.85rem);
}

.page-editorial-hero h1 ~ p {
  max-width: 42rem;
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.page-editorial-hero h1 + p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.6;
}

.page-editorial-hero h1 ~ p + p {
  font-size: 0.9375rem;
  line-height: 1.55;
}

.page-editorial-hero .mt-8.flex {
  justify-content: flex-start;
}

.page-editorial-hero .hero-btn-whatsapp {
  border-color: rgba(255, 255, 255, 0.42);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.page-editorial-hero .hero-btn-whatsapp:hover {
  border-color: rgba(255, 255, 255, 0.72);
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.page-editorial-hero .hero-btn-secondary {
  padding-inline: 0.7rem;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.page-editorial-hero .hero-btn-secondary:hover {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.page-editorial-hero .mt-8.flex.text-small {
  margin-top: 1.5rem;
  gap: 0.65rem 1.15rem;
}

@media (max-width: 1023px) {
  .page-editorial-hero > .mx-auto > div {
    width: min(68%, 43rem);
  }

  .page-editorial-hero .hero-bg-overlay {
    background:
      linear-gradient(90deg, rgba(3, 15, 28, 0.99) 0%, rgba(3, 15, 28, 0.93) 47%, rgba(3, 15, 28, 0.6) 75%, rgba(3, 15, 28, 0.2) 100%),
      linear-gradient(0deg, rgba(3, 15, 28, 0.74) 0%, rgba(3, 15, 28, 0.06) 58%, rgba(3, 15, 28, 0.22) 100%);
  }
}

@media (max-width: 767px) {
  .page-editorial-hero,
  .page-editorial-hero-overview,
  .page-editorial-hero-contact,
  .page-editorial-hero-detail {
    min-height: 42rem;
  }

  .page-editorial-hero .hero-bg-media {
    object-position: var(--page-hero-mobile-position, 68% center);
  }

  .page-editorial-hero .hero-bg-overlay {
    background:
      linear-gradient(0deg, rgba(3, 15, 28, 0.99) 0%, rgba(3, 15, 28, 0.94) 43%, rgba(3, 15, 28, 0.48) 75%, rgba(3, 15, 28, 0.12) 100%),
      linear-gradient(90deg, rgba(3, 15, 28, 0.64) 0%, rgba(3, 15, 28, 0.12) 100%);
  }

  .page-editorial-hero > .mx-auto > div {
    width: 100%;
    justify-content: flex-end;
    padding-block: 12rem 3rem;
  }

  .page-editorial-hero h1,
  .page-editorial-hero-detail h1 {
    max-width: 39rem;
    font-size: clamp(2.4rem, 9.2vw, 3.4rem);
  }

  .page-editorial-hero h1 ~ p + p {
    display: none;
  }
}

@media (max-width: 639px) {
  .page-editorial-hero,
  .page-editorial-hero-overview,
  .page-editorial-hero-contact,
  .page-editorial-hero-detail {
    min-height: 40.5rem;
  }

  .page-editorial-hero > .mx-auto > div {
    padding-block: 11.5rem 2.35rem;
  }

  .page-editorial-hero h1,
  .page-editorial-hero-detail h1 {
    font-size: clamp(2.25rem, 10.3vw, 3rem);
  }

  .page-editorial-hero h1 + p {
    margin-top: 0.9rem;
    font-size: 0.9375rem;
    line-height: 1.5;
  }

  .page-editorial-hero .mt-8.flex:not(.text-small) {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .page-editorial-hero .mt-8.flex:not(.text-small) .hero-btn-primary,
  .page-editorial-hero .mt-8.flex:not(.text-small) .hero-btn-whatsapp {
    width: 100%;
    padding-inline: 0.75rem;
  }

  .page-editorial-hero .mt-8.flex:not(.text-small) .hero-btn-secondary {
    grid-column: 1 / -1;
    justify-self: start;
    padding-block: 0.35rem;
    padding-left: 0;
  }

  .page-editorial-hero .mt-8.flex.text-small {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 359px) {
  .page-editorial-hero h1,
  .page-editorial-hero-detail h1 {
    font-size: 2.1rem;
  }

  .page-editorial-hero .mt-8.flex:not(.text-small) {
    grid-template-columns: 1fr;
  }

  .page-editorial-hero .mt-8.flex:not(.text-small) .hero-btn-secondary {
    grid-column: auto;
  }
}

/* --- High-Contrast Modern Hero CTA Suite ------------------------------- */
.hero-btn-primary,
.hero-btn-whatsapp,
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  line-height: 1;
  padding: 0.85rem 1.45rem;
  text-decoration: none;
  transition: background-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-btn-primary {
  background-color: var(--color-brand);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 18px rgba(0, 119, 230, 0.45);
}
.hero-btn-primary:hover {
  background-color: var(--color-brand-hover);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 24px rgba(0, 119, 230, 0.65);
  transform: translateY(-2px);
}
.hero-btn-primary:active {
  transform: scale(0.97);
}

.hero-btn-whatsapp {
  background-color: #25D366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.35);
}
.hero-btn-whatsapp:hover {
  background-color: #20bd5a;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  transform: translateY(-2px);
}
.hero-btn-whatsapp:active {
  transform: scale(0.97);
}

.hero-btn-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}
.hero-btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 24px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.hero-btn-secondary:active {
  transform: scale(0.97);
}

.hero-trust-pill-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f0f7ff;
  font-family: var(--font-display);
  font-size: var(--text-tiny);
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-trust-pill-dark:hover {
  border-color: var(--color-logo);
  background: rgba(255, 255, 255, 0.14);
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 145, 252, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  max-width: 100%;
  white-space: normal;
  text-align: center;
  line-height: 1.25;
}

@media (max-width: 639px) {
  .hero-pill-badge {
    font-size: 0.6875rem;
    padding: 0.25rem 0.75rem;
    letter-spacing: 0.03em;
  }
}

.hero-pill-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 9999px;
  background-color: var(--color-logo);
  flex-shrink: 0;
}

.hero-ambient-bg {
  background: radial-gradient(1100px circle at 85% 15%, rgba(0, 145, 252, 0.09) 0%, transparent 60%),
              radial-gradient(800px circle at 15% 65%, rgba(0, 119, 230, 0.05) 0%, transparent 55%),
              #ffffff;
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(0, 145, 252, 0.06);
  border: 1px solid rgba(0, 145, 252, 0.20);
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: var(--text-tiny);
  font-weight: 600;
}

.hero-img-frame {
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 20px 45px -12px rgba(10, 30, 60, 0.14), 0 0 0 1px rgba(200, 215, 230, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* --- Homepage editorial image frames (Process & Why Us) ----------------- */
.home-why-image-frame,
.home-process-image-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: clamp(1.5rem, 3vw, 3rem) var(--space-gutter);
  border: 1px solid rgba(0, 119, 230, 0.24);
  border-radius: var(--radius-lg);
  background: var(--color-elevated);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 42px rgba(10, 30, 60, 0.14),
    0 4px 12px rgba(10, 30, 60, 0.08);
  transform: translateZ(0);
  transition:
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-why-image-frame::after,
.home-process-image-frame::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: calc(var(--radius-lg) - 0.5rem);
  box-shadow: 0 0 0 1px rgba(0, 119, 230, 0.08);
  opacity: 0.62;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-why-image-frame img,
.home-process-image-frame img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition:
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.4s ease;
}

@media (hover: hover) and (pointer: fine) {
  .home-why-image-frame:hover,
  .home-process-image-frame:hover {
    border-color: rgba(0, 119, 230, 0.5);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.95) inset,
      0 28px 62px rgba(10, 30, 60, 0.2),
      0 8px 20px rgba(0, 119, 230, 0.11);
    transform: translateY(-0.35rem);
  }

  .home-why-image-frame:hover::after,
  .home-process-image-frame:hover::after {
    opacity: 0.92;
    transform: scale(0.985);
  }

  .home-why-image-frame:hover img,
  .home-process-image-frame:hover img {
    filter: saturate(1.06) contrast(1.025);
    transform: scale(1.035);
  }
}

@media (min-width: 1024px) {
  .home-why-image-frame {
    margin-left: 0;
  }
  .home-process-image-frame {
    margin-right: 0;
  }
}

@media (max-width: 1023px) {
  .home-why-image-frame,
  .home-process-image-frame {
    min-height: clamp(18rem, 58vw, 30rem);
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-why-image-frame,
  .home-process-image-frame,
  .home-why-image-frame::after,
  .home-process-image-frame::after,
  .home-why-image-frame img,
  .home-process-image-frame img {
    transition: none;
  }

  .home-why-image-frame:hover,
  .home-process-image-frame:hover,
  .home-why-image-frame:hover::after,
  .home-process-image-frame:hover::after,
  .home-why-image-frame:hover img,
  .home-process-image-frame:hover img {
    transform: none;
  }
}

/* --- About page section rhythm ------------------------------------------ */
.about-content-section > .mx-auto {
  padding-top: clamp(3rem, 4vw, 4rem);
  padding-bottom: clamp(3rem, 4vw, 4rem);
}

.about-section-intro {
  margin-bottom: clamp(2rem, 2.7vw, 2.5rem);
}

.about-card-grid {
  gap: clamp(1.25rem, 2vw, 1.5rem);
}

.about-card-grid-wide {
  gap: clamp(1.25rem, 2.25vw, 2rem);
}

/* --- Full-Width Hero System --------------------------------------------- */
.hero-fullwidth-grid {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .hero-fullwidth-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }
}
.hero-fullwidth-content {
  padding: var(--space-section) var(--space-gutter);
}
@media (min-width: 1024px) {
  .hero-fullwidth-content {
    padding-left: max(var(--space-gutter), calc((100vw - 1280px) / 2 + var(--space-gutter)));
    padding-right: 2.5rem;
  }
}

/* --- Enhanced Location & Directions Card -------------------------------- */
.location-showcase {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.location-showcase__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .location-showcase__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: stretch;
  }
}
.location-showcase__details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--color-elevated);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}
@media (min-width: 640px) {
  .location-showcase__details {
    padding: 2.25rem;
  }
}
.location-showcase__actions {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.location-showcase__map,
.location-showcase__map-card,
.location-showcase__map-frame {
  min-height: 24rem;
  height: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-soft);
  background: var(--color-elevated);
}
.location-showcase__map iframe,
.location-showcase__map-card iframe,
.location-showcase__map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 24rem;
  border: 0;
  display: block;
}
@media (min-width: 1024px) {
  .location-showcase__map iframe,
  .location-showcase__map-card iframe,
  .location-showcase__map-frame iframe {
    min-height: 100%;
  }
}


/* --- Logo aspect ratio protection ---------------------------------------- */
.site-brand-logo {
  height: 2.5rem;
  width: auto !important;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 640px) {
  .site-brand-logo {
    height: 2.75rem;
  }
}

.site-footer-logo {
  height: 2.5rem;
  width: auto !important;
  object-fit: contain;
  display: block;
}

/* --- Google Business Profile Badge --------------------------------------- */
.gbp-badge {
  display: flex;
  height: 3rem;
  width: 3rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background: #ffffff;
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* --- Fact Strip Component (Laptech at a glance) ------------------------ */
.fact-strip {
  background-color: var(--color-surface);
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
.fact-strip__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  padding-left: var(--space-gutter);
  padding-right: var(--space-gutter);
}
.fact-strip__heading {
  margin-bottom: 2rem;
}
.fact-strip__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .fact-strip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .fact-strip__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}
.fact-strip__item {
  border-radius: var(--radius-card);
  background-color: var(--color-elevated);
  border: 1px solid var(--color-border);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.fact-strip__item:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.fact-strip__topline {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.fact-strip__icon {
  display: inline-flex;
  height: 2.75rem;
  width: 2.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  background-color: var(--color-surface);
  color: var(--color-brand);
  border: 1px solid var(--color-border);
}
.fact-strip__value {
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

/* --- Section Intro ---------------------------------------------------- */
.section-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .section-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
  .section-intro > div:first-child {
    max-width: 34rem;
  }
  .section-intro > p:last-child {
    max-width: 30rem;
  }
}

/* --- FAQ Layout ------------------------------------------------------- */
.faq-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 3.5rem;
    align-items: start;
  }
}

/* --- Review Carousel (Sliding Track & Controls) ----------------------- */
.review-carousel {
  position: relative;
  overflow: hidden;
}
.review-carousel__viewport {
  overflow: hidden;
  width: 100%;
}
.review-carousel__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.review-carousel__track.is-jumping {
  transition: none !important;
}
.review-carousel__track > figure {
  flex: 0 0 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .review-carousel__track > figure {
    flex: 0 0 calc(50% - 0.625rem);
    max-width: calc(50% - 0.625rem);
  }
}
@media (min-width: 1024px) {
  .review-carousel__track > figure {
    flex: 0 0 calc(33.333% - 0.833rem);
    max-width: calc(33.333% - 0.833rem);
  }
}
.review-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.75rem;
  gap: 1rem;
}
.review-carousel__dots {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.review-carousel__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.review-carousel__dot::before {
  content: '';
  display: block;
  height: 0.5rem;
  width: 0.5rem;
  border-radius: var(--radius-pill);
  background-color: var(--color-border-strong);
  transition: all 0.25s ease;
}
.review-carousel__dot[aria-current="true"]::before {
  background-color: var(--color-brand);
  width: 1.5rem;
}
.review-carousel__buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-carousel__button {
  display: inline-flex;
  height: 2.5rem;
  width: 2.5rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border-strong);
  background-color: var(--color-elevated);
  color: var(--color-on-elevated);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s, transform 0.2s;
}
.review-carousel__button:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background-color: var(--color-surface);
  transform: translateY(-1px);
}
.review-carousel__button:active {
  transform: scale(0.95);
}

/* --- Robust 2-column layout grids ---------------------------------------- */
.hero-layout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-layout-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }
}

.split-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split-feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

/* --- Button Utility Enhancements -------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  line-height: 1;
  padding: 0.875rem 1.35rem;
  background-color: var(--color-brand);
  color: var(--color-on-brand);
  box-shadow: 0 1px 2px rgba(0, 119, 230, 0.2);
  transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background-color: var(--color-brand-hover);
  box-shadow: 0 4px 12px rgba(0, 119, 230, 0.3);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: scale(0.97);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-small);
  line-height: 1;
  padding: 0.875rem 1.35rem;
  border: 1px solid var(--color-border-strong);
  background-color: var(--color-elevated);
  color: var(--color-on-elevated);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s, color 0.2s, background-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  transform: translateY(-1px);
}
.btn-secondary:active {
  transform: scale(0.97);
}

/* --- visitor is on a metered or slow connection -------------------------- */
@media (prefers-reduced-data: reduce) {
  :root {
    --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  }
  .decor-image { display: none; }
}

/* --- keyframes ----------------------------------------------------------- */
@keyframes laptech-fade-up {
  from { opacity: 0; transform: translateY(0.75rem); }
  to   { opacity: 1; transform: none; }
}
.anim-fade-up { animation: laptech-fade-up 0.5s ease-out both; }

/* --- visitor asked for less motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* --- named containers, so nested ones can be told apart ------------------ */
.card-ctx { container-type: inline-size; container-name: card; }
.panel-ctx { container-type: inline-size; container-name: panel; }

/* --- third-party embed we do not own the markup of ----------------------- */
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 1rem;
  filter: saturate(0.95);
}

/* --- Additional Layout Grids & Carousel Controls ---------------------- */
.shadow-xs {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.service-process-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .service-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.priority-services-grid,
.services-overview-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}

/* --- Redesigned Service Cards (Reference Style) ---------------------- */
.services-card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .services-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .services-card-grid > .service-card-visual:last-child:nth-child(3n+1),
  .service-card-visual--featured {
    grid-column: 1 / -1;
  }
  .services-card-grid > .service-card-visual:last-child:nth-child(3n+1) .service-card-visual__media,
  .service-card-visual--featured .service-card-visual__media {
    aspect-ratio: 24 / 9;
  }
}

.service-card-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(210, 228, 247, 0.7);
  background-color: var(--color-elevated);
  box-shadow: 0 4px 16px -2px rgba(0, 0, 0, 0.06), 0 2px 6px -1px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
  text-decoration: none;
}
.service-card-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px -6px rgba(0, 119, 230, 0.22), 0 6px 14px -2px rgba(0, 0, 0, 0.08);
  border-color: var(--color-brand);
}

.service-card-visual__media {
  position: relative;
  aspect-ratio: 16 / 11;
  width: 100%;
  overflow: hidden;
  background-color: #070a13;
}
@media (min-width: 640px) {
  .service-card-visual__media {
    aspect-ratio: 4 / 3;
  }
}

.service-card-visual__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-visual:hover .service-card-visual__img {
  transform: scale(1.08);
}

.service-card-visual__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 6, 4, 0.94) 0%, rgba(7, 6, 4, 0.60) 40%, rgba(7, 6, 4, 0.15) 70%, transparent 100%);
  pointer-events: none;
}

.service-card-visual__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.875rem;
  background-color: #f5b842;
  color: #070604;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
}
.service-card-visual:hover .service-card-visual__badge {
  transform: scale(1.08) rotate(3deg);
  background-color: #fbbf24;
}

.service-card-visual__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-card-visual__tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #fbbf24;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.service-card-visual__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  transition: color 0.2s;
}
.service-card-visual:hover .service-card-visual__title {
  color: #ffffff;
}

.service-quote-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: var(--text-small);
  text-align: center;
}
.service-quote-banner__pill {
  background-color: #f5b842;
  color: #070604;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-tiny);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: lowercase;
}

/* --- Subfooter Layout (Separate Centered Row for Attribution) ---------- */
.site-subfooter {
  margin-top: 3rem;
  border-top: 1px solid var(--color-on-inverse-muted);
  padding-top: 1.5rem;
  font-size: var(--text-tiny);
  color: var(--color-on-inverse-muted);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.site-subfooter__main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

.site-subfooter__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.site-subfooter__powered {
  text-align: center;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .site-subfooter__main {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* --- Support Utility Helpers ------------------------------------------ */
.text-ok { color: var(--color-ok); }
.bg-ok { background-color: var(--color-ok); }
.bg-ok\/10 { background-color: rgba(15, 107, 70, 0.1); }
.fill-current { fill: currentColor; }
.flex-1 { flex: 1 1 0%; }
.mr-1 { margin-right: 0.25rem; }
.gap-3\.5 { gap: 0.875rem; }
.pt-8 { padding-top: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.p-2\.5 { padding: 0.625rem; }
.bg-white { background-color: #ffffff; }
.rounded-md { border-radius: 0.375rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); }

.site-cta__layout {
  display: grid;
  gap: 2rem;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .site-cta__layout {
    grid-template-columns: 1.25fr 1fr;
  }
  .site-cta__actions {
    justify-content: flex-end;
  }
}
.site-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.review-carousel__status {
  margin-top: 0.5rem;
  font-size: var(--text-tiny);
  color: var(--color-muted);
}

@media (min-width: 640px) {
  .sm\:pt-12 { padding-top: 3rem; }
  .sm\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:w-auto { width: auto; }
}

/* --- responsive phone layout rules --------------------------------------- */
@media (max-width: 639px) {
  .site-action-bar {
    padding-bottom: max(0.875rem, env(safe-area-inset-bottom));
  }
}

@media (max-width: 359px) {
  .hero-trust-pill {
    font-size: 0.75rem;
  }
}

/* ==========================================================================
   Page Transition Animations (Native View Transitions + Smooth Fallbacks)
   ========================================================================== */

@view-transition {
  navigation: auto;
}

::view-transition-group(root) {
  animation-duration: 0.22s;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}

::view-transition-old(root) {
  animation: 0.16s ease-out both page-fade-out;
}

::view-transition-new(root) {
  animation: 0.22s cubic-bezier(0.16, 1, 0.3, 1) both page-fade-in;
}

@keyframes page-fade-out {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.994);
  }
}

@keyframes page-fade-in {
  0% {
    opacity: 0;
    transform: translateY(6px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Progressive Fallback Transition Classes */
main {
  animation: page-fade-in 0.28s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.page-is-exiting main {
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.12s ease-out, transform 0.12s ease-out;
}

/* Persistent Header Across Transitions */
[data-site-header] {
  view-transition-name: site-header;
}

/* Top Progress Bar Indicator for Navigation */
#page-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-brand), #00d2ff);
  z-index: 9999;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.2s ease;
  opacity: 0;
}
#page-progress-bar.is-loading {
  opacity: 1;
  width: 75%;
}
#page-progress-bar.is-complete {
  opacity: 1;
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(root),
  ::view-transition-old(root),
  ::view-transition-new(root),
  main,
  body.page-is-exiting main {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
  #page-progress-bar {
    display: none !important;
  }
}

/* Homepage services heading CTA */
main section:has(#services-heading) div:has(> div > #ij6y36) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

main section:has(#services-heading) div:has(> #ij6y36) {
  align-self: flex-start;
  margin-top: 1.5rem;
}

#ij6y36 {
  min-height: 2.875rem;
  padding: 0.875rem 1.5rem;
  border: 1px solid rgba(190, 132, 17, 0.22);
  box-shadow: 0 5px 16px rgba(190, 132, 17, 0.2);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#ij6y36:hover {
  background-color: #ffc857;
  box-shadow: 0 9px 22px rgba(190, 132, 17, 0.28);
  transform: translateY(-2px);
}

#ij6y36:active {
  transform: scale(0.97);
}

#ij6y36 svg {
  width: 1rem;
  height: 1rem;
}
