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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

body {
  color: #1e293b;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #344255;
  font-family: "Manrope", sans-serif;
  line-height: 1.1;
}

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

p {
  margin-bottom: 1rem;
}

body {
  background: #ffffff;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.page-hero {
  padding: 6rem 0 5rem;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #d85a30;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.container {
  width: min(100% - 2rem, 1180px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #162A3F;
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}

.site-logo img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.site-logo__text {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.72rem;
  line-height: 1;
}

.site-logo__spot {
  color: #ffffff;
}

.site-logo__card {
  color: #d85a30;
}

.site-preview-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.2rem 0.55rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.18);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav,
.header-actions {
  display: none;
}

.site-nav a,
.mobile-menu a {
  color: #ffffff;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active,
.mobile-menu a:hover,
.mobile-menu a.is-active {
  color: #64748b;
}

.header-actions {
  align-items: center;
  gap: 0.75rem;
}

.header-login {
  font-weight: 600;
  color: #344255;
}

.site-header--home {
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.site-header--trial {
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header--trial .site-nav a,
.site-header--trial .mobile-menu a,
.site-header--trial .menu-toggle,
.site-header--trial .header-login,
.site-header--trial .site-logo__spot {
  color: #344255;
}

.site-header--trial .site-nav a:hover,
.site-header--trial .site-nav a.is-active,
.site-header--trial .mobile-menu a:hover,
.site-header--trial .mobile-menu a.is-active {
  color: #d85a30;
}

.site-header--home .site-nav a,
.site-header--home .header-login,
.site-header--home .menu-toggle {
  color: #ffffff;
}

.site-header--home .site-logo__spot {
  color: #ffffff;
}

.site-header--home .site-nav a:hover,
.site-header--home .site-nav a.is-active {
  color: rgba(255, 255, 255, 0.88);
}

.site-header--home .menu-toggle {
  border-color: rgba(255, 255, 255, 0.18);
}

.site-header--home .btn-primary {
  box-shadow: 0 14px 28px rgba(216, 90, 48, 0.24);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3rem;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0.65rem;
  color: #344255;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  padding: 0 0 1.25rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__panel {
  padding: 1rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.mobile-menu nav,
.mobile-menu__actions {
  display: grid;
  gap: 0.9rem;
}

.mobile-menu__actions {
  margin-top: 1rem;
}

.site-header--home .mobile-menu__panel {
  background: rgba(20, 31, 48, 0.96);
  border-color: rgba(255, 255, 255, 0.1);
}

.site-header--home .mobile-menu a,
.site-header--home .mobile-menu .btn-link {
  color: #ffffff;
}

@media (min-width: 960px) {
  .site-nav,
  .header-actions {
    display: flex;
  }
  .site-nav {
    align-items: center;
    gap: 1.5rem;
  }
  .menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}
.site-footer {
  padding: 4rem 0 2rem;
  background: #344255;
  color: rgba(255, 255, 255, 0.8);
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.site-footer__brand p {
  max-width: 20rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__title {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-nav {
  display: grid;
  gap: 0.7rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.footer-nav a:hover {
  color: #ffffff;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .site-footer__grid {
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.45rem 1rem;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 400;
  transition: all 180ms ease;
  font-size: 0.8rem;
}

.btn-primary {
  color: #ffffff;
  background: #d85a30;
}

.btn-primary:hover {
  background: #c94f28;
}

.btn-secondary,
.btn-outline {
  color: #344255;
  background: transparent;
  border-color: #344255;
}

.btn-secondary:hover,
.btn-outline:hover {
  background: rgba(52, 66, 85, 0.06);
}

.btn-link {
  padding-inline: 0;
  color: #344255;
}

.card {
  border-radius: 8px;
}

.badge {
  display: inline-flex;
}

.pricing-cards {
  display: grid;
  gap: 1rem;
}

.pricing-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.pricing-card--highlighted {
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 20px 50px rgba(216, 90, 48, 0.12);
}

.pricing-card__badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  align-items: center;
}

.pricing-card h2 {
  margin-bottom: 0;
  font-size: 1.6rem;
}

.pricing-card__description,
.pricing-card__billing-note {
  margin-bottom: 0;
  color: #64748b;
}

.pricing-card__comparison-hint {
  margin: -0.25rem 0 0;
  color: #d85a30;
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-card__price {
  display: flex;
  align-items: end;
  gap: 0.35rem;
}

.pricing-card__amount {
  color: #344255;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-card__period {
  color: #64748b;
  font-weight: 600;
}

.pricing-card__features {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card__features li {
  display: flex;
  gap: 0.7rem;
  color: #1e293b;
}

.pricing-card__feature-mark {
  color: #d85a30;
  font-weight: 800;
}

.pricing-value-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: #16a34a;
}

.pricing-value-icon .material-symbols-rounded {
  font-size: 1.15rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1200px) {
  .pricing-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pricing-block {
  display: grid;
  gap: 2rem;
}

.pricing-tabs {
  display: grid;
  gap: 1.5rem;
}

.pricing-tabs__nav {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 520px);
  padding: 0.4rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  margin: auto;
}

.pricing-tabs__button {
  min-height: 3rem;
  color: #344255;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  background: transparent;
}

.pricing-tabs__button.is-active {
  color: #ffffff;
  background: #344255;
}

.pricing-tabs__panel {
  display: none;
  gap: 2rem;
}

.pricing-tabs__panel.is-active {
  display: grid;
}

.pricing-empty {
  padding: 2rem;
  text-align: center;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.pricing-comparison {
  display: grid;
  gap: 1rem;
}

.pricing-comparison__header h2 {
  margin-bottom: 0;
  font-size: 1.65rem;
}

.pricing-comparison__table-wrap {
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
}

.pricing-comparison__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.pricing-comparison__table th,
.pricing-comparison__table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  vertical-align: middle;
}

.pricing-comparison__table thead th {
  color: #344255;
  background: #f7f9fc;
}

.pricing-comparison__section-row td {
  color: #d85a30;
  background: rgba(216, 90, 48, 0.05);
  font-weight: 700;
}

.pricing-comparison__check {
  color: #16a34a;
  font-weight: 800;
}

.pricing-comparison__dash {
  color: #64748b;
}

.pricing-comparison .pricing-value-icon {
  color: #16a34a;
}

.home-gallery {
  position: relative;
  overflow: clip;
  margin-top: -84px;
  background: #162A3F;
  --home-gallery-transition-duration: 700ms;
}

.home-gallery__viewport {
  position: relative;
  min-height: 720px;
  height: clamp(720px, 86vh, 940px);
}

.home-gallery__track {
  position: relative;
  min-height: inherit;
  height: 100%;
}

.home-gallery__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--home-gallery-transition-duration) ease, visibility var(--home-gallery-transition-duration) ease;
}

.home-gallery__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.home-gallery__media,
.home-gallery__media img,
.home-gallery__overlay,
.home-gallery__content-wrapper {
  position: absolute;
  inset: 0;
}

.home-gallery__media {
  overflow: hidden;
}

.home-gallery__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform var(--home-gallery-transition-duration) ease;
}

.home-gallery__slide.is-active .home-gallery__media img {
  transform: scale(1);
}

.home-gallery__overlay {
  background: linear-gradient(90deg, rgba(20, 28, 38, 0.78) 0%, rgba(20, 28, 38, 0.52) 40%, rgba(20, 28, 38, 0.12) 72%, rgba(20, 28, 38, 0.04) 100%);
}

.home-gallery__content-wrapper {
  display: grid;
  align-items: center;
}

.home-gallery__content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1rem;
  width: min(100%, 45rem);
  padding-top: 5.5rem;
}

.home-gallery__eyebrow {
  margin-bottom: 0;
  color: #d85a30;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-gallery__title {
  margin-bottom: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  line-height: 1.02;
}

.home-gallery__subtitle {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.6;
}

.home-gallery__cta {
  width: fit-content;
  min-height: 3.4rem;
  margin-top: 0.4rem;
  padding-inline: 1.4rem;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(216, 90, 48, 0.24);
}

.home-gallery__slide .home-gallery__content > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity calc(var(--home-gallery-transition-duration) - 180ms) ease, transform calc(var(--home-gallery-transition-duration) - 180ms) ease;
}

.home-gallery__slide.is-active .home-gallery__content > * {
  opacity: 1;
  transform: translateY(0);
}

.home-gallery__slide.is-active .home-gallery__eyebrow {
  transition-delay: 90ms;
}

.home-gallery__slide.is-active .home-gallery__title {
  transition-delay: 120ms;
}

.home-gallery__slide.is-active .home-gallery__subtitle {
  transition-delay: 150ms;
}

.home-gallery__slide.is-active .home-gallery__cta {
  transition-delay: 180ms;
}

.home-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.home-gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.04);
}

.home-gallery__arrow:focus-visible,
.home-gallery__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

.home-gallery__arrow--previous {
  left: clamp(1rem, 2vw, 2rem);
}

.home-gallery__arrow--next {
  right: clamp(1rem, 2vw, 2rem);
}

.home-gallery__arrow svg {
  width: 1.3rem;
  height: 1.3rem;
}

.home-gallery__pagination {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2.4rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}

.home-gallery__dot {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border: 0;
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.home-gallery__dot.is-active {
  background: #d85a30;
  transform: scale(1.06);
}

.home-gallery__progress {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 3;
  width: min(100% - 2rem, 10rem);
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transform: translateX(-50%);
}

.home-gallery__progress-bar {
  display: block;
  width: 100%;
  height: 100%;
  background: #d85a30;
  transform: scaleX(0);
  transform-origin: left center;
}

.home-intro,
.home-how-it-works,
.home-advantages,
.home-faq {
  padding: 4.5rem 0;
  background: #ffffff;
}

.home-intro__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.home-intro__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.home-intro__content p,
.home-step-card p,
.home-advantage-card p,
.home-faq__item p {
  color: #64748b;
  line-height: 1.75;
}

.home-intro__highlights,
.home-step-card,
.home-advantage-card,
.home-faq__item {
  padding: 1.4rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.05);
}

.home-intro__highlights h3,
.home-step-card h3,
.home-advantage-card h3,
.home-faq__item h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.home-intro__highlights ul {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-intro__highlights li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.6;
}

.home-intro__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 0.45rem;
  height: 0.45rem;
  background: #d85a30;
  border-radius: 999px;
}

