/* ==========================================================================
   beDots QR Menu — Marketing Landing
   beDots LLC brand: navy #004080 + green #18B078 · EN/AR · Mobile-first
   Expects: Syne / Manrope (LTR) + Noto Sans Arabic (RTL)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Design tokens — mapped to existing teal/copper/sand class hooks
   -------------------------------------------------------------------------- */
:root {
  /* Navy scale (was teal) */
  --lp-teal-950: #021833;
  --lp-teal-900: #032a52;
  --lp-teal-800: #00366d;
  --lp-teal-700: #004080;
  --lp-teal-600: #0054a6;
  --lp-teal-500: #1a6fc0;
  --lp-teal-400: #4d91d4;
  --lp-teal-300: #8bb6e3;
  --lp-teal-200: #c5d9f0;

  /* Green accent (was copper) */
  --lp-copper-700: #0f7a52;
  --lp-copper-600: #149966;
  --lp-copper-500: #18b078;
  --lp-copper-400: #3fc492;
  --lp-copper-300: #7dd9b5;

  /* Cool neutrals (was warm sand) */
  --lp-sand-50: #f4f7fb;
  --lp-sand-100: #e8eef6;
  --lp-sand-200: #d4dee9;
  --lp-sand-300: #b5c4d4;
  --lp-sand-400: #8fa3b8;
  --lp-sand-500: #6b8094;

  --lp-font-sans: "Syne", "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --lp-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --lp-font-ar: "Noto Sans Arabic", "Manrope", system-ui, sans-serif;

  --lp-text-xs: 0.75rem;
  --lp-text-sm: 0.875rem;
  --lp-text-base: 1rem;
  --lp-text-lg: 1.125rem;
  --lp-text-xl: 1.25rem;
  --lp-text-2xl: 1.5rem;
  --lp-text-3xl: 1.875rem;
  --lp-text-4xl: 2.25rem;
  --lp-text-5xl: 3rem;
  --lp-text-6xl: 3.75rem;

  --lp-radius-sm: 0.375rem;
  --lp-radius-md: 0.625rem;
  --lp-radius-lg: 1rem;
  --lp-radius-xl: 1.5rem;
  --lp-radius-2xl: 2rem;
  --lp-radius-full: 9999px;

  --lp-container: 75rem;
  --lp-container-narrow: 56rem;
  --lp-header-height: 4.5rem;

  --lp-bg: var(--lp-sand-50);
  --lp-bg-elevated: #ffffff;
  --lp-bg-muted: var(--lp-sand-100);
  --lp-text: #0b1a2e;
  --lp-text-secondary: #2c4058;
  --lp-text-muted: #5a7188;
  --lp-border: rgba(0, 64, 128, 0.12);

  --lp-primary: var(--lp-teal-700);
  --lp-primary-dark: var(--lp-teal-900);
  --lp-accent: var(--lp-copper-500);

  --lp-shadow-sm: 0 1px 3px rgba(2, 24, 51, 0.06);
  --lp-shadow-md: 0 8px 24px rgba(2, 24, 51, 0.08);
  --lp-shadow-lg: 0 20px 48px rgba(2, 24, 51, 0.12);
  --lp-shadow-glow: 0 0 80px rgba(24, 176, 120, 0.18);

  --lp-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --lp-hero-gradient: linear-gradient(
    145deg,
    #021833 0%,
    #00366d 38%,
    #004080 62%,
    #032a52 100%
  );
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.lp-body {
  margin: 0;
  font-family: var(--lp-font-body);
  font-size: var(--lp-text-base);
  line-height: 1.6;
  color: var(--lp-text);
  background: var(--lp-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body.lp-body {
  font-family: var(--lp-font-ar);
}

body.lp-body img,
body.lp-body svg {
  display: block;
  max-width: 100%;
}

body.lp-body a {
  color: var(--lp-primary);
  text-decoration: none;
  transition: color var(--lp-transition);
}

body.lp-body a:hover {
  color: var(--lp-teal-800);
}

/* Buttons used as links must keep their own label colors */
body.lp-body a.lp-btn,
body.lp-body a.lp-btn:hover {
  text-decoration: none;
}

body.lp-body a.lp-btn--primary,
body.lp-body a.lp-btn--primary:hover,
body.lp-body a.lp-btn--accent,
body.lp-body a.lp-btn--accent:hover {
  color: #fff !important;
}

body.lp-body a.lp-btn--outline {
  color: var(--lp-primary);
}

body.lp-body a.lp-btn--outline:hover {
  color: var(--lp-primary-dark);
}

/* Outline CTAs on dark surfaces need white labels */
body.lp-body .lp-hero a.lp-btn--outline,
body.lp-body .lp-hero a.lp-btn--outline:hover,
body.lp-body .lp-price-card--custom a.lp-btn--outline,
body.lp-body .lp-price-card--custom a.lp-btn--outline:hover,
body.lp-body .lp-scene a.lp-btn--outline,
body.lp-body .lp-scene a.lp-btn--outline:hover {
  color: #fff !important;
}

body.lp-body a.lp-btn--ghost,
body.lp-body a.lp-btn--ghost:hover {
  color: inherit;
}

body.lp-body :focus-visible {
  outline: 2px solid var(--lp-teal-500);
  outline-offset: 2px;
}

.lp-container {
  width: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-container--narrow {
  max-width: var(--lp-container-narrow);
}

/* --------------------------------------------------------------------------
   Header / Nav
   -------------------------------------------------------------------------- */
.lp-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--lp-header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--lp-border);
  transition: box-shadow var(--lp-transition), background var(--lp-transition), border-color var(--lp-transition);
}

.lp-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--lp-shadow-sm);
}

