:root {
  --bg: #f5f1e8;
  --surface: #fffdf8;
  --surface-alt: #ebf1ed;
  --text: #102433;
  --muted: #55616b;
  --border: #d8dfda;
  --accent: #4f9d99;
  --accent-dark: #0f2433;
  --accent-warm: #9c563e;
  --accent-soft: #d7c5aa;
  --accent-green: #7fbe73;
  --container: min(1120px, calc(100vw - 32px));
  --header-height: 88px;
  --scroll-offset: calc(var(--header-height) + 14px);
  --shadow: 0 22px 60px rgba(11, 24, 19, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset);
}

.hero,
.section,
.section-contact-block {
  scroll-margin-top: var(--scroll-offset);
}

body {
  font-family: "Instrument Sans", sans-serif;
  line-height: 1.5;
  color: var(--text);
  overflow-x: clip;
  background:
    radial-gradient(circle at top left, rgba(79, 157, 153, 0.08), transparent 30%),
    linear-gradient(180deg, #f8f4ec 0%, var(--bg) 100%);
  background-size: 140% 140%, 100% 100%;
  animation: page-aura 18s ease-in-out infinite alternate;
}

@keyframes page-aura {
  0% {
    background-position: 0% 0%, 0% 0%;
  }

  100% {
    background-position: 100% 18%, 0% 0%;
  }
}

@keyframes float-bob {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -7px, 0);
  }
}

@keyframes drift-orb {
  0% {
    transform: translate3d(-52%, 2%, 0) scale(0.94);
  }

  50% {
    transform: translate3d(-46%, -4%, 0) scale(1);
  }

  100% {
    transform: translate3d(-56%, -8%, 0) scale(1.06);
  }
}

@keyframes backdrop-pan {
  0% {
    transform: scale(1.08) translate3d(-1.5%, -1.5%, 0);
  }

  100% {
    transform: scale(1.14) translate3d(1.5%, 1.5%, 0);
  }
}

@keyframes info-image-breathe {
  0% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1.07);
  }
}

@keyframes glow-breathe {
  0%,
  100% {
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  }

  50% {
    box-shadow:
      0 22px 46px rgba(0, 0, 0, 0.22),
      0 0 0 1px rgba(127, 190, 115, 0.08);
  }
}

@keyframes sheen-pass {
  from {
    transform: translateX(-160%) skewX(-18deg);
  }

  to {
    transform: translateX(260%) skewX(-18deg);
  }
}

@keyframes active-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 190, 115, 0.24);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(127, 190, 115, 0);
  }
}

@keyframes halo-pulse {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.02);
  }
}

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

button {
  border: 0;
  background: none;
  font: inherit;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
  overflow: hidden;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 190, 115, 0.82), transparent);
  opacity: 0;
  transform: scaleX(0.2);
  transition:
    opacity 0.24s ease,
    transform 0.3s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(16, 36, 51, 0.78) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px) saturate(140%);
}

.site-header.is-scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  transition: transform 0.24s ease;
}

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

.logo-mark {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  animation: float-bob 7s ease-in-out infinite;
}

.logo-text {
  display: grid;
  gap: 2px;
}

.logo-text strong {
  font-size: 1.24rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-text small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.site-nav > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 8px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.24s ease;
}

.site-nav > a:hover,
.site-nav > a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
  transform: scaleX(1);
}

.nav-socials,
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-socials {
  margin-left: 6px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}

.social-link::before,
.menu-toggle::before,
.button::before,
.pricing-catalog-toggle::before {
  content: "";
  position: absolute;
  inset: -30% auto -30% -25%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0;
  transform: translateX(-180%) skewX(-18deg);
  pointer-events: none;
  transition: opacity 0.2s ease;
  will-change: transform, opacity;
}

.social-link:hover {
  transform: translateY(-1px);
  background: rgba(127, 190, 115, 0.24);
  border-color: rgba(127, 190, 115, 0.44);
}

.social-link:hover::before,
.menu-toggle:hover::before,
.button:hover::before,
.pricing-catalog-toggle:hover::before,
.social-link:focus-visible::before,
.menu-toggle:focus-visible::before,
.button:focus-visible::before,
.pricing-catalog-toggle:focus-visible::before {
  opacity: 1;
  animation: sheen-pass 0.82s ease forwards;
}

.social-link img {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  position: relative;
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(127, 190, 115, 0.4);
  background: rgba(127, 190, 115, 0.16);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #111;
}

.hero::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12%;
  z-index: 1;
  width: min(62vw, 760px);
  height: min(62vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(127, 190, 115, 0.22) 0%, rgba(79, 157, 153, 0.16) 38%, transparent 74%);
  filter: blur(42px);
  opacity: 0.82;
  pointer-events: none;
  animation: drift-orb 16s ease-in-out infinite alternate;
}