.home-steps-grid,
.home-advantages__grid,
.home-faq__list {
  display: grid;
  gap: 1rem;
}

.home-step-card__index {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-weight: 800;
}

.home-platform {
  padding: 3rem 0 4.5rem;
  background: #ffffff;
}

.home-section-heading {
  margin: 0 auto 2.5rem;
  text-align: center;
}

.home-section-heading .section-kicker {
  justify-content: center;
}

.home-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.home-feature-grid {
  display: grid;
  gap: 1rem;
}

.home-feature-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.home-feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  margin-bottom: 1.4rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-feature-card__icon svg {
  width: 1.45rem;
  height: 1.45rem;
}

.home-feature-card h3 {
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
}

.home-feature-card p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-use-cases {
  padding: 1rem 0 5rem;
  background: #ffffff;
}

.home-use-case-grid {
  display: grid;
  gap: 1.25rem;
}

.home-use-case-card {
  position: relative;
  padding-top: 0.35rem;
}

.home-use-case-card__media {
  aspect-ratio: 1.48/1;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.home-use-case-card__media--restaurant {
  background: linear-gradient(180deg, rgba(18, 25, 34, 0.14), rgba(18, 25, 34, 0.55)), url("/assets/images/home/restaurant.png") center center/cover no-repeat;
}

.home-use-case-card__media--commerce {
  background: linear-gradient(180deg, rgba(9, 23, 39, 0.18), rgba(9, 23, 39, 0.44)), url("/assets/images/home/commerce.png") center center/cover no-repeat;
}

.home-use-case-card__media--event {
  background: linear-gradient(180deg, rgba(14, 8, 32, 0.12), rgba(14, 8, 32, 0.58)), url("/assets/images/home/spectacle.png") center center/cover no-repeat;
}

.home-use-case-card__media--artisan {
  background: linear-gradient(180deg, rgba(31, 22, 14, 0.14), rgba(31, 22, 14, 0.5)), url("/assets/images/home/artisan.png") center center/cover no-repeat;
}

.home-use-case-card__media--tourism {
  background: linear-gradient(180deg, rgba(12, 33, 45, 0.1), rgba(12, 33, 45, 0.42)), url("/assets/images/home/tourisme.png") center center/cover no-repeat;
}

.home-use-case-card__media--more {
  background: linear-gradient(180deg, rgba(14, 22, 35, 0.18), rgba(14, 22, 35, 0.55)), url("/assets/images/home/more.png") center center/cover no-repeat;
}

.home-use-case-card h3 {
  margin: 1rem 0 0.55rem;
  font-size: 1.2rem;
}

.home-use-case-card p {
  margin-bottom: 0.9rem;
  color: #64748b;
  line-height: 1.65;
}

.home-use-case-card__link {
  color: #d85a30;
  font-weight: 700;
}

.home-cta {
  padding: 0 0 5rem;
  background: #ffffff;
}

.home-cta__panel {
  display: grid;
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.home-cta__content {
  max-width: 32rem;
}

.home-cta__content h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.home-cta__content p {
  margin-bottom: 1.75rem;
  color: #64748b;
  font-size: 1.04rem;
  line-height: 1.65;
}

.home-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.home-cta__actions .btn {
  min-height: 3.35rem;
  padding-inline: 1.45rem;
  border-radius: 12px;
}

.home-cta__benefits {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #64748b;
  font-size: 0.95rem;
}

.home-cta__benefits li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.home-cta__benefits li::before {
  width: 0.45rem;
  height: 0.45rem;
  content: "";
  background: #d85a30;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(216, 90, 48, 0.12);
}

.home-cta__visual {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
}

.home-cta__screen {
  width: min(100%, 680px);
  overflow: hidden;
  border-radius: 26px;
}

.home-cta__screen img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .home-intro__grid,
  .home-steps-grid,
  .home-advantages__grid,
  .home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-cta__benefits {
    grid-template-columns: repeat(3, max-content);
    gap: 1.2rem;
  }
}
@media (min-width: 960px) {
  .home-gallery__content {
    padding-top: 6rem;
  }
  .home-intro__grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  }
  .home-steps-grid,
  .home-advantages__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home-platform {
    padding-top: 4rem;
  }
  .home-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .home-use-case-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1.4rem;
  }
  .home-cta__panel {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    padding: 2.3rem 2.5rem 2.3rem 2.6rem;
  }
  .home-cta__visual {
    justify-content: end;
  }
}
@media (min-width: 1200px) {
  .home-feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
  .home-faq__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 959.98px) {
  .home-gallery__viewport {
    min-height: 660px;
  }
  .home-gallery__content {
    width: min(100%, 38rem);
    padding-top: 4.75rem;
  }
}
@media (max-width: 767.98px) {
  .home-gallery__viewport {
    min-height: 620px;
    height: min(780px, 88svh);
  }
  .home-gallery__overlay {
    background: linear-gradient(180deg, rgba(20, 28, 38, 0.2) 0%, rgba(20, 28, 38, 0.42) 36%, rgba(20, 28, 38, 0.78) 68%, rgba(20, 28, 38, 0.92) 100%), linear-gradient(90deg, rgba(20, 28, 38, 0.78) 0%, rgba(20, 28, 38, 0.34) 52%, rgba(20, 28, 38, 0.12) 100%);
  }
  .home-gallery__content-wrapper {
    align-items: end;
  }
  .home-gallery__content {
    width: 100%;
    gap: 0.85rem;
    padding: 7rem 0 7.25rem;
  }
  .home-gallery__title {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }
  .home-gallery__subtitle {
    font-size: 1rem;
  }
  .home-gallery__cta {
    width: 100%;
    justify-content: center;
  }
  .home-gallery__arrow {
    top: auto;
    bottom: 5.25rem;
    width: 2.9rem;
    height: 2.9rem;
    transform: none;
  }
  .home-gallery__arrow:hover {
    transform: scale(1.04);
  }
  .home-gallery__arrow--previous {
    left: 1rem;
  }
  .home-gallery__arrow--next {
    right: 1rem;
  }
  .home-gallery__pagination {
    justify-content: flex-start;
    padding-left: 1rem;
    bottom: 1.8rem;
  }
  .home-gallery__progress {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    transform: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-gallery__slide,
  .home-gallery__media img,
  .home-gallery__slide .home-gallery__content > *,
  .home-gallery__arrow,
  .home-gallery__dot {
    transition-duration: 1ms !important;
  }
  .home-gallery__media img {
    transform: none !important;
  }
}
.features-hero {
  position: relative;
  overflow: clip;
  margin-top: -84px;
  padding: 0;
}

.site-header--features {
  background-color: #091326;
}

.features-hero__inner {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: clamp(620px, 80vh, 900px);
  padding: 8.75rem clamp(1.25rem, 4vw, 4rem) 4.5rem;
  background: url("/assets/images/fonction/hero.png") center center/cover no-repeat;
}

.features-hero__content {
  position: relative;
  z-index: 2;
  max-width: 38rem;
  justify-self: start;
}

.features-hero__content .section-kicker {
  margin-bottom: 1.25rem;
}

.features-hero__content h1 {
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-size: clamp(2.75rem, 5.7vw, 5.05rem);
  font-weight: 800;
  line-height: 0.99;
}

.features-hero__content h1 span {
  color: #d85a30;
}

.features-hero__content p {
  margin-bottom: 2rem;
  max-width: 33rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.38rem);
  line-height: 1.55;
}