.lp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--lp-container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--lp-font-sans);
  font-weight: 800;
  font-size: var(--lp-text-xl);
  letter-spacing: -0.03em;
  color: var(--lp-text);
}

.lp-brand:hover {
  color: var(--lp-text);
}

.lp-brand__logo {
  height: 2.15rem;
  width: auto;
  max-width: min(9.5rem, 42vw);
  object-fit: contain;
  display: block;
}

.lp-brand__mark {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--lp-radius-md);
  background: linear-gradient(135deg, var(--lp-teal-600), var(--lp-copper-500));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: var(--lp-text-sm);
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0, 64, 128, 0.25);
  overflow: hidden;
}

.lp-brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-brand__dots {
  color: var(--lp-accent);
}

.lp-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lp-nav__list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-nav__link {
  font-size: var(--lp-text-sm);
  font-weight: 600;
  color: var(--lp-text-secondary);
  transition: color var(--lp-transition);
}

.lp-nav__link:hover {
  color: var(--lp-primary);
}

.lp-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.lp-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-md);
  background: var(--lp-bg-elevated);
  color: var(--lp-text);
  cursor: pointer;
}

.lp-menu-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.375rem;
  font-family: inherit;
  font-size: var(--lp-text-sm);
  font-weight: 700;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--lp-radius-full);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--lp-transition), color var(--lp-transition), border-color var(--lp-transition), box-shadow var(--lp-transition), transform 80ms ease;
}

.lp-btn:active {
  transform: scale(0.98);
}

.lp-btn--primary {
  background: var(--lp-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 64, 128, 0.32);
}

.lp-btn--primary:hover {
  background: var(--lp-teal-800);
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 64, 128, 0.4);
}

.lp-btn--accent {
  background: var(--lp-accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(24, 176, 120, 0.35);
}

.lp-btn--accent:hover {
  background: var(--lp-copper-700);
  color: #fff;
  box-shadow: 0 12px 28px rgba(15, 122, 82, 0.4);
}

.lp-btn--outline {
  background: transparent;
  color: var(--lp-primary);
  border-color: var(--lp-primary);
}

.lp-btn--outline:hover {
  background: rgba(10, 107, 108, 0.06);
}

.lp-btn--ghost {
  background: transparent;
  color: var(--lp-text-secondary);
  border-color: transparent;
}

.lp-btn--ghost:hover {
  color: var(--lp-primary);
  background: rgba(0, 64, 128, 0.06);
}

.lp-btn--lg {
  padding: 1rem 1.75rem;
  font-size: var(--lp-text-base);
}

.lp-btn--sm {
  padding: 0.5rem 1rem;
  font-size: var(--lp-text-xs);
}

/* --------------------------------------------------------------------------
   Hero — full-bleed navy brand plane
   -------------------------------------------------------------------------- */
.lp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-block: calc(var(--lp-header-height) + 3rem) 4rem;
  overflow: hidden;
  background: var(--lp-hero-gradient);
  color: #fff;
}

