:root {
  --af-green: #007a3d;
  --af-green-dark: #004d2a;
  --af-green-soft: #14a85c;
  --af-navy: #052d35;
  --af-white: #ffffff;
  --af-cream: #f5f7f6;
  --af-text: #1b1b1b;
  --af-muted: #58656a;
  --af-border: rgba(5, 45, 53, 0.12);
  --af-border-strong: rgba(5, 45, 53, 0.18);
  --af-surface: #ffffff;
  --af-surface-soft: #f8fbf9;
  --af-shadow: 0 24px 60px rgba(5, 45, 53, 0.14);
  --af-shadow-soft: 0 18px 40px rgba(5, 45, 53, 0.1);
  --af-radius: 28px;
  --af-shell: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--af-font-body, "Inter", sans-serif);
  line-height: 1.55;
  color: var(--af-text);
  background:
    radial-gradient(circle at top left, rgba(20, 168, 92, 0.08), transparent 28%),
    linear-gradient(180deg, #fbfcfb 0%, #f3f7f5 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input {
  font: inherit;
}

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

.af-shell {
  width: min(calc(100% - 40px), var(--af-shell));
  margin: 0 auto;
}

.af-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(5, 45, 53, 0.04);
  background: color-mix(in srgb, var(--af-header-bg, #ffffff) 90%, transparent);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.af-site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(5, 45, 53, 0.08);
  border-color: var(--af-border);
}

.af-site-header__inner,
.af-site-header__actions,
.af-hero__actions,
.af-tracking-form,
.af-final-cta,
.af-destination-card__meta,
.af-socials {
  display: flex;
  align-items: center;
}

.af-site-header__inner {
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
}

.af-site-header__brand,
.af-nav--desktop,
.af-site-header__actions {
  position: relative;
  z-index: 5;
}

.af-nav--desktop {
  flex: 1 1 auto;
  min-width: 0;
}

.af-brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.af-brand img,
.custom-logo-link img {
  width: auto;
  height: auto;
  max-width: var(--af-logo-desktop-width, 220px);
}

.af-brand--text {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-family: var(--af-font-heading, "Inter", sans-serif);
}

.af-brand__star {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
  color: white;
  font-size: 1.4rem;
}

.af-brand__wordmark {
  display: grid;
  line-height: 1;
}

.af-brand__wordmark strong {
  font-size: 2rem;
  color: var(--af-green);
}

.af-brand__wordmark span {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: rgba(0, 122, 61, 0.72);
}

.af-nav--desktop .af-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-nav--desktop .af-nav__list > li {
  position: relative;
  flex: 0 1 auto;
}

.af-nav__item a,
.af-nav--desktop .af-nav__list a {
  position: relative;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
  color: var(--af-header-menu, var(--af-text));
  transition: color 160ms ease, background 160ms ease;
}

.af-nav--desktop .af-nav__list > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 86px;
  padding: 0 14px;
  border-radius: 999px;
  text-align: center;
  line-height: 1.25;
}

.af-nav--desktop .af-nav__list > li > a:hover,
.af-nav--desktop .af-nav__list > li:focus-within > a {
  background: rgba(0, 122, 61, 0.06);
}

.af-nav--desktop .af-nav__list > .menu-item-has-children > a {
  padding-right: 16px;
}

.af-nav--desktop .af-nav__list > .menu-item-has-children > a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.7;
}

.af-nav--desktop .af-nav__list > li > a:hover::after,
.af-nav--desktop .af-nav__list > .current-menu-item > a::after,
.af-nav--desktop .af-nav__list > .current_page_item > a::after,
.af-nav--desktop .af-nav__list > .current-menu-ancestor > a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 17px;
  height: 3px;
  border-radius: 999px;
  background: var(--af-header-active, var(--af-green-soft));
}

.af-nav--desktop .sub-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 260px;
  max-width: 340px;
  margin: 0;
  padding: 12px;
  list-style: none;
  border: 1px solid rgba(5, 45, 53, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 56px rgba(5, 45, 53, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.af-nav--desktop .sub-menu li {
  position: relative;
}

.af-nav--desktop .sub-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--af-text);
  line-height: 1.45;
}