.features-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.features-hero__actions .btn {
  min-height: 3.5rem;
  padding-inline: 1.55rem;
  border-radius: 12px;
}

.features-hero__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.04);
}

.features-hero__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.features-tools {
  padding: 2.4rem 0 3rem;
  background: #ffffff;
}

.features-section-heading {
  margin: 0 auto 2rem;
  text-align: center;
}

.features-section-heading .section-kicker {
  justify-content: center;
}

.features-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.08;
}

.features-card-grid {
  display: grid;
  gap: 1rem;
}

.features-card {
  display: grid;
  gap: 1.35rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.05);
}

.features-card__top h3 {
  margin-bottom: 0.65rem;
  font-size: 1.7rem;
  line-height: 1.08;
}

.features-card__top p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
}

.features-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(226, 232, 240, 0.35);
}

.features-card__icon svg {
  width: 1.7rem;
  height: 1.7rem;
}

.features-card__icon--orange {
  color: #d85a30;
}

.features-card__icon--blue {
  color: #5573f2;
}

.features-card__icon--red {
  color: #ff5a6b;
}

.features-card__icon--green {
  color: #39a74b;
}

.features-card__icon--purple {
  color: #8b4dff;
}

.features-card__icon--pink {
  color: #ff5d7e;
}

.features-card__icon--yellow {
  color: #ffac14;
}

