:root {
  --airfy-purple: #3124ff;
  --airfy-purple-dark: #2015df;
  --airfy-lime: #c6f806;
  --airfy-ink: #030712;
  --airfy-muted: #4b5563;
  --airfy-surface: #f1f5f9;
  --airfy-border: rgba(3, 7, 18, .09);
  --airfy-shadow: 0 18px 60px rgba(20, 16, 80, .12);
  --airfy-container: 1280px;
}

.global-container {
  width: min(100% - 80px, var(--airfy-container));
  margin-inline: auto;
}

.global-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: #fff;
}

.global-header-inner {
  display: grid;
  grid-template-columns: minmax(150px, .55fr) minmax(0, 1.6fr) minmax(190px, .65fr);
  align-items: center;
  min-height: 82px;
  gap: 24px;
}

.global-brand {
  display: inline-flex;
  justify-self: start;
}

.global-brand img {
  width: auto;
  height: 40px;
  object-fit: contain;
}

.global-navigation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.global-navigation a {
  color: var(--airfy-ink);
  font: 500 15px/1.35 Inter, sans-serif;
  text-decoration: none;
  transition: color .2s ease;
}

.global-navigation a:hover,
.global-navigation a[aria-current="page"] {
  color: var(--airfy-purple);
}

.services-dropdown {
  position: relative;
  flex: 0 0 auto;
}

.services-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
  color: var(--airfy-ink);
  background: transparent;
  border: 0;
  font: 500 15px/1.35 Inter, sans-serif;
  cursor: pointer;
  transition: color .2s ease;
}

.services-dropdown-trigger > svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform .2s ease;
}

.services-dropdown.is-open .services-dropdown-trigger { color: var(--airfy-purple); }

.services-dropdown.is-open .services-dropdown-trigger > svg { transform: rotate(180deg); }

.services-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 1100;
  display: grid;
  width: min(660px, calc(100vw - 40px));
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 12px;
  visibility: hidden;
  opacity: 0;
  background: #fff;
  border: 1px solid var(--airfy-border);
  border-radius: 22px;
  box-shadow: var(--airfy-shadow);
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.services-dropdown-menu::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 12px;
}

.services-dropdown.is-open .services-dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.global-navigation .services-dropdown-menu a,
.site-navigation .services-dropdown-menu a {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: var(--airfy-ink);
  border-radius: 14px;
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, transform .18s ease;
}

.global-navigation .services-dropdown-menu a:hover,
.site-navigation .services-dropdown-menu a:hover {
  color: var(--airfy-purple);
  background: var(--airfy-surface);
  transform: translateY(-1px);
}

.services-dropdown-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  color: #fff;
  background: var(--airfy-purple);
  border-radius: 12px;
}

.services-dropdown-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.services-dropdown-icon-fire {
  overflow: visible;
  background: rgba(255, 92, 48, .12);
}

.services-dropdown-icon-fire img {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  max-width: none;
  object-fit: contain;
  transform-origin: 50% 92%;
  animation: airfy-fire 1.05s ease-in-out infinite;
}

.global-navigation .services-dropdown-menu a.services-dropdown-featured,
.site-navigation .services-dropdown-menu a.services-dropdown-featured {
  color: var(--airfy-ink);
  background: var(--airfy-lime);
}

.global-navigation .services-dropdown-menu a.services-dropdown-featured:hover,
.site-navigation .services-dropdown-menu a.services-dropdown-featured:hover {
  color: var(--airfy-ink);
  background: #b4e900;
}

.services-dropdown-featured .services-dropdown-icon-fire {
  background: #eef2ff;
}

.services-dropdown-featured small { color: rgba(3, 7, 18, .7); }

@keyframes airfy-fire {
  0%, 100% { transform: translateY(1px) scale(.92, 1.02) rotate(-3deg); filter: brightness(.96) saturate(1) drop-shadow(0 3px 4px rgba(255, 91, 44, .24)); }
  38% { transform: translateY(-2px) scale(1.08, .94) rotate(3deg); filter: brightness(1.16) saturate(1.22) drop-shadow(0 5px 6px rgba(255, 125, 40, .42)); }
  70% { transform: translateY(0) scale(.97, 1.06) rotate(-1deg); filter: brightness(1.04) saturate(1.1) drop-shadow(0 4px 5px rgba(255, 91, 44, .32)); }
}

