:root {
  --dark: #1a0f0a;
  --dark-card: #2d1b14;
  --text: #2d1b14;
  --muted: #6d5f5a;
  --cream: #faf9f6;
  --sand: #f9f6f2;
  --line: #e8e4e0;
  --accent: #c4522a;
  --accent-soft: rgba(196, 82, 42, 0.1);
  --white: #ffffff;
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p,
blockquote {
  margin: 0;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

.landing-page {
  overflow: hidden;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  background: var(--dark);
  padding: 100px clamp(24px, 5.56vw, 80px) 80px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(48px, 7vw, 110px);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: min(624px, 100%);
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font-size: clamp(4rem, 6.12vw, 88px);
  line-height: 0.95;
}

.hero-copy h1 span {
  color: var(--accent);
}

.hero-copy h1 em {
  color: var(--white);
  font-style: normal;
}

.hero-copy p {
  color: var(--line);
  font-size: 20px;
  line-height: 1.5;
  max-width: 624px;
}

.badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  border: 1px solid var(--accent);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.badge-dark {
  color: var(--white);
}

.badge-light {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 1.5px solid transparent;
  border-radius: 8px;
  padding: 16px 28px;
  cursor: pointer;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-secondary {
  border-color: var(--white);
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(515px, 100%);
  height: 600px;
}

.hero-photo {
  position: absolute;
  left: -40px;
  top: 0;
  width: 515px;
  height: 560px;
  border-radius: 24px;
  object-fit: cover;
  opacity: 0.4;
}

.phone {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 8px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.phone-large {
  width: 360px;
  height: 480px;
}

.phone-small {
  width: 320px;
  height: 520px;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
  width: 100%;
  background: var(--dark);
  padding: 16px;
}

.phone-restaurant {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 14px;
}

.restaurant-seal {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 35%, #fff1ba 0 18%, #d39b4f 19% 49%, #6d3d23 51% 70%, transparent 71%),
    #f9f6f2;
}

.restaurant-seal::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 10px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(90deg, #70401f, #f2cf79 42%, #a4522e 58%, #f0d27d);
  transform: translateX(-50%);
}

.dots {
  width: 20px;
  height: 20px;
  background:
    radial-gradient(circle, #fff 0 2px, transparent 2.5px) 50% 4px / 20px 6px no-repeat,
    radial-gradient(circle, #fff 0 2px, transparent 2.5px) 50% 10px / 20px 6px no-repeat,
    radial-gradient(circle, #fff 0 2px, transparent 2.5px) 50% 16px / 20px 6px no-repeat;
}

.chat-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 20px;
  min-height: 0;
  padding: 16px;
}

.message {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  font-size: 14px;
}

.message p {
  max-width: 240px;
  padding: 12px;
  border-radius: 12px 12px 12px 4px;
  background: var(--sand);
  color: var(--text);
  line-height: 1.25;
}

.message span {
  color: var(--muted);
  font-size: 10px;
}

.message-ai {
  align-items: flex-end;
}

.message-ai p {
  border-radius: 12px 12px 4px;
  background: var(--accent);
  color: var(--white);
}

.message-ai span {
  text-align: right;
}

.reservation-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--sand);
  padding: 16px;
}

.reservation-card strong {
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.reservation-card h2 {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
}

.reservation-card p {
  color: var(--muted);
  font-size: 14px;
}

.reservation-actions {
  display: flex;
  gap: 8px;
}

.reservation-actions button {
  flex: 1;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  cursor: pointer;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.reservation-actions button + button {
  background: transparent;
  color: var(--accent);
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.stat-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent-soft);
  padding: 12px 20px;
  color: var(--white);
  font-size: 14px;
  text-transform: uppercase;
}

.mini-icon,
.step-icon,
.checkmark {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.mini-icon {
  width: 16px;
  height: 16px;
}

.clock {
  border: 2px solid var(--white);
  border-radius: 50%;
}

.clock::before,
.clock::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 2px;
  height: 6px;
  background: var(--white);
  transform-origin: bottom center;
}

.clock::after {
  top: 7px;
  height: 5px;
  transform: rotate(90deg);
}

.phone-off {
  border: 2px solid var(--white);
  border-radius: 4px;
}

.phone-off::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 7px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transform: rotate(-35deg);
}

.home::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 6px;
  width: 14px;
  height: 9px;
  border: 2px solid var(--white);
  border-top: 0;
}

.home::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--white);
  border-top: 2px solid var(--white);
  transform: rotate(45deg);
}

.email-capture {
  display: flex;
  justify-content: center;
  background: var(--sand);
  padding: 64px clamp(24px, 5.56vw, 80px);
}

.email-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: min(720px, 100%);
  text-align: center;
}