.features-card__icon--violet {
  color: #7258ff;
}

.features-card__list {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #344255;
}

.features-card__list li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
  line-height: 1.45;
}

.features-card__list li::before {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  content: "";
  border: 1.7px solid currentColor;
  border-radius: 999px;
  opacity: 0.55;
}

.features-card__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: #64748b;
  font-size: 0.95rem;
  border: 1px dashed rgba(52, 66, 85, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(247, 249, 252, 0.88), rgba(255, 255, 255, 0.94));
}

@media (min-width: 960px) {
  .features-hero__inner {
    padding-left: clamp(2rem, 5vw, 5rem);
  }
  .features-tools {
    padding-top: 3rem;
  }
  .features-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .features-card {
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    align-items: end;
    min-height: 355px;
    padding: 1.4rem 1.45rem 1.35rem;
  }
}
.use-cases-page {
  padding: 2.6rem 0 5rem;
  background: radial-gradient(circle at top center, rgba(216, 90, 48, 0.09), transparent 24%), linear-gradient(180deg, #fbfcfe 0%, #ffffff 20%);
}

.use-cases-intro,
.use-case-section-heading {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.use-cases-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

.use-cases-intro__kicker {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.8rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.use-cases-intro h1,
.use-case-section-heading h2 {
  margin-bottom: 0;
  color: #344255;
  line-height: 1.02;
}

.use-cases-intro h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

.use-case-section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.use-cases-intro p,
.use-case-final > p {
  max-width: 44rem;
  margin-inline: auto;
  color: #64748b;
  font-size: 1.02rem;
  line-height: 1.75;
}

.use-cases-grid {
  display: grid;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.use-case-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.use-case-card__image {
  aspect-ratio: 16/9;
  position: relative;
  background: radial-gradient(circle at top right, rgba(216, 90, 48, 0.16), transparent 35%), linear-gradient(160deg, rgba(52, 66, 85, 0.98), rgba(33, 43, 57, 0.92));
}

.use-case-card__image-surface {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.use-case-card__image-surface img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.use-case-card__content {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.15rem 1rem;
}

.use-case-card__badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.38rem 0.72rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
}

.use-case-card__icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  margin-top: -1.5rem;
  color: #ffffff;
  background: #344255;
  border: 4px solid #ffffff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  font-size: 1.2rem;
}

.use-case-card__content h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: 1.25rem;
}

.use-case-card__description {
  color: #64748b;
  font-size: 0.96rem;
  line-height: 1.65;
}

.use-case-card__features {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.use-case-card__features li {
  position: relative;
  padding-left: 1.35rem;
  color: #1e293b;
  font-size: 0.92rem;
  line-height: 1.5;
}

.use-case-card__features li::before {
  content: "radio_button_checked";
  position: absolute;
  left: 0;
  top: -0.02rem;
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: 0.95rem;
  color: #d85a30;
  font-variation-settings: "FILL" 1;
}

.use-case-card__footer {
  display: flex;
  align-items: center;
  padding: 0 1.15rem 1.15rem;
}

.use-case-card__link {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  color: #d85a30;
  font-size: 0.92rem;
  font-weight: 700;
}

.use-case-locations {
  margin-bottom: 3.25rem;
  padding: 2.25rem 1.35rem;
  background: linear-gradient(180deg, rgb(251, 252, 254), rgb(247, 249, 252));
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 30px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.use-case-locations__grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.use-case-location-card {
  display: grid;
  gap: 0.7rem;
  place-items: center;
  min-height: 6.8rem;
  padding: 0.95rem 0.75rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.use-case-location-card .material-symbols-rounded {
  width: 2.9rem;
  height: 2.9rem;
  display: inline-grid;
  place-items: center;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.08);
  border-radius: 12px;
  font-size: 1.35rem;
}

.use-case-location-card h3 {
  margin-bottom: 0;
  color: #344255;
  font-size: 0.88rem;
}

.use-case-journey {
  margin-bottom: 3.25rem;
}

.use-case-journey__track {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.use-case-journey__step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.85rem;
  padding: 0.4rem;
  text-align: center;
}

.use-case-journey__icon {
  display: inline-grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  color: #ffffff;
  background: #344255;
  border-radius: 999px;
  font-size: 1.35rem;
  box-shadow: 0 12px 24px rgba(52, 66, 85, 0.16);
}

.use-case-journey__step p {
  color: #344255;
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.35;
}

.use-case-final {
  display: grid;
  gap: 1.5rem;
  padding: 1.6rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.05);
}

.use-case-final__intro {
  display: grid;
  gap: 1.5rem;
}

.use-case-final__copy h2 {
  margin-bottom: 0.85rem;
  color: #344255;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.use-case-final__copy h2 span,
.use-case-cta__inner h2 span {
  color: #d85a30;
}

.use-case-final__copy p {
  color: #64748b;
  line-height: 1.75;
}

.use-case-final__ideas {
  display: grid;
  gap: 0.85rem;
}

.use-case-final__idea {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 4rem;
  padding: 0.85rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.use-case-final__idea .material-symbols-rounded {
  font-size: 1.25rem;
  color: #d85a30;
}

.use-case-cta {
  padding: 0;
}

.use-case-cta__inner {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  color: #ffffff;
  background: radial-gradient(circle at bottom center, rgba(216, 90, 48, 0.2), transparent 28%), linear-gradient(160deg, rgb(52, 66, 85), rgba(22, 42, 63, 0.98));
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(52, 66, 85, 0.18);
}

.use-case-cta__inner h2 {
  margin-bottom: 0.6rem;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
}

.use-case-cta__inner p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.use-case-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.use-case-cta__actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
  font-weight: 700;
}

.use-case-cta__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.use-case-cta__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.use-case-cta__hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-style: italic;
}

.restaurant-use-case {
  padding-top: 3.5rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 22%);
}

.restaurant-use-case__hero {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.restaurant-use-case__hero-copy {
  display: grid;
  gap: 1rem;
}

.restaurant-use-case__hero-copy h1 {
  margin-bottom: 0;
  color: #344255;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
  line-height: 1.02;
}

.restaurant-use-case__hero-copy p {
  max-width: 42rem;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.restaurant-use-case__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.restaurant-use-case__hero-actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
}

.restaurant-use-case__hero-visual {
  min-width: 0;
}

.restaurant-use-case__hero-surface {
  position: relative;
  min-height: 26rem;
  padding: 1.3rem;
  border-radius: 28px;
}

.restaurant-use-case__hero-surface::after {
  content: "";
  position: absolute;
  inset: auto 12% 2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.18);
  filter: blur(16px);
}

.restaurant-use-case__hero-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 19rem);
  margin: 0 auto;
  padding: 0.75rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, #111827, #2a3445);
  box-shadow: 0 24px 45px rgba(15, 23, 42, 0.34);
}

