:root {
  --font-body: "DM Sans", sans-serif;
  --font-ui: "Plus Jakarta Sans", sans-serif;

  --color-brand-900: #11434c;
  --color-brand-800: #175960;
  --color-brand-700: #228a95;
  --color-accent-300: #9ef4d6;
  --color-accent-200: #ceffee;
  --color-accent-200-50: rgba(206, 255, 238, 0.5);
  --color-danger-500: #eb3e55;
  --color-text-900: #04080d;
  --color-text-strong: #323b4c;
  --color-text-secondary: #6e7178;
  --color-text-tertiary: #838995;
  --color-text-muted: #7b7b7b;
  --color-text-subtle: #a1a1a1;
  --color-text-placeholder: #b5b8be;
  --color-bg: #ffffff;
  --color-white: #ffffff;
  --color-surface-soft: #f6f7f8;
  --color-surface-muted: #f7f9fb;
  --color-surface-subtle: #e5e5ea;
  --color-border-strong: #d0d3d8;
  --color-border: #d9dde3;
  --color-border-soft: #dfdfdf;
  --color-border-soft-2: #dfe3e9;
  --color-border-muted: #dadfe5;
  --color-border-muted-2: #dbe1e8;
  --color-border-light: #e3e7ed;
  --color-border-light-2: #e2e6eb;
  --color-border-light-3: #e1e6ec;
  --color-neutral-50: #f8f9fa;
  --color-neutral-100: #f1f2f4;
  --color-neutral-150: #ececed;
  --color-neutral-200: #e5e8ec;
  --color-neutral-250: #dfe4ea;
  --color-neutral-300: #dadddf;
  --color-neutral-350: #d7dde4;
  --color-neutral-400: #d5d8dd;
  --color-neutral-450: #d4dae1;
  --color-neutral-500: #c8c8c8;
  --color-neutral-550: #bfc3c8;
  --color-neutral-600: #b8bec8;
  --color-neutral-650: #9ca2ab;
  --color-neutral-700: #95989d;
  --color-neutral-750: #8e949d;
  --color-neutral-800: #8a909a;
  --color-neutral-810: #8a9099;
  --color-neutral-820: #7e8590;
  --color-neutral-830: #7d838c;
  --color-neutral-840: #7a7e84;
  --color-neutral-850: #727884;
  --color-neutral-860: #6d747e;
  --color-neutral-870: #6c737d;
  --color-neutral-880: #5f6670;
  --color-neutral-890: #4f5761;
  --color-neutral-900: #4c5561;
  --color-neutral-910: #44505c;
  --color-neutral-920: #434b56;
  --color-neutral-930: #3f4753;
  --color-neutral-940: #2f3640;
  --color-neutral-950: #0f141a;
  --color-neutral-960: #0f1318;
  --color-neutral-970: #0b1118;
  --color-surface-tint: #f4fffb;
  --color-surface-success: #ecfdf7;
  --color-surface-faint: #f0f2f5;
  --color-text-700: #344054;

  --radius-pill: 999px;
  --radius-pill-xl: 9999px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;

  --shadow-sm: 0 16px 28px rgba(4, 8, 13, 0.17);
  --shadow-md: 0 20px 40px rgba(4, 8, 13, 0.22);
  --shadow-lg: 0 24px 50px rgba(4, 8, 13, 0.2);
  --shadow-xl: 0 26px 52px rgba(4, 8, 13, 0.18);

  --motion-duration-fast: 180ms;
  --motion-duration-base: 260ms;
  --motion-duration-slow: 320ms;
  --motion-duration-ui: 300ms;
  --motion-duration-enter: 680ms;
  --motion-ease-standard: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-ease-default: ease;

  --z-base: 1;
  --z-raised: 2;
  --z-sticky: 25;
  --z-modal: 1700;
  --z-overlay-mobile: 2050;
  --z-sheet-mobile: 2060;
  --z-search-mobile: 2070;

  --size-btn-sm: 40px;
  --size-btn-md: 48px;
  --size-btn-lg: 56px;
  --size-input-sm: 44px;
  --size-input-md: 46px;
  --size-input-lg: 48px;
  --size-control-sm: 32px;
  --size-control-md: 40px;
  --size-control-lg: 48px;
  --size-pagination-btn: 50px;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-md: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
}

a {
  text-decoration: none;
}

