/*
Theme Name: alstrv1
Text Domain: alstrv1
Version: 1.0.0
*/

:root {
  --bg: #ffffff;
  --text: #101828;
  --muted: #4a5565;
  --muted-soft: #99a1af;
  --surface: #f8fafc;
  --surface-strong: #f3f4f6;
  --line: #e5e7eb;
  --navy: #101828;
  --navy-soft: #1e2939;
  --orange: #ff7f00;
  --orange-soft: rgba(255, 127, 0, 0.12);
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --radius: 24px;
  --container: min(100vw - 32px, 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--navy);
}

main {
  background: var(--bg);
}

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

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

button {
  font: inherit;
}

.error404{
  .container {
    min-height: 600px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);

  .siteHeaderShell {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 95px;
    padding: 12px 0;
  }

  .siteHeaderLogoImage {
    width: 186px;
    height: auto;
  }

  .siteHeaderNav,
  .siteHeaderActions {
    align-items: center;
  }

  .siteHeaderNav,
  .siteHeaderActions,
  .siteHeaderEstimate,
  .siteHeaderMenu {
    display: none;
  }

  .siteHeaderNav {
    flex: 1 1 auto;
    gap: 24px;
    min-width: 0;
  }

  .siteHeaderNavLink,
  .siteHeaderNavMore,
  .siteHeaderEstimate,
  .siteHeaderPhone,
  .siteHeaderPrimary {
    font-size: 14px;
    white-space: nowrap;
  }

  .siteHeaderNavLink {
    line-height: 20px;
    font-weight: 500;
    color: #1e2939;
  }

  .siteHeaderActions {
    gap: 16px;
    flex-shrink: 0;
  }

  .siteHeaderToggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;

    .siteHeaderToggleIcon {
      width: 30px;
      height: 30px;
    }
  }

  .siteHeaderNavMore,
  .siteHeaderPhone {
    display: inline-flex;
    align-items: center;
  }

  .siteHeaderNavMore {
    gap: 4px;
    font-weight: 500;
    line-height: 24px;
    color: #1e2939;
  }

  .siteHeaderPhone {
    gap: 8px;
    font-weight: 700;
    line-height: 24px;
    color: #1e2939;

    .siteHeaderPhoneIcon {
      width: 20px;
      height: 20px;
    }
  }

  .siteHeaderEstimate,
  .siteHeaderPrimary,
  .siteHeaderMenuCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
  }

  .siteHeaderEstimate:hover,
  .siteHeaderPrimary:hover,
  .siteHeaderMenuCta:hover {
    transform: translateY(-1px);
  }

  .siteHeaderEstimate {
    height: 36px;
    padding: 0 16px;
    font-weight: 500;
    line-height: 20px;
    color: #fff;
    background: var(--navy);
    box-shadow: none;
  }

  .siteHeaderPrimary {
    height: 40px;
    padding: 0 16px;
    font-weight: 700;
    line-height: 24px;
    color: #fff;
    background: var(--orange);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .siteHeaderMenu {
    width: var(--container);
    margin: 0 auto 16px;
    padding: 12px 0 12px;
    border-top: 1px solid var(--line);
  }

  .siteHeaderMenuLink {
    color: var(--navy);
    font-weight: 600;
  }

  .siteHeaderMenuCta {
    width: 100%;
    min-height: 56px;
    padding: 0 24px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    background: var(--orange);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.22);
  }

  &.isMenuOpen .siteHeaderMenu {
    display: grid;
    gap: 12px;
  }
}

@media (min-width: 721px) {
  .siteHeader {
    position: relative;
    top: auto;
    border-bottom: 0;

    .siteHeaderLogoImage {
      width: 250px;
    }

    .siteHeaderShell {
      min-height: 76px;
      padding: 0;
    }

    .siteHeaderActions {
      display: flex;
      margin-left: auto;
    }

    .siteHeaderToggle {
      order: 1;
      margin-left: 16px;
    }
  }
}

