﻿:root {
  color-scheme: light;
  --ink: #181312;
  --muted: #746764;
  --line: #eadfda;
  --paper: #fbf7f2;
  --white: #ffffff;
  --red: #c81724;
  --red-dark: #7d1119;
  --coral: #ef4b3e;
  --cream: #fff3e6;
  --gold: #d99b45;
  --rose: #ffe8e4;
  --charcoal: #17100f;
  --shadow: 0 18px 45px rgba(55, 28, 23, 0.12);
}

.business-logo.has-image,
.bistro-logo-frame.has-image,
.restobar-logo.has-image,
.premium-business-logo.has-image {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.business-logo.has-image img,
.bistro-logo-frame.has-image img,
.restobar-logo.has-image img,
.premium-business-logo.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.restobar-all-tabs {
  justify-content: flex-start;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.site-header {
  position: fixed;
  top: 16px;
  left: clamp(14px, 4vw, 48px);
  right: clamp(14px, 4vw, 48px);
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: var(--white);
  background: rgba(23, 16, 15, 0.72);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.brand,
.hero-actions,
.hero-proof,
.business-card,
.footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  padding: 0;
  border-radius: 8px;
}

.brand-logo-img {
  display: block;
  width: auto;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.32));
}

.brand-mark,
.business-logo {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(200, 23, 36, 0.22);
}

.brand .brand-mark {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--red), var(--coral));
}

.brand-mark svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.1;
}

.brand-mark svg path:first-child {
  fill: rgba(255, 255, 255, 0.14);
}

.brand-word {
  color: rgba(255, 255, 255, 0.96);
  font-family: "Audiowide", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(0.98rem, 2vw, 1.14rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.menu-toggle {
  display: inline-grid;
  gap: 5px;
  width: 44px;
  height: 44px;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-panel {
  position: absolute;
  top: 68px;
  right: 0;
  display: grid;
  min-width: min(280px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(23, 16, 15, 0.97);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.nav-panel a {
  display: inline-flex;
  align-items: center;
  padding: 13px 14px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 850;
}

.nav-panel a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-panel .nav-cta {
  margin-top: 6px;
  color: var(--white);
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  overflow: hidden;
  padding: 120px clamp(18px, 6vw, 86px) clamp(52px, 8vw, 90px);
  color: var(--white);
  background: var(--charcoal);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 8, 8, 0.16) 0%, rgba(12, 8, 8, 0.28) 42%, rgba(12, 8, 8, 0.82) 78%, rgba(12, 8, 8, 0.96) 100%),
    linear-gradient(90deg, rgba(12, 8, 8, 0.62), transparent 58%);
  pointer-events: none;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 22px 0 0;
}

.section-kicker,
.model-label,
.badge {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .section-kicker {
  color: #ffb3ab;
}

.hero-lead {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.7vw, 1.15rem);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 32px rgba(200, 23, 36, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.floating-whatsapp {
  position: fixed;
  left: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.26), 0 0 0 8px rgba(37, 211, 102, 0.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.94);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease, visibility 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.32), 0 0 0 10px rgba(37, 211, 102, 0.16);
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  display: block;
}

.hero-proof {
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.hero-proof span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-visual {
  min-height: 610px;
  display: grid;
  place-items: center;
}

.hero-video-mockup {
  display: block;
  width: min(560px, 100%);
  max-height: 640px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.34);
}

.phone-preview {
  position: relative;
  width: min(340px, 76vw);
  min-height: 640px;
  padding: 14px;
  border: 10px solid #0c0808;
  border-radius: 36px;
  background: #120c0b;
  box-shadow: 0 42px 100px rgba(0, 0, 0, 0.44);
  transform: rotate(0deg);
  animation: phoneFloat 5.6s ease-in-out infinite;
}

.phone-preview::before {
  content: "";
  position: absolute;
  inset: -34px;
  z-index: -1;
  border-radius: 46px;
  background: linear-gradient(135deg, rgba(200, 23, 36, 0.28), rgba(217, 155, 69, 0.18));
  filter: blur(18px);
}

.phone-notch {
  display: block;
  width: 86px;
  height: 7px;
  margin: 4px auto 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
}

.phone-screen {
  min-height: 560px;
  overflow: hidden;
  padding: 18px;
  border-radius: 24px;
  color: var(--ink);
  background: var(--paper);
}

.business-profile-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 0 12px;
}

.business-profile-mini > span {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 950;
}

.business-profile-mini strong,
.business-profile-mini small {
  display: block;
}

.business-profile-mini small {
  color: var(--muted);
}

.mini-actions,
.mini-tabs {
  display: flex;
  gap: 7px;
}

.mini-actions i {
  width: 31px;
  height: 31px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 10px 22px rgba(55, 28, 23, 0.09);
}

.mini-tabs {
  margin: 18px 0;
}

.mini-tabs span {
  width: 62px;
  height: 24px;
  border-radius: 999px;
  background: var(--rose);
}

.mini-tabs span:first-child {
  background: var(--red);
}

.mini-product-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 26px rgba(55, 28, 23, 0.08);
}

.mini-product-row img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 8px;
}