.af-nav--desktop .sub-menu a:hover,
.af-nav--desktop .sub-menu a:focus-visible,
.af-nav--desktop .sub-menu .current-menu-item > a,
.af-nav--desktop .sub-menu .current_page_item > a {
  color: var(--af-green-dark);
  background: rgba(0, 122, 61, 0.08);
}

.af-nav--desktop .af-nav__list > li:hover > .sub-menu,
.af-nav--desktop .af-nav__list > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.af-nav--desktop .sub-menu .sub-menu {
  top: -10px;
  left: calc(100% + 10px);
  transform: translate(0, 12px);
}

.af-nav--desktop .sub-menu li:hover > .sub-menu,
.af-nav--desktop .sub-menu li:focus-within > .sub-menu {
  transform: translate(0, 0);
}

.af-site-header__actions {
  gap: 14px;
  flex: 0 0 auto;
}

.af-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.af-button:hover,
.af-button:focus-visible {
  transform: translateY(-1px);
}

.af-button:focus-visible,
.af-burger:focus-visible,
.af-tracking-form input:focus-visible,
.af-service-card a:focus-visible,
.af-site-footer a:focus-visible {
  outline: 3px solid rgba(20, 168, 92, 0.24);
  outline-offset: 3px;
}

.af-button--primary {
  color: white;
  background: linear-gradient(135deg, var(--af-header-button, var(--af-green)), var(--af-header-button-hover, var(--af-green-dark)));
  box-shadow: 0 16px 34px rgba(0, 122, 61, 0.2);
}

.af-button--primary:hover,
.af-button--primary:focus-visible {
  background: linear-gradient(135deg, var(--af-header-button-hover, var(--af-green-dark)), var(--af-header-button, var(--af-green)));
}

.af-button--secondary {
  color: white;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.af-button--secondary-light {
  color: var(--af-navy);
  background: white;
  box-shadow: 0 14px 30px rgba(5, 45, 53, 0.1);
}

.af-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--af-border);
  border-radius: 16px;
  background: white;
  color: var(--af-blue-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.af-kicker,
.af-button,
.af-brand__wordmark strong {
  font-family: var(--af-font-heading, "Inter", sans-serif);
}

.af-burger svg,
.af-proofbar__icon svg,
.af-service-card__icon svg,
.af-benefit-card__icon svg,
.af-destination-card__meta svg,
.af-timeline span svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-burger__close {
  display: none;
}

.af-burger[aria-expanded="true"] .af-burger__open {
  display: none;
}

.af-burger[aria-expanded="true"] .af-burger__close {
  display: inline-flex;
}

.af-mobile-panel {
  border-top: 1px solid var(--af-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 248, 0.98));
}

.af-mobile-panel__inner {
  display: grid;
  gap: 20px;
  padding: 20px 0 28px;
}

