/* Save Your Restaurant - Professional Website Styles */

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --secondary-color: #f59e0b;
  --success-color: #10b981;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.10);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

section { padding: 80px 0; }
section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 780px;
  margin: 0 auto 60px;
}

/* Header */
header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  color: #fff;
  padding: 88px 0 70px;
  text-align: center;
}
.header-content { max-width: 940px; margin: 0 auto; padding: 0 20px; }
header h1 { font-size: 3rem; font-weight: 900; margin-bottom: 18px; line-height: 1.15; }
header p { font-size: 1.2rem; margin-bottom: 34px; opacity: .96; }

.cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease, border-color .2s ease;
  display: inline-block;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--secondary-color); color: #fff; border-color: var(--secondary-color); }
.btn-primary:hover { background: #d97706; border-color: #d97706; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.btn-secondary:hover { background: #fff; color: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary-dark { background: #111827; color: #fff; border-color: #111827; }
.btn-secondary-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-light { background: #fff; color: var(--primary-dark); border-color: #fff; }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-full { width: 100%; text-align: center; }

.micro-proof {
  margin-top: 18px;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  font-weight: 700;
}

/* Trust Badges */
.trust-badges { background: var(--bg-light); padding: 38px 0; text-align: center; }
.trust-badges .container { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--text-dark); }
.trust-badge .icon { font-size: 1.35rem; color: var(--success-color); }

/* Book */
.book-section { background: var(--bg-light); }
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.book-cover { text-align: center; }
.book-cover img { max-width: 100%; border-radius: 14px; box-shadow: var(--shadow-xl); }
.book-details h3 { font-size: 2rem; margin-bottom: 14px; color: var(--primary-dark); font-weight: 900; }
.price { font-size: 3rem; font-weight: 900; color: var(--secondary-color); margin: 26px 0; }
.book-features { list-style: none; margin: 22px 0; }
.book-features li { padding: 12px 0; border-bottom: 1px solid var(--border-color); display: flex; gap: 10px; align-items: center; }
.book-features li:last-child { border-bottom: none; }
.check { color: var(--success-color); font-weight: 900; font-size: 1.2rem; }

.guarantee {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  padding: 26px;
  border-radius: 14px;
  margin: 28px 0;
  border-left: 5px solid var(--success-color);
}
.guarantee h4 { color: #047857; font-size: 1.2rem; margin-bottom: 8px; font-weight: 900; }
.fineprint { margin-top: 10px; color: var(--text-light); font-size: .95rem; }
.fineprint.dark { color: rgba(17,24,39,0.7); }

/* Success Stories */
.success-section { background: #fff; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.testimonial-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.35); }
.stars { font-weight: 900; letter-spacing: 1px; color: var(--secondary-color); margin-bottom: 8px; }
.testimonial-card h4 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 900; color: var(--text-dark); }
.testimonial-card p { color: #374151; }
.who { margin-top: 12px; font-weight: 800; color: #111827; font-size: .95rem; }
.center-cta { margin-top: 36px; display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* Modules */
.modules-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.module-card {
  background: var(--bg-light);
  padding: 28px;
  border-radius: 14px;
  border: 1px solid var(--border-color);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.35); }
.module-card h4 { font-size: 1.25rem; margin-bottom: 14px; color: var(--primary-dark); font-weight: 900; }
.module-card ul { list-style: none; }
.module-card li { padding: 8px 0; padding-left: 22px; position: relative; color: #374151; }
.module-card li:before { content: "✓"; position: absolute; left: 0; color: var(--success-color); font-weight: 900; }

/* Bonuses */
.bonuses-section { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); }
.bonuses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.bonus-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.bonus-card .icon { font-size: 2.3rem; margin-bottom: 10px; }
.bonus-card h4 { font-size: 1.1rem; font-weight: 900; margin-bottom: 8px; }

/* Author */
.author-section { background: var(--bg-light); }
.author-content { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: start; }
.author-photo { text-align: center; }
.author-photo img { max-width: 100%; border-radius: 14px; box-shadow: var(--shadow-lg); }
.author-details h3 { font-size: 1.7rem; margin-bottom: 14px; color: var(--primary-dark); font-weight: 900; }
.credentials { background: #fff; padding: 18px; border-radius: 12px; margin-top: 18px; }
.credentials h4 { font-weight: 900; margin-bottom: 10px; }
.credentials ul { list-style: none; }
.credentials li { padding: 8px 0; padding-left: 22px; position: relative; }
.credentials li:before { content: "▸"; position: absolute; left: 0; color: var(--primary-color); font-weight: 900; }

/* Consulting */
.consulting-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: #fff;
}
.consulting-section h2 { color: #fff; }
.consulting-section .section-subtitle { color: rgba(255,255,255,0.92); }
.consulting-intro { text-align: center; max-width: 860px; margin: 0 auto 40px; font-size: 1.15rem; line-height: 1.75; }

.consulting-packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 30px;
}
.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 25px 55px -14px rgba(0,0,0,0.35); }
.package-card.featured { border: 3px solid var(--secondary-color); }
.package-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--secondary-color); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-weight: 900; font-size: .85rem;
  z-index: 4;
}
.package-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  padding: 34px 26px;
  text-align: center;
  color: #fff;
}
.package-header h3 { font-size: 1.6rem; font-weight: 900; margin-bottom: 8px; }
.package-header .tagline { opacity: .92; margin-bottom: 16px; font-weight: 700; }
.package-header .price { font-size: 2.7rem; font-weight: 950; color: var(--secondary-color); }
.package-header .price span { font-size: 1rem; font-weight: 700; color: #fff; }

.package-body { padding: 22px 22px 10px; flex-grow: 1; }
.package-note { margin-bottom: 16px; color: #6b7280; font-weight: 700; }
.package-features { list-style: none; margin-bottom: 16px; }
.package-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex; gap: 10px; align-items: start;
}
.package-features li:last-child { border-bottom: none; }
.package-features .icon { color: var(--success-color); font-weight: 950; font-size: 1.1rem; margin-top: 2px; }

.mini-reviews {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.mini-review {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px;
}
.mini-review p { color: #111827; }
.mini-review .who { margin-top: 8px; color: #374151; font-weight: 800; font-size: .92rem; }

.package-cta { padding: 0 22px 22px; }
.package-cta .btn { width: 100%; text-align: center; position: relative; z-index: 5; }

/* Make whole card clickable (checkmarks + content) */
.package-card.clickable { cursor: pointer; }
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.package-card .package-cta a,
.package-card a { position: relative; z-index: 5; }

/* Discovery CTA */
.discovery-cta {
  background: #fff;
  border-radius: 16px;
  padding: 44px 24px;
  text-align: center;
  margin-top: 60px;
  box-shadow: var(--shadow-xl);
  color: var(--text-dark);
}
.discovery-cta h3 { font-size: 2rem; margin-bottom: 14px; font-weight: 950; }
.discovery-cta p { color: var(--text-light); margin-bottom: 22px; font-size: 1.12rem; }
.btn-discovery {
  background: var(--primary-color);
  color: #fff;
  padding: 18px 40px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  display: inline-block;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.btn-discovery:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* FAQ */
.faq-section { background: var(--bg-light); }
.faq-grid { max-width: 950px; margin: 0 auto; display: grid; gap: 18px; }
.faq-item { background: #fff; padding: 26px; border-radius: 14px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.faq-item h4 { font-size: 1.15rem; margin-bottom: 10px; color: var(--primary-dark); font-weight: 950; }
.faq-item p { color: #374151; line-height: 1.85; }
.faq-item p + p { margin-top: 10px; }

/* Final CTA */
.final-cta {
  text-align: center;
  background: var(--primary-color);
  color: #fff;
  padding: 96px 0;
}
.final-cta h2 { color: #fff; margin-bottom: 18px; }
.final-cta p { max-width: 820px; margin: 0 auto 30px; font-size: 1.15rem; opacity: .95; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: #111827; color: #fff; padding: 60px 0 28px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 36px; margin-bottom: 30px; }
.footer-section h4 { font-size: 1.12rem; margin-bottom: 14px; color: var(--secondary-color); font-weight: 950; }
.footer-section ul { list-style: none; }
.footer-section li { padding: 7px 0; }
.footer-section a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color .2s ease; }
.footer-section a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 22px; text-align: center; color: rgba(255,255,255,0.65); }
.footer-bottom a { color: rgba(255,255,255,0.8); }

/* Responsive */
@media (max-width: 980px) {
  header h1 { font-size: 2.5rem; }
  .book-grid, .author-content { grid-template-columns: 1fr; gap: 34px; }
}
@media (max-width: 640px) {
  header { padding: 70px 0 56px; }
  header h1 { font-size: 2.05rem; }
  header p { font-size: 1.05rem; }
  .cta-group { flex-direction: column; align-items: stretch; }
  section { padding: 64px 0; }
  section h2 { font-size: 2.0rem; }
  .package-header .price { font-size: 2.4rem; }
  .discovery-cta h3 { font-size: 1.6rem; }
}
