:root {
  --blue: #055afa;
  --bg: #f0f0f0;
  --marquee-bg: #f8f8f8;
  --text: #333333;
  --text-soft: #333333e0;
  --black: #0c0c0c;
  --white: #ffffff;
  --card: #f7f7f7;
  --max: 1512px;
  --pad: 40px;
  --nav-h: 90px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 12px);
}

body {
  font-family: Geist, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-line {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  z-index: 1001;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* NAV */
.navbar {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 1000;
  background: #fffdf529;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--pad);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  gap: 12px;
}

.lang-switch {
  display: flex;
  flex-shrink: 0;
  gap: 2px;
  padding: 3px;
  border-radius: 20px;
  background: var(--bg);
}

.lang-btn {
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 7px 8px;
  border-radius: 16px;
  cursor: pointer;
}

.lang-btn.is-on {
  background: var(--blue);
  color: #fff;
}

.brand {
  height: 30px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 100%;
  width: auto;
}

.brand-word {
  color: var(--blue);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 400px;
}

.nav-pill.hero-cta {
  background: var(--blue);
  color: #fff;
}

.nav-pill.hero-cta:hover {
  background: #0048d6;
  color: #fff;
}

.card-icon {
  width: 56px;
  height: 56px;
}

.card-icon svg {
  width: 56px;
  height: 56px;
}

.packages {
  padding: 40px 0 120px;
}

.packages-lead {
  text-align: center;
  margin: -48px 0 56px;
  color: var(--text-soft);
  font-size: 18px;
}

.package-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.package-card {
  position: relative;
  background: var(--card);
  border: 1px solid #0000001c;
  border-radius: 32px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.4s ease;
}

.package-card:hover,
.package-card.featured {
  background: var(--white);
}

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

.package-card h3 {
  font-size: 36px;
  font-weight: 600;
}

.package-for {
  color: #333333cf;
  font-size: 15px;
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin: 8px 0 12px;
}

.package-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
}

.package-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex: 1;
}

.package-card li {
  font-size: 15px;
  color: #333333cf;
  padding-left: 18px;
  position: relative;
}

.package-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  position: absolute;
  left: 0;
  top: 8px;
}

.package-btn {
  align-self: flex-start;
  cursor: pointer;
  border: 0;
  background: var(--bg);
}

.who-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  max-width: 280px;
  font-size: 16px;
  line-height: 140%;
}

.who-list strong {
  font-size: 22px;
}

.footer-word {
  width: 62%;
  color: #fff;
  font-size: clamp(48px, 10vw, 150px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.85;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.nav-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--bg);
  color: var(--text);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 16px;
  transition: background 0.35s ease, color 0.35s ease;
}

.nav-pill:hover {
  background: var(--white);
}

.nav-pill.light {
  background: var(--white);
  color: var(--black);
}