.hero-slides,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slides {
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 26, 36, 0.5) 0%, rgba(10, 26, 36, 0.66) 44%, rgba(10, 26, 36, 0.82) 100%);
  backdrop-filter: saturate(112%);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(16, 36, 51, 0.36);
  color: #fff;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  animation: glow-breathe 4.6s ease-in-out infinite;
}

.hero-arrow:hover {
  transform: translateY(calc(-50% - 1px));
  background: rgba(127, 190, 115, 0.22);
  border-color: rgba(127, 190, 115, 0.44);
}

.hero-arrow svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-arrow-prev {
  left: 24px;
  animation-delay: 0s;
}

.hero-arrow-next {
  right: 24px;
  animation-delay: 1.1s;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 146px 0 78px;
}

.hero-copy {
  width: min(100%, 880px);
  text-align: center;
  color: #fff;
}

.hero-motion {
  transform-origin: center center;
  transition: transform 0.36s ease;
  will-change: transform;
}

.hero-copy-slider {
  display: grid;
  margin-bottom: 8px;
}

.hero-copy-slide {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease,
    transform 0.45s ease;
}

.hero-copy-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.hero-copy-slide h1,
.hero-copy-slide .hero-text {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  filter: blur(10px);
  transition:
    opacity 0.52s ease,
    transform 0.62s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.52s ease;
}

.hero-copy-slide.is-active h1,
.hero-copy-slide.is-active .hero-text {
  opacity: 1;
  transform: none;
  filter: none;
}

.hero-copy-slide.is-active .hero-text {
  transition-delay: 90ms;
}

.label {
  margin-bottom: 14px;
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.label-light {
  color: var(--accent-green);
}

.hero-tagline {
  max-width: 720px;
  margin: 0 auto 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-trust-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto 22px;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(16, 36, 51, 0.4);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
}

body.js-enabled:not(.is-ready) .hero-tagline,
body.js-enabled:not(.is-ready) .hero-trust-list,
body.js-enabled:not(.is-ready) .hero-actions,
body.js-enabled:not(.is-ready) .hero-card,
body.js-enabled:not(.is-ready) .hero-pagination {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
}

.hero-tagline,
.hero-trust-list,
.hero-actions,
.hero-card,
.hero-pagination {
  transition:
    opacity 0.6s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}

body.js-enabled.is-ready .hero-tagline,
body.js-enabled.is-ready .hero-trust-list,
body.js-enabled.is-ready .hero-actions,
body.js-enabled.is-ready .hero-card,
body.js-enabled.is-ready .hero-pagination {
  opacity: 1;
  transform: none;
  filter: none;
}

body.js-enabled.is-ready .hero-tagline {
  transition-delay: 90ms;
}

body.js-enabled.is-ready .hero-trust-list {
  transition-delay: 140ms;
}

body.js-enabled.is-ready .hero-actions {
  transition-delay: 180ms;
}

body.js-enabled.is-ready .hero-card {
  transition-delay: 260ms;
}

body.js-enabled.is-ready .hero-pagination {
  transition-delay: 320ms;
}

.hero h1,
.section-heading h2,
.info-lead h2 {
  line-height: 1.04;
}

.hero h1 {
  max-width: 14ch;
  margin: 0 auto 18px;
  font-size: clamp(2.7rem, 6vw, 5.3rem);
  font-weight: 700;
}

.hero-text,
.section-intro {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.hero-text {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0 26px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button-light {
  border: 1px solid rgba(255, 253, 248, 0.82);
  background: transparent;
  color: #fff;
}

.button-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.button-hero-primary {
  background: var(--accent-green);
  color: var(--accent-dark);
  box-shadow: 0 10px 24px rgba(127, 190, 115, 0.3);
}

.button-hero-primary:hover {
  background: #6eab64;
}

.hero-card,
.card,
.info-box,
.contact-box,
.map-box {
  border-radius: 24px;
}

.hero-card {
  position: relative;
  width: min(100%, 620px);
  margin: 132px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(16, 36, 51, 0.52);
  color: #fff;
  backdrop-filter: blur(10px);
  overflow: hidden;
  animation: glow-breathe 7.4s ease-in-out infinite;
}

.hero-card::before,
.pricing-top-item::before,
.pricing-card::before,
.info-box::before,
.contact-box::before,
.map-box::before {
  content: "";
  position: absolute;
  inset: auto auto -34% -18%;
  width: 56%;
  height: 56%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 190, 115, 0.18), transparent 70%);
  opacity: 0.75;
  pointer-events: none;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.hero-card h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.hero-card ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
}

.hero-card li {
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.28s ease,
    color 0.28s ease,
    opacity 0.45s ease;
}

body.js-enabled:not(.is-ready) .hero-card li {
  opacity: 0;
  transform: translateY(10px);
}

body.js-enabled.is-ready .hero-card li {
  opacity: 1;
  transform: none;
}

body.js-enabled.is-ready .hero-card li:nth-child(1) {
  transition-delay: 320ms;
}

body.js-enabled.is-ready .hero-card li:nth-child(2) {
  transition-delay: 380ms;
}

body.js-enabled.is-ready .hero-card li:nth-child(3) {
  transition-delay: 440ms;
}

body.js-enabled.is-ready .hero-card li:nth-child(4) {
  transition-delay: 500ms;
}

.hero-card li:hover {
  transform: translateX(4px);
  color: #fff;
}

.hero-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  transition:
    width 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.hero-dot:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.58);
}