.restaurant-use-case__hero-phone::before {
  content: "";
  display: block;
  width: 5.8rem;
  height: 0.42rem;
  margin: 0 auto 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.restaurant-use-case__hero-phone-screen {
  display: grid;
  align-content: end;
  aspect-ratio: 9/16;
  gap: 0.8rem;
  padding: 1.5rem 1.2rem;
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.08), rgba(15, 23, 42, 0.72)), url("/assets/images/home/restaurant.png") center/cover no-repeat;
  color: #ffffff;
}

.restaurant-use-case__hero-label {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.restaurant-use-case__hero-phone-screen strong {
  font-size: 1.9rem;
  line-height: 1.05;
}

.restaurant-use-case__hero-phone-screen p {
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
}

.restaurant-use-case__story {
  margin-bottom: 3rem;
}

.restaurant-use-case__steps {
  display: grid;
  gap: 1rem;
  margin-top: 1.8rem;
}

.restaurant-use-case__step {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
}

.restaurant-use-case__step-index {
  display: inline-flex;
  width: fit-content;
  min-height: 2.4rem;
  align-items: center;
  padding: 0.45rem 0.8rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-weight: 800;
}

.restaurant-use-case__step h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: 1.25rem;
}

.restaurant-use-case__step p {
  color: #64748b;
  line-height: 1.75;
}

.demo-section {
  margin-bottom: 3rem;
}

.demo-content {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.demo-content__copy {
  display: grid;
  gap: 1rem;
}

.demo-content__copy h2 {
  margin-bottom: 0;
  color: #344255;
  font-size: clamp(1.95rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.demo-content__copy > p {
  color: #64748b;
  line-height: 1.8;
}

.demo-content__hint {
  margin-top: 0.2rem;
  font-size: 0.96rem;
}

.demo-card-wrap {
  min-width: 0;
}

.demo-card {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 58px rgba(15, 23, 42, 0.14);
}

.demo-card::before {
  content: "";
  position: absolute;
  inset: auto 12% 1.4rem;
  height: 1rem;
  border-radius: 999px;
  background: rgba(216, 90, 48, 0.16);
  filter: blur(14px);
}

.demo-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.45rem 0.75rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.demo-card__visual {
  position: relative;
  display: grid;
  gap: 1rem;
  align-items: center;
}

.demo-qrcode {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  animation: demo-card-float 3.6s ease-in-out infinite;
}

.demo-qrcode img {
  display: block;
  width: min(100%, 19rem);
  height: auto;
}

.demo-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 15rem);
  justify-self: end;
  margin-top: -3rem;
  padding: 0.65rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #182433, #2a3445);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.22);
}

.demo-phone::before {
  content: "";
  display: block;
  width: 4.6rem;
  height: 0.35rem;
  margin: 0 auto 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.demo-phone__screen {
  display: grid;
  align-content: end;
  aspect-ratio: 9/16;
  gap: 0.7rem;
  padding: 1.15rem 1rem;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.06), rgba(15, 23, 42, 0.72)), url("/assets/images/home/restaurant.png") center/cover no-repeat;
  color: #ffffff;
}

