:root {
  --bg: #f7f2ea;
  --bg-soft: #fffaf2;
  --text: #171411;
  --muted: #6d6258;
  --line: rgba(23, 20, 17, 0.11);
  --dark: #14110f;
  --dark-soft: #201b17;
  --cream: #fff8ed;
  --gold: #c7994a;
  --gold-soft: rgba(199, 153, 74, 0.18);
  --green: #66785f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(28, 23, 18, 0.13);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(199, 153, 74, 0.24), transparent 30%),
    radial-gradient(circle at 85% 8%, rgba(102, 120, 95, 0.16), transparent 28%),
    var(--bg);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-shell {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 24px 0;
}

.navbar {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 250, 242, 0.82);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  box-shadow: 0 18px 55px rgba(28, 23, 18, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--dark), #5a4225 55%, var(--gold));
  box-shadow: 0 12px 24px rgba(20, 17, 15, 0.2);
}

.brand-text {
  font-size: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 650;
  color: rgba(23, 20, 17, 0.76);
  border-radius: 999px;
  transition: 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(20, 17, 15, 0.06);
}

.nav-links .nav-cta {
  color: var(--cream);
  background: var(--dark);
  padding-inline: 18px;
  box-shadow: 0 12px 28px rgba(20, 17, 15, 0.16);
}

.nav-links .nav-cta:hover {
  color: var(--cream);
  background: #000;
  transform: translateY(-1px);
}

.simple-links {
  display: flex;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--dark);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--cream);
  border-radius: 99px;
  transition: 180ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  bottom: 16px;
}

.nav-open .nav-toggle span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  bottom: 21px;
  transform: rotate(-45deg);
}

.section-pad {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 56px;
  padding-top: 92px;
  min-height: calc(100vh - 90px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 8vw, 6.9rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle,
.section-text,
.section-heading p,
.pricing-copy p,
.final-box p {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.hero-subtitle {
  max-width: 680px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: 180ms ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  color: var(--cream);
  background: var(--dark);
  box-shadow: 0 18px 40px rgba(20, 17, 15, 0.18);
}

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

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(23, 20, 17, 0.1);
}

.btn-secondary:hover {
  background: var(--white);
}

.btn.full {
  width: 100%;
}

.hero-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(23, 20, 17, 0.72);
  background: rgba(255, 250, 242, 0.7);
  font-size: 13px;
  font-weight: 750;
}

.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 8% -4% 4% 2%;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(199, 153, 74, 0.34), rgba(102, 120, 95, 0.2));
  filter: blur(2px);
  transform: rotate(-5deg);
}

.phone-mockup {
  position: relative;
  width: min(420px, 100%);
  padding: 18px;
  border-radius: 42px;
  background: linear-gradient(180deg, #221d19, #11100e);
  box-shadow: var(--shadow), 0 42px 90px rgba(0, 0, 0, 0.26);
  color: var(--cream);
}

.phone-topbar {
  display: flex;
  gap: 6px;
  margin-bottom: 22px;
}

.phone-topbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 248, 237, 0.34);
}

.mock-restaurant {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 248, 237, 0.08);
  border: 1px solid rgba(255, 248, 237, 0.09);
}

.mock-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #2a2119;
  background: linear-gradient(135deg, var(--cream), var(--gold));
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 800;
}

.mock-restaurant p {
  margin: 0;
  font-weight: 800;
}

.mock-restaurant small {
  color: rgba(255, 248, 237, 0.62);
}

.language-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 7px;
  margin-bottom: 18px;
}

.language-row button {
  min-height: 38px;
  border: 0;
  border-radius: 12px;
  color: var(--cream);
  background: rgba(255, 248, 237, 0.1);
  font-weight: 800;
}

.language-row button:first-child {
  color: #211914;
  background: var(--gold);
}

.chat-window {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 14px;
  min-height: 430px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(199, 153, 74, 0.15), transparent 30%),
    rgba(255, 248, 237, 0.06);
}

.message {
  max-width: 86%;
  padding: 13px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.45;
}

.message.user {
  align-self: flex-end;
  color: #1f1915;
  background: var(--cream);
  border-bottom-right-radius: 6px;
}

.message.bot {
  align-self: flex-start;
  color: rgba(255, 248, 237, 0.9);
  background: rgba(255, 248, 237, 0.1);
  border: 1px solid rgba(255, 248, 237, 0.1);
  border-bottom-left-radius: 6px;
}

.trust-strip {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.66);
  box-shadow: 0 16px 45px rgba(28, 23, 18, 0.06);
}

.trust-strip span {
  min-height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: rgba(23, 20, 17, 0.72);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.5);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 48px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 16px;
}

.step-card,
.feature-card,
.price-card,
.material-item,
.final-box,
.integration-box,
.notice-box,
.legal-card {
  border: 1px solid var(--line);
  background: rgba(255, 250, 242, 0.76);
  box-shadow: 0 16px 45px rgba(28, 23, 18, 0.07);
}