.hero-dot.is-active {
  width: 34px;
  background: var(--accent-green);
  box-shadow: none;
  animation: active-dot 2.4s ease-in-out infinite;
}

.section {
  position: relative;
  padding: 78px 0;
}

.section-heading {
  margin-bottom: 30px;
}

.section-heading .label {
  color: var(--accent-green);
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 2.95rem);
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-soft {
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.7s ease,
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal {
  transform: translate3d(0, 32px, 0);
}

.reveal-left {
  transform: translate3d(-34px, 0, 0);
}

.reveal-right {
  transform: translate3d(34px, 0, 0);
}

.reveal-soft {
  transform: translate3d(0, 20px, 0) scale(0.985);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-soft.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.section-heading-light {
  color: #fff;
}

.section-heading-light .label {
  color: var(--accent-green);
}

.section-heading-light .section-intro {
  color: rgba(255, 255, 255, 0.78);
}

.section-showcase {
  overflow: hidden;
  color: #fff;
  background: #102433;
}

.section-showcase-backdrop,
.section-showcase-backdrop::after,
.section-partners-backdrop,
.section-partners-backdrop::after,
.section-pricing-backdrop,
.section-pricing-backdrop::after,
.section-infos-backdrop,
.section-infos-backdrop::after,
.section-contact-backdrop,
.section-contact-backdrop::after {
  position: absolute;
  inset: 0;
}

.section-showcase-backdrop,
.section-partners-backdrop,
.section-pricing-backdrop,
.section-infos-backdrop,
.section-contact-backdrop {
  z-index: 0;
}

.section-showcase-backdrop::after,
.section-partners-backdrop::after,
.section-pricing-backdrop::after,
.section-infos-backdrop::after,
.section-contact-backdrop::after {
  content: "";
}

.section-showcase-backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.62) 0%, rgba(16, 36, 51, 0.78) 100%);
}

.section-showcase-backdrop img,
.section-partners-backdrop img,
.section-pricing-backdrop img,
.section-infos-backdrop img,
.section-contact-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: backdrop-pan 20s ease-in-out infinite alternate;
}

.section-showcase-backdrop img {
  opacity: 0.4;
}

.section-showcase-inner {
  position: relative;
  z-index: 1;
}

.section-showcase .section-heading {
  text-align: center;
}

.section-showcase .section-intro {
  margin: 0 auto;
}

.section-partners {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(79, 157, 153, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(127, 190, 115, 0.12), transparent 24%),
    linear-gradient(180deg, #102433 0%, #17384b 100%);
}

.section-partners-backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.68) 0%, rgba(23, 56, 75, 0.8) 100%);
}

.section-partners-backdrop img {
  opacity: 0.22;
}

.section-partners-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.section-partners .section-heading {
  text-align: center;
}

.section-partners .section-intro {
  margin: 0 auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: start;
  justify-content: stretch;
  overflow: visible;
  padding: 10px 0 28px;
  touch-action: auto;
  scroll-snap-type: none;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: initial;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 156px;
  min-height: 244px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  justify-self: center;
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  filter: brightness(1.03);
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(127, 190, 115, 0.18);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  animation: glow-breathe 5.8s ease-in-out infinite;
  transition:
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}

.partner-badge-muted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.88);
}

.partner-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 142px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    opacity 0.46s ease,
    filter 0.46s ease;
  animation: glow-breathe 6.2s ease-in-out infinite;
}

.partner-logo-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  opacity: 0.22;
  animation: halo-pulse 4.8s ease-in-out infinite;
}

.partner-card:nth-child(2) .partner-logo-wrap {
  animation-delay: 0.35s;
}

.partner-card:nth-child(3) .partner-logo-wrap {
  animation-delay: 0.7s;
}

.partner-card:nth-child(4) .partner-logo-wrap {
  animation-delay: 1.05s;
}

.partner-card:nth-child(5) .partner-logo-wrap {
  animation-delay: 1.4s;
}

.partner-card:nth-child(6) .partner-logo-wrap {
  animation-delay: 1.75s;
}

.partner-card:nth-child(7) .partner-logo-wrap {
  animation-delay: 2.1s;
}

.partner-card:hover .partner-logo-wrap {
  transform: translateY(-2px);
  border-color: rgba(127, 190, 115, 0.32);
}

.partner-card-featured .partner-logo-wrap {
  border-color: rgba(127, 190, 115, 0.34);
  background: rgba(127, 190, 115, 0.14);
}