.demo-phone__kicker {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  padding: 0.35rem 0.65rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
}

.demo-phone__screen strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

.demo-phone__screen p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.demo-card__caption {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.3rem;
  text-align: center;
}

.demo-card__caption strong {
  color: #344255;
  font-size: 1.05rem;
}

.demo-card__caption span {
  display: inline-flex;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 600;
}

.demo-card__caption .material-symbols-rounded {
  font-size: 1.25rem;
  color: #d85a30;
}

.demo-features {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.demo-features li {
  position: relative;
  padding-left: 1.8rem;
  color: #1e293b;
  line-height: 1.55;
  font-weight: 500;
}

.demo-features li::before {
  content: "check_circle";
  position: absolute;
  left: 0;
  top: -0.05rem;
  font-family: "Material Symbols Rounded", sans-serif;
  font-size: 1.2rem;
  color: #16a34a;
  font-variation-settings: "FILL" 1;
}

@keyframes demo-card-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@media (min-width: 768px) {
  .use-cases-grid,
  .use-case-locations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .use-case-final__ideas {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .restaurant-use-case__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .demo-card__visual {
    grid-template-columns: minmax(0, 1fr) minmax(11rem, 14rem);
  }
}
@media (min-width: 960px) {
  .use-cases-page {
    padding-top: 3rem;
  }
  .use-cases-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }
  .use-case-locations__grid {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }
  .use-case-journey__track {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    align-items: stretch;
  }
  .use-case-journey__step {
    min-height: 100%;
  }
  .use-case-journey__step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.6rem;
    left: calc(100% - 0.55rem);
    width: 1.1rem;
    height: 1px;
    background: rgba(52, 66, 85, 0.2);
  }
  .use-case-final__intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    align-items: start;
  }
  .use-case-final__ideas {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .use-case-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2rem;
  }
  .restaurant-use-case__hero,
  .demo-content {
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  }
}
@media (max-width: 959.98px) {
  .demo-phone {
    justify-self: center;
    margin-top: 0;
  }
}
@media (max-width: 767.98px) {
  .use-cases-page {
    padding-top: 2rem;
  }
  .use-cases-intro h1 br {
    display: none;
  }
  .use-case-locations,
  .use-case-final {
    padding: 1.2rem;
  }
  .use-case-cta__actions .btn {
    width: 100%;
  }
  .restaurant-use-case {
    padding-top: 2.5rem;
  }
  .restaurant-use-case__hero-surface {
    min-height: 22rem;
  }
  .restaurant-use-case__hero-phone-screen {
    aspect-ratio: 9/16;
  }
  .demo-content {
    padding: 1.25rem;
  }
  .demo-card {
    padding: 1.2rem;
  }
  .demo-qrcode img {
    width: min(100%, 15rem);
  }
}
.spot-locations {
  margin-bottom: 3.25rem;
  padding: 2.4rem 0;
}

.spot-locations__header {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
}

.spot-locations__header p {
  max-width: 42rem;
  margin: 0 auto;
  color: #64748b;
  line-height: 1.75;
}

.spot-locations__carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
}

.spot-locations__viewport {
  min-width: 0;
}

.spot-locations__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding: 0.35rem 0.1rem 0.95rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.spot-locations__track::-webkit-scrollbar {
  display: none;
}

.spot-locations__card {
  scroll-snap-align: start;
}

.spot-locations__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(160deg, rgba(52, 66, 85, 0.98), rgba(33, 43, 57, 0.92));
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.spot-locations__card:hover .spot-locations__image {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.spot-locations__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spot-locations__overlay {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.74) 68%, rgba(15, 23, 42, 0.92));
  pointer-events: none;
}

.spot-locations__title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.95rem;
  margin: 0;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.25;
}

.spot-locations__arrow {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  padding: 0;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.spot-locations__arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
  background: #f7f9fc;
}

.spot-locations__arrow:disabled {
  opacity: 0.45;
}

.spot-locations__arrow .material-symbols-rounded {
  font-size: 1.3rem;
}

.spot-locations__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.spot-locations__dot {
  width: 0.7rem;
  height: 0.7rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(52, 66, 85, 0.18);
  transition: transform 180ms ease, background 180ms ease;
}

.spot-locations__dot.is-active {
  transform: scale(1.1);
  background: #d85a30;
}

@media (min-width: 768px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(50% - 0.5rem), 1fr);
  }
}
@media (min-width: 960px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(33.333% - 0.67rem), 1fr);
  }
}
@media (min-width: 1200px) {
  .spot-locations__track {
    grid-auto-columns: minmax(calc(25% - 0.75rem), 1fr);
  }
}
@media (max-width: 767.98px) {
  .spot-locations {
    padding-block: 1.5rem;
  }
  .spot-locations__carousel {
    grid-template-columns: 1fr;
  }
  .spot-locations__arrow {
    display: none;
  }
}
.pricing-page {
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
}

.pricing-hero {
  max-width: 50rem;
  margin-bottom: 2.5rem;
}

.pricing-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.pricing-hero p {
  margin-bottom: 0;
  color: #64748b;
  font-size: 1.08rem;
  line-height: 1.7;
}