.lp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 78% 42%, rgba(24, 176, 120, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 18% 28%, rgba(26, 111, 192, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 60% 90%, rgba(24, 176, 120, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.lp-hero::after {
  content: "";
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 8rem;
  background: linear-gradient(to top, var(--lp-bg), transparent);
  pointer-events: none;
}

.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.lp-hero__brand-lockup {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.9rem;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 8px 28px rgba(2, 24, 51, 0.25);
}

.lp-hero__brand-lockup img {
  height: clamp(2.25rem, 5vw, 3.25rem);
  width: auto;
  max-width: min(16rem, 80vw);
  object-fit: contain;
}

.lp-hero__badge {
  display: none;
}

[dir="rtl"] .lp-hero__badge {
  padding: 0.375rem 0.5rem 0.375rem 0.875rem;
}

.lp-hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: var(--lp-radius-full);
  background: var(--lp-accent);
  animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.lp-hero__title {
  margin: 0 0 1.25rem;
  font-family: var(--lp-font-sans);
  font-size: clamp(2.25rem, 4.5vw + 1rem, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
}

.lp-hero__title .lp-highlight {
  background: linear-gradient(135deg, var(--lp-copper-400), var(--lp-copper-300));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lp-hero__title .lp-brand-name {
  display: none;
}

.lp-hero__subtitle {
  margin: 0 0 2rem;
  max-width: 32rem;
  font-size: clamp(var(--lp-text-base), 1.5vw + 0.5rem, var(--lp-text-xl));
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.lp-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.lp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.lp-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--lp-text-sm);
  color: rgba(255, 255, 255, 0.7);
}

.lp-hero__trust-item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--lp-copper-400);
}

.lp-hero .lp-btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.lp-hero .lp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: #fff;
  color: #fff;
}

.lp-hero .lp-btn--primary {
  background: var(--lp-copper-500);
}

.lp-hero .lp-btn--primary:hover {
  background: var(--lp-copper-600);
}

.lp-hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 30rem;
}

.lp-hero__art {
  position: relative;
  width: min(100%, 30rem);
  z-index: 1;
}

.lp-hero__vector {
  display: block;
  width: 100%;
  height: auto;
  animation: lp-hero-float 6s ease-in-out infinite;
}

@keyframes lp-hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.55rem); }
}

.lp-hero__qr-float {
  position: absolute;
  inset-block-end: 8%;
  inset-inline-end: 0;
  width: 6.75rem;
  padding: 0.5rem 0.5rem 0.35rem;
  background: #fff;
  border-radius: var(--lp-radius-lg);
  box-shadow: 0 14px 36px rgba(2, 24, 51, 0.35);
  text-decoration: none;
  color: var(--lp-text);
  text-align: center;
  z-index: 2;
  transition: transform var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-hero__qr-float:hover {
  color: var(--lp-text);
  box-shadow: 0 18px 40px rgba(2, 24, 51, 0.4);
  transform: translateY(-0.2rem) scale(1.03);
}

[dir="rtl"] .lp-hero__qr-float {
  inset-inline-end: auto;
  inset-inline-start: 0;
}

.lp-hero__qr-float img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.35rem;
}

.lp-hero__qr-caption {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-primary);
}

/* --------------------------------------------------------------------------
   Section shared
   -------------------------------------------------------------------------- */
.lp-section {
  padding-block: 5rem;
}

.lp-section--muted {
  background: var(--lp-bg-muted);
}

.lp-section--dark {
  background: linear-gradient(180deg, var(--lp-teal-950) 0%, var(--lp-teal-900) 100%);
  color: #fff;
}

.lp-section__header {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.lp-section__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-size: var(--lp-text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--lp-accent);
}

.lp-section--dark .lp-section__eyebrow {
  color: var(--lp-copper-300);
}

