:root {
  --teal: #1D9E75;
  --teal-light: #5DCAA5;
  --teal-dark: #04342C;
  --teal-bg: #E1F5EE;
  --coral: #D85A30;
  --coral-light: #F0997B;
  --coral-bg: #FAECE7;
  --cream: #FBF9F4;
  --warm-white: #FEFDFB;
  --text-primary: #1A1A18;
  --text-secondary: #5F5E5A;
  --text-muted: #888780;
  --border: rgba(0,0,0,0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(254,253,251,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo svg { flex-shrink: 0; }
.nav-wordmark {
  font-size: 22px; font-weight: 400; color: var(--text-primary);
  letter-spacing: -0.5px; line-height: 1;
}
.nav-wordmark span { font-weight: 600; color: var(--teal); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 15px; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--teal); }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: 8px;
  font-family: inherit; font-size: 15px; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--teal); color: white;
}
.btn-primary:hover { background: #178a66; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(29,158,117,0.3); }
.btn-outline {
  background: transparent; color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal-bg); }
.btn-coral { background: var(--coral); color: white; }
.btn-coral:hover { background: #c24e28; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(216,90,48,0.3); }
.btn-sm { padding: 8px 18px; font-size: 14px; }
.btn:disabled {
  opacity: 0.6; cursor: not-allowed; transform: none !important;
  box-shadow: none !important;
}

/* ── HERO ── */
.hero {
  padding: 10rem 2rem 6rem;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-text h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--teal-dark);
  margin-bottom: 1.5rem;
}
.hero-text h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero-text p {
  font-size: 1.2rem; line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
  width: 100%; max-width: 480px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(4,52,44,0.12), 0 4px 20px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05);
}
.mockup-header {
  background: var(--teal-dark);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
}
.mockup-header-left {
  display: flex; align-items: center; gap: 10px;
}
.mockup-restaurant-name {
  color: white; font-size: 14px; font-weight: 500;
}
.mockup-dots {
  display: flex; gap: 4px;
}
.mockup-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.mockup-dots span:first-child { background: var(--coral); }

.mockup-body { padding: 1.25rem; }
.mockup-menu-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 0.75rem; font-weight: 500;
}
.mockup-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mockup-item:last-child { border-bottom: none; }
.mockup-item-name { font-size: 14px; font-weight: 500; }
.mockup-item-desc { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.mockup-item-price { font-size: 14px; font-weight: 600; color: var(--teal); white-space: nowrap; }
.mockup-item-add {
  width: 28px; height: 28px; border-radius: 6px;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 500; cursor: pointer;
  border: none; margin-left: 10px;
  transition: all 0.2s;
}
.mockup-item-add:hover { background: var(--teal); color: white; }
.mockup-item-right { display: flex; align-items: center; }

.mockup-cart {
  margin-top: 1rem;
  background: var(--teal);
  border-radius: 10px;
  padding: 0.85rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  color: white; font-size: 14px; font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.mockup-cart:hover { background: #178a66; }
.mockup-cart-count {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px; border-radius: 20px;
  font-size: 13px;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
  top: -40px; right: -40px;
  border-radius: 50%;
  z-index: -1;
}
.hero-visual::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(216,90,48,0.06) 0%, transparent 70%);
  bottom: -30px; left: 20px;
  border-radius: 50%;
  z-index: -1;
}

/* ── SOCIAL PROOF STRIP ── */
.social-proof {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
}
.social-proof p {
  font-size: 14px; color: var(--text-muted);
  letter-spacing: 0.5px;
}
.social-proof .locations {
  margin-top: 0.5rem;
  font-size: 15px; color: var(--text-secondary); font-weight: 500;
  display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.locations span { display: flex; align-items: center; gap: 6px; }
.locations .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-light); }

/* ── FEATURES ── */
.features {
  padding: 7rem 2rem;
  max-width: 1100px; margin: 0 auto;
}
.section-label {
  font-size: 12px; text-transform: uppercase; letter-spacing: 3px;
  color: var(--coral); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal-dark); line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.7; max-width: 600px;
  margin-bottom: 3.5rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(29,158,117,0.2);
  box-shadow: 0 8px 30px rgba(4,52,44,0.06);
  transform: translateY(-2px);
}
.feature-card.coming-soon { opacity: 0.75; }
.feature-card.coming-soon:hover { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; font-size: 22px;
}
.feature-icon.teal { background: var(--teal-bg); color: var(--teal); }
.feature-icon.coral { background: var(--coral-bg); color: var(--coral); }

