:root {
  --ink: #121713;
  --ink-2: #1d261f;
  --moss: #26362c;
  --olive: #526246;
  --cream: #f6efe2;
  --paper: #fffaf0;
  --sand: #e9dcc6;
  --gold: #d8a84d;
  --gold-2: #f0c66f;
  --copper: #a76834;
  --muted: #69756a;
  --line: rgba(18, 23, 19, 0.11);
  --shadow-soft: 0 22px 70px rgba(33, 29, 19, 0.13);
  --shadow-strong: 0 28px 90px rgba(0, 0, 0, 0.36);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --font-heading: "Sora", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(216, 168, 77, 0.15), transparent 32rem),
    linear-gradient(180deg, #fffaf0 0%, #f7f1e7 45%, #fffaf0 100%);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  color: var(--paper);
  font-size: clamp(3rem, 7vw, 6.2rem);
  max-width: 11ch;
}

.hero-title-line {
  display: block;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 4rem);
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
}

.section-pad {
  padding: 110px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 54px;
}

.section-heading.text-center {
  margin-right: auto;
  margin-left: auto;
}

.section-heading p,
.section-copy {
  margin-top: 18px;
  font-size: 1.08rem;
}

.section-label,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 18px;
  color: var(--copper);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--gold-2);
}

.site-navbar {
  padding: 18px 0;
  background: rgba(18, 23, 19, 0.72);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
  backdrop-filter: blur(18px);
  transition: padding 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(18, 23, 19, 0.94);
  box-shadow: 0 15px 48px rgba(0, 0, 0, 0.23);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-lockup:hover {
  color: var(--paper);
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(216, 168, 77, 0.26);
}

.navbar-toggler {
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 14px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.16rem rgba(216, 168, 77, 0.28);
}

.navbar-toggler-icon {
  filter: invert(1) sepia(0.4) saturate(0.5);
}

.navbar .nav-link {
  color: rgba(255, 250, 240, 0.76);
  font-weight: 700;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: var(--gold-2);
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.btn-gold,
.btn-nav {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px rgba(216, 168, 77, 0.25);
}

.btn-gold:hover,
.btn-nav:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(216, 168, 77, 0.34);
}

.btn-nav {
  padding: 0.72rem 1.15rem;
}

.btn-outline-warm {
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.28);
}

.btn-outline-warm:hover {
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-2px);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  padding: 180px 0 120px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(18, 23, 19, 0.94), rgba(20, 34, 28, 0.84)),
    radial-gradient(circle at 16% 18%, rgba(216, 168, 77, 0.32), transparent 32rem),
    radial-gradient(circle at 85% 22%, rgba(92, 115, 77, 0.48), transparent 30rem),
    #101511;
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 250, 240, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 240, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 82%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  left: -120px;
  width: 360px;
  height: 360px;
  background: rgba(216, 168, 77, 0.22);
}

.hero-glow-two {
  right: -160px;
  bottom: 10%;
  width: 520px;
  height: 520px;
  background: rgba(255, 250, 240, 0.11);
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.76);
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 34px 0 30px;
}

.hero-actions .btn,
.cta-actions .btn {
  padding: 0.95rem 1.35rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.68rem 0.9rem;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 999px;
}

.trust-strip i {
  color: var(--gold-2);
}

.hero-product {
  position: relative;
  display: grid;
  min-height: 640px;
  place-items: center;
}

.hero-product::before {
  position: absolute;
  width: min(92%, 550px);
  height: min(92%, 550px);
  content: "";
  background: radial-gradient(circle, rgba(216, 168, 77, 0.22), rgba(255, 250, 240, 0.05) 54%, transparent 72%);
  border-radius: 999px;
}

.table-chip {
  position: absolute;
  top: 58px;
  right: 30px;
  z-index: 2;
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border-radius: 32px;
  box-shadow: var(--shadow-strong);
  transform: rotate(8deg);
}