.email-content h2,
.section-header h2,
.setup-copy h2,
.pricing-card h3 {
  color: var(--text);
  font-size: clamp(3rem, 3.9vw, 56px);
  line-height: 1.1;
}

.email-content p,
.email-content small,
.section-header span,
.feature-copy p,
.setup-copy p,
.pricing-card p,
.pricing-card small {
  color: var(--muted);
}

.email-content p,
.section-header span,
.setup-copy p {
  font-size: 18px;
  line-height: 1.6;
}

.email-form {
  display: flex;
  gap: 12px;
  width: 100%;
}

.email-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 14px 16px;
  color: var(--text);
  font-size: 16px;
}

.email-form .button {
  min-height: 50px;
  padding: 14px 24px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  min-height: 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.features {
  background: var(--cream);
}

.feature-row {
  display: flex;
  align-items: center;
  gap: clamp(48px, 6vw, 80px);
  width: 100%;
  padding: 100px clamp(24px, 5.56vw, 80px);
}

.feature-row-tinted {
  background: var(--sand);
}

.feature-row > * {
  max-width: 1280px;
}

.feature-copy {
  display: flex;
  flex: 0 0 515px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.feature-copy h2 {
  color: var(--text);
  font-size: clamp(2.6rem, 3.34vw, 48px);
  line-height: 1.1;
}

.feature-copy p {
  font-size: 18px;
  line-height: 1.6;
}

.feature-copy a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
}

.feature-row img {
  flex: 1;
  width: min(624px, 50vw);
  height: 480px;
  border-radius: 16px;
  object-fit: cover;
}

.integrations,
.testimonials {
  background: var(--dark);
  color: var(--white);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.section-header > p {
  color: var(--line);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-header-dark h2 {
  color: var(--white);
}

.section-header-dark span {
  color: var(--line);
  max-width: 720px;
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  width: min(1000px, 100%);
  margin: 80px auto 0;
}

.integration-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  border: 1px solid rgba(232, 228, 224, 0.8);
  border-radius: 12px;
  padding: 24px 32px;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  opacity: 0.8;
}

.how-it-works {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: var(--sand);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.how-it-works .badge {
  margin-left: calc((100% - min(1280px, 100%)) / 2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.steps article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.steps strong {
  color: var(--accent);
  font-size: 14px;
}

.steps h3 {
  color: var(--text);
  font-size: 28px;
  line-height: 1;
}

.steps p {
  color: var(--muted);
  font-size: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--accent);
}

.link-icon::before,
.link-icon::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 10px;
  border: 3px solid var(--white);
  border-radius: 999px;
}

.link-icon::before {
  left: 16px;
  top: 27px;
  transform: rotate(-45deg);
}

.link-icon::after {
  right: 16px;
  top: 27px;
  transform: rotate(-45deg);
}

.message-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 18px;
  width: 30px;
  height: 24px;
  border: 3px solid var(--white);
  border-radius: 4px;
}

.message-icon::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 39px;
  width: 10px;
  height: 10px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
  transform: skewX(-25deg);
}

.check-icon::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 17px;
  width: 30px;
  height: 30px;
  border: 3px solid var(--white);
  border-radius: 50%;
}