.services-dropdown-menu strong,
.services-dropdown-menu small { display: block; }

.services-dropdown-menu strong {
  color: inherit;
  font: 600 14px/1.3 Manrope, sans-serif;
}

.services-dropdown-menu small {
  margin-top: 3px;
  color: #6b7280;
  font: 400 12px/1.35 Inter, sans-serif;
}

.site-navigation .services-dropdown-trigger {
  color: #030712;
  font: inherit;
}

.global-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.global-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: 600 15px/1.25 Inter, sans-serif;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease;
}

.global-button:hover { transform: translateY(-2px); }
.global-button-primary { color: var(--airfy-ink); background: var(--airfy-lime); }
.global-button-primary:hover { background: #b4e900; }
.global-button-secondary { color: var(--airfy-purple); background: #fff; border-color: var(--airfy-purple); }
.global-button-secondary:hover { background: rgba(49, 36, 255, .05); }
.global-button-inverse { color: var(--airfy-ink); background: #fff; }

.global-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--airfy-ink);
  background: #fff;
  border: 1px solid var(--airfy-border);
  border-radius: 999px;
  touch-action: manipulation;
}

.global-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.global-menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.global-menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.global-menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(3, 7, 18, .32);
  backdrop-filter: blur(2px);
}

.global-footer {
  position: relative;
  overflow: hidden;
  padding: 76px 0 30px;
  color: #fff;
  background: var(--airfy-purple);
}

.global-footer::after {
  content: '';
  position: absolute;
  top: -85px;
  right: -55px;
  width: 190px;
  height: 190px;
  background: var(--airfy-lime);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 62% 100%, 62% 48%, 26% 84%, 0 58%, 35% 23%);
  pointer-events: none;
}

.global-footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .65fr));
  gap: 52px;
}

.global-footer-brand img {
  width: auto;
  height: 43px;
  padding: 5px 9px;
  background: #fff;
  border-radius: 10px;
  object-fit: contain;
}

.global-footer-brand p {
  max-width: 430px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .8);
  font: 400 16px/1.55 Inter, sans-serif;
}

.global-footer-column h2 {
  margin: 0 0 15px;
  color: #fff;
  font: 600 17px/1.3 Manrope, sans-serif;
}

.global-footer-column a {
  display: block;
  width: fit-content;
  padding: 6px 0;
  color: rgba(255, 255, 255, .78);
  font: 400 14px/1.4 Inter, sans-serif;
  text-decoration: none;
}

.global-footer-column a:hover { color: var(--airfy-lime); }

.global-footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 54px;
  padding-top: 24px;
  color: rgba(255, 255, 255, .72);
  border-top: 1px solid rgba(255, 255, 255, .3);
  font: 400 13px/1.45 Inter, sans-serif;
}

:where(.global-header, .global-footer) a:focus-visible,
.global-menu-toggle:focus-visible {
  outline: 3px solid var(--airfy-lime);
  outline-offset: 3px;
}

#depoimentos [aria-label="Depoimento anterior"],
#depoimentos [aria-label="Próximo depoimento"] {
  min-width: 44px !important;
  min-height: 44px !important;
}

.home-services-section {
  padding: 80px 0;
  color: #fff;
  background: var(--airfy-purple);
}

.home-services-heading {
  max-width: 790px;
  margin: 0 auto 40px;
  text-align: center;
}

.home-services-kicker {
  display: inline-flex;
  padding: 6px 12px;
  color: var(--airfy-ink);
  background: var(--airfy-lime);
  border-radius: 999px;
  font: 600 12px/1.35 Inter, sans-serif;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.home-services-heading h2 {
  margin: 16px 0 0;
  color: #fff;
  font: 600 clamp(34px, 5vw, 56px)/1.12 Manrope, sans-serif;
  letter-spacing: -.045em;
}

.home-services-heading p {
  max-width: 680px;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, .8);
  font: 400 18px/1.55 Inter, sans-serif;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  padding: 26px;
  color: var(--airfy-ink);
  background: #fff;
  border-radius: 24px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.home-service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(3, 7, 18, .18);
}

.home-service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-service-topline > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 34px;
  color: var(--airfy-purple);
  background: var(--airfy-surface);
  border-radius: 999px;
  font: 600 12px/1 Manrope, sans-serif;
}