@media (min-width: 1101px) {
.siteHeader {
  .siteHeaderActions {
    margin-left: 0;
    gap: 12px;
  }

  .siteHeaderNav {
    display: flex;
    gap: 14px;
  }

  .siteHeaderToggle {
    display: none;
    order: 0;
    margin-left: 0;
  }

  .siteHeaderNavLink,
  .siteHeaderNavMore,
  .siteHeaderEstimate,
  .siteHeaderPhone,
  .siteHeaderPrimary {
    font-size: 13px;
  }

  .siteHeaderEstimate,
  .siteHeaderPrimary {
    padding: 0 12px;
  }

  .siteHeaderPhone {
    gap: 6px;
  }

  &.isMenuOpen .siteHeaderMenu {
    display: none;
  }
}
}

@media (min-width: 1250px) {
  .siteHeader {
    .siteHeaderEstimate {
      display: inline-flex;
    }
  }
}

@media (width >= 1024px) and (width <= 1250px) {
  .siteHeader .siteHeaderEstimate{
    display: none;
  }
}

@media (width >= 1251px) {
  .siteHeader .siteHeaderEstimate{
    display: inline-flex;
  }
}

.siteFooter {
  background: var(--navy);
  color: #d1d5dc;
  padding: 42px 0 18px;

  .siteFooterShell {
    width: var(--container);
    margin: 0 auto;
  }

  .siteFooterGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 20px;
  }

  .siteFooterFollow{
    display: flex;
    gap: 2px;

    img{
      display: block;

      width: 36px;
      height: 28px;
      border-radius:10px;
    }
  }

  .siteFooterColumn {
    h3 {
      margin: 0 0 18px;
      color: #fff;
    }

    p,
    li {
      margin: 15px 0 10px;
      line-height: 1.6;
    }

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

    li {
      position: relative;
      padding-left: 0;
    }

    li + li {
      margin-top: 12px;
    }
  }

  .siteFooterLogo {
    width: 186px;
    height: auto;
  }

  .siteFooterJobsTitle {
    margin: 20px 0 0;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  a,
  .siteFooterAccent {
    color: var(--orange);
    font-weight: 700;
  }

  a.email{
    color: #d1d5dc;
    font-weight: normal;
  }

  .siteFooterPosts {
    display: flex;
    gap: 8px;
    margin-top: 18px;
  }

  .siteFooterPost {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: var(--navy-soft);
    color: #6a7282;
    font-size: 0.8rem;
  }

  .siteFooterCopyright {
    margin: 32px 0 0;
    border-top: 1px solid #6a7282;
    background: #000;
    padding: 12px 0 8px;
    text-align: center;
    font-size: 12px;
    color: #6a7282;
  }
}

@media (min-width: 721px) {
  .siteFooter {
    padding: 64px 0 0;

    .siteFooterLogo {
      width: 250px;
    }

    .siteFooterGrid {
      grid-template-columns: 1fr;
      gap: 24px;
    }

    .siteFooterPost {
      width: 78px;
      height: 78px;
    }

    .siteFooterCopyright {
      font-size: 0.92rem;
    }
  }
}

@media (min-width: 1101px) {
  .siteFooter {
    .siteFooterGrid {
      grid-template-columns: 1.1fr 1fr 1fr 1.1fr;
    }
  }
}

.comQuick {
/*  background: #f8fafc;*/

  .comQuickShell {
    width: var(--container);
    margin: 0 auto;
    padding: 32px 0;
  }

  .comQuickCard {
    padding: 22px 24px 24px 28px;
    border-left: 4px solid var(--orange);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.1);
  }

  .comQuickText {
    margin: 0;
    color: #1e2939;
    font-size: 1rem;
    line-height: 1.7;
  }

  .comQuickLabel {
    font-weight: 700;
    color: #101828;
  }

  .comQuickBody {
    font-weight: 500;
  }
}