.af-nav--mobile .af-nav__list,
.af-nav--mobile .sub-menu {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-nav--mobile .af-nav__list > li {
  border-bottom: 1px solid var(--af-border);
}

.af-nav--mobile .menu-item-has-children {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 12px;
}

.af-nav--mobile .af-nav__list > li > a,
.af-nav--mobile .sub-menu a {
  display: block;
  padding: 14px 0;
  font-weight: 700;
  line-height: 1.4;
}

.af-nav--mobile .sub-menu {
  padding: 0 0 14px 16px;
  grid-column: 1 / -1;
}

.af-nav--mobile .sub-menu a {
  padding: 10px 0;
  font-weight: 600;
  color: var(--af-muted);
}

.af-mobile-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 2px;
  border: 1px solid var(--af-border);
  border-radius: 12px;
  background: white;
  color: var(--af-green-dark);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.af-mobile-submenu-toggle:hover,
.af-mobile-submenu-toggle:focus-visible {
  border-color: var(--af-border-strong);
  background: rgba(0, 122, 61, 0.06);
}

.af-mobile-submenu-toggle span {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 160ms ease;
}

.af-nav--mobile .menu-item-has-children.is-open > .af-mobile-submenu-toggle span {
  transform: rotate(-135deg) translateX(-1px);
}

.af-mobile-panel__cta {
  display: grid;
  gap: 12px;
  padding-top: 4px;
}

.af-front-page {
  overflow: clip;
}

.af-hero {
  position: relative;
  padding: 0 0 34px;
}

.af-hero > .af-shell.af-hero__layout {
  width: 100%;
  max-width: none;
}

.af-hero__layout {
  position: relative;
  min-height: 480px;
  border-radius: 0 0 48px 48px;
  overflow: hidden;
}

.af-hero__copy,
.af-service-card,
.af-tracking-panel,
.af-destination-card,
.af-benefit-card,
.af-review-card,
.af-final-cta,
.af-site-footer__grid {
  box-shadow: var(--af-shadow);
}

.af-hero__copy {
  position: relative;
  z-index: 3;
  max-width: min(1180px, calc(100% - 72px));
  margin-left: clamp(24px, calc((100vw - var(--af-shell)) / 2 + 24px), 180px);
  padding: 44px 0 22px;
}

.af-kicker {
  margin: 0 0 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--af-green);
}

.af-hero .af-kicker {
  color: rgba(165, 244, 196, 0.92);
}

.af-hero h1,
.af-section-heading h2,
.af-final-cta h2,
.af-site-footer__column h2 {
  margin: 0;
  line-height: 1.02;
}

.af-hero h1 {
  max-width: 11.2ch;
  font-size: clamp(2.35rem, 4vw, 4rem);
  color: white;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  text-wrap: balance;
}

.af-hero__text {
  max-width: 50ch;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.58;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.af-hero__actions {
  gap: 14px;
  margin-top: 16px;
}

.af-hero__info-band {
  display: grid;
  grid-template-columns: 1.05fr 1.7fr 1.05fr;
  gap: 14px;
  max-width: min(1240px, calc(100vw - 140px));
  margin-top: 18px;
}

.af-hero__info-card {
  display: grid;
  align-content: start;
  min-height: 134px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(6, 37, 48, 0.64), rgba(6, 37, 48, 0.48));
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 34px rgba(2, 15, 20, 0.24);
}

.af-hero__info-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(165, 244, 196, 0.96);
}

.af-hero__info-card strong {
  display: block;
  margin: 0;
  color: white;
  font-size: 1.24rem;
  line-height: 1.14;
}

.af-hero__info-card p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.42;
}

.af-hero__destination-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.af-hero__destination-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}

.af-hero__actions .af-button--secondary {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.af-hero__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.af-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(4, 33, 43, 0.86) 0%, rgba(4, 33, 43, 0.72) 28%, rgba(4, 33, 43, 0.42) 54%, rgba(4, 33, 43, 0.18) 72%, rgba(4, 33, 43, 0.06) 100%),
    linear-gradient(180deg, rgba(0, 77, 42, 0.04), rgba(0, 0, 0, 0.18));
  z-index: 2;
}

.af-hero__visual::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 42%;
  background: linear-gradient(180deg, rgba(3, 24, 31, 0) 0%, rgba(3, 24, 31, 0.24) 48%, rgba(3, 24, 31, 0.56) 100%);
  z-index: 1;
}

.af-hero__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.01);
}
.af-proofbar__item p,
.af-service-card p,
.af-benefit-card p,
.af-review-card blockquote,
.af-site-footer p,
.af-site-footer li,
.af-tracking-panel__copy p {
  margin: 0;
  color: var(--af-muted);
  line-height: 1.65;
}

.af-hero__info-card p,
.af-hero__destination-list span {
  color: rgba(255, 255, 255, 0.84);
}

.af-proofbar {
  margin-top: -18px;
  position: relative;
  z-index: 3;
}

.af-proofbar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 16px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
  box-shadow: 0 18px 40px rgba(0, 77, 42, 0.18);
}

.af-proofbar__item {
  display: flex;
  gap: 16px;
  padding: 20px 18px;
  color: white;
  align-items: flex-start;
}