.home-service-topline small {
  color: #6b7280;
  font: 600 11px/1.3 Inter, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-service-card h3 {
  margin: 34px 0 0;
  color: var(--airfy-ink);
  font: 600 25px/1.25 Manrope, sans-serif;
  letter-spacing: -.03em;
}

.home-service-card > p {
  margin: 12px 0 0;
  color: var(--airfy-muted);
  font: 400 15px/1.55 Inter, sans-serif;
}

.home-service-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 24px;
}

.home-service-bottom strong {
  max-width: 150px;
  color: var(--airfy-ink);
  font: 600 13px/1.35 Inter, sans-serif;
}

.home-service-bottom a {
  color: var(--airfy-purple);
  font: 600 14px/1.35 Inter, sans-serif;
  text-decoration: none;
  white-space: nowrap;
}

.home-service-bottom a span { display: inline-block; transition: transform .2s ease; }
.home-service-bottom a:hover span { transform: translateX(4px); }

@media (max-width: 1150px) {
  .global-container { width: min(100% - 48px, var(--airfy-container)); }
  .global-header-inner { grid-template-columns: 1fr auto; }
  .global-navigation {
    position: fixed;
    z-index: 1200;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--airfy-border);
    border-radius: 20px;
    box-shadow: var(--airfy-shadow);
    max-height: calc(100vh - 92px);
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .global-navigation.is-open { display: flex; }
  .global-navigation > a,
  .site-navigation > a { display: flex; width: 100%; min-height: 44px; align-items: center; padding: 9px 2px; font-size: 17px; }
  .global-navigation .services-dropdown { width: 100%; }
  .global-navigation .services-dropdown-trigger,
  .site-navigation .services-dropdown-trigger {
    width: 100%;
    min-height: 44px;
    justify-content: space-between;
    padding: 9px 2px;
    font-size: 17px;
    text-align: left;
  }
  .global-navigation .services-dropdown-menu,
  .site-navigation .services-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 4px 0 8px;
    padding: 7px;
    visibility: visible;
    opacity: 1;
    background: var(--airfy-surface);
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    transform: none;
  }
  .global-navigation .services-dropdown-menu,
  .site-navigation .services-dropdown-menu { display: none; transform: none; }
  .global-navigation .services-dropdown.is-open .services-dropdown-menu,
  .site-navigation .services-dropdown.is-open .services-dropdown-menu { display: grid; }
  .global-navigation .services-dropdown-menu a,
  .site-navigation .services-dropdown-menu a { min-height: 44px; padding: 10px; font-size: 15px; }
  .services-dropdown-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .services-dropdown-menu small { display: none; }
  .site-navigation {
    position: fixed !important;
    z-index: 1200;
    top: 82px;
    left: 24px;
    right: 24px;
    display: none !important;
    max-height: calc(100vh - 96px);
    max-height: calc(100dvh - 96px);
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 22px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    border: 1px solid var(--airfy-border);
    border-radius: 20px;
    box-shadow: var(--airfy-shadow);
    -webkit-overflow-scrolling: touch;
  }
  .site-navigation.is-open { display: flex !important; }
  .site-navigation .services-dropdown { width: 100%; }
  .site-shell .menu-toggle { display: block !important; }
  .site-shell .header-cta { display: none !important; }
  .global-header-cta { display: none; }
  .global-menu-toggle { display: block; }
  .global-footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .global-footer-column:last-child { grid-column: 2 / -1; }
  .home-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 360px) {
  .global-navigation,
  .site-navigation {
    right: 12px;
    left: 12px;
    padding: 16px;
  }
}