.pricing-faq {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

.pricing-faq__grid {
  display: grid;
  gap: 1rem;
}

.pricing-faq__item {
  padding: 1.4rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.pricing-faq__item h3 {
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.pricing-faq__item p {
  margin-bottom: 0;
  color: #64748b;
}

.pricing-cta {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  margin-top: 4rem;
  padding: 2rem;
  background: #344255;
  border-radius: 24px;
}

.pricing-cta h2,
.pricing-cta p {
  color: #ffffff;
}

.pricing-cta p {
  margin-bottom: 0;
  opacity: 0.82;
}

.pricing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.pricing-cta .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.pricing-cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .pricing-faq__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 960px) {
  .pricing-cta {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}
.trial-page {
  padding: 3rem 0 5rem;
  background: radial-gradient(circle at top left, rgba(216, 90, 48, 0.08), transparent 32%), linear-gradient(180deg, #fbfbfc 0%, #ffffff 100%);
}

.trial-hero {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.trial-hero__content {
  max-width: 760px;
}

.trial-hero__content h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  line-height: 1.02;
}

.trial-hero__content p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #64748b;
}

.trial-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trial-trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.7rem 1rem;
  color: #344255;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  font-size: 0.95rem;
  font-weight: 600;
}

.trial-grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.trial-intro,
.trial-form-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.trial-form-card {
  order: -1;
}

.trial-intro h2 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  line-height: 1.1;
}

.trial-intro > p {
  margin-bottom: 1.5rem;
  color: #64748b;
  line-height: 1.75;
}

.trial-steps {
  display: grid;
  gap: 0.9rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  counter-reset: trial-steps;
}

.trial-steps li {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.9rem;
  align-items: center;
  color: #344255;
  font-weight: 600;
}

.trial-steps li::before {
  counter-increment: trial-steps;
  content: counter(trial-steps);
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.12);
  border-radius: 999px;
  font-weight: 800;
}

.trial-note {
  padding: 1.2rem 1.25rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.trial-note strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #344255;
  font-size: 1rem;
}

.trial-note p {
  color: #64748b;
  line-height: 1.7;
}

.trial-alert {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
}

.trial-alert strong {
  display: block;
  margin-bottom: 0.35rem;
}

.trial-alert p + p {
  margin-top: 0.5rem;
}

.trial-alert--success {
  color: #166534;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.trial-alert--error {
  color: #991b1b;
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.18);
}

.trial-debug {
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.trial-debug strong {
  display: block;
  margin-bottom: 0.65rem;
}

.trial-debug pre {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.84rem;
  line-height: 1.6;
}

.trial-form {
  display: grid;
  gap: 1rem;
}

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group label {
  color: #344255;
  font-weight: 700;
  font-size: 0.95rem;
}

.form-control {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-control:focus {
  outline: none;
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.12);
}

.form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #344255 50%), linear-gradient(135deg, #344255 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 2px), calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.form-textarea {
  min-height: 8rem;
  resize: vertical;
}

.trial-activity-other {
  margin-top: 12px;
}

.trial-activity-other.is-hidden {
  display: none;
}

.form-check {
  gap: 0.65rem;
}

.form-check label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 500;
  color: #1e293b;
}

.form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #d85a30;
}

.form-error {
  color: #dc2626;
  font-size: 0.88rem;
}

.has-error .form-control {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.trial-form__actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
}

.trial-form__actions .btn {
  width: 100%;
  min-height: 3.5rem;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 700;
}

.trial-form__actions p,
.trial-form__legal {
  color: #64748b;
  font-size: 0.94rem;
  line-height: 1.7;
}

.trial-form__legal a {
  color: #d85a30;
  font-weight: 600;
}

@media (min-width: 960px) {
  .trial-page {
    padding: 4rem 0 6rem;
  }
  .trial-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    gap: 2rem;
  }
  .trial-form-card {
    order: 0;
    position: sticky;
    top: 6.5rem;
  }
  .trial-intro,
  .trial-form-card {
    padding: 2rem;
  }
}
.contact-page {
  padding: 3.5rem 0 5rem;
  background: radial-gradient(circle at top center, rgba(216, 90, 48, 0.08), transparent 30%), linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.contact-intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.contact-intro h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.04;
}