.af-proofbar__item + .af-proofbar__item {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.af-proofbar__item h2,
.af-proofbar__item h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.af-proofbar__item p {
  color: rgba(255, 255, 255, 0.82);
}

.af-proofbar__icon,
.af-service-card__icon,
.af-benefit-card__icon,
.af-timeline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.af-proofbar__icon,
.af-service-card__icon,
.af-benefit-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
}

.af-proofbar__icon {
  background: rgba(255, 255, 255, 0.12);
}

.af-section {
  padding: clamp(56px, 7vw, 84px) 0 0;
}

.af-section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.af-section-heading--left {
  margin-left: 0;
  text-align: left;
}

.af-section-heading h2 {
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.af-card-grid {
  display: grid;
  gap: 22px;
}

.af-card-grid--services {
  grid-template-columns: repeat(4, 1fr);
}

.af-service-card {
  overflow: hidden;
  border: 1px solid var(--af-border);
  border-radius: 26px;
  background: var(--af-surface);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.af-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--af-border-strong);
  box-shadow: 0 30px 56px rgba(5, 45, 53, 0.16);
}

.af-service-card__media {
  position: relative;
  height: 210px;
}

.af-service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-service-card__icon {
  position: absolute;
  left: 18px;
  bottom: -18px;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
  color: white;
  box-shadow: 0 14px 30px rgba(0, 122, 61, 0.18);
}

.af-service-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 22px 24px;
  min-height: 230px;
}

.af-service-card__body h3,
.af-benefit-card h3,
.af-destination-card h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}

.af-service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--af-green);
  font-weight: 700;
}

.af-service-card a svg {
  width: 18px;
  height: 18px;
}

.af-section--tracking {
  padding-top: 36px;
}

.af-tracking-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 32px;
  border-radius: 30px;
  color: white;
  background: linear-gradient(135deg, #041d28 0%, #062f3a 55%, #0a2234 100%);
}

.af-tracking-panel h2,
.af-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.af-tracking-form {
  gap: 14px;
}

.af-tracking-form input {
  flex: 1 1 auto;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: var(--af-text);
  background: white;
}

.af-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.af-timeline li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.af-timeline li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: calc(-50% + 28px);
  width: calc(100% - 12px);
  height: 2px;
  background: rgba(255, 255, 255, 0.18);
}

.af-timeline li:first-child::before {
  display: none;
}

.af-timeline span {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.af-timeline li.is-active span {
  background: linear-gradient(135deg, var(--af-green-soft), var(--af-green));
  border-color: transparent;
}

.af-timeline strong,
.af-timeline small {
  display: block;
}

.af-timeline small {
  color: rgba(255, 255, 255, 0.72);
}

.af-card-grid--destinations {
  grid-template-columns: repeat(5, 1fr);
}

.af-destination-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(5, 45, 53, 0.1);
}

.af-destination-card img,
.af-destination-card__overlay {
  position: absolute;
  inset: 0;
}

.af-destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.af-destination-card__overlay {
  background: linear-gradient(180deg, rgba(8, 46, 57, 0.08) 0%, rgba(8, 46, 57, 0.26) 42%, rgba(8, 46, 57, 0.88) 100%);
}

.af-destination-card__content {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  height: 100%;
  padding: 22px;
  color: white;
}

.af-destination-card__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.af-destination-card__meta {
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.af-destination-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
}

.af-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.af-benefits-panel,
.af-reviews-panel {
  padding: 30px;
  border: 1px solid var(--af-border);
  border-radius: 30px;
  background: white;
}

.af-benefits-grid,
.af-reviews-grid {
  display: grid;
  gap: 18px;
}

.af-benefits-grid {
  grid-template-columns: 1fr 1fr;
}

.af-section--home-panels {
  padding-top: 56px;
}

.af-home-panels {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 22px;
}

.af-home-panel {
  padding: 34px;
  border: 1px solid var(--af-border);
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff, #f6f9f8);
  box-shadow: 0 16px 42px rgba(5, 45, 53, 0.08);
}