.enter-up {
  opacity: 0;
  transform: translateY(28px) scale(0.99);
  filter: blur(4px);
  transition:
    opacity var(--motion-duration-enter) var(--motion-ease-standard),
    transform var(--motion-duration-enter) var(--motion-ease-standard),
    filter var(--motion-duration-enter) var(--motion-ease-standard);
  transition-delay: var(--enter-delay, 0ms);
  will-change: opacity, transform, filter;
}

.enter-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}


.card-light-corner-fix {
  position: absolute;
  width: 44px;
  height: 44px;
  pointer-events: none;
}

.card-light-corner-fix-bottom-right {
  right: -16px;
  bottom: -16px;
  border-right: 16px solid var(--color-white);
  border-bottom: 16px solid var(--color-white);
  border-bottom-right-radius: 28px;
}

.card-light-corner-fix-bottom-right-out {
  right: -44px;
  bottom: -16px;
  border-left: 16px solid var(--color-white);
  border-bottom: 16px solid var(--color-white);
  border-bottom-left-radius: 28px;
}

.card-light-corner-fix-top-left {
  left: -16px;
  top: -16px;
  border-top: 16px solid var(--color-white);
  border-left: 16px solid var(--color-white);
  border-top-left-radius: 28px;
}

.btn-primary .circle,
.btn-catalog .circle {
  width: var(--size-control-md);
  height: var(--size-control-md);
  border-radius: var(--radius-pill-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.btn-white .circle {
  width: var(--size-control-md);
  height: var(--size-control-md);
  border-radius: var(--radius-pill-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-brand-700);
}

.btn-teal-pill .circle {
  width: var(--size-control-sm);
  height: var(--size-control-sm);
  border-radius: var(--radius-pill-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.key-img span {
  color: #888;
  font-size: 13px;
}

.header-search {
  display: flex;
  align-items: center;
  position: relative;
}

.header-search-toggle {
  transition:
    width var(--motion-duration-ui) var(--motion-ease-standard),
    opacity var(--motion-duration-fast) var(--motion-ease-default),
    transform var(--motion-duration-ui) var(--motion-ease-standard),
    margin var(--motion-duration-ui) var(--motion-ease-standard);
}

.header-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 0;
  height: var(--size-input-sm);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-white);
  padding: 0;
  transition:
    width var(--motion-duration-ui) var(--motion-ease-standard),
    opacity 220ms var(--motion-ease-default),
    padding var(--motion-duration-ui) var(--motion-ease-standard);
}

.header-search.is-open .header-search-form {
  width: clamp(230px, 30vw, 470px);
  opacity: 1;
  pointer-events: auto;
  padding: 0 12px;
}

.header-search.is-open .header-search-toggle {
  width: 0;
  opacity: 0;
  transform: scale(0.88);
  margin-right: -8px;
  pointer-events: none;
}

.header-search-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--color-text-900);
  font-size: var(--font-size-lg);
  line-height: 1.2;
}

.header-search-input::placeholder {
  color: var(--color-text-placeholder);
}

.header-search-close {
  border: 0;
  background: transparent;
  color: var(--color-text-tertiary);
  cursor: pointer;
  font-size: var(--font-size-2xl);
  line-height: 1;
  width: 24px;
  height: 24px;
  padding: 0;
}

.header-search-close:hover {
  color: var(--color-text-strong);
}

.home-mega-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  width: min(1520px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(-10px) scale(0.99);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--motion-duration-base) var(--motion-ease-default),
    transform var(--motion-duration-slow) var(--motion-ease-standard);
}

.home-mega-menu.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.home-mega-content {
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr)) 240px;
  gap: var(--space-5);
  border-radius: 20px;
  border: 1px solid rgba(4, 8, 13, 0.08);
  background: var(--color-surface-soft);
  padding: 26px 26px 18px;
  box-shadow: var(--shadow-xl);
}

.home-mega-col {
  display: flex;
  flex-direction: column;
  gap: calc(var(--space-4) + 2px);
  min-width: 0;
}

.home-mega-items-list {
  max-height: 320px;
  overflow-y: auto;
  
  /* Firefox */
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}

/* Chrome, Edge, Safari */
.home-mega-items-list::-webkit-scrollbar {
  width: 5px;
}

.home-mega-items-list::-webkit-scrollbar-track {
  background: transparent;
}

.home-mega-items-list::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.home-mega-items-list::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