.table-chip span {
  align-self: end;
  color: rgba(18, 23, 19, 0.72);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.table-chip strong {
  align-self: start;
  font-family: var(--font-heading);
  font-size: 3rem;
  line-height: 1;
}

.app-phone {
  position: relative;
  z-index: 1;
  width: min(100%, 330px);
  padding: 13px;
  background: #0b0d0b;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 42px;
  box-shadow: var(--shadow-strong);
}

.hero-phone {
  transform: rotate(-5deg) translateX(-38px);
}

.phone-topbar {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 8px 0 11px;
}

.phone-topbar span:first-child {
  width: 58px;
  height: 6px;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.phone-topbar span:last-child {
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.phone-screen {
  min-height: 510px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(216, 168, 77, 0.17), transparent 10rem),
    var(--paper);
  border-radius: 31px;
}

.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.screen-head span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.screen-head strong {
  padding: 0.46rem 0.72rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
}

.category-row,
.demo-category-tabs {
  display: flex;
  gap: 0.55rem;
  margin: 22px 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-row::-webkit-scrollbar,
.demo-category-tabs::-webkit-scrollbar {
  display: none;
}

.category-row button,
.demo-category-tabs button {
  flex: 0 0 auto;
  padding: 0.55rem 0.78rem;
  color: var(--muted);
  background: #f1e8d8;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.category-row button.active,
.demo-category-tabs button.active {
  color: var(--ink);
  background: var(--gold-2);
  border-color: rgba(167, 104, 52, 0.24);
}

.mini-item,
.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 12px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(18, 23, 19, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(18, 23, 19, 0.06);
}

.mini-item strong,
.menu-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.92rem;
}

.mini-item span,
.menu-item span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.mini-item button,
.menu-item button,
.order-actions button {
  padding: 0.48rem 0.72rem;
  color: var(--ink);
  background: #f6ead0;
  border: 1px solid rgba(216, 168, 77, 0.34);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.mini-item button:hover,
.menu-item button:hover,
.order-actions button:hover {
  background: var(--gold-2);
}

.basket-bar {
  margin-top: 18px;
  padding: 0.86rem 1rem;
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border-radius: 18px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 30px rgba(216, 168, 77, 0.24);
}

.basket-button {
  width: 100%;
  border: 0;
}

.floating-card {
  position: absolute;
  right: 4px;
  bottom: 86px;
  z-index: 2;
  width: min(92%, 315px);
  animation: float-card 5s ease-in-out infinite;
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

.waiter-card,
.process-card,
.benefit-card,
.pricing-card,
.contact-form,
.story-card,
.dashboard-frame {
  background: rgba(255, 250, 240, 0.9);
  border: 1px solid rgba(18, 23, 19, 0.09);
  box-shadow: var(--shadow-soft);
}

.waiter-card {
  padding: 22px;
  border-radius: 26px;
}

.card-kicker,
.order-head span,
.dashboard-top span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.waiter-card h3,
.order-card h3 {
  margin: 3px 0 0;
  font-size: 1.55rem;
}

.waiter-card ul,
.order-card ul,
.pricing-card ul {
  padding-left: 1.1rem;
  margin: 16px 0;
  color: var(--ink);
}

.waiter-card li,
.order-card li,
.pricing-card li {
  margin-bottom: 0.35rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.68rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  white-space: nowrap;
}

.status-new {
  color: #21432a;
  background: #dbf6df;
}

.status-progress {
  color: #735000;
  background: #fff2c2;
}

.status-ready {
  color: #06445c;
  background: #d8f2ff;
}

.status-served {
  color: #5d6170;
  background: #edf0f5;
}

.time-line {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 800;
}

.process-row {
  position: relative;
}

.process-card,
.benefit-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: var(--radius-md);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-card:hover,
.benefit-card:hover,
.pricing-card:hover {
  border-color: rgba(216, 168, 77, 0.42);
  box-shadow: 0 26px 70px rgba(35, 29, 18, 0.17);
  transform: translateY(-6px);
}

.step-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(216, 168, 77, 0.32);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.process-card i,
.benefit-card i {
  display: inline-grid;
  width: 54px;
  height: 54px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--ink);
  background: linear-gradient(145deg, var(--gold-2), var(--gold));
  border-radius: 18px;
  font-size: 1.45rem;
}

.process-card p,
.benefit-card p {
  margin-bottom: 0;
}

.demo-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(38, 54, 44, 0.05), rgba(255, 250, 240, 0)),
    var(--cream);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 28px;
}

.feature-list span {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
}

.feature-list i {
  color: var(--copper);
}

.guest-demo-shell {
  position: relative;
  display: grid;
  min-height: 700px;
  place-items: center;
  padding: 30px;
  background:
    radial-gradient(circle at top right, rgba(216, 168, 77, 0.27), transparent 18rem),
    linear-gradient(135deg, #182219, #354537);
  border-radius: 42px;
  box-shadow: var(--shadow-strong);
}

.demo-phone {
  width: min(100%, 370px);
}

.active-category-note {
  margin-top: -8px;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.menu-list {
  max-height: 365px;
  padding-right: 4px;
  overflow-y: auto;
}

.menu-item.is-highlighted {
  border-color: rgba(216, 168, 77, 0.72);
  box-shadow: 0 16px 36px rgba(216, 168, 77, 0.18);
}

.qr-preview {
  position: absolute;
  right: 48px;
  bottom: 58px;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.11);
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: 30px;
  backdrop-filter: blur(12px);
}

.qr-preview i {
  font-size: 3.8rem;
}

.qr-preview span {
  margin-top: -14px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
}

.waiter-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(216, 168, 77, 0.14), transparent 23rem),
    #fbf5ea;
}

.dashboard-frame {
  padding: 26px;
  background: #151b16;
  border-color: rgba(255, 250, 240, 0.1);
  border-radius: 34px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 24px;
  padding: 8px 6px 20px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

.dashboard-top strong {
  display: block;
  color: var(--paper);
  font-family: var(--font-heading);
  font-size: 1.35rem;
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.85rem;
  font-weight: 800;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: -0.42rem;
  border-radius: 999px;
}

.order-card {
  display: flex;
  min-height: 100%;
  padding: 24px;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
}

.order-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.order-time,
.order-note {
  margin: 12px 0 0;
  font-weight: 800;
}

.order-note {
  color: var(--copper);
}

.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 16px;
}

.served-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 18px;
  padding: 16px 18px;
  color: rgba(255, 250, 240, 0.72);
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid rgba(255, 250, 240, 0.09);
  border-radius: 18px;
}