.af-section-heading--panel {
  margin-bottom: 24px;
}

.af-section-heading--panel h2 {
  max-width: 10ch;
  margin: 0;
  font-size: clamp(2.45rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.af-benefits-grid--home {
  grid-template-columns: 1fr 1fr;
}

.af-benefit-card--home {
  min-height: 236px;
  padding: 24px 22px;
}

.af-reviews-grid--home {
  grid-template-columns: 1fr;
}

.af-review-card--home {
  min-height: 0;
  padding: 24px 24px 22px;
}

.af-review-card--home blockquote {
  font-size: 0.98rem;
  line-height: 1.68;
}

.af-benefit-card,
.af-review-card {
  padding: 22px;
  border: 1px solid var(--af-border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f8fbf9);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.af-benefit-card:hover,
.af-review-card:hover {
  transform: translateY(-4px);
  border-color: var(--af-border-strong);
  box-shadow: var(--af-shadow-soft);
}

.af-benefit-card__icon {
  margin-bottom: 18px;
  color: white;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
}

.af-review-card__stars {
  margin-bottom: 16px;
  color: #ffb400;
  letter-spacing: 0.16em;
}

.af-review-card blockquote {
  margin-bottom: 18px;
}

.af-review-card p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.af-review-card span {
  color: var(--af-muted);
}

.af-final-cta {
  position: relative;
  overflow: hidden;
  justify-content: space-between;
  gap: 22px;
  padding: 30px 34px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
}

.af-final-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
  pointer-events: none;
}

.af-final-cta p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.af-builder-content {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--af-border);
  background: white;
}

.af-quote-benefits-panel {
  padding: 28px 30px;
  border: 1px solid var(--af-border);
  border-radius: 26px;
  background: linear-gradient(180deg, #fbfcfb, #f4f8f6);
  box-shadow: var(--af-shadow);
}

.af-quote-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.af-quote-benefit {
  padding: 10px 18px;
  text-align: center;
}

.af-quote-benefit + .af-quote-benefit {
  border-left: 1px solid var(--af-border);
}

.af-quote-benefit__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
}

.af-quote-benefit__icon svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.af-site-footer {
  margin-top: 56px;
  color: var(--af-footer-text, #ffffff);
  background: linear-gradient(180deg, var(--af-footer-bg, #07212d) 0%, color-mix(in srgb, var(--af-footer-bg, #07212d) 82%, #04161e) 100%);
}

.af-site-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
  gap: 30px;
  padding: 48px 0 30px;
  box-shadow: none;
}

.af-site-footer .af-brand__wordmark strong,
.af-site-footer .af-brand__wordmark span {
  color: var(--af-footer-text, #ffffff);
}

.af-site-footer__column h2 {
  margin-bottom: 16px;
  font-size: 1.08rem;
}

.af-site-footer__column ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-site-footer a,
.af-site-footer li,
.af-site-footer p {
  color: var(--af-footer-link, rgba(255, 255, 255, 0.76));
}

.af-site-footer__bottom {
  border-top: 1px solid color-mix(in srgb, var(--af-footer-text, #ffffff) 10%, transparent);
}

.af-site-footer__bottom p {
  margin: 0;
  padding: 18px 0 24px;
}

.af-socials {
  gap: 12px;
  margin-top: 20px;
}

.af-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.af-socials a:hover,
.af-socials a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.af-socials a svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.has-af-menu-open {
  overflow: hidden;
}

.af-services-page {
  overflow: clip;
}

.af-page-hero {
  position: relative;
  min-height: 410px;
  display: grid;
  align-items: end;
  padding: 76px 0 64px;
  color: white;
  overflow: hidden;
}

.af-page-hero__media,
.af-page-hero__overlay {
  position: absolute;
  inset: 0;
}

.af-page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-page-hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 45, 53, 0.88) 0%, rgba(5, 45, 53, 0.62) 42%, rgba(5, 45, 53, 0.24) 100%),
    linear-gradient(180deg, rgba(0, 77, 42, 0.14), rgba(5, 45, 53, 0.24));
}

.af-page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.af-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.af-breadcrumb svg,
.af-journey-step__arrow svg,
.af-feature-list li svg,
.af-services-cta__contact svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.85rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.af-page-hero__subtitle {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.4vw, 2.95rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.af-page-hero__content > p:last-child {
  max-width: 52ch;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.68;
}

.af-page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.af-page-hero__actions .af-button--secondary {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.af-proofbar--floating {
  margin-top: -44px;
  position: relative;
  z-index: 4;
}

.af-proofbar__grid--light {
  gap: 0;
  padding: 14px 20px;
  background: white;
  box-shadow: var(--af-shadow);
}

.af-proofbar__item--light {
  color: var(--af-text);
}

.af-proofbar__item--light + .af-proofbar__item--light {
  border-left: 1px solid var(--af-border);
}

.af-proofbar__item--light p {
  color: var(--af-muted);
}

.af-proofbar__icon--light {
  color: var(--af-green);
  background: rgba(0, 122, 61, 0.08);
}

.af-section--services-page {
  padding-top: 62px;
}

.af-card-grid--services-detailed {
  grid-template-columns: repeat(4, 1fr);
}

.af-service-card--detailed {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.af-service-card--detailed:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(5, 45, 53, 0.18);
}

.af-feature-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.af-feature-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--af-text);
}

.af-feature-list li svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--af-green);
}

.af-section--journey {
  padding-top: 24px;
}

.af-journey-panel {
  padding: 36px 32px;
  border: 1px solid var(--af-border);
  border-radius: 32px;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
  box-shadow: var(--af-shadow);
}

.af-journey-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-journey-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.af-journey-step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: white;
  color: var(--af-green);
  border: 1px solid rgba(0, 122, 61, 0.14);
  box-shadow: 0 14px 26px rgba(0, 122, 61, 0.08);
}