.mini-product-row strong,
.mini-product-row small {
  display: block;
}

.mini-product-row small {
  color: var(--red);
  font-weight: 900;
}

.qr-card {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 188px;
  padding: 14px;
  border-radius: 8px;
  color: var(--ink);
  background: #fffaf4;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
  transform: translateX(-24%) rotate(-7deg);
}

.qr-card > span,
.qr-card small {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-align: center;
}

.qr-card small {
  margin-top: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.qr-code {
  position: relative;
  aspect-ratio: 1;
  margin-top: 12px;
  border: 10px solid var(--cream);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(25, 20, 19, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(25, 20, 19, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 17px 17px;
}

.qr-code i,
.qr-code b {
  position: absolute;
  display: block;
  border-radius: 3px;
  background: var(--charcoal);
}

.qr-code i {
  width: 42px;
  height: 42px;
  border: 9px solid var(--charcoal);
  background: #fff;
  box-shadow: inset 0 0 0 8px var(--red);
}

.qr-code i:nth-child(1) { top: 10px; left: 10px; }
.qr-code i:nth-child(2) { top: 10px; right: 10px; }
.qr-code i:nth-child(3) { bottom: 10px; left: 10px; }
.qr-code b:nth-child(4) { left: 78px; top: 30px; width: 15px; height: 15px; }
.qr-code b:nth-child(5) { left: 104px; top: 62px; width: 32px; height: 15px; }
.qr-code b:nth-child(6) { right: 24px; top: 86px; width: 15px; height: 15px; }
.qr-code b:nth-child(7) { left: 74px; top: 112px; width: 15px; height: 15px; }
.qr-code b:nth-child(8) { right: 28px; bottom: 28px; width: 30px; height: 34px; }

.section {
  padding: clamp(64px, 9vw, 112px) clamp(18px, 5vw, 72px);
}

.intro-line {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(340px, 0.9fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(36px, 5vw, 58px) clamp(18px, 5vw, 72px) clamp(64px, 8vw, 96px);
  background: var(--paper);
}

.intro-copy {
  max-width: 620px;
  justify-self: center;
  text-align: center;
}

.intro-line h2 {
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.12;
}

.intro-divider {
  display: block;
  width: 58px;
  height: 1px;
  margin: 22px auto;
  background: var(--red);
}

.intro-line p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.intro-media {
  margin: 0;
}

.intro-media img {
  display: block;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(55, 28, 23, 0.18);
}

.compact-section {
  padding-top: clamp(54px, 7vw, 82px);
  padding-bottom: clamp(54px, 7vw, 82px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 22px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.client-heading {
  margin-inline: auto;
  text-align: center;
}

.client-heading h2 {
  font-size: clamp(1.7rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.12;
}

.section-heading p:not(.section-kicker),
.contact-copy p {
  color: var(--muted);
}

.how,
.included,
.contact,
.process {
  background: var(--white);
}

.process-statement {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.process-statement h2 {
  max-width: 760px;
  margin: 0 auto;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 3.1rem);
  line-height: 1.12;
}

.process-statement p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.process-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.process-visual-card {
  display: grid;
  justify-items: center;
  min-height: 0;
  padding: 12px 12px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
}

.process-image {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.process-visual-card h3 {
  margin: 16px 0 6px;
}

.process-visual-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.process-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border-radius: 8px;
  background: var(--rose);
}

.scan-icon {
  background:
    linear-gradient(90deg, rgba(200, 23, 36, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(200, 23, 36, 0.12) 1px, transparent 1px),
    var(--rose);
  background-size: 14px 14px;
}

.scan-icon i {
  position: absolute;
  width: 24px;
  height: 24px;
  border: 5px solid var(--red);
  border-radius: 5px;
}

.scan-icon i:nth-child(1) { top: 15px; left: 15px; }
.scan-icon i:nth-child(2) { top: 15px; right: 15px; }
.scan-icon i:nth-child(3) { bottom: 15px; left: 15px; }

.scan-icon b {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--charcoal);
}

.scan-icon b:nth-of-type(1) { left: 48px; top: 42px; }
.scan-icon b:nth-of-type(2) { right: 18px; top: 50px; }
.scan-icon b:nth-of-type(3) { right: 26px; bottom: 18px; height: 22px; }

.menu-icon {
  gap: 7px;
  align-content: center;
}

.menu-icon i {
  display: block;
  width: 58px;
  height: 14px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: inset 18px 0 0 var(--red);
}

.menu-icon i:nth-child(2) {
  box-shadow: inset 30px 0 0 var(--red);
}

.menu-icon i:nth-child(3) {
  box-shadow: inset 22px 0 0 var(--red);
}

.order-icon i {
  width: 42px;
  height: 58px;
  border: 3px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.order-icon b {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--red);
}

.order-icon b::before,
.order-icon b::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 999px;
}

.order-icon b::before {
  left: 7px;
  top: 12px;
  width: 12px;
  height: 3px;
  transform: rotate(38deg);
}

.order-icon b::after {
  left: 12px;
  top: 9px;
  width: 5px;
  height: 12px;
  transform: rotate(38deg);
}

.demos,
.packages {
  background: var(--paper);
}

.step-grid,
.included-grid,
.package-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.included-item,
.package-card,
.process-card,
.demo-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.step-card,
.included-item,
.package-card,
.process-card {
  padding: 24px;
}

.step-card span,
.package-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--red);
  font-weight: 950;
}

.step-card p,
.included-item p,
.package-card p,
.process-card p,
.demo-card p,
.demo-card small {
  color: var(--muted);
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.demo-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.demo-card:hover {
  transform: translateY(-3px);
}

.client-card {
  position: relative;
  display: block;
  min-height: auto;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
}

.client-photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 420ms ease;
}

.client-card:hover .client-photo {
  transform: scale(1.035);
}

.client-name {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 20px 16px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(200, 23, 36, 0), rgba(200, 23, 36, 0.58));
  backdrop-filter: blur(5px);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 850;
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

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

.simple-list .included-item {
  display: grid;
  place-items: center;
  min-height: 112px;
  text-align: center;
}

.simple-list .included-item h3 {
  margin: 0;
}

.packages {
  padding-top: 82px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-page {
  background: var(--paper);
}

.contact-hero {
  display: grid;
  align-items: end;
  min-height: 58vh;
  padding: 150px clamp(18px, 6vw, 90px) 72px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(14, 12, 12, 0.4), rgba(14, 12, 12, 0.92)),
    url("assets/menumaster-phone.jpg") center / cover no-repeat;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.98;
}

.contact-hero p:not(.section-kicker) {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.contact-details {
  display: grid;
  gap: 34px;
  background: var(--paper);
}

.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.contact-method {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-method:hover {
  transform: translateY(-3px);
}

.contact-method span {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-method strong {
  align-self: end;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.6fr);
  gap: clamp(26px, 6vw, 74px);
  align-items: start;
}

.contact-panel h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-panel .contact-form {
  width: 100%;
}

.contact-form .button {
  justify-content: center;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 850;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
  background: #fffdfa;
}

textarea {
  resize: vertical;
}

.contact-page {
  --contact-bg: #0b0b0f;
  --contact-panel: rgba(255, 255, 255, 0.055);
  --contact-panel-strong: rgba(255, 255, 255, 0.09);
  --contact-line: rgba(255, 255, 255, 0.12);
  --contact-text: #f7f5f2;
  --contact-muted: rgba(247, 245, 242, 0.68);
  --contact-coral: #ff5a4f;
  overflow: hidden;
  color: var(--contact-text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 90, 79, 0.18), transparent 34%),
    radial-gradient(circle at 94% 16%, rgba(255, 255, 255, 0.08), transparent 28%),
    var(--contact-bg);
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.contact-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 72%);
  pointer-events: none;
}

.contact-hero,
.contact-options,
.contact-form-section,
.contact-next,
.contact-final-cta {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.contact-hero {
  display: grid;
  place-items: center;
  min-height: 76vh;
  padding: 148px 0 74px;
  color: var(--contact-text);
  text-align: center;
  background: none;
}

.contact-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 820px;
}

.contact-eyebrow {
  margin: 0 0 14px;
  color: var(--contact-coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero h1,
.contact-panel h2,
.contact-section-heading h2,
.contact-final-cta h2 {
  max-width: 820px;
  margin: 0;
  color: var(--contact-text);
  font-size: clamp(2.25rem, 7vw, 5.25rem);
  font-weight: 900;
  line-height: 0.98;
}

.contact-hero p:not(.contact-eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--contact-muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 22px;
  border: 1px solid rgba(255, 90, 79, 0.5);
  border-radius: 999px;
  color: var(--contact-text);
  font-weight: 900;
  background: linear-gradient(135deg, var(--contact-coral), #d8332a);
  box-shadow: 0 12px 28px rgba(255, 90, 79, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.contact-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(255, 90, 79, 0.22);
  filter: saturate(1.08);
}

.contact-cta img {
  width: 24px;
  height: 24px;
}

.contact-options {
  padding: 12px 0 54px;
}

.contact-method-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: min(100%, 480px);
  margin-inline: auto;
}

.contact-page .contact-method {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--contact-line);
  border-radius: 22px;
  color: var(--contact-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.contact-page .contact-method:hover {
  border-color: rgba(255, 90, 79, 0.45);
  background: var(--contact-panel-strong);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.34);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: var(--contact-coral);
  background: rgba(255, 90, 79, 0.12);
}

.contact-icon svg,
.contact-icon img {
  width: 24px;
  height: 24px;
}

.contact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-page .contact-method strong {
  align-self: auto;
  margin-top: 14px;
  font-size: 1.08rem;
}

.contact-page .contact-method p {
  margin: 0;
  color: var(--contact-muted);
  font-size: 0.92rem;
}

.contact-form-section,
.contact-next {
  padding: 44px 0;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 6vw, 76px);
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--contact-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 90, 79, 0.16), transparent 34%),
    var(--contact-panel);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.contact-panel h2,
.contact-section-heading h2,
.contact-final-cta h2 {
  font-size: clamp(2rem, 4.7vw, 3.8rem);
  line-height: 1.02;
}

.contact-panel-copy p:not(.contact-eyebrow) {
  max-width: 420px;
  margin: 16px 0 0;
  color: var(--contact-muted);
}

.contact-panel .contact-form {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.contact-page label {
  gap: 9px;
  color: rgba(247, 245, 242, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-page input,
.contact-page textarea {
  border: 1px solid var(--contact-line);
  border-radius: 16px;
  color: var(--contact-text);
  background: rgba(255, 255, 255, 0.075);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
  color: rgba(247, 245, 242, 0.42);
}

.contact-page input:focus,
.contact-page textarea:focus {
  border-color: rgba(255, 90, 79, 0.75);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(255, 90, 79, 0.14);
}

.contact-panel .button.primary {
  min-height: 54px;
  border-radius: 999px;
  background: var(--contact-coral);
  box-shadow: 0 12px 30px rgba(255, 90, 79, 0.18);
}

.contact-section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.next-step {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--contact-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.next-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--contact-text);
  font-weight: 900;
  background: var(--contact-coral);
}

.next-step h3 {
  margin: 0;
  color: var(--contact-text);
  font-size: 1rem;
}

.contact-final-cta {
  display: grid;
  justify-items: center;
  margin-top: 24px;
  margin-bottom: 42px;
  padding: clamp(34px, 7vw, 72px) 20px;
  border: 1px solid rgba(255, 90, 79, 0.34);
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 90, 79, 0.34), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.footer {
  justify-content: center;
  padding: 36px clamp(18px, 5vw, 72px) 58px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(200, 23, 36, 0.18), transparent 36%),
    var(--charcoal);
}

.footer-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 720px);
}

.footer-logo {
  width: auto;
  height: 72px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}

.footer-details {
  display: grid;
  gap: 7px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.footer-details a {
  color: inherit;
}

.footer-follow {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 4px;
}

.footer-follow > span {
  color: var(--white);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 23, 36, 0.54);
  background: rgba(200, 23, 36, 0.26);
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg path {
  fill: currentColor;
  stroke: none;
}

.footer small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
}

.menu-brand-logo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
}

.language-switcher {
  position: absolute;
  top: 22px;
  right: clamp(18px, 5vw, 64px);
  z-index: 4;
}

.language-current,
.language-dropdown button {
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.language-current {
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 8, 8, 0.3);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.language-current:hover,
.language-switcher.is-open .language-current {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.18);
}

.language-current:hover,
.language-dropdown button:hover {
  transform: translateY(-1px);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  gap: 4px;
  min-width: 82px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(18, 14, 13, 0.82);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.language-dropdown button {
  grid-template-columns: 22px 1fr;
  gap: 6px;
  width: 100%;
  min-height: 28px;
  padding: 4px 6px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.84);
  background: transparent;
  font-size: 0.74rem;
  font-weight: 850;
  text-align: left;
}

.language-dropdown button.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
}

.flag-img {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 3px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18), 0 3px 8px rgba(0, 0, 0, 0.24);
}

.powered-brand {
  display: inline-flex;
  align-items: center;
}

.powered-brand img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 7px 14px rgba(0, 0, 0, 0.25));
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 100vh;
  }

  .hero-visual {
    min-height: 620px;
  }

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