@media (min-width: 768px) {
  .comQuick {
    .comQuickShell {
      padding: 32px 0 36px;
    }

    .comQuickCard {
      padding: 23px 24px 24px 28px;
    }

    .comQuickText {
      font-size: 1.125rem;
      line-height: 1.625;
    }
  }
}

@media (min-width: 1024px) {
  .comQuick {
    .comQuickShell {
      padding: 32px 0 40px;
    }

    .comQuickCard {
      padding-right: 32px;
    }
  }
}

.heroRoofing {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42)),
    url("./assets/img/hero.webp") center/cover;

  .heroRoofingShell {
    width: var(--container);
    margin: 0 auto;
    padding: 56px 0 64px;
  }

  .heroRoofingContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 100%;
  }

  .heroRoofingTitle {
    margin: 0;
    font-size: clamp(2.55rem, 10vw, 4.25rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
    text-wrap: balance;
  }

  .heroRoofingBody {
    max-width: 44rem;
    margin: 0;
    color: #d1d5dc;
    font-size: 1rem;
    line-height: 1.7;
  }

  .heroRoofingActions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .heroRoofingPrimary,
  .heroRoofingSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    width: 100%;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
  }

  .heroRoofingPrimary:hover,
  .heroRoofingSecondary:hover {
    transform: translateY(-1px);
  }

  .heroRoofingPrimary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .heroRoofingSecondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.08), 0 4px 6px rgba(0, 0, 0, 0.08);
  }

  .heroRoofingMeta {
    margin: 0;
    color: #d1d5dc;
    font-size: 0.875rem;
    line-height: 1.45;
    opacity: 0.8;
  }
}

@media (min-width: 768px) {
  .heroRoofing {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0.08) 100%),
      url("./assets/img/hero.webp") center/cover;

    .heroRoofingShell {
      padding: 88px 0 96px;
    }

    .heroRoofingContent {
      gap: 28px;
      max-width: 44rem;
    }

    .heroRoofingTitle {
      font-size: clamp(3.5rem, 7vw, 4.8rem);
    }

    .heroRoofingBody {
      max-width: 40rem;
      font-size: 1.125rem;
      line-height: 1.625;
    }

    .heroRoofingActions {
      flex-direction: row;
      align-items: center;
      width: auto;
    }

    .heroRoofingPrimary,
    .heroRoofingSecondary {
      width: auto;
      min-height: 62px;
      padding: 15px 28px;
    }

    .heroRoofingMeta {
      max-width: 34rem;
    }
  }
}

@media (min-width: 1024px) {
  .heroRoofing {
    min-height: 800px;
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 48%, rgba(0, 0, 0, 0) 100%),
      url("./assets/img/hero.webp") center/cover;

    .heroRoofingShell {
      display: flex;
      align-items: flex-start;
      min-height: 800px;
      padding: 150px 0 34px;
    }

    .heroRoofingContent {
      gap: 29px;
      max-width: 48rem;
    }

    .heroRoofingTitle {
      font-size: 4.375rem;
      line-height: 1;
    }

    .heroRoofingBody {
      max-width: 44rem;
      font-size: 1.25rem;
      line-height: 1.625;
    }

    .heroRoofingSecondary {
      padding-right: 31px;
      padding-left: 31px;
    }

    .heroRoofingMeta {
      max-width: 34rem;
    }
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  cursor: pointer;
}

.pill:hover {
  transform: translateY(-1px);
}

.pill-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 10px 20px rgba(255, 127, 0, 0.22);
}

.pill-dark {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 20px rgba(16, 24, 40, 0.18);
}

.pill-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
}

.pill-light span{
  font-size: 13px;
  font-weight: normal;
  display: inline-block;
  padding: 0 0 0 10px;
  color: rgba(255,255,255, 0.7);
}

.metal-overlay {
  position: absolute;
  inset: 0;
}

.section-heading h2,
.service-copy h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.service-copy p,
.section-heading p {
  font-size: 1rem;
  line-height: 1.65;
}

.map-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

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