.home-mega-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-brand-900);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: var(--font-size-md);
  margin-right: 6px;
}

.home-mega-title img {
  filter: brightness(0) saturate(100%) invert(34%) sepia(82%) saturate(571%)
    hue-rotate(143deg) brightness(92%) contrast(84%);
}

.home-mega-title span {
  margin-left: auto;
  color: var(--color-brand-700);
  font-size: var(--font-size-md);
  line-height: 1;
  font-weight: 500;
}

.home-mega-items-list a {
  color: var(--color-text-secondary);
  font-size: clamp(15px, 0.9vw, 18px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color var(--motion-duration-fast) var(--motion-ease-default);
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
}

.home-mega-items-list a:hover {
  color: var(--color-brand-900);
}

.home-mega-promo {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 0;
  border-radius: var(--radius-md);
}

.home-mega-promo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mega-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 8, 13, 0) 48%, rgba(14, 98, 106, 0.95) 100%);
}

.home-mega-promo strong {
  position: relative;
  z-index: var(--z-base);
  padding: 0 18px 20px;
  color: var(--color-white);
  font-size: clamp(20px, 1.3vw, 26px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.menu-item {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.menu-item.active {
  background: var(--color-brand-900);
  border-color: var(--color-brand-900) !important;
}

.menu-item.active h3 {
  color: var(--color-white) !important;
}

.menu-item.active .menu-icon {
  filter: brightness(0) invert(93%) sepia(24%) saturate(350%) hue-rotate(90deg)
    brightness(95%) contrast(90%);
}

.icon-white {
  filter: brightness(0) invert(1);
}

.icon-light {
  filter: brightness(0) invert(92%) sepia(19%) saturate(274%) hue-rotate(88deg)
    brightness(102%) contrast(104%);
}

.icon-success {
  filter: brightness(0) saturate(100%) invert(34%) sepia(82%) saturate(571%)
    hue-rotate(143deg) brightness(92%) contrast(84%);
}

.icon-star {
  filter: brightness(0) saturate(100%) invert(78%) sepia(74%) saturate(1810%)
    hue-rotate(358deg) brightness(101%) contrast(105%);
}

.icon-accent {
  filter: brightness(0) saturate(100%) invert(41%) sepia(38%) saturate(855%)
    hue-rotate(139deg) brightness(95%) contrast(91%);
}

.faq-trigger {
  cursor: pointer;
}

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows var(--motion-duration-slow) var(--motion-ease-standard),
    opacity 240ms var(--motion-ease-default);
  opacity: 0;
}

.faq-a {
  overflow: hidden;
}

.faq-item.open .faq-a-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-item .faq-icon {
  transition: transform 240ms var(--motion-ease-default);
  filter: none;
}

.faq-item.open .faq-icon {
  transform: none;
}

@media (max-width: 900px) {
  .home-mega-menu {
    width: calc(100vw - 20px);
    top: calc(100% + 6px);
  }

  .home-mega-content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: min(72vh, 680px);
    overflow: auto;
    padding: 16px;
  }

  .home-mega-promo {
    grid-column: 1 / -1;
    min-height: 240px;
  }

  .home-mega-title {
    font-size: 15px;
  }

  .home-mega-title span {
    font-size: var(--font-size-sm);
  }

  .home-mega-items-list a {
    font-size: 15px;
  }

  .header-search.is-open .header-search-form {
    width: min(72vw, 420px);
  }

  .footer-socials {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .enter-up,
  .enter-up.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .faq-a-wrap,
  .faq-item .faq-icon,
  .header-search-toggle,
  .header-search-form,
  .home-mega-menu {
    transition: none;
  }
}

/* === Responsive pass (global) === */
@media (max-width: 1100px) {
  .header-actions {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .header-actions .btn-primary {
    height: 42px;
    font-size: var(--font-size-sm);
    padding-left: 16px;
  }

  .header-actions .btn-primary .circle {
    width: 34px;
    height: 34px;
  }

  .header-search.is-open .header-search-form {
    width: min(100%, 460px);
  }

  .faqs {
    gap: 28px !important;
    padding-top: 56px !important;
    padding-bottom: 88px !important;
  }

  .faqs > h2 {
    font-size: clamp(30px, 5.2vw, 42px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.02em !important;
  }

  .faq-q {
    font-size: 18px !important;
    line-height: 1.38 !important;
  }

  .faq-a {
    font-size: 14px !important;
  }

  .footer-details {
    gap: 24px !important;
  }

  .footer-brand {
    gap: 30px !important;
  }

  .footer-links {
    gap: 28px !important;
  }

  .footer-contact-item .contact-val {
    font-size: 18px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 800px) {
  .header-actions {
    gap: 10px;
  }

  .header-actions .btn-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .header-actions .btn-icon .btn-icon-inner {
    width: 36px !important;
    height: 36px !important;
  }

  .header-actions .btn-primary {
    width: 100%;
    justify-content: space-between;
  }

  .header-search {
    order: -1;
    width: 100%;
  }

  .header-search.is-open .header-search-form {
    width: 100%;
  }

  .home-mega-content {
    grid-template-columns: 1fr;
  }

  .home-mega-col {
    gap: 12px;
  }

  .home-mega-promo {
    min-height: 190px;
  }

  .faqs {
    padding-top: 44px !important;
    padding-bottom: 68px !important;
  }

  .faqs > h2 {
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  .faq-list {
    gap: 14px !important;
  }

  .faq-item {
    padding-bottom: 14px !important;
  }

  .faq-q {
    font-size: 16px !important;
  }

  .footer {
    padding-top: 46px;
  }

  .footer-contact-item .contact-label,
  .footer-col a,
  .footer-copy,
  .footer-socials a {
    font-size: 14px !important;
  }

  .footer-contact-item .contact-val {
    font-size: 16px !important;
  }

  .wa-float {
    width: 54px !important;
    height: 54px !important;
    bottom: 14px !important;
    right: 14px !important;
  }

  .wa-float img {
    width: 26px !important;
    height: 26px !important;
  }
}

@media (max-width: 560px) {
  .header {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 12px !important;
  }

  .nav-center {
    gap: 14px !important;
  }

  .nav-center a,
  .nav-center button {
    font-size: 14px !important;
  }

  .header-actions .btn-primary {
    height: 40px;
    font-size: 13px;
    padding-left: 14px;
  }

  .header-actions .btn-primary .circle {
    width: 30px;
    height: 30px;
  }

  .header-search-input {
    font-size: var(--font-size-sm);
  }

  .home-mega-menu {
    width: calc(100vw - 12px);
  }

  .home-mega-content {
    padding: 12px;
  }

  .home-mega-title {
    font-size: var(--font-size-sm);
  }

  .home-mega-items-list a {
    font-size: var(--font-size-sm);
  }

  .faqs > h2 {
    font-size: 25px !important;
    letter-spacing: -0.01em !important;
  }

  .faq-q {
    font-size: 15px !important;
  }

  .faq-icon {
    width: 22px !important;
    height: 22px !important;
  }

  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
    padding-bottom: 20px !important;
  }

  .footer-logo-box {
    width: 108px !important;
  }

  .footer-bottom {
    gap: 12px !important;
  }

  .footer-socials {
    gap: 10px !important;
  }

  .footer-contact-item .contact-label,
  .footer-col a,
  .footer-copy,
  .footer-socials a {
    font-size: 13px !important;
  }

  .footer-contact-item .contact-val {
    font-size: 15px !important;
  }
}

/* === Responsive pass (home page sections) === */
@media (max-width: 980px) {
  .hero {
    gap: 34px !important;
    padding-top: 16px !important;
  }

  .hero-title {
    font-size: clamp(34px, 7vw, 52px) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.02em !important;
  }

  .hero-grid {
    gap: 12px !important;
  }

  .card-dark,
  .card-promo,
  .card-stats {
    border-radius: 20px !important;
    padding: 20px !important;
    min-height: 0 !important;
    height: auto !important;
  }

  .card-light-green {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    border-width: 0 !important;
    border-radius: 18px !important;
    padding: 18px !important;
    left: auto !important;
    bottom: auto !important;
  }

  .card-light-corner-fix {
    display: none !important;
  }

  .trusted-by,
  .categories,
  .how-we-work,
  .faqs {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }

  .section-title {
    font-size: clamp(30px, 5.5vw, 40px) !important;
    line-height: 1.15 !important;
  }

  .key-points {
    min-height: 0 !important;
  }

  .key-img {
    min-height: 280px !important;
  }

  .how-we-work h2 {
    font-size: clamp(30px, 5vw, 40px) !important;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-left: 16px !important;
    padding-right: 16px !important;
    gap: 22px !important;
  }

  .hero-title {
    font-size: 30px !important;
  }

  .hero-title .hero-title-pill {
    width: 258px !important;
    height: 80px !important;
    margin: 16px auto !important;
  }

  .big-num {
    font-size: 34px !important;
    line-height: 1.05 !important;
  }

  .promo-tag {
    font-size: 24px !important;
  }

  .promo-copy {
    font-size: 15px !important;
    line-height: 1.3 !important;
  }

  .btn-promo,
  .btn-catalog,
  .btn-teal-pill {
    font-size: 13px !important;
  }

  .btn-promo div,
  .btn-catalog .circle,
  .btn-teal-pill .circle {
    width: 30px !important;
    height: 30px !important;
  }

  .btn-promo img,
  .btn-catalog .circle img,
  .btn-teal-pill .circle img {
    width: 12px !important;
    height: 12px !important;
  }

  .trusted-by,
  .categories,
  .how-we-work,
  .faqs {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-title {
    font-size: 26px !important;
  }

  .section-sub {
    font-size: 13px !important;
  }

  .cat-card,
  .cat-card-dark {
    height: auto !important;
    min-height: 170px;
    padding: 16px !important;
    border-radius: 16px !important;
  }

  .cat-card h3,
  .cat-card-dark p,
  .step-body h3 {
    font-size: 17px !important;
    line-height: 1.3 !important;
  }

  .cat-card p,
  .step-body p {
    font-size: 13px !important;
  }

  .how-we-work {
    gap: 24px !important;
    padding-top: 32px !important;
    padding-bottom: 34px !important;
  }

  .how-we-work h2 {
    font-size: 26px !important;
  }

  .steps-grid,
  .steps-row {
    gap: 14px !important;
  }

  .step {
    gap: 10px !important;
    padding-bottom: 14px !important;
  }

  .key-img {
    min-height: 220px !important;
  }
}

/* === Mobile header sheet === */
.mobile-menu-toggle {
  display: none;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle .btn-icon-inner {
  width: 24px;
  height: 24px;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle.mobile-menu-toggle-mobile {
  margin-left: 1rem !important;
  display: flex;
  height: 2.75rem !important;
  width: 2.75rem !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 9999px !important;
  background-color: #175960 !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

@media (min-width: 1101px) {
  .mobile-menu-toggle, .mobile-menu-toggle-mobile {
    display: none !important;
  }
}

@media (max-width: 1101px) {
  header {
    display: flex !important;
  }
  header > .header-actions {
    margin-left: auto;
    display: flex;
    gap: 1rem;
  }
  header > nav {
    display: none !important;
  }
}

.mobile-menu-toggle img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(17%) sepia(35%) saturate(558%)
    hue-rotate(143deg) brightness(93%) contrast(93%);
}

.mobile-sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 8, 13, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms var(--motion-ease-default);
  z-index: var(--z-overlay-mobile);
}

.mobile-sheet-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-sheet {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 375px;
  height: 100dvh;
  background: var(--color-white);
  transform: translateX(-102%);
  transition: transform var(--motion-duration-ui) var(--motion-ease-standard);
  z-index: var(--z-sheet-mobile);
  overflow: hidden;
}

.mobile-sheet.is-open {
  transform: translateX(0);
}

.mobile-sheet-body {
  height: 100%;
  overflow: auto;
  padding: 16px 16px 30px;
}

.mobile-sheet-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 994px;
}

.mobile-sheet-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-sheet-back,
.mobile-quick-link {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  background: transparent;
  color: #04080d;
  text-decoration: none;
}

.mobile-sheet-back {
  cursor: pointer;
}

.mobile-sheet-back span {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.mobile-sheet-back img,
.mobile-quick-link img {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  filter: brightness(0) saturate(100%) invert(34%) sepia(69%) saturate(533%)
    hue-rotate(141deg) brightness(90%) contrast(90%);
}

.mobile-sheet-back img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(460%)
    hue-rotate(177deg) brightness(91%) contrast(87%);
}

.mobile-quick-link.no-border {
  border-bottom: 0;
}

.mobile-quick-link span {
  color: #04080d;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.mobile-sheet-cta {
  height: 56px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  background: #175960;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 4px 24px;
  color: #fff;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.02em;
  cursor: pointer;
}

.mobile-sheet-cta-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mobile-sheet-cta-circle img {
  width: 24px;
  height: 24px;
}

.mobile-sheet-cats {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.mobile-sheet-search {
  width: 100%;
  height: 48px;
  border: 1px solid #c7c7cc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
}

.mobile-sheet-search img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(79%) sepia(6%) saturate(173%)
    hue-rotate(183deg) brightness(92%) contrast(86%);
}

.mobile-sheet-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #04080d;
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.4;
}

.mobile-sheet-search input::placeholder {
  color: #c7c7cc;
}

.mobile-sheet-cat-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-sheet-cat {
  border-bottom: 1px solid #dfdfdf;
  padding: 0 0 16px;
  margin-bottom: 0;
}

.mobile-sheet-cat-row {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.mobile-sheet-cat-main,
.mobile-sheet-cat-end {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mobile-sheet-cat-main img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(34%) sepia(69%) saturate(533%)
    hue-rotate(141deg) brightness(90%) contrast(90%);
}

.mobile-sheet-cat-main strong {
  color: #11434c;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.mobile-sheet-cat-end span {
  color: #228a95;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.mobile-sheet-cat-end img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(66%) sepia(95%) saturate(410%)
    hue-rotate(113deg) brightness(93%) contrast(88%);
}

.mobile-sheet-subcats {
  display: none;
}

.mobile-sheet-promo {
  width: 100%;
  height: 331px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: block;
}

.mobile-sheet-promo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-sheet-promo::after {
  content: "";
  position: absolute;
  inset: 72px 0 0;
  background: linear-gradient(180deg, rgba(23, 89, 96, 0) 38.22%, #175960 89.38%);
}

.mobile-sheet-promo strong {
  position: absolute;
  left: 21px;
  bottom: 86px;
  width: 267px;
  color: #fff;
  font-size: 45px;
  font-weight: 500;
  line-height: 0.87;
  z-index: 1;
}

.mobile-sheet-subview {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.mobile-sheet-subview-back {
  box-sizing: border-box;
  width: 100%;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 8px;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  background: transparent;
  cursor: pointer;
}

.mobile-sheet-subview-back img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(6%) saturate(460%)
    hue-rotate(177deg) brightness(91%) contrast(87%);
}

.mobile-sheet-subview-back span {
  color: #6f6f6f;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.mobile-sheet-subview-title {
  color: #11434c;
  font-size: 22px;
  line-height: 1.32;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 8px 0 6px;
}

.mobile-sheet-subview-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-sheet-subview-link {
  box-sizing: border-box;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #dfdfdf;
  color: #04080d;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 400;
  padding: 16px 8px;
}

.mobile-sheet-cats.is-sublevel .mobile-sheet-cat-list,
.mobile-sheet-cats.is-sublevel .mobile-sheet-promo {
  display: none;
}

.mobile-sheet-cats.is-sublevel .mobile-sheet-subview {
  display: flex;
}

.mobile-sheet.is-sublevel .mobile-sheet-top,
.mobile-sheet.is-sublevel .mobile-sheet-search {
  display: none;
}

.mobile-sheet.is-sublevel .mobile-sheet-cats {
  gap: 0;
}

body.mobile-sheet-open {
  overflow: hidden;
}

@media (max-width: 800px) {
  .header {
    display: flex !important;
    width: 100%;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px !important;
    gap: 12px !important;
    border-radius: 16px;
    grid-template-columns: none !important;
  }

  .logo-area {
    justify-self: auto !important;
    flex: 0 0 auto;
  }

  .logo-area .logo-svg {
    width: 38px !important;
    height: 32px !important;
  }

  .nav-center {
    display: none !important;
  }

  .header-actions {
    margin-left: auto !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    justify-self: auto !important;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .header-actions .header-search,
  .header-actions > .btn-icon:not(.mobile-menu-toggle) {
    display: none !important;
  }

  .header-actions .btn-primary {
    display: none !important;
  }

  .hero,
  .categories,
  .programs,
  .testimonials,
  .faqs,
  footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .hero {
    padding-top: 16px !important;
    padding-bottom: 48px !important;
    gap: 16px !important;
  }

  .hero-title {
    font-size: 48px !important;
    line-height: 1.05 !important;
    letter-spacing: -0.05em !important;
    text-align: center !important;
  }

  .hero-title .hero-title-pill {
    display: block !important;
    width: 258px !important;
    height: 80px !important;
    margin: 16px auto !important;
  }

  .hero-title > span.relative:first-of-type img {
    display: block !important;
    width: 30px;
    height: auto;
    right: -18px !important;
    top: 8px !important;
  }

  .hero-title > span.relative:last-of-type img {
    display: block !important;
    width: 70px;
    height: auto;
    left: -86px !important;
    bottom: -20px !important;
  }

  .hero-grid {
    gap: 16px !important;
  }

  .card-dark,
  .card-promo,
  .card-stats {
    border-radius: 24px !important;
  }

  .card-dark {
    min-height: 171px !important;
    padding: 32px !important;
  }

  .card-promo {
    min-height: 349px !important;
    padding: 32px !important;
    position: relative;
    overflow: hidden !important;
  }

  .card-promo .promo-tag,
  .card-promo .promo-copy,
  .card-promo .btn-promo {
    position: relative;
    z-index: 2;
    max-width: 72%;
  }

  .card-promo .promo-img {
    left: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 220px !important;
    height: 338px !important;
    justify-content: flex-end !important;
    z-index: 1;
    margin-top: 0 !important;
  }

  .card-promo .promo-img img {
    width: auto !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: right bottom !important;
  }

  .card-light-green {
    min-height: 352px !important;
    border-radius: 24px !important;
    padding: 24px 32px 40px !important;
  }

  .categories {
    padding-top: 32px !important;
    padding-bottom: 64px !important;
    gap: 32px !important;
  }

  .section-title {
    font-size: 48px !important;
    line-height: 1.07 !important;
    letter-spacing: -0.01em !important;
  }

  .section-sub {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }

  .cat-grid,
  .cat-row {
    gap: 32px !important;
  }

  .cat-card,
  .cat-card-dark {
    min-height: 240px !important;
    padding: 32px !important;
    border-radius: 16px !important;
  }

  .key-points {
    flex-direction: column !important;
  }

  .key-img {
    min-height: 395px !important;
  }

  .how-we-work {
    padding: 64px 16px !important;
    gap: 64px !important;
  }

  .how-we-work h2 {
    font-size: 48px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
  }

  .steps-grid,
  .steps-row {
    gap: 32px !important;
  }

  .step {
    gap: 24px !important;
    padding-bottom: 32px !important;
  }

  .programs {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
    gap: 32px !important;
  }

  .programs .section-title {
    font-size: 40px !important;
    line-height: 1.26 !important;
    letter-spacing: -0.02em !important;
  }

  .programs-layout {
    gap: 48px !important;
  }

  .programs .side-menu {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .programs .side-menu .menu-item {
    /* min-width: 184px; */
    padding: 32px !important;
    border-radius: 16px !important;
    gap: 16px !important;
  }

  .program-item {
    gap: 18px !important;
    padding: 16px 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .program-thumb {
    width: 100% !important;
    height: 343px !important;
    border-radius: 10px !important;
  }

  .prog-meta,
  .prog-footer {
    width: 100%;
  }

  .prog-meta {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .prog-stats {
    flex-wrap: wrap;
    gap: 12px !important;
  }

  .program-title {
    font-size: 18px !important;
    line-height: 1.5 !important;
    letter-spacing: -0.02em !important;
  }

  .testimonials {
    padding-top: 64px !important;
    padding-bottom: 32px !important;
    gap: 32px !important;
  }

  .testimonials .section-title,
  .faqs h2 {
    font-size: 38px !important;
    line-height: 1.26 !important;
    letter-spacing: -0.01em !important;
  }

  .test-grid,
  .faq-list {
    gap: 32px !important;
  }

  .test-card {
    padding: 32px !important;
    border-radius: 16px !important;
  }

  .faqs {
    padding-top: 32px !important;
    padding-bottom: 64px !important;
    gap: 32px !important;
  }

  .faq-item {
    padding-bottom: 32px !important;
  }

  footer {
    padding-top: 64px !important;
    padding-bottom: 32px !important;
    background: #11434c !important;
  }

  .footer-details,
  .footer-links,
  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
  }

  .footer-socials {
    flex-direction: column;
    gap: 16px !important;
  }
}

@media (max-width: 560px) {
  .hero-title > span.relative:first-of-type img {
    width: 26px;
    right: -14px !important;
    top: 6px !important;
  }

  .hero-title > span.relative:last-of-type img {
    width: 56px;
    left: -80px !important;
    bottom: -0px !important;
  }

  .card-promo {
    min-height: 430px !important;
  }

  .card-promo .promo-tag,
  .card-promo .promo-copy,
  .card-promo .btn-promo {
    max-width: 70%;
  }

  .card-promo .promo-img {
    width: 410px !important;
    height: 520px !important;
    right: -100px !important;
  }
}


.page-btn,
.page-nav {
  display: inline-flex;      /* 🔥 clave */
  align-items: center;       /* centra vertical */
  justify-content: center;   /* centra horizontal */
  text-align: center;
}

main ul,
main ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

main ul {
  list-style-type: disc;
}

main ol {
  list-style-type: decimal;
}

main li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

main li::marker {
  color: #175960; /* azul tipo Tailwind (blue-500) */
  font-weight: 600;
}

main table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

main table thead {
    background-color: #f3f4f6;
}

main table thead th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

main table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

main table tbody tr:hover {
    background-color: #f9fafb;
}

main table tbody tr:last-child td {
    border-bottom: none;
}



/* Contenedor base */
.pagraph-text-normalize {
  color: #374151; /* gray-700 */
  line-height: 1.75;
  font-size: 1rem;
}

/* Headings */
.pagraph-text-normalize h1,
.pagraph-text-normalize h2,
.pagraph-text-normalize h3,
.pagraph-text-normalize h4,
.pagraph-text-normalize h5,
.pagraph-text-normalize h6 {
  font-weight: 600;
  line-height: 1.3;
  color: #111827; /* gray-900 */
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.pagraph-text-normalize h1 {
  font-size: 2.25rem;
}

.pagraph-text-normalize h2 {
  font-size: 1.875rem;
}

.pagraph-text-normalize h3 {
  font-size: 1.5rem;
}

.pagraph-text-normalize h4 {
  font-size: 1.25rem;
}

.pagraph-text-normalize h5 {
  font-size: 1.125rem;
}

.pagraph-text-normalize h6 {
  font-size: 1rem;
  color: #4b5563; /* gray-600 */
}

/* Párrafos */
.pagraph-text-normalize p {
  margin-bottom: 1rem;
}

/* Texto inline */
.pagraph-text-normalize strong {
  font-weight: 600;
  color: #111827;
}

.pagraph-text-normalize em {
  font-style: italic;
}

.pagraph-text-normalize small {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Links */
.pagraph-text-normalize a {
  color: #2563eb; /* blue-600 */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.pagraph-text-normalize a:hover {
  color: #1d4ed8; /* blue-700 */
}

/* Listas */
.pagraph-text-normalize ul,
.pagraph-text-normalize ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.pagraph-text-normalize ul {
  list-style-type: disc;
}

.pagraph-text-normalize ol {
  list-style-type: decimal;
}

.pagraph-text-normalize li {
  margin-bottom: 0.4rem;
}

.pagraph-text-normalize li > ul,
.pagraph-text-normalize li > ol {
  margin-top: 0.4rem;
}

/* Citas */
.pagraph-text-normalize blockquote {
  border-left: 4px solid #e5e7eb;
  padding-left: 1rem;
  color: #6b7280;
  font-style: italic;
  margin: 1.5rem 0;
}

/* Código */
.pagraph-text-normalize code {
  background-color: #f3f4f6;
  color: #111827;
  padding: 0.2em 0.4em;
  border-radius: 0.25rem;
  font-size: 0.9em;
}

.pagraph-text-normalize pre {
  background-color: #111827;
  color: #f9fafb;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.pagraph-text-normalize pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Imágenes */
.pagraph-text-normalize img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 1.5rem 0;
}

/* Tablas */
.pagraph-text-normalize table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.pagraph-text-normalize th,
.pagraph-text-normalize td {
  border: 1px solid #e5e7eb;
  padding: 0.5rem 0.75rem;
  text-align: left;
}

.pagraph-text-normalize th {
  background-color: #f9fafb;
  font-weight: 600;
}

/* Separadores */
.pagraph-text-normalize hr {
  border: none;
  border-top: 1px solid #e5e7eb;
  margin: 2rem 0;
}

/* Espaciado entre elementos consecutivos */
.pagraph-text-normalize > *:first-child {
  margin-top: 0;
}

.pagraph-text-normalize > *:last-child {
  margin-bottom: 0;
}