.step-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.step-card p,
.feature-card p,
.price-note,
.price-list,
.footer-inner p,
.footer-bottom {
  color: var(--muted);
}

.feature-section {
  padding-top: 40px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--gold-soft);
  font-size: 21px;
}

.integration-section {
  padding-top: 42px;
}

.integration-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 34px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 153, 74, 0.22), transparent 30%),
    rgba(255, 250, 242, 0.8);
}

.code-card {
  padding: 20px;
  border-radius: 22px;
  color: var(--cream);
  background: linear-gradient(135deg, #1a1512, #2a2018);
  box-shadow: 0 28px 60px rgba(20, 17, 15, 0.18);
  overflow: hidden;
}

.code-card-top {
  display: flex;
  gap: 7px;
  margin-bottom: 18px;
}

.code-card-top span {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(255, 248, 237, 0.35);
}

.code-card code {
  display: block;
  white-space: normal;
  word-break: break-word;
  color: rgba(255, 248, 237, 0.9);
  font-size: 14px;
  line-height: 1.7;
}

.pricing-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.price-card {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.98), rgba(255, 255, 255, 0.72));
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(199, 153, 74, 0.16);
}

.price-badge {
  position: relative;
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #3b2a13;
  background: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
}

.price-line {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 10px;
}

.price {
  font-size: clamp(3.3rem, 7vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
}

.period {
  color: var(--muted);
  font-weight: 800;
}

.price-list {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.price-list li {
  position: relative;
  padding-left: 28px;
}

.price-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.materials-section {
  padding-top: 42px;
}

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

.material-item {
  min-height: 84px;
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  font-weight: 850;
}

.notice-section {
  padding-top: 30px;
  padding-bottom: 30px;
}

.notice-box {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 30px;
  background: rgba(255, 250, 242, 0.86);
}

.notice-box h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 14px;
}

.notice-box p {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding-top: 40px;
}

.final-box {
  padding: clamp(34px, 6vw, 70px);
  border-radius: 42px;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(circle at 12% 10%, rgba(199, 153, 74, 0.28), transparent 30%),
    radial-gradient(circle at 90% 0%, rgba(102, 120, 95, 0.24), transparent 28%),
    linear-gradient(135deg, #1a1512, #2a2018);
  box-shadow: 0 34px 90px rgba(20, 17, 15, 0.2);
}

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

.final-box h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.final-box p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 248, 237, 0.75);
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.btn-secondary.light {
  color: var(--cream);
  background: rgba(255, 248, 237, 0.1);
  border-color: rgba(255, 248, 237, 0.18);
}

.btn-secondary.light:hover {
  background: rgba(255, 248, 237, 0.16);
}

.legal-page {
  padding-top: 70px;
}

.legal-card {
  padding: clamp(28px, 6vw, 64px);
  border-radius: 38px;
  background: rgba(255, 250, 242, 0.86);
}

.legal-card h1 {
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-bottom: 14px;
}

.legal-updated {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 34px;
}

.legal-content {
  max-width: 900px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  padding-left: 22px;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.site-footer {
  width: min(var(--max), calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 42px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 26px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.footer-inner p {
  max-width: 430px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 800;
}

.footer-links a {
  color: var(--text);
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  font-size: 13px;
}

.footer-note {
  text-align: right;
}

.footer-note a {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links:not(.simple-links) {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 250, 242, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-open .nav-links:not(.simple-links) {
    display: flex;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .hero,
  .split-section,
  .pricing-section,
  .integration-box {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 72px;
    min-height: 0;
  }

  .feature-grid,
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 0 0;
  }

  .navbar,
  .section-pad,
  .trust-strip,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  .navbar {
    border-radius: 22px;
  }

  .simple-links {
    gap: 4px;
  }

  .simple-links a:not(.nav-cta) {
    display: none;
  }

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

  .brand-text {
    font-size: 18px;
  }

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

  .hero {
    gap: 34px;
    padding-top: 58px;
  }

  h1 {
    font-size: clamp(3.1rem, 18vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.25rem);
  }

  .hero-actions,
  .center-actions,
  .legal-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .phone-mockup {
    border-radius: 34px;
    padding: 14px;
  }

  .language-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .chat-window {
    min-height: 360px;
  }

  .trust-strip,
  .feature-grid,
  .materials-grid {
    grid-template-columns: 1fr;
  }

  .step-card,
  .feature-card,
  .price-card {
    padding: 22px;
  }

  .integration-box,
  .notice-box,
  .legal-card {
    border-radius: 28px;
  }

  .final-box {
    border-radius: 30px;
  }

  .footer-inner,
  .footer-bottom {
    flex-direction: column;
  }

  .footer-note {
    text-align: left;
  }
}