.feature-list li{
  position: relative;
  padding-left: 18px;
}

.feature-list li + li {
  margin-top: 12px;
}

/*.feature-list li::before {
}
*/
.trustBar {
  display: block;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;

  .trustBarShell {
    width: var(--container);
    margin: 0 auto;
  }

  .trustBarList {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 0;
    padding: 22px 0;
    list-style: none;
    text-align: center;
  }

  .trustBarItem {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .trustBarIcon {
    width: 40px;
    height: 40px;
  }

  .trustBarLabel {
    font-size: 0.94rem;
    line-height: 1.35;
    font-weight: 700;
  }
}

@media (min-width: 768px) and (max-width: 1239px) {
  .trustBar {
    .trustBarList {
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 20px 16px;
      flex-wrap: wrap;
      text-align: left;
    }

    .trustBarItem {
      flex: 0 1 calc(50% - 8px);
      min-width: 0;
      justify-content: flex-start;
    }
  }
}

@media (min-width: 1240px) {
  .trustBar {
    .trustBarList {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: nowrap;
      text-align: left;
    }

    .trustBarItem {
      flex: 1 1 0;
      min-width: 0;
      justify-content: flex-start;
    }

    .trustBarLabel {
      white-space: nowrap;
    }
  }
}

.section {
  padding: 52px 0;
}

.service-section.alt {
  background: #fafafa;
}

.service-section {
  padding-bottom: 40px;
}

.split-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr;
}

.service-copy,
.section-heading {
  max-width: none;
}

.service-copy p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

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

.service-media img,
.map-card {
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 36px;
  color: var(--muted);
}

.feature-list.two-col {
  grid-template-columns: 1fr;
}

.text-link {
  align-self: center;
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.steps-inline {
  flex-direction: column;
  gap: 12px;
  flex-wrap: wrap;
  margin: 28px 0 36px;
}

.steps-inline div {
  flex: 1 1 180px;
  min-width: 0;
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.steps-inline strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
}

.steps-inline span {
  display: block;
  font-weight: 700;
}

.section-heading p {
  color: var(--muted-soft);
}

.processSection {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 24, 40, 0.88), rgba(16, 24, 40, 0.88)),
    url("./assets/img/process-bg.webp") center/cover;

  .processSectionShell {
    width: var(--container);
    margin: 0 auto;
    padding: 60px 0;
    text-align: center;
  }

  .processSectionHeading {
    max-width: 890px;
    margin: 0 auto 52px;
  }

  .processSectionTitle {
    margin: 0;
    font-size: 2.35rem;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;

    span {
      color: var(--orange);
    }
  }

  .processSectionSummary {
    margin: 20px 0 0;
    color: var(--muted-soft);
    font-size: 1rem;
    line-height: 1.65;
  }

  .processSectionSlider {
    margin-bottom: 28px;
  }

  .processSectionViewport {
    overflow: visible;
  }

  .processSectionSteps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 0;
  }

  .processSectionStep {
    position: relative;
  }

  .processSectionStepNumber {
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    border: 4px solid #101828;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.22);
  }

  .processSectionStepTitle {
    margin: 0 0 10px;
    font-size: 1.12rem;
  }

  .processSectionStepBody {
    margin: 0;
    color: var(--muted-soft);
    line-height: 1.6;
  }

  .processSectionSlider.isEnhanced {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;

    .processSectionViewport {
      overflow: hidden;
    }

    .processSectionSteps {
      display: flex;
      gap: 0;
      transition: transform 320ms ease;
    }

    .processSectionStep {
      flex: 0 0 100%;
    }

    .processSectionArrow {
      display: inline-flex;
    }
  }

  .processSectionArrow {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    background: rgba(255, 255, 255, 0);
    color: #fff;
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;

    img {
      width: 18px;
      height: 18px;
    }
  }

  .processSectionCta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
  }

  .processSectionCta:hover {
    transform: translateY(-1px);
  }
}