@media (max-width: 767px) {
  .global-container { width: min(100% - 40px, var(--airfy-container)); }
  .global-header-inner { min-height: 74px; }
  .global-brand img { height: 35px; }
  .global-navigation { top: 70px; left: 20px; right: 20px; }
  .site-navigation { top: 74px; left: 20px; right: 20px; }
  .site-navigation .services-dropdown { width: 100%; }
  .site-navigation .services-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 9px 2px;
    font-size: 17px;
    text-align: left;
  }
  .site-navigation .services-dropdown-menu {
    position: static;
    display: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 4px 0 8px;
    padding: 7px;
    visibility: visible;
    opacity: 1;
    background: var(--airfy-surface);
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    transform: none;
  }
  .site-navigation .services-dropdown .services-dropdown-menu { display: none; transform: none; }
  .site-navigation .services-dropdown.is-open .services-dropdown-menu { display: grid; }
  .site-navigation .services-dropdown-menu a { padding: 10px; font-size: 15px; }
  .site-navigation .services-dropdown-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .site-navigation .services-dropdown-menu small { display: none; }
  .global-footer { padding-top: 58px; }
  .global-footer::after { width: 140px; height: 140px; }
  .global-footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .global-footer-column:last-child { grid-column: auto; }
  .global-footer-bottom { flex-direction: column; margin-top: 42px; }
  .home-services-section { padding: 54px 0; }
  .home-services-grid { grid-template-columns: 1fr; }
  .home-service-card { min-height: 290px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
  .services-dropdown-icon-fire img { animation: none; }
}