.contact-intro p {
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact-layout {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.contact-card h2 {
  margin-bottom: 1.2rem;
  color: #344255;
  font-size: 1.8rem;
}

.contact-info,
.contact-form,
.contact-faq,
.contact-confirmation {
  padding: 1.6rem;
}

.contact-info__list,
.contact-info__reasons ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.contact-info__list li {
  display: grid;
  grid-template-columns: 2.9rem 1fr;
  gap: 0.9rem;
  align-items: start;
}

.contact-info__icon {
  display: inline-grid;
  place-items: center;
  width: 2.9rem;
  height: 2.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border-radius: 16px;
  font-size: 1.45rem;
}

.contact-info__list strong,
.contact-info__reasons h3 {
  display: block;
  margin-bottom: 0.25rem;
  color: #344255;
}

.contact-info__list a,
.contact-info__list span,
.contact-info__reasons li {
  color: #64748b;
  line-height: 1.7;
}

.contact-info__reasons {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.contact-info__reasons li {
  position: relative;
  padding-left: 1rem;
}

.contact-info__reasons li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #d85a30;
  border-radius: 999px;
}

.contact-info__response {
  margin-top: 1.75rem;
  padding: 1rem 1.1rem;
  color: #ffffff;
  background: rgba(52, 66, 85, 0.92);
  border-radius: 14px;
}

.contact-form-wrap {
  display: grid;
  gap: 1.5rem;
}

.contact-form__field {
  position: relative;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form__grid {
  display: grid;
  gap: 1rem;
}

.contact-form .form-group {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  color: #344255;
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form .form-control {
  width: 100%;
  min-height: 3.3rem;
  padding: 0.9rem 1rem;
  color: #344255;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form .form-control:focus {
  outline: none;
  border-color: rgba(216, 90, 48, 0.55);
  box-shadow: 0 0 0 4px rgba(216, 90, 48, 0.12);
}

.contact-form__global-error {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  color: #991b1b;
  background: rgba(254, 242, 242, 0.98);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: 16px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .form-select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #344255 50%), linear-gradient(135deg, #344255 50%, transparent 50%);
  background-position: calc(100% - 1.25rem) calc(50% - 2px), calc(100% - 0.95rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form .form-textarea {
  min-height: 10rem;
  resize: vertical;
}

.contact-form .form-check label {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.8rem;
  align-items: start;
  font-weight: 500;
  color: #1e293b;
}

.contact-form .form-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: #d85a30;
}

.contact-form .form-error {
  color: #dc2626;
  font-size: 0.88rem;
}

.contact-form__error {
  margin: 0;
}

.contact-form .has-error .form-control {
  border-color: rgba(220, 38, 38, 0.5);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.contact-form__actions .btn {
  min-width: 13rem;
  min-height: 3.4rem;
  padding-inline: 1.4rem;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 700;
}

.contact-confirmation {
  display: grid;
  gap: 0.8rem;
  justify-items: start;
}

.contact-confirmation__icon {
  display: inline-grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  color: #ffffff;
  background: #d85a30;
  border-radius: 18px;
  font-size: 1.6rem;
}

.contact-success {
  display: grid;
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.contact-success h1 {
  margin: 0;
  color: #344255;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.contact-success p {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
}

.contact-success__icon {
  display: inline-grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto;
  color: #ffffff;
  background: #d85a30;
  border-radius: 22px;
  font-size: 2rem;
  box-shadow: 0 16px 34px rgba(216, 90, 48, 0.22);
}

.contact-success__reference {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
}

.contact-success__reference span {
  color: #64748b;
  font-size: 0.92rem;
}

.contact-success__reference strong {
  color: #344255;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.contact-success__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.contact-faq__items {
  display: grid;
  gap: 0.85rem;
}

.contact-faq__item {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
}

.contact-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: #344255;
  font-weight: 700;
  text-align: left;
  border: none;
}

.contact-faq__question .material-symbols-rounded {
  transition: transform 180ms ease;
}

.contact-faq__question[aria-expanded=true] .material-symbols-rounded {
  transform: rotate(180deg);
}

.contact-faq__answer {
  padding: 0 1.1rem 1rem;
  color: #64748b;
  line-height: 1.7;
}

.contact-cta {
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem;
  color: #ffffff;
  background: #344255;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(52, 66, 85, 0.2);
}

.contact-cta h2 {
  margin-bottom: 0.55rem;
  color: #ffffff;
  font-size: clamp(1.7rem, 4vw, 2.3rem);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-cta__actions .btn {
  min-height: 3.3rem;
  padding-inline: 1.3rem;
  font-weight: 700;
}

.contact-cta__actions .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.45);
}

.contact-cta__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .contact-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-form__grid > .trial-activity-other {
    grid-column: span 2;
  }
}
@media (min-width: 960px) {
  .contact-page {
    padding: 4rem 0 6rem;
  }
  .contact-layout {
    grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
    gap: 2rem;
  }
  .contact-info,
  .contact-form,
  .contact-faq,
  .contact-confirmation {
    padding: 2rem;
  }
  .contact-info {
    position: sticky;
    top: 6.5rem;
  }
  .contact-cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 2rem;
  }
}
@media (max-width: 767.98px) {
  .contact-success__actions {
    flex-direction: column;
  }
  .contact-success__actions .btn {
    width: 100%;
  }
}
.construction-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 2rem 0 1.5rem;
  background: #f8f9fb;
}

.construction-page__inner {
  display: grid;
  flex: 1;
  place-items: center;
}

.construction-card {
  display: grid;
  justify-items: center;
  gap: 1.35rem;
  width: min(100%, 42rem);
  padding: 2rem 1.5rem;
  text-align: center;
  animation: construction-fade-in 320ms ease-out;
}

.construction-card__logo {
  width: min(100%, 11.25rem);
  height: auto;
  animation: construction-float 3.6s ease-in-out infinite;
}

.construction-card__copy h1 {
  margin-bottom: 1rem;
  color: #344255;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
}

.construction-card__copy p {
  margin-bottom: 0.85rem;
  color: #64748b;
  font-size: 1.04rem;
  line-height: 1.8;
}

.construction-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.45rem 0.9rem;
  color: #d85a30;
  background: rgba(216, 90, 48, 0.1);
  border: 1px solid rgba(216, 90, 48, 0.15);
  border-radius: 999px;
  font-weight: 700;
}

.construction-card__contact {
  min-height: 3.15rem;
  padding-inline: 1.25rem;
  border-radius: 999px;
  font-weight: 700;
}

.construction-page__footer {
  padding-top: 1rem;
  color: #64748b;
  text-align: center;
}

@keyframes construction-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes construction-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
.legal-container {
  width: min(100% - 2rem, 860px);
}

.legal-hero {
  padding-bottom: 2rem;
}

.legal-meta {
  margin-bottom: 1rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 600;
}

.legal-sheet {
  display: grid;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
}

.legal-block {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.legal-block h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.legal-block h3 {
  margin: 1.25rem 0 0.75rem;
  color: #344255;
  font-size: 1rem;
}

.legal-block p:last-child,
.legal-list:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 1.15rem;
  color: #64748b;
}

.legal-list li + li {
  margin-top: 0.7rem;
}

.legal-block a {
  color: #d85a30;
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-sheet {
    padding: 2rem;
  }
  .legal-block {
    padding: 1.75rem;
  }
}
.support-wallet-hero .container {
  display: grid;
  gap: 1.5rem;
}

.support-wallet-page {
  padding: 0 0 5rem;
}

.support-wallet-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f7f9fc;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
}

.support-wallet-sections {
  display: grid;
  gap: 1rem;
}

.support-topic,
.support-contact-card {
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
}

.support-topic h2,
.support-contact-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.support-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #64748b;
}

.support-list li + li {
  margin-top: 0.75rem;
}

.support-contact-link {
  color: #d85a30;
  font-weight: 700;
}

.support-note {
  margin-bottom: 0;
  color: #64748b;
  font-size: 0.95rem;
}

@media (min-width: 960px) {
  .support-wallet-card {
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.85fr);
    align-items: start;
  }
}

/*# sourceMappingURL=app.css.map */