@media (min-width: 721px) {
  .processSection {
    .processSectionShell {
      padding: 96px 0;
    }

    .processSectionTitle {
      font-size: clamp(2.25rem, 5vw, 2.6rem);
      line-height: 1.04;
    }

    .processSectionSummary {
      font-size: 1.08rem;
      line-height: 1.7;
    }
  }
}

@media (min-width: 1024px) {
  .processSection {
    .processSectionSlider,
    .processSectionSlider.isEnhanced {
      display: block;
      margin-bottom: 40px;
    }

    .processSectionViewport,
    .processSectionSlider.isEnhanced .processSectionViewport {
      overflow: visible;
    }

    .processSectionSteps,
    .processSectionSlider.isEnhanced .processSectionSteps {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 24px;
      margin: 0;
      transform: none;
      transition: none;
    }

    .processSectionStepNumber {
      width: 64px;
      height: 64px;
      margin-bottom: 20px;
    }

    .processSectionStepTitle {
      font-size: 1.25rem;
    }

    .processSectionArrow,
    .processSectionSlider.isEnhanced .processSectionArrow {
      display: none;
    }

    .processSectionStep,
    .processSectionSlider.isEnhanced .processSectionStep {
      flex: initial;
    }
  }
}

.faqPreview {
  padding: 56px 0 64px;
  background: #fff;

  &.blue{
    background: #F9FAFB;
  }

  .faqPreviewShell {
    width: var(--container);
    margin: 0 auto;
  }

  .faqPreviewHeader {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .faqPreviewTitle {
    margin: 0;
    color: #101828;
    font-size: 2rem;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .faqPreviewSummary {
    margin: 16px 0 0;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.65;
  }

  .faqPreviewList {
    display: grid;
    gap: 12px;
    max-width: 980px;
    margin: 32px auto 0;
  }

  .faqPreviewItem {
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease;

    &[open] {
      border-color: #d7dee7;
      box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);

      .faqPreviewIcon {
        background: var(--orange);

        &::before {
          border-color: #fff;
          transform: translate(-50%, -60%) rotate(135deg);
        }
      }

      .faqPreviewPanel {
        grid-template-rows: 1fr;
      }

      .faqPreviewPanelInner {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }

  .faqPreviewTrigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 18px;
    list-style: none;
    cursor: pointer;

    &::-webkit-details-marker {
      display: none;
    }

    &::marker {
      content: "";
    }
  }

  .faqPreviewQuestion {
    color: #101828;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
  }

  .faqPreviewIcon {
    position: relative;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 999px;
    background: #f3f4f6;
    transition: background 180ms ease;

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 7px;
      height: 7px;
      border-top: 2px solid #98a2b3;
      border-right: 2px solid #98a2b3;
      transform: translate(-60%, -50%) rotate(45deg);
      transition: transform 220ms ease, border-color 180ms ease;
    }
  }

  .faqPreviewPanel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease;
  }

  .faqPreviewPanelInner {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .faqPreviewAnswer {
    margin: 0;
    padding: 0 18px 20px;
    color: #4a5565;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .faqPreviewActions {
    display: grid;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .faqPreviewPrimary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    background: var(--orange);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
  }

  .faqPreviewPrimary:hover {
    transform: translateY(-1px);
  }

  .faqPreviewSecondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #4a5565;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

@media (min-width: 768px) {
  .faqPreview {
    padding: 72px 0 80px;

    .faqPreviewTitle {
      font-size: 3rem;
      line-height: 1.08;
    }

    .faqPreviewSummary {
      font-size: 1.125rem;
      line-height: 1.56;
    }

    .faqPreviewList {
      gap: 16px;
      margin-top: 40px;
    }

    .faqPreviewTrigger {
      padding: 24px;
    }

    .faqPreviewQuestion {
      font-size: 1.125rem;
      line-height: 1.56;
    }

    .faqPreviewAnswer {
      padding: 0 24px 24px;
      font-size: 1rem;
    }

    .faqPreviewActions {
      grid-auto-flow: column;
      align-items: center;
      gap: 24px;
      margin-top: 40px;
    }
  }
}

@media (min-width: 1024px) {
  .faqPreview {
    padding: 80px 0 96px;

    .faqPreviewShell {
      max-width: 1248px;
    }

    .faqPreviewList {
      margin-top: 38px;
    }

    .faqPreviewTrigger {
      padding: 24px 24px 24px 18px;
    }

    .faqPreviewPrimary {
      min-width: 222px;
    }
  }
}

.ctaSection {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: var(--orange);

  .ctaSectionOverlay {
    position: absolute;
    inset: 0;
    background: url("./assets/img/figma-finalcta-bg.webp") center/cover;
    opacity: 0.25;
  }

  .ctaSectionShell {
    position: relative;
    display: flex;
    width: min(896px, calc(100vw - 40px));
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 72px 0;
    text-align: center;
  }

  .ctaSectionTitle {
    max-width: 864px;
    margin: 0;
    font-size: 2.5rem;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .ctaSectionBody {
    max-width: 857px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.65;
  }

  .ctaSectionActions {
    display: flex;
    width: 100%;
    max-width: 864px;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
  }

  .ctaSectionAction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 20px 32px;
    border-radius: 999px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    cursor: pointer;
    box-shadow:
      0 20px 25px rgba(0, 0, 0, 0.1),
      0 8px 10px rgba(0, 0, 0, 0.1);
  }

  .ctaSectionAction:hover {
    transform: translateY(-1px);
  }

  .ctaSectionActionDark {
    background: #101828;
    color: #fff;
  }

  .ctaSectionActionLight {
    gap: 8px;
    background: #fff;
    color: #101828;
  }

  .ctaSectionActionLight img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
  }

  .ctaSectionMeta {
    display: flex;
    width: 100%;
    max-width: 857px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 18px;
    margin-top: 32px;
    padding: 17px 32px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .ctaSectionMetaItem {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.9);
  }

  .ctaSectionMetaItem img {
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
  }

  .ctaSectionMetaSeparator {
    color: rgba(255, 255, 255, 0.3);
  }
}

@media (min-width: 721px) {
        .ctaSection {
          .ctaSectionShell {
            width: min(896px, calc(100vw - 48px));
          }

          .ctaSectionTitle {
            font-size: clamp(2.25rem, 5vw, 2.6rem);
            line-height: 1.04;
          }

          .ctaSectionBody {
            font-size: 1.08rem;
            line-height: 1.7;
          }
        }
}

@media (min-width: 1024px) {
  .ctaSection {
    .ctaSectionShell {
      padding: 96px 0;
    }

    .ctaSectionTitle {
      font-size: 48px;
      line-height: 60px;
    }

    .ctaSectionActions {
      flex-direction: row;
      align-items: center;
      gap: 24px;
    }

    .ctaSectionActionDark {
      min-width: 304px;
    }

    .ctaSectionActionLight {
      min-width: 273px;
    }

    .ctaSectionMeta {
      flex-wrap: nowrap;
    }
  }
}

@media (min-width: 721px) {
  :root {
    --container: min(1280px, calc(100vw - 48px));
  }

  .section-heading h2,
  .service-copy h2 {
    font-size: clamp(2.25rem, 5vw, 2.6rem);
    line-height: 1.04;
  }

  .service-copy,
  .section-heading {
    max-width: 890px;
  }

  .service-copy p,
  .section-heading p {
    font-size: 1.08rem;
    line-height: 1.7;
  }

  .section {
    padding: 88px 0;
  }

  .split-card {
    gap: 56px;
  }

  .service-section {
    padding-bottom: 56px;
  }

  .feature-list.two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-inline {
    flex-direction: row;
    gap: 16px;
  }

  .steps-inline div {
    padding: 18px 16px;
  }
}

@media (min-width: 1101px) {
  .split-card {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .reverse {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}