.partner-name {
  display: block;
  max-width: 100%;
  min-height: 2.5em;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-wrap: balance;
  transition:
    opacity 0.38s ease,
    transform 0.48s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.38s ease;
}

.partner-card img {
  width: 100%;
  max-width: 100px;
  max-height: 54px;
  object-fit: cover;
  transition:
    opacity 0.42s ease,
    transform 0.52s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.42s ease;
}

.partner-card.reveal-soft .partner-logo-wrap {
  opacity: 0;
  transform: translateY(22px) scale(0.88);
  filter: blur(10px);
}

.partner-card.reveal-soft img {
  opacity: 0;
  transform: scale(0.82);
  filter: blur(10px);
}

.partner-card.reveal-soft .partner-name,
.partner-card.reveal-soft .partner-badge {
  opacity: 0;
  transform: translateY(14px);
  filter: blur(8px);
}

.partner-card.reveal-soft.is-visible .partner-logo-wrap {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 70ms;
}

.partner-card.reveal-soft.is-visible img {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 140ms;
}

.partner-card.reveal-soft.is-visible .partner-name {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 210ms;
}

.partner-card.reveal-soft.is-visible .partner-badge {
  opacity: 1;
  transform: none;
  filter: none;
  transition-delay: 280ms;
}

.section-pricing {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(127, 190, 115, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(156, 86, 62, 0.14), transparent 24%),
    linear-gradient(180deg, #162f3f 0%, #102433 100%);
}

.section-pricing-backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.54) 0%, rgba(16, 36, 51, 0.82) 100%);
}

.section-pricing-backdrop img {
  opacity: 0.22;
}

.section-pricing-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.section-heading-pricing {
  text-align: center;
}

.section-heading-pricing .section-intro {
  margin: 0 auto;
}

.pricing-top-banner {
  display: grid;
  gap: 18px;
}

.pricing-top-banner .label {
  margin-bottom: 0;
}

.pricing-top-banner-head {
  display: grid;
  gap: 10px;
  padding: 0 4px;
}

.pricing-top-banner-intro,
.pricing-top-note {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.pricing-top-banner-intro {
  max-width: 76ch;
  font-size: 0.98rem;
}

.pricing-top-note {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.4;
}

.pricing-top-groups {
  gap: 0;
}

.pricing-top-group-content {
  display: grid;
  gap: 0;
}

.pricing-top-group-subtitle {
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  text-wrap: pretty;
}

.pricing-top-rows {
  margin-top: 0;
}

.pricing-top-row-meta {
  grid-column: 1 / -1;
  max-width: 72ch;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.8rem;
  line-height: 1.5;
}

.pricing-guarantee {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(127, 190, 115, 0.12), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pricing-top-group .pricing-row:first-child {
  padding-top: 20px;
}

.pricing-guarantee-title {
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-guarantee p:last-child {
  max-width: 76ch;
  color: #fff;
  line-height: 1.6;
}

.pricing-highlights,
.pricing-groups {
  display: grid;
  gap: 22px;
}

.pricing-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 310px;
  padding: 70px 26px 32px;
  text-align: center;
  overflow: hidden;
}

.pricing-card {
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    box-shadow 0.24s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 190, 115, 0.34);
}

.pricing-pin {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-recommendation {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--accent-green);
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(127, 190, 115, 0.26);
  animation: glow-breathe 3.2s ease-in-out infinite;
}

.pricing-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  height: 116px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(11, 24, 19, 0.28);
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.18);
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  animation: float-bob 5.6s ease-in-out infinite;
}

.pricing-card:nth-child(2) .pricing-price {
  animation-delay: 0.45s;
}

.pricing-card:nth-child(3) .pricing-price {
  animation-delay: 0.9s;
}

.pricing-card-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(127, 190, 115, 0.14);
  color: var(--accent-green);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    background 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.pricing-card-text {
  max-width: 28ch;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.55;
  transition: color 0.24s ease;
}

.pricing-card:hover .pricing-card-text {
  color: #fff;
}

.pricing-card:hover .pricing-card-meta {
  transform: translateY(-2px);
  background: rgba(127, 190, 115, 0.22);
  color: #fff;
}

.pricing-catalog {
  display: flex;
  justify-content: center;
}

.pricing-catalog-details {
  width: min(100%, 920px);
}

.pricing-catalog-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  overflow: hidden;
  isolation: isolate;
}

.pricing-catalog-toggle::-webkit-details-marker {
  display: none;
}

.pricing-catalog-toggle::after {
  content: "+";
  margin-left: 10px;
  font-size: 1.1rem;
  line-height: 1;
}

.pricing-catalog-details[open] .pricing-catalog-toggle::after {
  content: "-";
}

.pricing-catalog-toggle:hover {
  transform: translateY(-1px);
  background: rgba(127, 190, 115, 0.18);
  border-color: rgba(127, 190, 115, 0.4);
}

.pricing-catalog-details[open] .pricing-catalog-toggle {
  background: rgba(127, 190, 115, 0.18);
  border-color: rgba(127, 190, 115, 0.4);
  color: #fff;
}