.af-journey-step__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-journey-step__number {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--af-green);
  font-weight: 800;
}

.af-journey-step h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.af-journey-step p {
  margin: 0;
  color: var(--af-muted);
  line-height: 1.65;
}

.af-journey-step__arrow {
  display: inline-flex;
  color: var(--af-text);
  opacity: 0.65;
}

.af-section--services-cta {
  padding-top: 22px;
}

.af-services-cta {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #072f37 0%, #0a2735 55%, #06311b 100%);
  box-shadow: var(--af-shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.af-services-cta__visual {
  position: relative;
  min-height: 290px;
}

.af-services-cta__visual img,
.af-services-cta__visual-overlay {
  position: absolute;
  inset: 0;
}

.af-services-cta__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.af-services-cta__visual-overlay {
  background: linear-gradient(90deg, rgba(5, 45, 53, 0.08), rgba(5, 45, 53, 0.55));
}

.af-services-cta__content {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 36px 40px;
  color: white;
}

.af-services-cta__content .af-kicker {
  margin-bottom: 0;
  color: rgba(123, 236, 175, 0.9);
}

.af-services-cta__content h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3.5vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.af-services-cta__content > p:not(.af-kicker) {
  margin: 0;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.68;
  font-size: 1rem;
}

.af-services-cta__actions {
  margin-top: 8px;
}

.af-services-cta__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
}

.af-services-cta__contact a {
  font-weight: 500;
}

.af-page-hero--tracking {
  min-height: 430px;
}

.af-section--tracking-search {
  padding-top: 40px;
}

.af-search-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.af-search-card,
.af-status-card,
.af-contact-panel {
  padding: 30px;
  border: 1px solid var(--af-border);
  border-radius: 30px;
  background: white;
  box-shadow: var(--af-shadow);
}

.af-tracking-form--page {
  margin-top: 10px;
}

.af-proofbar__grid--compact {
  margin-top: 22px;
  grid-template-columns: 1fr;
  padding: 10px 0 0;
  background: transparent;
  box-shadow: none;
}

.af-proofbar__grid--compact .af-proofbar__item--light {
  padding: 16px 0;
}

.af-proofbar__grid--compact .af-proofbar__item--light + .af-proofbar__item--light {
  border-left: none;
  border-top: 1px solid var(--af-border);
}

.af-status-card {
  display: grid;
  align-content: start;
  gap: 18px;
  background: linear-gradient(180deg, #ffffff, #f8fbf9);
}

.af-status-card__badge {
  margin: 0;
  color: var(--af-green);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.af-status-card__number {
  font-size: 2.2rem;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.af-status-card__state {
  display: flex;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: rgba(20, 168, 92, 0.08);
}

.af-status-card__state span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  flex: 0 0 auto;
  color: white;
  background: linear-gradient(135deg, var(--af-green), var(--af-green-dark));
}

.af-status-card__state span svg,
.af-contact-panel__list svg,
.af-tracking-step__dot svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.af-status-card__state h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.af-status-card__state p,
.af-panel-intro {
  margin: 0;
  color: var(--af-muted);
  line-height: 1.7;
}

.af-status-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
}

.af-status-card__meta div {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--af-border);
  background: white;
}

.af-status-card__meta dt {
  margin-bottom: 6px;
  color: var(--af-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.af-status-card__meta dd {
  margin: 0;
  font-weight: 700;
}

.af-section--tracking-timeline,
.af-section--tracking-help {
  padding-top: 24px;
}

.af-tracking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.af-tracking-step {
  position: relative;
  display: grid;
  gap: 14px;
}

.af-tracking-step__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: var(--af-green);
  border: 1px solid rgba(0, 122, 61, 0.18);
  background: white;
  box-shadow: 0 12px 24px rgba(0, 122, 61, 0.08);
}

.af-tracking-step__body strong,
.af-tracking-step__body small,
.af-tracking-step__body p {
  display: block;
}

.af-tracking-step__body small {
  margin-top: 6px;
  color: var(--af-green);
  font-weight: 700;
}

.af-tracking-step__body p {
  margin: 10px 0 0;
  color: var(--af-muted);
  line-height: 1.65;
}

.af-tracking-step__line {
  position: absolute;
  top: 28px;
  left: 68px;
  width: calc(100% - 52px);
  height: 2px;
  background: rgba(5, 45, 53, 0.1);
}

.af-tracking-step.is-active .af-tracking-step__dot,
.af-tracking-step.is-current .af-tracking-step__dot {
  color: white;
  border-color: transparent;
  background: linear-gradient(135deg, var(--af-green-soft), var(--af-green));
}

.af-help-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
  margin-top: 20px;
}

.af-benefit-card--help .af-benefit-card__icon {
  margin-bottom: 14px;
}

.af-benefit-card--help {
  border-radius: 24px;
  padding: 24px 22px;
}

.af-contact-panel {
  display: grid;
  align-content: start;
  gap: 20px;
  background: linear-gradient(180deg, #ffffff, #f7faf8);
}

.af-contact-panel__list {
  display: grid;
  gap: 14px;
}

.af-contact-panel__list a,
.af-contact-panel__list div {
  display: flex;
  align-items: start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--af-border);
  border-radius: 18px;
  color: var(--af-text);
  background: white;
}

.af-contact-panel__list svg {
  margin-top: 2px;
  color: var(--af-green);
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  .af-nav--desktop {
    display: none;
  }

  .af-burger {
    display: inline-flex;
  }

  .af-card-grid--services,
  .af-card-grid--services-detailed,
  .af-card-grid--destinations,
  .af-proofbar__grid,
  .af-site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .af-hero__layout,
  .af-tracking-panel,
  .af-home-panels,
  .af-split-grid,
  .af-services-cta,
  .af-search-layout {
    grid-template-columns: 1fr;
  }

  .af-hero h1 {
    max-width: 12ch;
  }

  .af-hero__info-band {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .af-journey-list {
    grid-template-columns: 1fr;
  }

  .af-tracking-steps {
    grid-template-columns: 1fr 1fr;
  }

  .af-journey-step {
    grid-template-columns: auto 1fr;
  }

  .af-journey-step__arrow {
    display: none;
  }
}

@media (min-width: 1181px) {
  .af-mobile-panel {
    display: none !important;
  }
}

@media (max-width: 780px) {
  .af-shell {
    width: min(calc(100% - 24px), var(--af-shell));
  }

  .af-site-header__inner {
    min-height: 74px;
  }

  .af-brand img,
  .custom-logo-link img {
    max-width: var(--af-logo-mobile-width, 160px);
  }

  .af-site-header__actions > .af-button {
    display: none;
  }

  .af-hero {
    padding-top: 0;
  }

  .af-hero__copy {
    margin-left: 24px;
    max-width: min(560px, calc(100% - 48px));
    padding: 54px 0 14px;
  }

  .af-hero h1 {
    max-width: none;
    font-size: clamp(1.95rem, 9vw, 2.85rem);
  }

  .af-hero__text {
    font-size: 0.86rem;
  }

  .af-hero__info-band {
    gap: 12px;
    margin-top: 18px;
  }

  .af-hero__info-card {
    padding: 16px;
  }

  .af-hero__actions,
  .af-page-hero__actions,
  .af-tracking-form,
  .af-final-cta,
  .af-card-grid--services,
  .af-card-grid--services-detailed,
  .af-card-grid--destinations,
  .af-proofbar__grid,
  .af-benefits-grid,
  .af-benefits-grid--home,
  .af-reviews-grid--home,
  .af-site-footer__grid {
    grid-template-columns: 1fr;
  }

  .af-hero__actions,
  .af-page-hero__actions,
  .af-tracking-form {
    display: grid;
  }

  .af-hero__visual {
    min-height: 100%;
  }

  .af-hero__layout {
    min-height: 360px;
  }

  .af-mobile-submenu-toggle {
    width: 38px;
    height: 38px;
  }

  .af-page-hero--tracking {
    min-height: auto;
  }

  .af-page-hero {
    min-height: auto;
    padding: 72px 0 100px;
  }

  .af-page-hero h1 {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .af-page-hero__subtitle {
    max-width: none;
    font-size: clamp(1.85rem, 9vw, 2.9rem);
  }

  .af-proofbar {
    margin-top: 18px;
  }

  .af-proofbar__item + .af-proofbar__item {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .af-proofbar--floating {
    margin-top: -34px;
  }

  .af-proofbar__grid--light {
    padding: 12px;
  }

  .af-proofbar__item--light + .af-proofbar__item--light {
    border-left: none;
    border-top: 1px solid var(--af-border);
  }

  .af-tracking-panel,
  .af-home-panel,
  .af-benefits-panel,
  .af-reviews-panel,
  .af-final-cta,
  .af-journey-panel,
  .af-search-card,
  .af-status-card,
  .af-contact-panel {
    padding: 24px;
  }

  .af-timeline {
    grid-template-columns: 1fr;
  }

  .af-tracking-steps {
    grid-template-columns: 1fr;
  }

  .af-tracking-step {
    padding-left: 74px;
  }

  .af-tracking-step__dot {
    position: absolute;
    left: 0;
    top: 0;
  }

  .af-tracking-step__line {
    top: 54px;
    left: 27px;
    width: 2px;
    height: calc(100% + 12px);
  }

  .af-tracking-step:last-child .af-tracking-step__line {
    display: none;
  }

  .af-timeline li {
    justify-items: start;
    padding-left: 64px;
    text-align: left;
  }

  .af-timeline li::before {
    top: -14px;
    left: 21px;
    width: 2px;
    height: calc(100% + 24px);
  }

  .af-timeline li:first-child::before {
    display: block;
    top: 44px;
    height: calc(100% - 22px);
  }

  .af-timeline span {
    position: absolute;
    left: 0;
    top: 0;
  }

  .af-destination-card {
    min-height: 260px;
  }

  .af-services-cta__visual {
    min-height: 240px;
  }

  .af-services-cta__content {
    padding: 28px 24px;
  }

  .af-services-cta__contact {
    display: grid;
    gap: 10px;
  }

  .af-status-card__meta {
    grid-template-columns: 1fr;
  }

  .af-site-footer {
    margin-top: 64px;
  }
}