@media (max-width: 820px) {
  .step-grid,
  .package-grid,
  .process-grid,
  .process-visual-grid,
  .contact,
  .contact-panel,
  .intro-line {
    grid-template-columns: 1fr;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .brand-word {
    font-size: 1rem;
  }

  .brand-logo-img {
    height: 38px;
  }

  .hero {
    min-height: 100svh;
    padding: 98px 14px 42px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 4.4rem);
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-video-mockup {
    width: min(100%, 360px);
    max-height: 470px;
  }

  .phone-preview {
    width: 248px;
    min-height: 500px;
    animation: none;
  }

  .phone-screen {
    min-height: 421px;
    padding: 14px;
  }

  .qr-card {
    left: 10%;
    bottom: -2px;
    width: 150px;
    padding: 12px;
    transform: rotate(-6deg);
  }

  .qr-code {
    border-width: 7px;
  }

  .demo-grid,
  .included-grid,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: 68vh;
    padding: 124px 0 50px;
  }

  .contact-hero,
  .contact-options,
  .contact-form-section,
  .contact-next,
  .contact-final-cta {
    width: min(100% - 24px, 1120px);
  }

  .contact-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.45rem);
  }

  .contact-cta,
  .contact-panel .button.primary {
    width: 100%;
  }

  .contact-page .contact-method {
    min-height: auto;
    padding: 20px;
  }

  .contact-panel {
    border-radius: 22px;
  }

  .contact-final-cta {
    border-radius: 24px;
  }

  .intro-line {
    padding-top: 54px;
  }

  .demo-card {
    min-height: 250px;
  }

  .footer {
    display: grid;
  }
}