.check-icon::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 28px;
  width: 15px;
  height: 8px;
  border-bottom: 3px solid var(--white);
  border-left: 3px solid var(--white);
  transform: rotate(-45deg);
}

.quick-setup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(56px, 7vw, 100px);
  background: var(--cream);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.setup-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 624px;
  height: 640px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--dark);
}

.setup-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.setup-copy {
  display: flex;
  flex: 0 1 515px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}

.setup-copy ul,
.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setup-copy li {
  position: relative;
  padding-left: 40px;
  color: var(--text);
}

.setup-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background: var(--accent-soft);
}

.setup-copy li::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--accent);
  border-left: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.testimonial-grid article {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  min-height: 100%;
  border-radius: 16px;
  background: var(--dark-card);
  padding: 40px;
}

.stars {
  display: flex;
  gap: 4px;
}

.stars span {
  width: 16px;
  height: 16px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

blockquote {
  color: var(--white);
  font-size: 24px;
  line-height: 1.4;
}

cite {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
  font-style: normal;
}

cite span {
  color: var(--line);
  font-size: 14px;
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 56px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), rgba(255, 255, 255, 0)),
    var(--cream);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.comparison-table {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 60px rgba(36, 24, 18, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.3fr;
  gap: 0;
  align-items: center;
  min-height: 92px;
  border-bottom: 1px solid rgba(36, 24, 18, 0.12);
}

.comparison-head {
  min-height: 88px;
  background: var(--dark);
  color: var(--white);
}

.comparison-row > * {
  padding: 26px 32px;
}

.comparison-row > :nth-child(2) {
  background: rgba(197, 80, 43, 0.08);
}

.comparison-head > :nth-child(2) {
  background: var(--accent);
}

.comparison-row h3 {
  color: inherit;
  font-size: clamp(1.5rem, 2vw, 28px);
  line-height: 1.1;
}

.comparison-row strong,
.comparison-row span {
  color: var(--text);
  font-size: clamp(1.15rem, 1.6vw, 24px);
  line-height: 1.25;
}

.comparison-row strong {
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-row span {
  font-weight: 800;
}

.comparison-row > :nth-child(2):not(h3) {
  color: var(--accent);
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 80px;
  background: var(--cream);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.faq-list {
  width: min(800px, 100%);
  margin: 0 auto;
}

.faq-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 24px 0;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-list span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 400;
}

.pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  background: var(--sand);
  padding: 120px clamp(24px, 5.56vw, 80px);
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: min(720px, 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  padding: 40px;
  box-shadow: 0 16px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card h3 {
  font-size: 56px;
}

.pricing-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
}

.pricing-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pricing-card small {
  width: 100%;
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1100px) {
  .hero-content,
  .feature-row,
  .quick-setup {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual,
  .setup-visual,
  .feature-copy {
    flex-basis: auto;
    width: 100%;
  }

  .hero-visual {
    max-width: 560px;
  }

  .feature-row img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.3;
  }

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

  .comparison-row {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .comparison-head div {
    display: none;
  }

  .comparison-head {
    background: var(--dark);
  }

  .comparison-row > * {
    padding: 18px 24px;
  }

  .setup-copy {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .hero,
  .email-capture,
  .feature-row,
  .integrations,
  .how-it-works,
  .quick-setup,
  .comparison,
  .testimonials,
  .faq,
  .pricing {
    padding-inline: 20px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-copy,
  .hero,
  .how-it-works,
  .testimonials,
  .faq {
    gap: 48px;
  }

  .hero-actions,
  .email-form {
    width: 100%;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    height: 520px;
  }

  .hero-photo {
    left: 0;
    width: 100%;
    height: 100%;
  }

  .phone-large,
  .phone-small {
    width: min(340px, 100%);
  }

  .setup-visual {
    height: 580px;
  }

  .integration-list {
    gap: 16px;
    margin-top: 48px;
  }

  .integration-list span {
    width: 100%;
  }

  .pricing-card,
  .testimonial-grid article {
    padding: 28px;
  }
}