.served-row strong {
  color: var(--paper);
}

.benefits-section {
  background: var(--paper);
}

.benefit-card h3 {
  min-height: 2.6em;
}

.audience-section {
  background:
    linear-gradient(135deg, rgba(18, 23, 19, 0.96), rgba(38, 54, 44, 0.94)),
    #121713;
}

.audience-section h2,
.audience-section .section-copy {
  color: var(--paper);
}

.audience-section .section-copy {
  opacity: 0.76;
}

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

.audience-grid span {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 1.2rem;
  color: var(--paper);
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 20px;
  font-weight: 900;
}

.audience-grid i {
  color: var(--gold-2);
  font-size: 1.25rem;
}

.story-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--paper), var(--cream));
}

.story-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 36px;
}

.story-card p {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.7;
}

.story-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: var(--ink);
  background: var(--gold-2);
  border-radius: 24px;
  font-size: 2rem;
}

.pricing-section {
  background: #fbf6ed;
}

.pricing-card {
  display: flex;
  height: 100%;
  padding: 32px;
  flex-direction: column;
  border-radius: 30px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.pricing-card.featured {
  color: var(--paper);
  background:
    radial-gradient(circle at top right, rgba(216, 168, 77, 0.34), transparent 16rem),
    linear-gradient(145deg, #151b16, #2d3b30);
  border-color: rgba(216, 168, 77, 0.34);
  transform: translateY(-14px);
}

.pricing-card.featured:hover {
  transform: translateY(-20px);
}

.pricing-card.featured h3,
.pricing-card.featured li,
.pricing-card.featured .price {
  color: var(--paper);
}

.pricing-card.featured .package-tag {
  color: var(--ink);
  background: var(--gold-2);
}

.package-tag {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 0.48rem 0.74rem;
  color: var(--copper);
  background: #f4e4c5;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-card h3 {
  margin-bottom: 20px;
}

.pricing-card ul {
  margin-bottom: 28px;
}

.price {
  margin-top: auto;
  margin-bottom: 18px;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
}

.btn-package {
  width: 100%;
  color: var(--ink);
  background: #f0e3cf;
  border: 1px solid rgba(18, 23, 19, 0.08);
}

.btn-package:hover {
  background: var(--gold-2);
}

.cta-section {
  padding: 80px 0;
  background: var(--ink);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(32px, 5vw, 62px);
  background:
    radial-gradient(circle at 90% 20%, rgba(216, 168, 77, 0.34), transparent 18rem),
    linear-gradient(135deg, #253228, #141a15);
  border: 1px solid rgba(255, 250, 240, 0.1);
  border-radius: 36px;
  box-shadow: var(--shadow-strong);
}

.cta-card h2,
.cta-card p {
  color: var(--paper);
}

.cta-card p {
  max-width: 610px;
  opacity: 0.76;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 1rem;
}

.contact-section {
  background: var(--cream);
}

.contact-note {
  display: flex;
  gap: 0.75rem;
  margin-top: 26px;
  padding: 18px;
  color: var(--ink-2);
  background: rgba(216, 168, 77, 0.16);
  border: 1px solid rgba(167, 104, 52, 0.18);
  border-radius: 20px;
  font-weight: 700;
}

.contact-note i {
  color: var(--copper);
  font-size: 1.2rem;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 32px;
}

.contact-form label {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-weight: 900;
}

.contact-form .form-control {
  min-height: 54px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(18, 23, 19, 0.12);
  border-radius: 16px;
  box-shadow: none;
}

.contact-form textarea.form-control {
  min-height: 150px;
}

.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(216, 168, 77, 0.18);
}

.form-feedback {
  margin: 16px 0 0;
  color: var(--copper);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  padding: 58px 0 30px;
  color: rgba(255, 250, 240, 0.75);
  background: #0e120f;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.11);
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 250, 240, 0.62);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.footer-links a {
  color: rgba(255, 250, 240, 0.68);
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--gold-2);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 24px;
  color: rgba(255, 250, 240, 0.48);
  font-size: 0.92rem;
}

@media (max-width: 1199.98px) {
  .hero-product {
    min-height: 570px;
  }

  .hero-phone {
    transform: rotate(-4deg);
  }

  .floating-card {
    right: 0;
    bottom: 22px;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 86px 0;
  }

  .site-navbar .navbar-collapse {
    margin-top: 14px;
    padding: 18px;
    background: rgba(18, 23, 19, 0.96);
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: 22px;
  }

  .btn-nav {
    width: 100%;
    margin-top: 12px;
  }

  .hero-section {
    padding: 150px 0 86px;
  }

  .hero-section .row {
    --bs-gutter-x: 1.5rem;
  }

  h1 {
    font-size: clamp(2.7rem, 11vw, 4.2rem);
    max-width: 100%;
  }

  .hero-product {
    min-height: 680px;
  }

  .table-chip {
    top: 20px;
    right: 58px;
  }

  .floating-card {
    right: 50px;
    bottom: 36px;
  }

  .dashboard-top,
  .cta-card,
  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 0.98rem;
  }

  .section-pad {
    padding: 72px 0;
  }

  .hero-section {
    min-height: auto;
    padding: 132px 0 150px;
  }

  .hero-section .row {
    --bs-gutter-x: 0;
  }

  .hero-section .row > [class*="col-"] {
    width: min(100%, calc(100vw - 36px));
    max-width: calc(100vw - 36px);
  }

  .hero-lead {
    width: min(100%, calc(100vw - 36px));
    max-width: 30ch;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-product {
    min-height: 760px;
    overflow: visible;
  }

  .app-phone {
    width: min(100%, 318px);
  }

  .phone-screen {
    min-height: 488px;
    padding: 18px;
  }

  .table-chip {
    right: 24px;
    width: 88px;
    height: 88px;
    border-radius: 25px;
  }

  .table-chip strong {
    font-size: 2.4rem;
  }

  .floating-card {
    right: auto;
    bottom: 0;
    left: 50%;
    width: min(95%, 305px);
    transform: translateX(-50%);
    animation: none;
  }

  .guest-demo-shell {
    min-height: 650px;
    padding: 22px 10px;
    border-radius: 30px;
  }

  .qr-preview {
    right: 20px;
    bottom: 20px;
    width: 98px;
    height: 98px;
    border-radius: 22px;
  }

  .qr-preview i {
    font-size: 2.7rem;
  }

  .dashboard-frame {
    padding: 18px;
    border-radius: 26px;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .story-card {
    grid-template-columns: 1fr;
  }

  .contact-note {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .container {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero-product {
    min-height: 720px;
  }

  .mini-item,
  .menu-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .mini-item button,
  .menu-item button {
    width: 100%;
  }
}