@font-face {
  font-family: Inter;
  src: url('/assets/inter-latin.woff2') format('woff2');
  font-weight: 400 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Manrope;
  src: url('/assets/manrope-latin.woff2') format('woff2');
  font-weight: 500 600;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; color: var(--airfy-ink); background: #fff; font: 400 16px/1.5 Inter, sans-serif; }
body, button, input, textarea, select { font-family: Inter, sans-serif; }
img, svg { display: block; max-width: 100%; }
h1, h2, h3, p, ul { margin: 0; }
a { color: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 14px;
  color: #fff;
  background: var(--airfy-ink);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, summary):focus-visible { outline: 3px solid var(--airfy-purple); outline-offset: 3px; }

.service-main section { padding: 88px 0; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 6px 12px;
  color: var(--airfy-ink);
  background: var(--airfy-lime);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section-heading { max-width: 760px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 {
  margin-top: 15px;
  font: 600 clamp(34px, 5vw, 56px)/1.12 Manrope, sans-serif;
  letter-spacing: -.045em;
}
.section-heading p { margin-top: 16px; color: var(--airfy-muted); font-size: 18px; line-height: 1.55; }

.service-hero { padding: 72px 0 96px !important; }
.service-breadcrumb { margin-bottom: 32px; color: #6b7280; font-size: 13px; }
.service-breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.service-breadcrumb a { display: inline-flex; min-height: 32px; align-items: center; text-decoration: none; }
.service-breadcrumb a:hover { color: var(--airfy-purple); }
.service-breadcrumb li:not(:last-child)::after { content: '/'; margin-left: 8px; color: #9ca3af; }

.service-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr); gap: 70px; align-items: center; }
.service-hero-copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font: 600 clamp(43px, 6vw, 68px)/1.04 Manrope, sans-serif;
  letter-spacing: -.055em;
}
.service-hero-copy > p { max-width: 670px; margin-top: 22px; color: var(--airfy-muted); font-size: 19px; line-height: 1.58; }
.service-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.service-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  color: #fff;
  background: var(--airfy-purple);
  border-radius: 32px;
  box-shadow: var(--airfy-shadow);
}
.service-visual::before {
  content: '';
  position: absolute;
  top: -90px;
  right: -70px;
  width: 260px;
  height: 260px;
  background: var(--airfy-lime);
  transform: rotate(12deg);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 63% 100%, 63% 47%, 28% 82%, 0 56%, 35% 21%);
}
.service-visual::after {
  content: '';
  position: absolute;
  left: -110px;
  bottom: -145px;
  width: 330px;
  height: 330px;
  border: 54px solid rgba(255, 255, 255, .09);
  border-radius: 50%;
}
.service-visual-inner { position: relative; z-index: 1; display: flex; min-height: 490px; flex-direction: column; justify-content: space-between; padding: 38px; }
.visual-label { width: fit-content; padding: 8px 12px; color: var(--airfy-ink); background: var(--airfy-lime); border-radius: 999px; font-size: 12px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }
.visual-window { width: min(100%, 390px); padding: 17px; background: rgba(255, 255, 255, .96); border-radius: 22px; box-shadow: 0 20px 50px rgba(3, 7, 18, .2); }
.visual-window-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.visual-window-bar span { width: 7px; height: 7px; background: #d1d5db; border-radius: 50%; }
.visual-window-title { color: var(--airfy-ink); font: 600 20px/1.25 Manrope, sans-serif; }
.visual-lines { display: grid; gap: 8px; margin-top: 15px; }
.visual-lines span { display: block; height: 9px; background: #e5e7eb; border-radius: 999px; }
.visual-lines span:nth-child(2) { width: 82%; }
.visual-lines span:nth-child(3) { width: 60%; background: var(--airfy-lime); }
.visual-points { display: grid; gap: 9px; width: min(100%, 340px); margin: 24px 0 0 auto; }
.visual-points span { display: flex; align-items: center; gap: 10px; padding: 11px 14px; color: var(--airfy-ink); background: #fff; border-radius: 13px; font-size: 13px; font-weight: 600; }
.visual-points span::before { content: '✓'; display: grid; place-items: center; width: 22px; height: 22px; color: #fff; background: var(--airfy-purple); border-radius: 7px; }

.benefits-section { background: var(--airfy-surface); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.benefit-card {
  min-height: 225px;
  padding: 26px;
  background: #fff;
  border: 1px solid rgba(3, 7, 18, .04);
  border-radius: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(20, 16, 80, .08); }
.benefit-icon { display: grid; place-items: center; width: 44px; height: 44px; color: #fff; background: var(--airfy-purple); border-radius: 13px; font: 600 12px/1 Manrope, sans-serif; }
.benefit-card h3 { margin-top: 22px; font: 600 20px/1.3 Manrope, sans-serif; letter-spacing: -.025em; }
.benefit-card p { margin-top: 9px; color: var(--airfy-muted); font-size: 14px; line-height: 1.55; }

.process-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.process-card { position: relative; min-height: 260px; padding: 28px; overflow: hidden; background: #fff; border: 1px solid var(--airfy-border); border-radius: 24px; }
.process-number { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 36px; color: var(--airfy-purple); background: rgba(49, 36, 255, .08); border-radius: 999px; font-size: 13px; font-weight: 600; }
.process-card h3 { margin-top: 44px; font: 600 22px/1.3 Manrope, sans-serif; }
.process-card p { margin-top: 11px; color: var(--airfy-muted); line-height: 1.58; }
.process-card::after { content: '→'; position: absolute; top: 30px; right: 26px; color: var(--airfy-lime); font: 600 28px/1 Manrope, sans-serif; }
.process-card:last-child::after { display: none; }

.offer-section { padding-top: 20px !important; }
.offer-card { display: grid; grid-template-columns: minmax(310px, .78fr) minmax(0, 1.22fr); overflow: hidden; border: 1px solid var(--airfy-border); border-radius: 32px; box-shadow: var(--airfy-shadow); }
.offer-price { display: flex; flex-direction: column; justify-content: center; padding: 46px; color: #fff; background: var(--airfy-purple); }
.offer-price > span { color: var(--airfy-lime); font-size: 12px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.offer-price small { margin-top: 28px; color: rgba(255, 255, 255, .72); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.offer-price strong { margin-top: 5px; font: 500 clamp(43px, 5vw, 62px)/1 Manrope, sans-serif; letter-spacing: -.055em; }
.offer-price p { margin-top: 10px; color: rgba(255, 255, 255, .76); font-size: 13px; }
.offer-content { padding: 46px; background: #fff; }
.offer-content h2 { font: 600 clamp(31px, 4vw, 46px)/1.12 Manrope, sans-serif; letter-spacing: -.04em; }
.offer-content > p { margin-top: 14px; color: var(--airfy-muted); line-height: 1.58; }
.offer-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin: 26px 0; }
.offer-fact { padding: 14px; background: var(--airfy-surface); border-radius: 14px; }
.offer-fact small { display: block; color: #6b7280; font-size: 11px; text-transform: uppercase; }
.offer-fact strong { display: block; margin-top: 5px; font-size: 14px; font-weight: 600; }
.offer-note { margin-top: 14px !important; font-size: 12px; }

.faq-section { background: var(--airfy-surface); }
.faq-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 64px; align-items: start; }
.faq-intro { position: sticky; top: 30px; }
.faq-intro h2 { margin-top: 15px; font: 600 clamp(34px, 4vw, 50px)/1.12 Manrope, sans-serif; letter-spacing: -.045em; }
.faq-intro p { margin-top: 15px; color: var(--airfy-muted); }
.faq-list { display: grid; gap: 12px; }
.faq-item { padding: 0 22px; background: #fff; border: 1px solid rgba(3, 7, 18, .06); border-radius: 18px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 72px; font: 600 17px/1.4 Manrope, sans-serif; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; flex: 0 0 auto; color: var(--airfy-purple); font-size: 25px; font-weight: 500; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 34px 20px 0; color: var(--airfy-muted); line-height: 1.6; }

.related-section { padding-bottom: 32px !important; }
.related-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.related-heading h2 { margin-top: 12px; font: 600 clamp(31px, 4vw, 48px)/1.12 Manrope, sans-serif; letter-spacing: -.04em; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.related-card { display: flex; min-height: 205px; flex-direction: column; padding: 24px; text-decoration: none; background: var(--airfy-surface); border: 1px solid rgba(3, 7, 18, .04); border-radius: 22px; transition: transform .2s ease, background-color .2s ease; }
.related-card:hover { transform: translateY(-3px); background: #e7ebf2; }
.related-card span { color: var(--airfy-purple); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.related-card h3 { margin-top: 14px; font: 600 22px/1.25 Manrope, sans-serif; }
.related-card p { margin-top: 9px; color: var(--airfy-muted); font-size: 14px; line-height: 1.5; }
.related-card strong { margin-top: auto; padding-top: 18px; color: var(--airfy-purple); font-size: 14px; }

.contact-section { padding-bottom: 100px !important; }
.contact-card { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; overflow: hidden; padding: 58px; color: #fff; background: var(--airfy-purple); border-radius: 32px; }
.contact-card::after { content: ''; position: absolute; right: -45px; bottom: -75px; width: 210px; height: 210px; background: var(--airfy-lime); transform: rotate(18deg); clip-path: polygon(0 0, 100% 0, 100% 100%, 63% 100%, 63% 47%, 28% 82%, 0 56%, 35% 21%); }
.contact-card-copy, .contact-card-actions { position: relative; z-index: 1; }
.contact-card h2 { font: 600 clamp(36px, 5vw, 58px)/1.08 Manrope, sans-serif; letter-spacing: -.05em; }
.contact-card p { max-width: 650px; margin-top: 16px; color: rgba(255, 255, 255, .82); font-size: 17px; line-height: 1.55; }
.contact-card-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }

@media (max-width: 1023px) {
  .service-main section { padding: 72px 0; }
  .service-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(330px, .85fr); gap: 38px; }
  .service-visual, .service-visual-inner { min-height: 430px; }
  .benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .offer-card { grid-template-columns: 1fr; }
  .offer-price, .offer-content { padding: 38px; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-intro { position: static; max-width: 650px; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card-actions { justify-content: flex-start; }
}

@media (max-width: 767px) {
  .service-main section { padding: 52px 0; }
  .service-hero { padding: 42px 0 64px !important; }
  .service-breadcrumb { margin-bottom: 24px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 38px; }
  .service-hero-copy h1 { font-size: clamp(34px, 10.5vw, 42px); line-height: 1.07; }
  .service-hero-copy > p { font-size: 17px; }
  .service-hero-actions .global-button { width: 100%; }
  .service-visual, .service-visual-inner { min-height: 400px; }
  .service-visual-inner { padding: 25px; }
  .visual-points { width: 100%; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: clamp(30px, 9vw, 34px); }
  .section-heading p { font-size: 16px; }
  .benefits-grid, .process-grid, .related-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .process-card { min-height: 220px; }
  .offer-price, .offer-content { padding: 28px 22px; }
  .offer-price strong { font-size: clamp(34px, 10vw, 43px); line-height: 1.08; overflow-wrap: anywhere; }
  .offer-facts { grid-template-columns: 1fr; }
  .related-heading { align-items: flex-start; flex-direction: column; }
  .contact-card { padding: 34px 24px 150px; }
  .contact-card h2 { font-size: clamp(30px, 9vw, 36px); }
  .contact-card-actions { flex-direction: column; }
  .contact-card-actions .global-button { width: 100%; }
  .contact-card::after { right: -28px; bottom: -45px; }
}

@media (max-width: 359px) {
  .service-visual, .service-visual-inner { min-height: 360px; }
  .service-visual-inner { padding: 20px; }
  .visual-label { font-size: 11px; }
  .visual-points span { padding: 9px 11px; font-size: 12px; }
  .contact-card { padding: 30px 20px 130px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