.feature-card h3 {
  font-size: 17px; font-weight: 600; margin-bottom: 0.5rem;
  color: var(--teal-dark);
}
.feature-card p {
  font-size: 14px; line-height: 1.65; color: var(--text-secondary);
}
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 4px 10px;
  border-radius: 4px; margin-bottom: 1rem;
}
.badge-live { background: var(--teal-bg); color: var(--teal); }
.badge-soon { background: var(--coral-bg); color: var(--coral); }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 7rem 2rem;
  background: var(--teal-dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.how-it-works::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(29,158,117,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(216,90,48,0.08) 0%, transparent 50%);
}
.how-it-works-inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.how-it-works .section-label { color: var(--teal-light); }
.how-it-works .section-title { color: white; }
.how-it-works .section-subtitle { color: rgba(255,255,255,0.65); }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  padding: 2rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem; color: var(--coral);
  opacity: 0.5; line-height: 1;
  margin-bottom: 1rem;
}
.step h3 {
  font-size: 17px; font-weight: 600;
  margin-bottom: 0.5rem; color: white;
}
.step p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.6);
}

/* ── BUILT DIFFERENT SECTION ── */
.for-owners {
  padding: 7rem 2rem;
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.owner-visual {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.owner-checklist { list-style: none; }
.owner-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 0.75rem 0;
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.5;
}
.check-icon {
  flex-shrink: 0;
  width: 24px; height: 24px; border-radius: 6px;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
  margin-top: 1px;
}
.owner-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--teal-dark); line-height: 1.15;
  margin-bottom: 1rem;
}
.owner-text h2 em {
  font-style: italic;
}
.owner-text p {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.owner-text .highlight {
  font-weight: 600; color: var(--teal-dark);
}

/* ── PRICING ── */
.pricing {
  padding: 7rem 2rem;
  background: var(--cream);
  text-align: center;
  border-top: 1px solid var(--border);
}
.pricing-inner {
  max-width: 700px; margin: 0 auto;
}
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
  margin-top: 2.5rem;
  text-align: left;
}
.pricing-card-header {
  display: flex; align-items: baseline; gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.pricing-card-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--teal-dark);
}
.pricing-card-header span {
  font-size: 14px; color: var(--text-muted);
}
.pricing-card > p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6; margin-bottom: 2rem;
}
.pricing-includes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem;
  margin-bottom: 2rem;
}
.pricing-includes li {
  list-style: none;
  font-size: 14px; color: var(--text-secondary);
  padding: 0.4rem 0;
  display: flex; align-items: center; gap: 8px;
}
.pricing-includes .inc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
}
.pricing-divider {
  height: 1px; background: var(--border);
  margin: 1.5rem 0;
}
.pricing-note {
  font-size: 13px; color: var(--text-muted);
  font-style: italic; line-height: 1.5;
}

/* ── CONTACT ── */
.contact {
  padding: 7rem 2rem;
  max-width: 700px; margin: 0 auto;
}
.contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--teal-dark); line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
}
.contact > p {
  font-size: 1.1rem; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 2.5rem;
  text-align: center;
}
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex; flex-direction: column;
  margin-bottom: 1.25rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 13px; font-weight: 500; color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text-primary);
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group textarea {
  resize: vertical; min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888780' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group .field-error {
  font-size: 12px; color: var(--coral);
  margin-top: 4px; display: none;
}
.form-group.has-error input,
.form-group.has-error textarea {
  border-color: var(--coral);
}
.form-group.has-error .field-error {
  display: block;
}
.form-error-message {
  font-size: 14px; color: var(--coral);
  margin-top: 1rem; display: none;
  text-align: center; line-height: 1.5;
}
.form-error-message a {
  color: var(--coral); text-decoration: underline;
}
.honeypot {
  display: none;
}
.form-submit {
  margin-top: 0.5rem;
}
.form-submit .btn {
  width: 100%; justify-content: center;
  font-size: 16px; padding: 14px 24px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.form-success .success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--teal-bg); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 1.25rem;
}
.form-success h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; color: var(--teal-dark);
  margin-bottom: 0.5rem;
}
.form-success p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.6;
}

/* ── FOOTER ── */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.footer-wordmark {
  font-size: 18px; font-weight: 400; color: var(--text-primary);
  letter-spacing: -0.3px;
}
.footer-wordmark span { font-weight: 600; color: var(--teal); }
.footer-meta {
  font-size: 13px; color: var(--text-muted);
  display: flex; gap: 1.5rem; align-items: center;
}
.footer-meta a {
  color: var(--text-muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-meta a:hover { color: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 8rem; }
  .hero-visual { order: -1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .for-owners { grid-template-columns: 1fr; }
  .pricing-includes { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  nav { padding: 0.75rem 1.25rem; }
  .hero { padding: 7rem 1.25rem 4rem; }
  .features, .for-owners, .contact { padding: 4rem 1.25rem; }
  .how-it-works, .pricing { padding: 4rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
}