.pricing-catalog-content {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.pricing-catalog-details[open] .pricing-catalog-content {
  animation: catalog-reveal 0.46s ease;
}

@keyframes catalog-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pricing-groups-intro {
  display: grid;
  gap: 10px;
  text-align: center;
}

.pricing-groups-intro p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
}

.pricing-groups {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.pricing-note {
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
}

.pricing-note p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-group {
  background: transparent;
}

.pricing-group + .pricing-group {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-group summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  transition:
    background 0.22s ease,
    padding-left 0.22s ease;
}

.pricing-group summary:hover {
  background: rgba(255, 255, 255, 0.03);
  padding-left: 26px;
}

.pricing-group[open] summary {
  background: rgba(255, 255, 255, 0.03);
}

.pricing-group summary::-webkit-details-marker {
  display: none;
}

.pricing-group summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-green);
  font-size: 1.4rem;
  line-height: 1;
  transition:
    transform 0.24s ease,
    background 0.24s ease,
    border-color 0.24s ease;
}

.pricing-group[open] summary::after {
  content: "-";
  transform: rotate(180deg);
  background: rgba(127, 190, 115, 0.14);
  border-color: rgba(127, 190, 115, 0.3);
}

.pricing-group-heading {
  display: grid;
  gap: 6px;
}

.pricing-group-count {
  color: var(--accent-green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-group-title {
  color: #fff;
  font-size: 1.12rem;
  font-weight: 700;
}

.pricing-rows {
  display: grid;
  padding: 0 22px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.28s ease,
    transform 0.36s ease;
}

.pricing-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pricing-row span {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-row strong {
  color: #ffffff;
  white-space: nowrap;
  font-size: 1rem;
}

.pricing-group[open] .pricing-row {
  opacity: 1;
  transform: none;
}

.pricing-group[open] .pricing-row:nth-child(1) {
  transition-delay: 40ms;
}

.pricing-group[open] .pricing-row:nth-child(2) {
  transition-delay: 80ms;
}

.pricing-group[open] .pricing-row:nth-child(3) {
  transition-delay: 120ms;
}

.pricing-group[open] .pricing-row:nth-child(4) {
  transition-delay: 160ms;
}

.pricing-group[open] .pricing-row:nth-child(5) {
  transition-delay: 200ms;
}

.pricing-group[open] .pricing-row:nth-child(6) {
  transition-delay: 240ms;
}

.pricing-group[open] .pricing-row:nth-child(7) {
  transition-delay: 280ms;
}

.pricing-group[open] .pricing-row:nth-child(8) {
  transition-delay: 320ms;
}

.cards,
.info-grid {
  display: grid;
  gap: 22px;
}

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

.card {
  padding: 20px;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.card:hover,
.info-box:hover,
.contact-box:hover,
.map-box:hover,
.info-lead:hover {
  transform: translateY(-4px);
}

.cards-showcase .card-showcase {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.cards-showcase .card-showcase::before {
  content: "";
  position: absolute;
  inset: auto -16% -22% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 190, 115, 0.14), transparent 72%);
  opacity: 0.6;
  transition:
    transform 0.32s ease,
    opacity 0.32s ease;
}

.card-showcase .card-image {
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

.card-tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent-green);
  color: var(--accent-dark);
  box-shadow: 0 10px 22px rgba(127, 190, 115, 0.22);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.card-image {
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  background: #e7ece6;
}

.card-image-randonnee {
  object-position: center 62%;
}

.card h3,
.info-box h3,
.contact-box h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.card p,
.info-box p,
.contact-box p {
  color: var(--muted);
}

.card-showcase h3 {
  color: #fff;
}

.card-showcase p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.card-showcase:hover::before,
.pricing-top-item:hover::before,
.pricing-card:hover::before,
.info-box:hover::before,
.contact-box:hover::before,
.map-box:hover::before {
  transform: translate3d(16px, -12px, 0) scale(1.08);
  opacity: 0.92;
}

.card-showcase:hover .card-image {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.card-showcase:hover .card-tag {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(127, 190, 115, 0.28);
}

.section-infos {
  position: relative;
  padding: 74px 0 46px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(79, 157, 153, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(127, 190, 115, 0.14), transparent 24%),
    linear-gradient(180deg, #102433 0%, #17384b 100%);
}

.section-infos-backdrop img {
  opacity: 0.36;
}

.section-infos-backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.64) 0%, rgba(23, 56, 75, 0.78) 100%);
}

.info-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.info-lead {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: transform 0.24s ease;
  overflow: hidden;
}

.info-lead .label {
  color: var(--accent-green);
}

.info-lead h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.info-lead .section-intro {
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.info-quote {
  position: relative;
  margin-left: 0;
  padding: 22px 24px 22px 30px;
  border-left: 3px solid rgba(127, 190, 115, 0.9);
  border-radius: 0 20px 20px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  max-width: 62ch;
  font-size: clamp(0.95rem, 1.1vw, 1.04rem);
  line-height: 1.82;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}

.info-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 14px;
  color: rgba(127, 190, 115, 0.75);
  font-size: 2.8rem;
  line-height: 1;
}

.info-quote p + p {
  margin-top: 14px;
}

.info-quote p {
  margin: 0;
}

.info-quote p:first-child {
  color: rgba(255, 255, 255, 0.94);
}

.info-quote strong {
  color: #fff;
  font-weight: 600;
}

.info-quote-signature {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

.info-lead-image-wrap {
  position: relative;
  width: 100%;
  height: 270px;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(8, 18, 27, 0.55), rgba(8, 18, 27, 0.2));
}

.info-lead-image-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("img/sections/illustration-infos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: blur(18px) saturate(0.95) brightness(0.72);
  transform: scale(1.14);
}

.info-lead-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 20, 30, 0.14), rgba(10, 20, 30, 0.28));
}