.lp-section__title {
  margin: 0 0 1rem;
  font-size: clamp(var(--lp-text-2xl), 3vw + 0.5rem, var(--lp-text-4xl));
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lp-section__subtitle {
  margin: 0;
  font-size: var(--lp-text-lg);
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-section--dark .lp-section__subtitle {
  color: rgba(255, 255, 255, 0.72);
}

/* --------------------------------------------------------------------------
   Audience — restaurants / cafés / bakeries
   -------------------------------------------------------------------------- */
.lp-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-audience__item {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.lp-audience__media {
  margin-bottom: 1.25rem;
  border-radius: var(--lp-radius-xl);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: var(--lp-sand-200);
  box-shadow: var(--lp-shadow-md);
}

.lp-audience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.lp-audience__item:hover .lp-audience__media img {
  transform: scale(1.04);
}

.lp-audience__title {
  margin: 0 0 0.5rem;
  font-family: var(--lp-font-sans);
  font-size: var(--lp-text-xl);
  font-weight: 800;
  color: var(--lp-text);
}

.lp-audience__text {
  margin: 0;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Flow — table to kitchen
   -------------------------------------------------------------------------- */
.lp-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.lp-flow__step {
  padding: 1.5rem 1.25rem;
  border-radius: var(--lp-radius-xl);
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
}

.lp-flow__num {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: var(--lp-radius-full);
  background: linear-gradient(135deg, #004080, #18b078);
  color: #fff;
  font-weight: 800;
  font-size: var(--lp-text-sm);
  display: grid;
  place-items: center;
}

.lp-flow__title {
  margin: 0 0 0.5rem;
  font-size: var(--lp-text-lg);
  font-weight: 700;
}

.lp-flow__text {
  margin: 0;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Scene band
   -------------------------------------------------------------------------- */
.lp-scene {
  position: relative;
  min-height: 28rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.lp-scene__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.lp-scene__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(2, 24, 51, 0.88) 0%, rgba(0, 64, 128, 0.72) 55%, rgba(15, 122, 82, 0.45) 100%);
}

.lp-scene__content {
  position: relative;
  z-index: 1;
  padding-block: 4.5rem;
  max-width: 40rem;
}

.lp-scene .lp-section__eyebrow {
  color: var(--lp-copper-300);
}

.lp-scene__title {
  margin: 0 0 1rem;
  font-family: var(--lp-font-sans);
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.lp-scene__sub {
  margin: 0 0 1.75rem;
  font-size: var(--lp-text-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-feature {
  padding: 2rem;
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-sm);
  transition: box-shadow var(--lp-transition), transform var(--lp-transition);
}

.lp-feature:hover {
  box-shadow: var(--lp-shadow-md);
  transform: translateY(-4px);
}

.lp-feature__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.25rem;
  border-radius: var(--lp-radius-md);
  background: linear-gradient(135deg, rgba(10, 107, 108, 0.12), rgba(184, 115, 51, 0.1));
  color: var(--lp-teal-700);
  display: grid;
  place-items: center;
}

.lp-feature__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.lp-feature__title {
  margin: 0 0 0.625rem;
  font-size: var(--lp-text-lg);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-feature__text {
  margin: 0;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* Feature showcase (alternating) */
.lp-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.lp-showcase:last-child {
  margin-bottom: 0;
}

.lp-showcase--reverse {
  direction: ltr;
}

[dir="rtl"] .lp-showcase--reverse {
  direction: rtl;
}

.lp-showcase--reverse .lp-showcase__content {
  order: 2;
}

.lp-showcase--reverse .lp-showcase__visual {
  order: 1;
}

.lp-showcase__content h3 {
  margin: 0 0 1rem;
  font-size: var(--lp-text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-showcase__content p {
  margin: 0 0 1.5rem;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

.lp-showcase__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.75rem;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-secondary);
}

.lp-showcase__list li svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--lp-teal-600);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.lp-showcase__visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--lp-radius-2xl);
  background: linear-gradient(145deg, var(--lp-sand-100), #e8f4f4);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  box-shadow: var(--lp-shadow-md);
}

.lp-showcase__visual-inner {
  position: absolute;
  inset: 10%;
  border-radius: var(--lp-radius-lg);
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
  display: grid;
  place-items: center;
  font-size: var(--lp-text-4xl);
  font-weight: 800;
  color: var(--lp-teal-700);
  letter-spacing: -0.04em;
}

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.lp-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-block: 1px solid var(--lp-border);
}

.lp-stat-item {
  text-align: center;
}

.lp-stat-item__value {
  font-size: var(--lp-text-4xl);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--lp-teal-700);
  line-height: 1;
}

.lp-stat-item__label {
  margin-top: 0.5rem;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.lp-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.lp-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--lp-bg-elevated);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-xl);
  box-shadow: var(--lp-shadow-sm);
  transition: box-shadow var(--lp-transition), transform var(--lp-transition);
}

.lp-price-card:hover {
  box-shadow: var(--lp-shadow-md);
}

.lp-price-card--featured {
  border-color: var(--lp-teal-600);
  box-shadow: var(--lp-shadow-md), 0 0 0 1px rgba(10, 107, 108, 0.1);
  transform: scale(1.03);
}

.lp-price-card--featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.lp-price-card__badge {
  position: absolute;
  inset-block-start: -0.75rem;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  padding: 0.25rem 0.875rem;
  background: linear-gradient(135deg, var(--lp-teal-600), var(--lp-copper-500));
  color: #fff;
  font-size: var(--lp-text-xs);
  font-weight: 700;
  border-radius: var(--lp-radius-full);
  white-space: nowrap;
}

[dir="rtl"] .lp-price-card__badge {
  transform: translateX(50%);
}

.lp-price-card__name {
  margin: 0 0 0.5rem;
  font-size: var(--lp-text-lg);
  font-weight: 700;
}

.lp-price-card__desc {
  margin: 0 0 1.5rem;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
}

.lp-price-card__amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.lp-price-card__currency {
  font-size: var(--lp-text-xl);
  font-weight: 700;
  color: var(--lp-text-muted);
}

.lp-price-card__value {
  font-size: var(--lp-text-5xl);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--lp-teal-900);
  line-height: 1;
}

.lp-price-card__period {
  font-size: var(--lp-text-sm);
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-price-card__features {
  flex: 1;
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
}

.lp-price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.5rem 0;
  font-size: var(--lp-text-sm);
  color: var(--lp-text-secondary);
  border-bottom: 1px solid var(--lp-border);
}

.lp-price-card__features li:last-child {
  border-bottom: none;
}

.lp-price-card__features li svg {
  width: 1rem;
  height: 1rem;
  color: var(--lp-teal-600);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.lp-price-card__features li.is-muted {
  color: var(--lp-text-muted);
  opacity: 0.65;
}

.lp-price-card__features li.is-muted svg {
  color: var(--lp-sand-500);
}

.lp-price-card .lp-btn {
  width: 100%;
  margin-top: auto;
  min-height: 3.15rem;
  padding: 1rem 1.5rem;
  font-size: var(--lp-text-base);
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 0.9rem;
}

.lp-price-card .lp-btn--primary {
  background: linear-gradient(135deg, #0054a6 0%, #004080 100%);
  border: none;
  box-shadow: 0 10px 24px rgba(0, 64, 128, 0.35);
}

.lp-price-card .lp-btn--primary:hover {
  background: linear-gradient(135deg, #0060b8 0%, #00366d 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 64, 128, 0.42);
}

.lp-price-card .lp-btn--accent {
  background: linear-gradient(135deg, #3fc492 0%, #18b078 100%);
  border: none;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(24, 176, 120, 0.4);
}

.lp-price-card .lp-btn--accent:hover {
  background: linear-gradient(135deg, #18b078 0%, #0f7a52 100%);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 122, 82, 0.45);
}

.lp-price-card--custom {
  background: linear-gradient(160deg, #032a52 0%, #004080 55%, #0f7a52 140%);
  border: none;
  color: #fff;
}

.lp-price-card--custom .lp-price-card__name,
.lp-price-card--custom .lp-price-card__desc {
  color: #fff;
}

.lp-price-card--custom .lp-price-card__desc {
  opacity: 0.85;
}

.lp-price-card__custom-body {
  flex: 1;
  margin: 0 0 1.75rem;
  font-size: var(--lp-text-base);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.lp-price-card--custom .lp-btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.1);
}

.lp-price-card--custom .lp-btn--outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.lp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lp-testimonial {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--lp-radius-xl);
  backdrop-filter: blur(8px);
}

.lp-testimonial__stars {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 1rem;
  color: var(--lp-copper-400);
}

.lp-testimonial__stars svg {
  width: 1rem;
  height: 1rem;
  fill: currentColor;
}

.lp-testimonial__quote {
  margin: 0 0 1.25rem;
  font-size: var(--lp-text-sm);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.lp-testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lp-testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--lp-radius-full);
  background: linear-gradient(135deg, var(--lp-teal-500), var(--lp-copper-500));
  display: grid;
  place-items: center;
  font-size: var(--lp-text-sm);
  font-weight: 700;
  color: #fff;
}

.lp-testimonial__name {
  font-size: var(--lp-text-sm);
  font-weight: 700;
}

.lp-testimonial__role {
  font-size: var(--lp-text-xs);
  color: rgba(255, 255, 255, 0.55);
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.lp-cta-band {
  position: relative;
  padding: 4rem 2rem;
  border-radius: var(--lp-radius-2xl);
  background: linear-gradient(135deg, var(--lp-teal-800) 0%, var(--lp-teal-950) 50%, #1a3a2e 100%);
  text-align: center;
  overflow: hidden;
}

.lp-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(184, 115, 51, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(61, 184, 185, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.lp-cta-band__inner {
  position: relative;
  z-index: 1;
}

.lp-cta-band h2 {
  margin: 0 0 1rem;
  font-size: clamp(var(--lp-text-2xl), 3vw, var(--lp-text-3xl));
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.lp-cta-band p {
  margin: 0 auto 2rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--lp-text-lg);
}

.lp-cta-band .lp-btn--accent {
  box-shadow: 0 8px 24px rgba(184, 115, 51, 0.35);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.lp-footer {
  padding-block: 4rem 2rem;
  background: var(--lp-teal-950);
  color: rgba(255, 255, 255, 0.75);
}

.lp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.lp-footer__brand {
  font-size: var(--lp-text-xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.lp-footer__brand img {
  height: 2rem;
  width: auto;
  max-width: 9rem;
  object-fit: contain;
  margin-bottom: 0.25rem;
  padding: 0.45rem 0.65rem;
  background: #fff;
  border-radius: var(--lp-radius-md);
}

.lp-footer__brand span {
  color: var(--lp-copper-400);
}

.lp-footer__tagline {
  margin: 0 0 1.25rem;
  font-size: var(--lp-text-sm);
  line-height: 1.65;
  max-width: 22rem;
}

.lp-footer__contact {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--lp-text-sm);
  line-height: 1.7;
}

.lp-footer__contact li {
  margin-bottom: 0.4rem;
}

.lp-footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.lp-footer__contact a:hover {
  color: var(--lp-copper-300);
}

.lp-contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.lp-contact__item {
  margin-bottom: 1.25rem;
}

.lp-contact__label {
  display: block;
  font-size: var(--lp-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lp-text-muted);
  margin-bottom: 0.35rem;
}

.lp-contact__value {
  margin: 0;
  font-size: var(--lp-text-base);
  color: var(--lp-text);
  line-height: 1.55;
}

.lp-contact__value a {
  color: var(--lp-primary);
  text-decoration: none;
  font-weight: 600;
}

.lp-contact__value a:hover {
  color: var(--lp-accent);
}

.lp-contact__map-note {
  padding: 1.5rem;
  border-radius: var(--lp-radius-xl);
  background: linear-gradient(145deg, var(--lp-teal-900), var(--lp-teal-700));
  color: #fff;
}

.lp-contact__map-note h3 {
  margin: 0 0 0.5rem;
  font-family: var(--lp-font-sans);
  font-size: var(--lp-text-xl);
  font-weight: 800;
}

.lp-contact__map-note p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--lp-text-sm);
}

@media (max-width: 768px) {
  .lp-contact {
    grid-template-columns: 1fr;
  }
}

.lp-footer__social {
  display: flex;
  gap: 0.625rem;
}

.lp-footer__social a {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--lp-radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: background var(--lp-transition), color var(--lp-transition);
}

.lp-footer__social a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.lp-footer__social svg {
  width: 1rem;
  height: 1rem;
}

.lp-footer__heading {
  margin: 0 0 1.25rem;
  font-size: var(--lp-text-sm);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lp-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-footer__links li {
  margin-bottom: 0.625rem;
}

.lp-footer__links a {
  font-size: var(--lp-text-sm);
  color: rgba(255, 255, 255, 0.65);
  transition: color var(--lp-transition);
}

.lp-footer__links a:hover {
  color: var(--lp-copper-300);
}

.lp-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--lp-text-sm);
}

.lp-footer__bottom a {
  color: rgba(255, 255, 255, 0.55);
}

.lp-footer__bottom a:hover {
  color: #fff;
}

.lp-powered {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.lp-powered a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.lp-powered a:hover {
  color: var(--lp-copper-300, #18B078);
  text-decoration: underline;
}

.lp-footer__lang {
  display: flex;
  gap: 0.5rem;
}

.lp-footer__lang a {
  padding: 0.25rem 0.625rem;
  border-radius: var(--lp-radius-sm);
  font-size: var(--lp-text-xs);
  font-weight: 600;
}

.lp-footer__lang a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* --------------------------------------------------------------------------
   Mobile nav drawer
   -------------------------------------------------------------------------- */
.lp-mobile-nav {
  display: none;
  position: fixed;
  inset-block-start: var(--lp-header-height);
  inset-inline: 0;
  bottom: 0;
  z-index: 99;
  background: var(--lp-bg-elevated);
  padding: 1.5rem;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--lp-transition), opacity var(--lp-transition), visibility var(--lp-transition);
  overflow-y: auto;
}

.lp-mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lp-mobile-nav__list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.lp-mobile-nav__list li {
  border-bottom: 1px solid var(--lp-border);
}

.lp-mobile-nav__list a {
  display: block;
  padding: 1rem 0;
  font-size: var(--lp-text-lg);
  font-weight: 600;
  color: var(--lp-text);
}

.lp-mobile-nav__actions {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.lp-mobile-nav__actions .lp-btn {
  width: 100%;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lp-hero__subtitle {
    margin-inline: auto;
  }

  .lp-hero__cta {
    justify-content: center;
  }

  .lp-hero__trust {
    justify-content: center;
  }

  .lp-hero__visual {
    order: -1;
  }

  .lp-features,
  .lp-pricing,
  .lp-testimonials,
  .lp-audience {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-flow {
    grid-template-columns: 1fr 1fr;
  }

  .lp-audience__item:last-child {
    grid-column: 1 / -1;
    max-width: 28rem;
    margin-inline: auto;
  }

  .lp-stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .lp-price-card--featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  .lp-nav__list,
  .lp-nav__actions {
    display: none;
  }

  .lp-menu-toggle {
    display: inline-flex;
  }

  .lp-mobile-nav {
    display: block;
  }

  .lp-hero {
    min-height: auto;
    padding-block: calc(var(--lp-header-height) + 2rem) 3rem;
  }

  .lp-hero__visual {
    min-height: 0;
    margin-top: 0.5rem;
  }

  .lp-hero__art {
    width: min(100%, 22rem);
  }

  .lp-hero__vector {
    animation: none;
  }

  .lp-section {
    padding-block: 3.5rem;
  }

  .lp-features,
  .lp-pricing,
  .lp-testimonials,
  .lp-audience {
    grid-template-columns: 1fr;
  }

  .lp-flow {
    grid-template-columns: 1fr 1fr;
  }

  .lp-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .lp-footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .lp-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .lp-container,
  .lp-header__inner {
    padding-inline: 1rem;
  }

  .lp-hero__cta {
    flex-direction: column;
  }

  .lp-hero__cta .lp-btn {
    width: 100%;
  }

  .lp-cta-band {
    padding: 3rem 1.25rem;
    border-radius: var(--lp-radius-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
