body.alfavet-premium-homepage {
      --cream: #f5f3ee;
      --paper: #fffdf9;
      --paper-2: #f9fbfa;
      --ink: #103a36;
      --ink-soft: #47635f;
      --muted: #70817e;
      --teal: #0d9187;
      --teal-dark: #086b64;
      --teal-soft: #e5f5f2;
      --gold: #c5a368;
      --line: rgba(15, 88, 81, .13);
      --shadow:
        0 24px 70px rgba(12, 61, 56, .10),
        0 4px 16px rgba(12, 61, 56, .05);
      --container: 1320px;
      --radius-xl: 36px;
      --radius-lg: 26px;
      --radius-md: 18px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--cream);
      -webkit-text-size-adjust: 100%;
    }

    body.alfavet-premium-homepage {
      margin: 0;
      overflow-x: hidden;
      background:
        radial-gradient(
          circle at 94% 0,
          rgba(50, 181, 168, .12),
          transparent 33rem
        ),
        radial-gradient(
          circle at 0 34rem,
          rgba(197, 163, 104, .08),
          transparent 28rem
        ),
        var(--cream);
      color: var(--ink);
      font-family:
        Inter,
        Manrope,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;
      font-synthesis: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page a {
      color: inherit;
    }

    body.alfavet-premium-homepage .alfavet-premium-page img {
      display: block;
      max-width: 100%;
    }

    body.alfavet-premium-homepage .alfavet-premium-page button,
body.alfavet-premium-homepage .alfavet-premium-page a {
      -webkit-tap-highlight-color: transparent;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .container {
      width: min(calc(100% - 48px), var(--container));
      margin-inline: auto;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .topline {
      border-bottom: 1px solid var(--line);
      color: var(--ink-soft);
      font-size: 12px;
      font-weight: 650;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .topline-inner {
      display: flex;
      min-height: 38px;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .topline-group {
      display: flex;
      align-items: center;
      gap: 22px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .topline a {
      text-decoration: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .status-dot {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .status-dot::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #35bd86;
      box-shadow: 0 0 0 5px rgba(53, 189, 134, .10);
      content: "";
    }

    body.alfavet-premium-homepage .alfavet-premium-page .site-header {
      position: sticky;
      z-index: 50;
      top: 0;
      border-bottom: 1px solid rgba(15, 88, 81, .08);
      background: rgba(245, 243, 238, .86);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .header-inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 34px;
      align-items: center;
      min-height: 84px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand {
      display: inline-flex;
      align-items: center;
      gap: 13px;
      text-decoration: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand-mark {
      width: 48px;
      height: 48px;
      overflow: hidden;
      border-radius: 15px;
      background: var(--teal);
      box-shadow: 0 10px 24px rgba(13, 145, 135, .18);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand-copy strong,
body.alfavet-premium-homepage .alfavet-premium-page .brand-copy span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand-copy strong {
      font-size: 17px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: -.4px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .brand-copy span {
      margin-top: 6px;
      color: var(--muted);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav a {
      position: relative;
      padding-block: 12px;
      color: var(--ink-soft);
      font-size: 13px;
      font-weight: 760;
      text-decoration: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav a::after {
      position: absolute;
      right: 0;
      bottom: 6px;
      left: 0;
      height: 2px;
      border-radius: 99px;
      background: var(--teal);
      content: "";
      opacity: 0;
      transform: scaleX(.45);
      transition: .2s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav a:hover::after,
body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav a:focus-visible::after {
      opacity: 1;
      transform: scaleX(1);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .button {
      display: inline-flex;
      min-height: 48px;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 15px;
      font-size: 13px;
      font-weight: 850;
      line-height: 1;
      text-decoration: none;
      transition:
        transform .18s ease,
        box-shadow .18s ease,
        background .18s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .button:hover {
      transform: translateY(-1px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .button-primary {
      background:
        linear-gradient(
          135deg,
          #11a096,
          #08736c
        );
      color: #fff;
      box-shadow: 0 13px 28px rgba(8, 115, 108, .22);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .button-secondary {
      border-color: var(--line);
      background: rgba(255, 253, 249, .72);
      color: var(--ink);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu {
      display: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero {
      padding: 68px 0 42px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
      gap: clamp(44px, 6vw, 88px);
      align-items: center;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-copy {
      padding-block: 22px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      color: var(--teal-dark);
      font-size: 11px;
      font-weight: 900;
      line-height: 1;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .eyebrow::before {
      width: 30px;
      height: 1px;
      background: var(--gold);
      content: "";
    }

    body.alfavet-premium-homepage .alfavet-premium-page h1,
body.alfavet-premium-homepage .alfavet-premium-page h2,
body.alfavet-premium-homepage .alfavet-premium-page h3,
body.alfavet-premium-homepage .alfavet-premium-page p {
      margin-top: 0;
    }

    body.alfavet-premium-homepage .alfavet-premium-page h1 {
      max-width: 770px;
      margin-bottom: 24px;
      font-size: clamp(48px, 5.4vw, 78px);
      font-weight: 930;
      line-height: .98;
      letter-spacing: -.045em;
      text-wrap: balance;
    }

    body.alfavet-premium-homepage .alfavet-premium-page h1 em {
      display: block;
      margin-top: 10px;
      color: var(--teal);
      font-style: normal;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-lead {
      max-width: 690px;
      margin-bottom: 0;
      color: var(--ink-soft);
      font-size: clamp(17px, 1.5vw, 20px);
      font-weight: 540;
      line-height: 1.55;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-actions .button {
      min-height: 56px;
      padding-inline: 26px;
      border-radius: 17px;
      font-size: 14px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      margin-top: 27px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 680;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-proof span::before {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--teal);
      content: "";
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-visual {
      position: relative;
      min-height: 640px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-image-shell {
      position: absolute;
      inset: 0 0 34px 34px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: #dce8e5;
      box-shadow: var(--shadow);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-image-shell::after {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          transparent 58%,
          rgba(7, 45, 42, .25)
        );
      content: "";
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-image-shell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card {
      position: absolute;
      z-index: 3;
      display: grid;
      border: 1px solid rgba(255, 255, 255, .78);
      background: rgba(255, 253, 249, .91);
      box-shadow: 0 18px 48px rgba(7, 56, 52, .16);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price {
      right: -18px;
      bottom: 0;
      min-width: 245px;
      gap: 8px;
      padding: 20px;
      border-radius: 22px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price small,
body.alfavet-premium-homepage .alfavet-premium-page .hero-card-rating small {
      color: var(--muted);
      font-size: 10px;
      font-weight: 760;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price strong {
      font-size: 23px;
      font-weight: 920;
      letter-spacing: -.03em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price span {
      color: var(--ink-soft);
      font-size: 12px;
      font-weight: 650;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-rating {
      top: 42px;
      left: 0;
      gap: 6px;
      padding: 18px 20px;
      border-radius: 20px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .hero-card-rating strong {
      font-size: 21px;
      font-weight: 920;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .stars {
      color: var(--gold);
      letter-spacing: .03em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-band {
      padding: 20px 0 70px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255, 253, 249, .72);
      box-shadow: 0 18px 45px rgba(12, 61, 56, .06);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-item {
      min-height: 118px;
      padding: 25px 26px;
      border-right: 1px solid var(--line);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-item:last-child {
      border-right: 0;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-item strong,
body.alfavet-premium-homepage .alfavet-premium-page .trust-item span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-item strong {
      font-size: 17px;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .trust-item span {
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 620;
      line-height: 1.45;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .section {
      padding: 92px 0;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .section-tight {
      padding-top: 42px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .section-head {
      display: grid;
      grid-template-columns: minmax(0, .82fr) minmax(340px, .58fr);
      gap: 60px;
      align-items: end;
      margin-bottom: 42px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .section-head h2 {
      margin-bottom: 0;
      font-size: clamp(38px, 4.2vw, 60px);
      font-weight: 920;
      line-height: 1.02;
      letter-spacing: -.04em;
      text-wrap: balance;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .section-head p {
      margin-bottom: 4px;
      color: var(--ink-soft);
      font-size: 16px;
      font-weight: 540;
      line-height: 1.6;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card {
      position: relative;
      display: flex;
      min-height: 260px;
      flex-direction: column;
      overflow: hidden;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--paper);
      box-shadow: 0 14px 38px rgba(12, 61, 56, .06);
      text-decoration: none;
      transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card::after {
      position: absolute;
      right: -44px;
      bottom: -52px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      background: var(--teal-soft);
      content: "";
      opacity: .65;
      transition: transform .25s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card:hover {
      border-color: rgba(13, 145, 135, .28);
      box-shadow: 0 22px 52px rgba(12, 61, 56, .11);
      transform: translateY(-4px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card:hover::after {
      transform: scale(1.16);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-number {
      position: relative;
      z-index: 2;
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      margin-bottom: auto;
      border-radius: 13px;
      background: var(--teal-soft);
      color: var(--teal-dark);
      font-size: 10px;
      font-weight: 900;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card h3 {
      position: relative;
      z-index: 2;
      margin: 28px 0 10px;
      font-size: 23px;
      font-weight: 900;
      line-height: 1.08;
      letter-spacing: -.03em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card p {
      position: relative;
      z-index: 2;
      max-width: 290px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 580;
      line-height: 1.52;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card b {
      position: relative;
      z-index: 2;
      margin-top: 22px;
      color: var(--teal-dark);
      font-size: 12px;
      font-weight: 850;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience {
      padding: 98px 0;
      background:
        linear-gradient(
          135deg,
          #0d5752,
          #0a3f3b
        );
      color: #fff;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(420px, .75fr);
      gap: 86px;
      align-items: center;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience .eyebrow {
      color: #9de0d8;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience h2 {
      margin-bottom: 22px;
      font-size: clamp(40px, 4.6vw, 64px);
      font-weight: 920;
      line-height: 1.02;
      letter-spacing: -.04em;
      text-wrap: balance;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-copy > p {
      max-width: 690px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 17px;
      font-weight: 540;
      line-height: 1.65;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-list {
      display: grid;
      gap: 14px;
      margin-top: 32px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr);
      gap: 15px;
      align-items: start;
      padding: 17px 0;
      border-top: 1px solid rgba(255, 255, 255, .12);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point:first-child {
      border-top: 0;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point i {
      display: grid;
      width: 42px;
      height: 42px;
      place-items: center;
      border-radius: 13px;
      background: rgba(255, 255, 255, .09);
      color: #a7e5de;
      font-size: 11px;
      font-style: normal;
      font-weight: 900;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point strong,
body.alfavet-premium-homepage .alfavet-premium-page .experience-point span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point strong {
      font-size: 16px;
      font-weight: 850;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-point span {
      margin-top: 6px;
      color: rgba(255, 255, 255, .62);
      font-size: 12px;
      font-weight: 560;
      line-height: 1.5;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-visual {
      position: relative;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-image {
      overflow: hidden;
      border-radius: 32px;
      box-shadow: 0 28px 70px rgba(0, 0, 0, .26);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
      width: 100%;
      min-height: 540px;
      object-fit: cover;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-badge {
      position: absolute;
      right: -22px;
      bottom: 28px;
      max-width: 250px;
      padding: 20px 22px;
      border: 1px solid rgba(255, 255, 255, .28);
      border-radius: 21px;
      background: rgba(255, 253, 249, .94);
      color: var(--ink);
      box-shadow: 0 20px 48px rgba(0, 0, 0, .2);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-badge strong,
body.alfavet-premium-homepage .alfavet-premium-page .experience-badge span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-badge strong {
      font-size: 18px;
      font-weight: 920;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-badge span {
      margin-top: 7px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 620;
      line-height: 1.4;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-grid {
      display: grid;
      grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr);
      gap: 70px;
      align-items: start;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-intro {
      position: sticky;
      top: 125px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-intro h2 {
      margin-bottom: 18px;
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 920;
      line-height: 1.03;
      letter-spacing: -.04em;
      text-wrap: balance;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-intro p {
      max-width: 520px;
      color: var(--ink-soft);
      font-size: 16px;
      font-weight: 540;
      line-height: 1.65;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-intro .button {
      margin-top: 10px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-list {
      display: grid;
      gap: 12px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-row {
      display: grid;
      grid-template-columns: 56px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      min-height: 92px;
      padding: 17px 20px;
      border: 1px solid var(--line);
      border-radius: 21px;
      background: rgba(255, 253, 249, .82);
      text-decoration: none;
      transition:
        background .2s ease,
        transform .2s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-row:hover {
      background: #fff;
      transform: translateX(4px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-avatar {
      display: grid;
      width: 56px;
      height: 56px;
      place-items: center;
      border-radius: 17px;
      background:
        linear-gradient(
          135deg,
          var(--teal-soft),
          #d5ebe7
        );
      color: var(--teal-dark);
      font-size: 13px;
      font-weight: 920;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-row strong,
body.alfavet-premium-homepage .alfavet-premium-page .team-row span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-row strong {
      font-size: 15px;
      font-weight: 880;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-row span {
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 600;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .team-arrow {
      color: var(--teal);
      font-size: 25px;
      font-weight: 500;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .reviews-section {
      padding: 96px 0;
      background: var(--paper);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .reviews-top {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 26px;
      align-items: center;
      margin-bottom: 38px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .rating-large {
      font-size: clamp(62px, 7vw, 96px);
      font-weight: 930;
      line-height: .85;
      letter-spacing: -.06em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .rating-copy strong,
body.alfavet-premium-homepage .alfavet-premium-page .rating-copy span {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .rating-copy strong {
      color: var(--gold);
      font-size: 22px;
      letter-spacing: .04em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .rating-copy span {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 680;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .review-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .review-card {
      min-height: 270px;
      padding: 27px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: var(--paper-2);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .review-card .stars {
      font-size: 14px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .review-card blockquote {
      margin: 20px 0 22px;
      color: var(--ink-soft);
      font-size: 14px;
      font-weight: 560;
      line-height: 1.65;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .review-card cite {
      color: var(--ink);
      font-size: 12px;
      font-style: normal;
      font-weight: 850;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .faq-card {
      padding: 25px 26px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(255, 253, 249, .78);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .faq-card h3 {
      margin-bottom: 11px;
      font-size: 18px;
      font-weight: 880;
      line-height: 1.25;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .faq-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 13px;
      font-weight: 570;
      line-height: 1.6;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
      overflow: hidden;
      border-radius: 34px;
      background:
        linear-gradient(
          135deg,
          #ecf8f6,
          #dfeeea
        );
      box-shadow: var(--shadow);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-copy {
      padding: clamp(38px, 5vw, 70px);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-copy h2 {
      margin-bottom: 18px;
      font-size: clamp(38px, 4.4vw, 62px);
      font-weight: 920;
      line-height: 1.02;
      letter-spacing: -.04em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-copy > p {
      max-width: 600px;
      color: var(--ink-soft);
      font-size: 16px;
      line-height: 1.6;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-facts {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-fact {
      padding: 16px 17px;
      border: 1px solid rgba(15, 88, 81, .12);
      border-radius: 16px;
      background: rgba(255, 255, 255, .46);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-fact small,
body.alfavet-premium-homepage .alfavet-premium-page .location-fact strong {
      display: block;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-fact small {
      color: var(--muted);
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-fact strong {
      margin-top: 7px;
      font-size: 14px;
      font-weight: 850;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-side {
      display: grid;
      place-items: center;
      padding: 34px;
      background:
        radial-gradient(
          circle at 70% 22%,
          rgba(255, 255, 255, .22),
          transparent 12rem
        ),
        linear-gradient(
          145deg,
          #0e7b74,
          #09534e
        );
      color: #fff;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-side-inner {
      max-width: 320px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-side h3 {
      margin-bottom: 12px;
      font-size: 27px;
      font-weight: 900;
      line-height: 1.1;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-side p {
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
      line-height: 1.55;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .location-side .button {
      width: 100%;
      margin-top: 14px;
      background: #fff;
      color: var(--teal-dark);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-cta {
      padding: 92px 0;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 42px;
      align-items: center;
      padding: clamp(38px, 5vw, 64px);
      border-radius: 34px;
      background:
        radial-gradient(
          circle at 90% 10%,
          rgba(255, 255, 255, .13),
          transparent 15rem
        ),
        linear-gradient(
          135deg,
          #0e6d67,
          #083f3b
        );
      color: #fff;
      box-shadow: 0 28px 70px rgba(8, 63, 59, .2);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-panel h2 {
      max-width: 760px;
      margin-bottom: 12px;
      font-size: clamp(38px, 4.2vw, 60px);
      font-weight: 920;
      line-height: 1.03;
      letter-spacing: -.04em;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-panel p {
      max-width: 680px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, .7);
      font-size: 15px;
      line-height: 1.6;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-buttons {
      display: grid;
      min-width: 250px;
      gap: 10px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-buttons .button-primary {
      background: #fff;
      color: var(--teal-dark);
      box-shadow: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .final-buttons .button-secondary {
      border-color: rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .08);
      color: #fff;
    }

    body.alfavet-premium-homepage .alfavet-premium-page footer {
      border-top: 1px solid var(--line);
      padding: 36px 0 44px;
      color: var(--muted);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
      display: grid;
      grid-template-columns: minmax(250px, 1fr) auto auto;
      gap: 64px;
      align-items: start;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-brand strong {
      display: block;
      color: var(--ink);
      font-size: 18px;
      font-weight: 920;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-brand span {
      display: block;
      margin-top: 8px;
      font-size: 12px;
      font-weight: 600;
      line-height: 1.55;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-column strong {
      display: block;
      margin-bottom: 12px;
      color: var(--ink);
      font-size: 12px;
      font-weight: 850;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-column a,
body.alfavet-premium-homepage .alfavet-premium-page .footer-column span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 620;
      text-decoration: none;
    }

    @media (max-width: 1100px) {
      body.alfavet-premium-homepage .alfavet-premium-page .desktop-nav {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu {
        display: block;
        position: relative;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu summary {
        display: grid;
        width: 48px;
        height: 48px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 15px;
        background: var(--paper);
        cursor: pointer;
        font-size: 22px;
        list-style: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu summary::-webkit-details-marker {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu nav {
        position: absolute;
        top: 58px;
        right: 0;
        display: grid;
        width: min(300px, 82vw);
        gap: 2px;
        padding: 10px;
        border: 1px solid var(--line);
        border-radius: 20px;
        background: var(--paper);
        box-shadow: var(--shadow);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu nav a {
        padding: 13px 14px;
        border-radius: 12px;
        color: var(--ink-soft);
        font-size: 13px;
        font-weight: 760;
        text-decoration: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu nav a:hover {
        background: var(--teal-soft);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(370px, .82fr);
        gap: 38px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-visual {
        min-height: 570px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-item:nth-child(2) {
        border-right: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-grid {
        grid-template-columns: minmax(0, 1fr) minmax(350px, .72fr);
        gap: 48px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .team-grid {
        gap: 40px;
      }
    }

    @media (max-width: 820px) {
      body.alfavet-premium-homepage .alfavet-premium-page .container {
        width: min(calc(100% - 28px), var(--container));
      }

      body.alfavet-premium-homepage .alfavet-premium-page .topline {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-inner {
        min-height: 70px;
        gap: 12px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .brand-mark {
        width: 44px;
        height: 44px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .brand-copy strong {
        font-size: 15px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .brand-copy span {
        font-size: 9px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-actions .button-secondary {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-actions .button-primary {
        min-height: 42px;
        padding-inline: 14px;
        font-size: 11px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .mobile-menu summary {
        width: 44px;
        height: 44px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero {
        padding: 36px 0 24px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-grid,
body.alfavet-premium-homepage .alfavet-premium-page .experience-grid,
body.alfavet-premium-homepage .alfavet-premium-page .team-grid,
body.alfavet-premium-homepage .alfavet-premium-page .location-card,
body.alfavet-premium-homepage .alfavet-premium-page .final-panel {
        grid-template-columns: minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-copy {
        padding-block: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page h1 {
        font-size: clamp(40px, 11vw, 58px);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-lead {
        font-size: 16px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-visual {
        min-height: 470px;
        margin-top: 8px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-image-shell {
        inset: 0 0 26px 16px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-card-rating {
        top: 24px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price {
        right: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-band {
        padding-bottom: 42px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .section {
        padding: 60px 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .section-head {
        grid-template-columns: minmax(0, 1fr);
        gap: 16px;
        margin-bottom: 26px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .section-head h2,
body.alfavet-premium-homepage .alfavet-premium-page .team-intro h2,
body.alfavet-premium-homepage .alfavet-premium-page .location-copy h2,
body.alfavet-premium-homepage .alfavet-premium-page .final-panel h2 {
        font-size: clamp(34px, 9vw, 48px);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      body.alfavet-premium-homepage .alfavet-premium-page .service-card {
        min-height: 235px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience {
        padding: 64px 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience h2 {
        font-size: clamp(36px, 9vw, 50px);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-visual {
        max-width: 620px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
        min-height: 420px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .team-intro {
        position: static;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .review-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .review-card {
        min-height: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .reviews-top {
        grid-template-columns: auto minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .reviews-top .button {
        grid-column: 1 / -1;
        width: max-content;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .location-side {
        min-height: 330px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .final-panel {
        gap: 28px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .final-buttons {
        min-width: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
        grid-template-columns: minmax(0, 1fr) repeat(2, auto);
        gap: 34px;
      }
    }

    @media (max-width: 560px) {
      body.alfavet-premium-homepage .alfavet-premium-page .container {
        width: min(calc(100% - 20px), var(--container));
      }

      body.alfavet-premium-homepage .alfavet-premium-page .brand-copy span {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-actions .button-primary {
        display: none;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero {
        padding-top: 28px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .eyebrow {
        font-size: 9px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page h1 {
        margin-bottom: 17px;
        font-size: clamp(35px, 11.2vw, 46px);
      }

      body.alfavet-premium-homepage .alfavet-premium-page h1 em {
        margin-top: 6px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-lead {
        font-size: 14px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-actions .button {
        width: 100%;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-proof {
        display: grid;
        gap: 8px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-visual {
        min-height: 410px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-image-shell {
        inset: 0 0 20px 0;
        border-radius: 27px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-card-rating {
        top: 14px;
        left: 10px;
        padding: 14px 16px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .hero-card-price {
        right: 10px;
        bottom: 0;
        min-width: 210px;
        padding: 16px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-grid {
        grid-template-columns: minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-item {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 19px 20px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .trust-item:last-child {
        border-bottom: 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .services-grid,
body.alfavet-premium-homepage .alfavet-premium-page .faq-grid,
body.alfavet-premium-homepage .alfavet-premium-page .location-facts {
        grid-template-columns: minmax(0, 1fr);
      }

      body.alfavet-premium-homepage .alfavet-premium-page .service-card {
        min-height: 210px;
        padding: 23px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
        min-height: 350px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-badge {
        right: 10px;
        bottom: 14px;
        max-width: 220px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .team-row {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        gap: 12px;
        padding: 14px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .team-avatar {
        width: 48px;
        height: 48px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .reviews-section {
        padding: 62px 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .reviews-top {
        gap: 15px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .rating-large {
        font-size: 62px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .location-copy {
        padding: 30px 24px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .location-side {
        min-height: 290px;
        padding: 28px 24px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .final-cta {
        padding: 58px 0;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .final-panel {
        padding: 31px 24px;
        border-radius: 27px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 25px;
      }
    }


    body.alfavet-premium-homepage .alfavet-premium-page /* ALFAVET PREMIUM V2 LUXURY DETAILS */
    .service-icon {
      position: relative;
      z-index: 2;
      display: grid;
      width: 54px;
      height: 54px;
      place-items: center;
      margin-bottom: auto;
      border: 1px solid rgba(13, 145, 135, .16);
      border-radius: 17px;
      background: linear-gradient(145deg, rgba(255,255,255,.96), var(--teal-soft));
      color: var(--teal-dark);
      box-shadow: 0 10px 25px rgba(8,107,100,.08), inset 0 1px 0 rgba(255,255,255,.95);
      transition: transform .22s ease, color .22s ease, background .22s ease;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-icon svg {
      width: 27px;
      height: 27px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .service-card:hover .service-icon {
      background: var(--teal);
      color: #fff;
      transform: translateY(-2px) rotate(-2deg);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-image {
      position: relative;
      height: clamp(480px, 44vw, 620px);
      max-height: 620px;
      background: #d8e4e1;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
      width: 100%;
      height: 100%;
      min-height: 0;
      object-fit: cover;
      object-position: center 44%;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .mobile-call {
      display: none;
      width: 44px;
      height: 44px;
      place-items: center;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: var(--paper);
      color: var(--teal-dark);
      text-decoration: none;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .mobile-call svg {
      width: 19px;
      height: 19px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
      grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(155px, .55fr));
      gap: 42px;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-column a,
body.alfavet-premium-homepage .alfavet-premium-page .footer-column span {
      line-height: 1.45;
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-column a:hover {
      color: var(--teal-dark);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-legal {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
    }

    body.alfavet-premium-homepage .alfavet-premium-page .footer-legal p {
      margin: 0;
      color: var(--muted);
      font-size: 10px;
      font-weight: 620;
      line-height: 1.5;
    }

    @media (max-width: 1100px) {
      body.alfavet-premium-homepage .alfavet-premium-page .mobile-call {
        display: grid;
      }
    }

    @media (max-width: 820px) {
      body.alfavet-premium-homepage .alfavet-premium-page .experience-image {
        height: 410px;
        max-height: 410px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
        min-height: 0;
        object-position: center 42%;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px 42px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .footer-legal {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
      }
    }

    @media (max-width: 560px) {
      body.alfavet-premium-homepage .alfavet-premium-page .experience-image {
        height: 300px;
        max-height: 300px;
        border-radius: 25px;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .experience-image img {
        min-height: 0;
        object-position: center 40%;
      }

      body.alfavet-premium-homepage .alfavet-premium-page .footer-grid {
        grid-template-columns: minmax(0, 1fr);
      }
    }


body.alfavet-premium-homepage .alfavet-prod-delayed-control {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(120%) !important;
  transition:
    opacity .22s ease,
    transform .25s ease !important;
}

body.alfavet-premium-homepage.alfavet-after-hero
.alfavet-prod-delayed-control {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* ALFAVET_SERVICES_V5_HOME_SHELL_OVERRIDES */
body.avs-page.avs-home-shell {
  padding-top: 0 !important;
}
body.avs-page.avs-home-shell .site-header {
  z-index: 80;
}
body.avs-page.avs-home-shell .desktop-nav a.active {
  color: #075f58;
}
body.avs-page.avs-home-shell .site-footer {
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) {
  body.avs-page.avs-home-shell .site-header {
    position: sticky;
    top: 0;
  }
  body.avs-page.avs-home-shell .site-footer {
    padding-bottom: 92px;
  }
}