.nav-pill.light:hover {
  background: #f0f0f0;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* HERO */
.hero {
  padding-top: 160px;
  padding-bottom: 80px;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.hero-title {
  max-width: 700px;
  color: var(--blue);
  font-size: 72px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 104%;
}

.hero-copy {
  color: var(--text-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 132%;
}

.video-wrap {
  position: relative;
  margin-top: 64px;
  height: 95vh;
  min-height: 600px;
  max-height: 1100px;
  border-radius: 40px;
  overflow: hidden;
  background: var(--blue);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* STORY */
.story {
  padding: 80px 0 40px;
}

.story-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.story-left {
  display: flex;
  flex: 1;
  max-width: 355px;
}

.story-left-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.story-left-inner h2,
.section-heading {
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;
}

.socials {
  display: flex;
  gap: 10px;
}

.social {
  width: 32px;
  height: 32px;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}

.social-ln {
  background-image: url("../assets/social/ln-grey.svg");
}

.social-ln:hover {
  background-image: url("../assets/social/ln-blue.svg");
}

.social-ig {
  background-image: url("../assets/social/ig-grey.svg");
}

.social-ig:hover {
  background-image: url("../assets/social/ig-blue.svg");
}

.social-ln-light {
  background-image: url("../assets/social/ln-light.svg");
}

.social-ln-light:hover {
  background-image: url("../assets/social/ln-blue.svg");
}

.social-ig-light {
  background-image: url("../assets/social/ig-light.svg");
}

.social-ig-light:hover {
  background-image: url("../assets/social/ig-blue.svg");
}

.divider {
  width: 1px;
  background: var(--blue);
  flex: none;
  transform-origin: top center;
}

.story-divider {
  margin-left: auto;
  align-self: stretch;
}

.story-copy {
  flex: 1;
  max-width: 728px;
  padding-top: 12px;
}

.story-copy p {
  font-size: 28px;
  font-weight: 300;
  line-height: 116%;
}

.story-copy p + p {
  margin-top: 1.2em;
}

/* MARQUEE */
.marquee {
  background: var(--marquee-bg);
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-top: 80px;
  padding: 40px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-right: 24px;
  flex: none;
}

.marquee-group span {
  flex: none;
  font-size: 80px;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

.marquee-group span.w-bold {
  font-weight: 700;
}

/* COMPANIES / CARDS */
.companies {
  padding: 80px 0 160px;
  overflow: hidden;
}

.section-heading {
  text-align: center;
  margin-bottom: 80px;
}

.cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.card-link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  padding: 40px;
  background: var(--card);
  border: 1px solid #0000001c;
  border-radius: 32px;
  color: var(--text);
  min-height: 100%;
  transition: background 0.5s ease;
}

.card-link:hover {
  background: var(--white);
}

.card-link img {
  object-fit: contain;
  max-width: 60%;
  height: auto;
}

.card-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-body h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 130%;
}

.card-body p {
  color: #333333cf;
  font-size: 16px;
  font-weight: 400;
  line-height: 136%;
}

.card-2,
.card-3 {
  will-change: transform;
}

/* PARTNER */
.partner {
  padding: 80px 0;
  background: var(--bg);
}

.partner-grid {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
}

.partner-copy {
  flex: 1;
  max-width: 728px;
  font-size: 28px;
  font-weight: 300;
  line-height: 116%;
}

.partner-divider {
  align-self: stretch;
}

.partner-logo {
  display: flex;
  align-items: center;
  flex: none;
}

.partner-logo img {
  width: 240px;
  transition: width 0.5s ease;
}

.partner-logo:hover img {
  width: 300px;
}

/* FOOTER */
.footer {
  background: var(--black);
  padding: 200px 0 80px;
  overflow: hidden;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.footer-logo {
  width: 52%;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  flex: none;
}

.footer-nav {
  display: flex;
  gap: 8px;
}

.footer-contact {
  color: var(--white);
  text-align: right;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 164%;
}

.footer-socials {
  justify-content: flex-end;
}

@media (max-width: 991px) {
  :root {
    --pad: 20px;
    --nav-h: 64px;
  }

  html {
    -webkit-text-size-adjust: 100%;
  }

  .hero-title,
  .hero-copy,
  .story-copy p,
  .card-body p,
  .package-card li,
  .legal-page p {
    overflow-wrap: break-word;
  }

  button,
  .nav-pill,
  .nav-toggle {
    touch-action: manipulation;
  }

  .navbar {
    height: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }

  .nav-toggle {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  body.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin: 0;
    padding: 20px var(--pad) 96px;
    background: #fffdf5f7;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transform: translateX(110%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.28s ease, visibility 0.28s ease;
    overflow: auto;
  }

  body.nav-open .nav-links {
    transform: none;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links .nav-pill {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 18px;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 16px;
    min-height: 52px;
  }

  .lang-switch {
    display: none;
  }

  body.nav-open .lang-switch {
    display: flex;
    position: fixed;
    left: var(--pad);
    right: var(--pad);
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    z-index: 1002;
    justify-content: space-between;
    padding: 4px;
  }

  body.nav-open .lang-btn {
    flex: 1;
    min-height: 40px;
    padding: 10px 4px;
    font-size: 12px;
  }

  .brand-word {
    font-size: 22px;
  }

  .hero {
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 36px);
    padding-bottom: 48px;
  }

  .hero-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 44px);
    letter-spacing: -0.04em;
    max-width: none;
  }

  .hero-copy,
  .hero-side {
    max-width: none;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-side {
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-pill.hero-cta {
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    font-size: 13px;
  }

  .video-wrap {
    height: auto;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    max-height: none;
    border-radius: 20px;
    margin-top: 28px;
  }

  .story {
    padding: 48px 0 24px;
  }

  .story-grid,
  .partner-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .story-left {
    max-width: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .story-left-inner {
    align-items: flex-start;
    gap: 20px;
  }

  .story-left-inner h2,
  .section-heading {
    font-size: 32px;
    text-align: left;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .story-divider,
  .partner-divider {
    width: 100%;
    height: 2px;
    margin: 0;
  }

  .story-copy,
  .partner-copy {
    text-align: left;
    max-width: none;
  }

  .story-copy p,
  .partner-copy {
    font-size: 18px;
    line-height: 140%;
  }

  .marquee {
    margin-top: 40px;
    padding: 24px 0;
  }

  .marquee-group span {
    font-size: 28px;
  }

  .companies {
    padding: 48px 0 64px;
  }

  .cards,
  .package-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card-link {
    gap: 24px;
    padding: 24px;
    border-radius: 24px;
  }

  .card-body h3 {
    font-size: 26px;
  }

  .card-2,
  .card-3 {
    transform: none !important;
  }

  .packages {
    padding: 24px 0 64px;
  }

  .packages-lead {
    margin: -8px 0 28px;
    font-size: 16px;
    text-align: left;
  }

  .package-card {
    padding: 24px;
    border-radius: 24px;
  }

  .package-card h3 {
    font-size: 28px;
  }

  .package-price {
    font-size: 26px;
  }

  .package-btn {
    align-self: stretch;
    text-align: center;
    min-height: 48px;
  }

  .partner {
    padding: 48px 0;
  }

  .partner-logo img,
  .partner-logo:hover img {
    width: 160px;
  }

  .who-list {
    max-width: none;
    text-align: left;
  }

  .footer {
    padding: 64px 0 calc(32px + env(safe-area-inset-bottom, 0px));
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-logo,
  .footer-word {
    width: 100%;
    font-size: clamp(40px, 16vw, 72px);
  }

  .footer-right {
    width: 100%;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-contact {
    text-align: left;
    font-size: 13px;
  }

  .footer-socials {
    justify-content: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
  }

  .legal-page {
    padding: calc(var(--nav-h) + env(safe-area-inset-top, 0px) + 32px) 0 56px;
  }

  .legal-page h1 {
    font-size: 28px;
  }

  .legal-lead {
    font-size: 16px;
  }

  .pay-panel--on-dark {
    padding: 16px;
  }

  .pay-marks {
    gap: 12px 14px;
  }

  .pay-mark--visa img {
    width: 64px;
    height: 40px;
  }

  .pay-mark--mastercard img,
  .pay-mark--maestro img {
    width: 56px;
    height: 36px;
  }

  .pay-mark--monri img {
    height: 32px;
  }

  .pay-mark--monri-badge img {
    height: 36px;
  }

  .pay-secure {
    margin-top: 28px;
    gap: 16px 20px;
  }
}

@media (max-width: 600px) {
  :root {
    --pad: 16px;
  }

  .hero-title {
    font-size: clamp(28px, 8.4vw, 34px);
  }

  .section-heading,
  .story-left-inner h2 {
    font-size: 26px;
    line-height: 126%;
  }

  .card-body h3 {
    font-size: 22px;
  }

  .card-icon,
  .card-icon svg {
    width: 48px;
    height: 48px;
  }

  .story-copy p,
  .partner-copy {
    font-size: 16px;
  }

  .marquee-group span {
    font-size: 22px;
  }

  .package-card h3 {
    font-size: 24px;
  }

  .config-page .config,
  .legal-page {
    overflow-x: hidden;
  }

  .footer-nav {
    display: flex;
  }

  .footer-word {
    letter-spacing: -0.05em;
  }
}

/* Monri / card acceptance marks — do not crop, recolor, or stretch logos */
.pay-panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pay-panel--on-dark {
  background: #fff;
  color: #333;
  border-radius: 18px;
  padding: 18px 20px 16px;
  max-width: 640px;
}

.pay-panel__label {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #666;
}

.pay-marks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.pay-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex: none;
}

.pay-mark img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.pay-mark--visa img {
  width: 80px;
  height: 50px;
}

.pay-mark--mastercard img,
.pay-mark--maestro img {
  width: 70px;
  height: 45px;
}

.pay-mark--monri img {
  width: auto;
  height: 40px;
}

.pay-mark--monri-badge img {
  width: auto;
  height: 44px;
}

.pay-secure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
  margin-top: 48px;
}

.pay-secure__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 280px;
}

.pay-secure__item img {
  display: block;
  width: auto;
  height: auto;
  max-width: none;
}

.pay-secure--visa img {
  width: 56px;
  height: 56px;
}

.pay-secure--idcheck img {
  width: auto;
  height: 36px;
}

.pay-secure__item p {
  margin: 0;
  font-size: 12px;
  line-height: 140%;
  color: #575757;
}

.pay-panel__note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 150%;
  color: #666;
}

.pay-panel__note a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-payments {
  margin-top: 28px;
}

.footer-inner--with-pay {
  align-items: flex-end;
}

@media (max-width: 991px) {
  .footer-payments {
    margin-top: 24px;
    max-width: none;
  }
}

.legal-page {
  padding: 140px 0 80px;
}

.legal-page h1 {
  font-size: 42px;
  letter-spacing: -1px;
  margin-bottom: 12px;
}

.legal-lead {
  max-width: 720px;
  font-size: 18px;
  line-height: 150%;
  color: var(--text-soft);
  margin-bottom: 36px;
}

.legal-page h2 {
  font-size: 22px;
  margin: 36px 0 12px;
}

.legal-page h3 {
  font-size: 16px;
  margin: 24px 0 8px;
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  line-height: 160%;
  color: var(--text-soft);
}

.legal-page ul {
  padding-left: 20px;
  margin: 8px 0 16px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-block {
  max-width: 800px;
}

.legal-page .pay-panel {
  margin: 28px 0 8px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
}