.info-lead-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center 42%;
  transform: scale(1.14);
  transform-origin: center center;
  animation: none;
}

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

.info-box {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease;
  overflow: hidden;
}

.info-kicker {
  margin-bottom: 10px;
  color: var(--accent-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-box h3 {
  color: #ffffff;
}

.info-box p {
  color: rgba(255, 255, 255, 0.82);
}

.info-box .info-kicker {
  color: var(--accent-green);
}

.info-detail {
  padding: 14px 16px;
  border: 1px solid rgba(127, 190, 115, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.info-detail-zone {
  padding: 12px 14px;
}

.info-zone-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.3;
}

.info-zone-list li {
  position: relative;
  padding-left: 12px;
}

.info-zone-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
}

.info-box-hours {
  grid-column: span 2;
  background: rgba(255, 255, 255, 0.08);
}

.info-summary-list,
.hours-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
}

.info-summary-list {
  grid-template-columns: 1fr;
}

.info-summary-list li,
.hours-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid rgba(127, 190, 115, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.info-box:hover .info-detail,
.info-summary-list li:hover,
.hours-list li:hover {
  transform: translateY(-2px);
  border-color: rgba(127, 190, 115, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.info-summary-list > li > span,
.hours-list span {
  font-weight: 600;
}

.info-summary-list > li > span {
  color: var(--accent-green);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.info-summary-list strong,
.hours-list strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.info-summary-list strong {
  max-width: 34ch;
  font-size: 1rem;
  line-height: 1.5;
}

.info-inline-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.info-inline-link:hover,
.info-inline-link:focus-visible {
  color: var(--accent-green);
  opacity: 1;
}

.info-summary-list strong span,
.hours-list strong span {
  display: block;
}

.section-contact-block {
  position: relative;
  padding: 64px 0 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(79, 157, 153, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(127, 190, 115, 0.12), transparent 24%),
    linear-gradient(180deg, #102433 0%, #153548 100%);
}

.section-contact-backdrop img {
  opacity: 0.35;
}

.section-contact-backdrop::after {
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.62) 0%, rgba(21, 53, 72, 0.78) 100%);
}

.section-contact-block > .container {
  position: relative;
  z-index: 1;
}

.contact-shell {
  display: grid;
  gap: 28px;
}

.contact-shell::after {
  display: none;
  content: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
}

.contact-box {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  padding: 34px 32px 40px;
  transition:
    transform 0.24s ease,
    background 0.24s ease;
  overflow: hidden;
}

.contact-box h3 {
  color: #ffffff;
  font-size: 1.42rem;
  margin: 0;
}

.contact-box p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 30ch;
  margin: 0;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 6px;
}

.contact-list a,
.contact-list p {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(127, 190, 115, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  align-content: center;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.contact-list a:hover {
  transform: translateX(4px);
  border-color: rgba(127, 190, 115, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.contact-label {
  color: var(--accent-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.2;
}

.contact-value {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
}

.map-box {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  overflow: hidden;
  min-height: 380px;
  transition:
    transform 0.24s ease,
    background 0.24s ease;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

.map-box:hover iframe {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.site-footer {
  padding: 28px 0 34px;
  background: linear-gradient(180deg, #153548 0%, #102433 100%);
}

.footer-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: center;
  flex-wrap: wrap;
  padding: 30px 24px 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.site-footer .footer-inner,
.site-footer .footer-inner.reveal,
.site-footer .footer-inner.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: start;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible,
.footer-legal-link.is-current {
  color: #ffffff;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  transform: translateY(-1px);
}

.legal-page {
  background: #102433;
}

.legal-page .site-header,
.legal-page .site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(16, 36, 51, 0.8) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(14px) saturate(140%);
}

.legal-page .site-header::after,
.legal-page .site-header.is-scrolled::after {
  opacity: 1;
  transform: scaleX(1);
}

.legal-main {
  min-height: 100vh;
}

.section-legal {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: calc(var(--header-height) + 44px) 0 88px;
  background:
    radial-gradient(circle at top right, rgba(79, 157, 153, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(127, 190, 115, 0.12), transparent 26%),
    linear-gradient(180deg, #102433 0%, #17384b 100%);
}

.section-legal-backdrop,
.section-legal-backdrop::after {
  position: absolute;
  inset: 0;
}

.section-legal-backdrop {
  z-index: 0;
}

.section-legal-backdrop::after {
  content: "";
  background:
    linear-gradient(180deg, rgba(16, 36, 51, 0.72) 0%, rgba(23, 56, 75, 0.84) 100%);
}

.section-legal-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  transform: scale(1.08);
  animation: backdrop-pan 20s ease-in-out infinite alternate;
}

.legal-page-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.legal-page-inner .section-heading {
  max-width: 840px;
}

.legal-page h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
}

.legal-shell {
  position: relative;
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(16, 36, 51, 0.52);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.legal-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -32% -14%;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(127, 190, 115, 0.22), rgba(127, 190, 115, 0));
  pointer-events: none;
}

.legal-block {
  position: relative;
}

.legal-block + .legal-block {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-block h2 {
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.18rem;
}

.legal-block p + p {
  margin-top: 12px;
}

.legal-list {
  display: grid;
  gap: 14px;
}

.legal-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 24px;
}

.legal-list div {
  display: grid;
  gap: 4px;
}

.legal-list dt {
  color: var(--accent-green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal-list dd,
.legal-block p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.legal-list a,
.legal-block a {
  color: #ffffff;
  font-weight: 600;
}

.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 25;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  padding: 0;
  background: var(--accent-green);
  box-shadow: 0 10px 24px rgba(127, 190, 115, 0.3);
  color: var(--accent-dark);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
  animation: glow-breathe 3.6s ease-in-out infinite;
}

.back-to-top:hover {
  transform: translateY(-3px);
  background: #6eab64;
}

.back-to-top.is-visible {
  display: inline-flex;
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  .hero::before {
    width: min(86vw, 560px);
    height: min(86vw, 560px);
  }

  .hero-arrow {
    width: 48px;
    height: 48px;
  }

  .hero-arrow-prev {
    left: 14px;
  }

  .hero-arrow-next {
    right: 14px;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(11, 17, 13, 0.94);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.24s ease,
      transform 0.24s ease,
      visibility 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-socials {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-top: 8px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .cards-showcase .card-showcase:last-child {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .pricing-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-highlights .pricing-card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 420px);
    justify-self: center;
  }

  .pricing-groups,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    justify-content: flex-start;
    gap: 16px;
  }

  .info-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 74px;
  }

  .site-header::after {
    display: none;
  }

  .site-header {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.is-scrolled {
    background: linear-gradient(180deg, rgba(16, 36, 51, 0.82) 0%, rgba(16, 36, 51, 0.7) 100%);
    backdrop-filter: blur(12px) saturate(128%);
  }

  .hero-arrow svg {
    width: 20px;
    height: 20px;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: var(--header-height);
    gap: 10px;
    padding: 0;
  }

  .logo {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-width: 0;
    gap: 10px;
  }

  .logo-mark {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    gap: 2px;
  }

  .logo-text strong {
    font-size: clamp(0.88rem, 3.7vw, 0.98rem);
    line-height: 1.02;
    letter-spacing: 0.025em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .logo-text small {
    max-width: none;
    font-size: clamp(0.54rem, 2.35vw, 0.64rem);
    line-height: 1.08;
    letter-spacing: 0.06em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-width: 74px;
    min-height: 42px;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .hero-inner {
    justify-content: flex-start;
    padding: calc(var(--header-height) + 16px) 0 58px;
  }

  .hero-copy {
    padding: 0 24px;
  }

  .hero::before {
    bottom: -18%;
    opacity: 0.56;
  }

  .hero-tagline {
    margin-bottom: 18px;
    font-size: 0.88rem;
  }

  .hero-trust-list {
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-trust-item {
    min-height: 36px;
    padding: 9px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
  }

  .hero-card {
    margin-top: 86px;
  }

  .hero-pagination {
    margin-top: 14px;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .hero-card ul,
  .cards,
  .pricing-top-banner-grid,
  .pricing-highlights,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .cards-showcase .card-showcase:last-child,
  .pricing-highlights .pricing-card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .section-partners-inner {
    gap: 24px;
  }

  .partner-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
    justify-content: stretch;
    overflow: visible;
    padding: 6px 0 0;
    touch-action: auto;
    scroll-snap-type: none;
  }

  .partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
    max-width: none;
    min-height: 194px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    scroll-snap-align: start;
  }

  .partner-card-wide {
    grid-column: auto;
    width: 100%;
    max-width: none;
  }

  .partner-logo-wrap {
    width: 108px;
    height: 108px;
    padding: 15px;
  }

  .partner-card img {
    max-width: 72px;
    max-height: 40px;
  }

  .partner-name {
    max-width: 100%;
    min-height: 2.5em;
    font-size: 0.88rem;
    text-align: center;
    text-wrap: balance;
  }

  .partner-badge {
    margin-top: auto;
    justify-self: center;
    min-height: 30px;
    padding: 7px 10px;
    font-size: 0.65rem;
  }

  .pricing-card {
    min-height: auto;
    padding: 30px 22px 28px;
  }

  .pricing-top-banner-head {
    padding: 0;
  }

  .pricing-top-banner-intro {
    font-size: 0.92rem;
  }

  .pricing-top-note {
    width: 100%;
    border-radius: 16px;
    font-size: 0.8rem;
  }

  .pricing-top-group-subtitle,
  .pricing-top-row-meta {
    font-size: 0.78rem;
  }

  .pricing-top-item {
    padding: 20px;
  }

  .pricing-top-breakdown-row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .pricing-top-breakdown-value {
    justify-self: center;
  }

  .pricing-pin,
  .pricing-recommendation {
    position: static;
    align-self: center;
    max-width: 100%;
    text-align: center;
    white-space: normal;
  }

  .pricing-pin {
    margin-bottom: 10px;
    font-size: 0.68rem;
  }

  .pricing-recommendation {
    margin-bottom: 14px;
    font-size: 0.68rem;
  }

  .pricing-price {
    min-width: 108px;
    height: 108px;
    font-size: 1.95rem;
  }

  .pricing-card-meta {
    font-size: 0.76rem;
    padding: 6px 10px;
  }

  .pricing-card-text {
    font-size: 0.95rem;
  }

  .logo-mark,
  .partner-logo-wrap,
  .partner-badge,
  .pricing-price,
  .pricing-recommendation,
  .back-to-top {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pricing-row strong {
    justify-self: start;
  }

  .info-zone-list {
    grid-template-columns: 1fr;
  }

  .info-box-hours {
    grid-column: auto;
  }

  .info-summary-list,
  .hours-list {
    grid-template-columns: 1fr;
  }

  .contact-shell {
    gap: 22px;
  }

  .footer-inner,
  .social-links {
    justify-content: center;
  }

  .footer-meta {
    justify-items: center;
  }

  .card-image {
    height: 210px;
  }

  .map-box,
  .map-box iframe {
    min-height: 280px;
    height: 280px;
  }

  .info-lead-image-wrap {
    width: 100%;
    height: 250px;
  }

  .info-lead-image {
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .section-legal {
    padding: calc(var(--header-height) + 32px) 0 70px;
  }

  .legal-shell {
    padding: 22px 20px;
  }

  .legal-block + .legal-block {
    margin-top: 22px;
    padding-top: 22px;
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    gap: 8px;
    min-height: var(--header-height);
  }

  .logo {
    gap: 8px;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .logo-text strong {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .logo-text small {
    max-width: none;
    font-size: 0.53rem;
    letter-spacing: 0.05em;
  }

  .menu-toggle {
    min-width: 68px;
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.86rem;
  }

  .partner-grid {
    gap: 16px 10px;
  }

  .partner-logo-wrap {
    width: 100px;
    height: 100px;
    padding: 14px;
  }

  .partner-card img {
    max-width: 68px;
    max-height: 38px;
  }

  .partner-name {
    font-size: 0.88rem;
  }

  .partner-card-wide {
    width: 100%;
    max-width: none;
  }

  .partner-card {
    min-height: 182px;
  }

  .partner-card {
    width: 100%;
    max-width: none;
    gap: 10px;
  }

  .partner-badge {
    min-height: 28px;
    padding: 6px 9px;
    font-size: 0.58rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-soft {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
.notfound-heading {
  max-width: 760px;
}

.notfound-shell {
  padding: 28px;
}

.notfound-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.notfound-page .legal-main {
  min-height: 0;
  flex: 1;
  display: flex;
}

.notfound-page .section-legal {
  flex: 1;
  padding-bottom: 12px;
  background:
    radial-gradient(circle at top right, rgba(79, 157, 153, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(127, 190, 115, 0.12), transparent 26%),
    linear-gradient(180deg, #102433 0%, #153548 100%);
}

.notfound-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 20px;
}

.notfound-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.notfound-code {
  color: var(--accent-green);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
}

.notfound-card h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}

.notfound-card p:last-of-type {
  color: rgba(255, 255, 255, 0.82);
}

.notfound-actions {
  margin: 4px 0 0;
  justify-content: flex-start;
}

.notfound-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.notfound-links a {
  display: block;
  padding: 14px 16px;
  border: 1px solid rgba(127, 190, 115, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.notfound-links a:hover,
.notfound-links a:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(127, 190, 115, 0.3);
  background: rgba(127, 190, 115, 0.12);
}

@media (max-width: 980px) {
  .notfound-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .notfound-shell {
    padding: 22px 20px;
  }

  .notfound-card {
    padding: 20px;
    border-radius: 20px;
  }
}
