* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #020806;
  color: #ffffff;
  overflow-x: hidden;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 92px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(2, 8, 6, 0.72);
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: #fff;
  font-size: 30px;
  font-weight: 800;
}

.logo span span,
.mini-logo span {
  color: #6bc844;
}

.logo-icon {
  width: 48px;
  height: 48px;
  color: #6bc844;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 52px;
}

.nav-links a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #7bd64d;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 100%;
  height: 2px;
  background: #7bd64d;
}

.section {
  min-height: 100vh;
}

.hero {
  position: relative;
  padding: 160px 70px 80px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 50px;
  background:
    radial-gradient(circle at 45% 35%, rgba(46, 150, 54, 0.22), transparent 38%),
    radial-gradient(circle at 70% 70%, rgba(108, 200, 68, 0.16), transparent 34%),
    linear-gradient(135deg, #020806 0%, #03130d 45%, #010403 100%);
}

.badge {
  width: fit-content;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(103, 210, 73, 0.35);
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 800;
  background: rgba(20, 70, 36, 0.25);
}

.badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #7bd64d;
  box-shadow: 0 0 18px #7bd64d;
}

.hero h1 {
  margin-top: 44px;
  font-size: clamp(64px, 6.5vw, 108px);
  line-height: 0.94;
  letter-spacing: -4px;
  font-weight: 900;
}

.hero h1 span {
  color: #69c842;
}

.hero-content > p {
  max-width: 650px;
  margin-top: 34px;
  color: #d6ddd8;
  font-size: 24px;
  line-height: 1.65;
}

.features {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 650px;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(87, 185, 55, 0.18);
  color: #79d54a;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #c7d0ca;
  font-size: 15px;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  height: 720px;
}

.glow-circle {
  position: absolute;
  right: 40px;
  top: 0;
  width: 720px;
  height: 720px;
  border: 2px solid rgba(103, 210, 73, 0.42);
  border-radius: 50%;
}

.laptop {
  position: absolute;
  right: 70px;
  top: 95px;
  width: 850px;
  height: 520px;
  padding: 16px;
  border-radius: 26px;
  background: linear-gradient(145deg, #1b1d1d, #050707);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.65);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
}

.laptop::after {
  content: "";
  position: absolute;
  left: -55px;
  bottom: -42px;
  width: 940px;
  height: 60px;
  border-radius: 0 0 50px 50px;
  background: linear-gradient(180deg, #2a2c2d, #0f1010);
}

.laptop-screen {
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  border-radius: 16px;
  background: #f6f7f6;
}

.dashboard-sidebar {
  width: 185px;
  padding: 28px 20px;
  color: #fff;
  background: linear-gradient(180deg, #07351f, #02150d);
}

.mini-logo {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 34px;
}

.dashboard-sidebar div:not(.mini-logo) {
  padding: 13px 14px;
  margin-bottom: 8px;
  border-radius: 9px;
  font-size: 13px;
  color: #dcebe0;
}

.side-active {
  background: rgba(106, 200, 66, 0.22);
}

.dashboard-main {
  flex: 1;
  padding: 34px;
  color: #0e1713;
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-head h2 {
  font-size: 24px;
}

.dashboard-head p {
  color: #7b8780;
  margin-top: 5px;
}

.dashboard-head button {
  border: 0;
  background: #fff;
  padding: 13px 20px;
  border-radius: 13px;
  color: #18221c;
}

.stats {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats div,
.panel {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.stats span {
  display: block;
  color: #66736b;
  font-size: 12px;
  margin-bottom: 14px;
}

.stats strong {
  font-size: 29px;
}

.dashboard-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.panel h4 {
  margin-bottom: 18px;
}

.panel p {
  padding: 10px 0;
  color: #4d5851;
  border-bottom: 1px solid #edf0ee;
}

.phone {
  position: absolute;
  right: 5px;
  bottom: 22px;
  width: 280px;
  height: 560px;
  padding: 12px;
  border-radius: 38px;
  background: #111;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  padding: 22px 15px;
  background: linear-gradient(180deg, #07351f, #02160d);
  overflow: hidden;
}

.phone-header,
.template-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-header {
  margin-bottom: 18px;
}

.tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.tabs button {
  border: 0;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 11px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.tabs button:first-child {
  background: #79d54a;
  color: #10200f;
}

.menu-item {
  display: grid;
  grid-template-columns: 56px 1fr 30px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 16px;
  background: #f7f8f7;
  color: #101b14;
}

.menu-item > div {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, #c96b2c, #332015);
}

.menu-item h4 {
  font-size: 13px;
}

.menu-item p {
  color: #68736c;
  font-size: 10px;
  margin: 3px 0;
}

.menu-item strong {
  font-size: 13px;
}

.menu-item button {
  border: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #70ca47;
  color: #fff;
  font-size: 18px;
}

.templates {
  position: relative;
  padding: 130px 70px 120px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(108, 200, 68, 0.18), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(47, 178, 78, 0.12), transparent 35%),
    linear-gradient(180deg, #020806 0%, #03140d 55%, #020806 100%);
}

.section-head {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-head h2 {
  margin-top: 30px;
  font-size: clamp(44px, 5vw, 78px);
  line-height: 1.05;
  letter-spacing: -3px;
}

.section-head h2 span {
  color: #6bc844;
}

.section-head p {
  margin-top: 24px;
  color: #cbd6cf;
  font-size: 20px;
  line-height: 1.7;
}

.basic-template-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.basic-template-card {
  position: relative;
  padding: 26px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #07100b;
  border: 1px solid rgba(123, 214, 77, 0.16);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  transition: 0.35s ease;
}

.basic-template-card:hover {
  transform: translateY(-16px);
  border-color: rgba(123, 214, 77, 0.45);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.62);
}

.basic-phone {
  width: 100%;
  max-width: 355px;
  height: 650px;
  margin: 0 auto;
  padding: 13px;
  border-radius: 38px;
  background: linear-gradient(145deg, #1b1d1d, #050606);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.basic-screen {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 42px 28px 28px;
  border-radius: 29px;
  overflow: hidden;
  text-align: center;
}

.basic-screen::before,
.basic-screen::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.basic-cafe .basic-screen {
  color: #274128;
  background:
    linear-gradient(180deg, rgba(250, 245, 232, 0.92), rgba(240, 229, 206, 0.96)),
    #f4ead8;
}

.basic-cafe .basic-screen::before {
  inset: 18px;
  border: 2px solid #314d31;
  border-radius: 20px;
}

.basic-restaurant .basic-screen {
  color: #ffffff;
  background:
    radial-gradient(circle at 50% 10%, rgba(214, 160, 69, 0.15), transparent 34%),
    linear-gradient(180deg, #131313, #030303);
}

.basic-restaurant .basic-screen::before {
  inset: 18px;
  border: 2px solid #c9943c;
  border-radius: 24px;
}

.basic-bistro .basic-screen {
  color: #fff4e8;
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 235, 202, 0.42), transparent 22%),
    radial-gradient(circle at 100% 55%, rgba(34, 65, 43, 0.7), transparent 25%),
    linear-gradient(180deg, #b94e2c, #8f371f);
}

.basic-bistro .basic-screen::before {
  width: 220px;
  height: 150px;
  left: -70px;
  top: -35px;
  border-radius: 50%;
  background: rgba(255, 235, 210, 0.9);
}

.basic-bistro .basic-screen::after {
  right: -45px;
  bottom: -55px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(27, 57, 37, 0.55);
}

.basic-icon {
  position: relative;
  z-index: 2;
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.basic-cafe .basic-icon {
  color: #314d31;
}

.basic-restaurant .basic-icon {
  color: #c9943c;
}

.basic-bistro .basic-icon {
  color: #fff4e8;
}

.basic-screen h3 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: 5px;
  font-weight: 900;
}

.basic-restaurant .basic-screen h3 {
  font-size: 32px;
  letter-spacing: 2px;
  white-space: nowrap;
}

.basic-line {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 2px;
  margin: 22px auto;
}

.basic-cafe .basic-line {
  background: #314d31;
}

.basic-restaurant .basic-line {
  background: #c9943c;
}

.basic-bistro .basic-line {
  background: #f7ddbe;
}

.basic-screen > p {
  position: relative;
  z-index: 2;
  max-width: 250px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.55;
}

.basic-qr-box {
  position: relative;
  z-index: 2;
  width: 250px;
  min-height: 250px;
  margin: 34px auto 22px;
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.basic-qr-box span {
  font-size: 21px;
  letter-spacing: 5px;
  font-weight: 900;
}

.basic-cafe .basic-qr-box {
  background: #30481f;
  color: #fff;
}

.basic-restaurant .basic-qr-box {
  border: 2px solid #c9943c;
  color: #c9943c;
}

.basic-bistro .basic-qr-box {
  background: rgba(255, 238, 214, 0.88);
  color: #a84225;
}

.fake-qr {
  width: 175px;
  height: 175px;
  border-radius: 10px;
  background:
    linear-gradient(90deg, #000 10px, transparent 10px) 0 0 / 20px 20px,
    linear-gradient(#000 10px, transparent 10px) 0 0 / 20px 20px,
    #fff;
  border: 12px solid #fff;
  box-shadow: inset 0 0 0 8px #000;
}

.basic-menu-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 10px;
  margin-top: 10px;
  text-align: left;
}

.basic-menu-list div {
  padding: 12px 14px;
  border-radius: 15px;
  backdrop-filter: blur(8px);
}

.basic-cafe .basic-menu-list div {
  background: rgba(49, 77, 49, 0.08);
}

.basic-restaurant .basic-menu-list div {
  background: rgba(255, 255, 255, 0.08);
}

.basic-bistro .basic-menu-list div {
  background: rgba(255, 238, 214, 0.16);
}

.basic-menu-list strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.basic-menu-list p {
  font-size: 12px;
  line-height: 1.35;
  opacity: 0.8;
}

.basic-template-card > h4 {
  margin-top: 24px;
  font-size: 26px;
  text-align: center;
}

.basic-template-card > span {
  display: block;
  margin-top: 8px;
  color: #9fb5a7;
  text-align: center;
  font-size: 15px;
}

.pricing {
  position: relative;
  padding: 130px 70px 120px;
  background:
    radial-gradient(circle at 50% 45%, rgba(108, 200, 68, 0.18), transparent 34%),
    radial-gradient(circle at 80% 75%, rgba(47, 178, 78, 0.12), transparent 30%),
    linear-gradient(180deg, #020806 0%, #03130d 52%, #020806 100%);
}

.pricing-cards {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: center;
}

.pricing-card {
  position: relative;
  min-height: 640px;
  padding: 42px 34px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025)),
    #07100b;
  border: 1px solid rgba(123, 214, 77, 0.16);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  transition: 0.35s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(circle at top, rgba(123, 214, 77, 0.16), transparent 42%);
  pointer-events: none;
}

.pricing-card:hover {
  transform: translateY(-14px);
  border-color: rgba(123, 214, 77, 0.45);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.52);
}

.pricing-card.featured {
  min-height: 690px;
  transform: scale(1.06);
  border: 1px solid rgba(123, 214, 77, 0.85);
  box-shadow:
    0 0 0 1px rgba(123, 214, 77, 0.25),
    0 0 70px rgba(107, 200, 68, 0.25),
    0 40px 120px rgba(0, 0, 0, 0.6);
}

.pricing-card.featured:hover {
  transform: scale(1.06) translateY(-14px);
}

.featured-label {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #7bd64d;
  color: #07100b;
  font-size: 12px;
  font-weight: 900;
}

.pricing-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  background: rgba(123, 214, 77, 0.16);
  color: #7bd64d;
  font-size: 34px;
}

.pricing-card h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.pricing-desc {
  color: #bdc9c1;
  font-size: 15px;
  line-height: 1.6;
  min-height: 48px;
}

.main-price {
  margin: 30px 0 28px;
}

.main-price strong {
  display: block;
  font-size: 48px;
  letter-spacing: -2px;
  color: #ffffff;
}

.main-price span {
  display: block;
  margin-top: 8px;
  color: #8fa498;
  font-size: 14px;
}

.pricing-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.pricing-card li {
  position: relative;
  padding-left: 28px;
  color: #d7e1db;
  font-size: 15px;
  line-height: 1.4;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: #7bd64d;
  font-weight: 900;
}

.price-extra {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding: 18px;
  border-radius: 18px;
  background: rgba(123, 214, 77, 0.08);
  border: 1px solid rgba(123, 214, 77, 0.12);
}

.price-extra span {
  color: #cde0d3;
  font-size: 18px;
  font-weight: 900;
}

.pricing-btn {
  width: 100%;
  height: 52px;
  margin-top: 24px;
  border: 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: linear-gradient(135deg, #7bd64d, #3aa84b);
  color: #07100b;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(107, 200, 68, 0.22);
  transition: 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(107, 200, 68, 0.34);
}


.contact {
  padding: 130px 70px;
  background:
    radial-gradient(circle at 50% 50%, rgba(108, 200, 68, 0.16), transparent 32%),
    linear-gradient(180deg, #020806 0%, #03130d 100%);
}

@media (max-width: 1200px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    transform: scale(0.85);
    transform-origin: top left;
  }

  .basic-template-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pricing-card.featured,
  .pricing-card.featured:hover {
    transform: none;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 24px;
    flex-direction: column;
    gap: 22px;
  }

  .nav-links {
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 170px 24px 60px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .templates,
  .pricing,
  .contact {
    padding: 130px 24px 80px;
  }

  .basic-phone {
    height: 620px;
  }

  .basic-screen h3 {
    font-size: 40px;
  }

  .basic-restaurant .basic-screen h3 {
    font-size: 34px;
  }

  .basic-qr-box {
    width: 220px;
    min-height: 220px;
  }

  .fake-qr {
    width: 150px;
    height: 150px;
  }

  .pricing-card {
    min-height: auto;
  }
}

.basic-menu-list {
  display: none;
}
.basic-template-card {
  cursor: pointer;
}

.basic-template-card.active-preview {
  border-color: rgba(123, 214, 77, 0.9);
  box-shadow:
    0 0 0 1px rgba(123, 214, 77, 0.35),
    0 0 55px rgba(123, 214, 77, 0.35),
    0 42px 120px rgba(0, 0, 0, 0.68);
}

.menu-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.menu-preview-modal.show {
  display: flex;
}

.menu-preview-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(12px);
}

.menu-preview-box {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: 52px 42px 38px;
  border-radius: 34px;
  background: linear-gradient(180deg, #111, #030303);
  border: 2px solid #c9943c;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.75);
  color: #fff;
}

.menu-preview-box.cafe-preview {
  background: linear-gradient(180deg, #f4ead8, #efe0c4);
  border-color: #30481f;
  color: #263d27;
}

.menu-preview-box.restaurant-preview {
  background: linear-gradient(180deg, #111, #030303);
  border-color: #c9943c;
  color: #fff;
}

.menu-preview-box.bistro-preview {
  background: linear-gradient(180deg, #b94e2c, #82301c);
  border-color: #f7ddbe;
  color: #fff4e8;
}

.preview-close {
  position: absolute;
  top: 24px;
  right: 26px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 44px;
  line-height: 1;
  cursor: pointer;
}

.preview-back {
  position: absolute;
  top: 28px;
  left: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
}

.preview-icon {
  text-align: center;
  font-size: 48px;
  color: #c9943c;
}

.cafe-preview .preview-icon {
  color: #30481f;
}

.bistro-preview .preview-icon {
  color: #f7ddbe;
}

.menu-preview-box h3 {
  margin-top: 18px;
  text-align: center;
  font-size: clamp(42px, 5vw, 62px);
  letter-spacing: 5px;
  line-height: 1;
}

.preview-subtitle {
  margin: 24px auto 34px;
  width: fit-content;
  color: #c9943c;
  font-size: 24px;
  letter-spacing: 10px;
  font-weight: 900;
}

.cafe-preview .preview-subtitle {
  color: #30481f;
}

.bistro-preview .preview-subtitle {
  color: #f7ddbe;
}

.preview-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
  overflow-x: auto;
}

.preview-tabs button {
  border: 0;
  padding: 13px 18px;
  border-radius: 9px;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font-weight: 800;
  cursor: pointer;
}

.preview-tabs button.active {
  background: #c9943c;
  color: #120c05;
}

.cafe-preview .preview-tabs button.active {
  background: #30481f;
  color: #fff;
}

.bistro-preview .preview-tabs button.active {
  background: #f7ddbe;
  color: #8f371f;
}

.preview-products {
  display: flex;
  flex-direction: column;
}

.preview-product {
  padding: 22px 8px;
  border-top: 1px solid rgba(201, 148, 60, 0.45);
}

.cafe-preview .preview-product {
  border-color: rgba(48, 72, 31, 0.35);
}

.bistro-preview .preview-product {
  border-color: rgba(247, 221, 190, 0.45);
}

.preview-product:last-child {
  border-bottom: 1px solid rgba(201, 148, 60, 0.45);
}

.preview-product h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.preview-product p {
  color: inherit;
  opacity: 0.78;
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .menu-preview-modal {
    padding: 18px;
  }

  .menu-preview-box {
    padding: 50px 24px 30px;
    border-radius: 26px;
  }

  .menu-preview-box h3 {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .preview-subtitle {
    font-size: 18px;
    letter-spacing: 7px;
  }
}
.plan-template-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.plan-template-title h3 {
  margin-top: 26px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  letter-spacing: -2px;
}

.plan-template-title h3 span {
  color: #6bc844;
}

.plan-template-title p {
  margin-top: 18px;
  color: #cbd6cf;
  font-size: 18px;
  line-height: 1.7;
}

.premium-title {
  margin-top: 120px;
}

.premium-template-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.premium-template-card {
  padding: 24px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #07100b;
  border: 1px solid rgba(123, 214, 77, 0.18);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  transition: 0.35s ease;
  cursor: pointer;
}

.premium-template-card:hover {
  transform: translateY(-16px);
  border-color: rgba(201, 148, 60, 0.75);
  box-shadow: 0 42px 120px rgba(0, 0, 0, 0.62);
}

.premium-phone {
  width: 100%;
  max-width: 355px;
  height: 670px;
  margin: 0 auto;
  padding: 13px;
  border-radius: 38px;
  background: linear-gradient(145deg, #1b1d1d, #050606);
}

.premium-screen {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 29px;
  padding: 20px;
}

.premium-luxor .premium-screen {
  color: #fff;
  background: linear-gradient(180deg, #090909, #030303);
}

.premium-green .premium-screen {
  color: #21371f;
  background: linear-gradient(180deg, #fffaf0, #f2f7e8);
}

.premium-warm .premium-screen {
  color: #2b1811;
  background: linear-gradient(180deg, #f6eadf, #ead6c7);
}

.premium-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.premium-top strong {
  letter-spacing: 7px;
  font-size: 22px;
}

.premium-green .premium-top strong {
  letter-spacing: 1px;
  font-size: 26px;
  color: #315c25;
  font-style: italic;
}

.premium-hero {
  height: 190px;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 22px;
  overflow: hidden;
}

.premium-hero h4 {
  font-size: 26px;
  line-height: 1.12;
  margin-bottom: 16px;
}

.premium-hero button {
  width: fit-content;
  border: 0;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
}

.premium-hero-dark {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.85)),
    url("./images/luxor-hero.jpg") center / cover no-repeat;
}

.premium-hero-dark button {
  background: #d6a03b;
  color: #111;
}

.premium-hero-green {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2), rgba(0,0,0,0.1)),
    url("./images/green-hero.jpg") center / cover no-repeat;
}

.premium-hero-green button {
  background: #315c25;
  color: #fff;
}

.premium-hero-warm {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(41,19,9,0.85)),
    url("./images/bistro-hero.jpg") center / cover no-repeat;
}

.premium-hero-warm button {
  background: #7a4329;
  color: #fff;
}

.premium-category-title,
.premium-list-title {
  margin: 20px 0 16px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 900;
  color: #d6a03b;
}

.premium-green .premium-list-title {
  color: #315c25;
}

.premium-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.premium-categories.round {
  grid-template-columns: repeat(4, 1fr);
}

.premium-categories div {
  min-height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  gap: 6px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  font-size: 22px;
}

.premium-green .premium-categories div {
  background: rgba(49, 92, 37, 0.08);
}

.premium-categories span {
  font-size: 9px;
  font-weight: 900;
}

.premium-product {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(201, 148, 60, 0.28);
}

.premium-green .premium-product,
.premium-warm .premium-product {
  border-color: rgba(0, 0, 0, 0.12);
}

.premium-img {
  width: 74px;
  height: 74px;
  border-radius: 14px;
  background-size: cover;
  background-position: center;
}



.premium-product h5 {
  font-size: 16px;
  margin-bottom: 6px;
}

.premium-product p {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.78;
}

.premium-tabs-mini {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.premium-tabs-mini button {
  border: 0;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(122, 67, 41, 0.15);
  color: #2b1811;
  font-size: 11px;
  font-weight: 900;
}

.premium-template-card > h4 {
  margin-top: 24px;
  font-size: 26px;
  text-align: center;
}

.premium-template-card > span {
  display: block;
  margin-top: 8px;
  color: #9fb5a7;
  text-align: center;
  font-size: 15px;
}

.preview-product.with-image {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  align-items: center;
}

.preview-product-img {
  width: 92px;
  height: 92px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.menu-preview-box.premium-luxor-preview {
  background: linear-gradient(180deg, #090909, #020202);
  border-color: #d6a03b;
  color: #fff;
}

.menu-preview-box.premium-green-preview {
  background: linear-gradient(180deg, #fffaf0, #eef7e4);
  border-color: #315c25;
  color: #21371f;
}

.menu-preview-box.premium-bistro-preview {
  background: linear-gradient(180deg, #f6eadf, #ead6c7);
  border-color: #7a4329;
  color: #2b1811;
}

@media (max-width: 1200px) {
  .premium-template-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }
}

@media (max-width: 768px) {
  .premium-phone {
    height: 650px;
  }

  .premium-categories,
  .premium-categories.round {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-product.with-image {
    grid-template-columns: 1fr;
  }
}
.premium-hero {
  background-size: cover !important;
  background-position: center !important;
}

/* PRODUCT IMAGES */
.steak-img {
  background-image: url("/image/steak.jpg");
}

.salmon-img {
  background-image: url("/image/salmon.jpg");
}

.matcha-img {
  background-image: url("/image/matcha.jpg");
}

.cake-img {
  background-image: url("/image/cake.jpg");
}

.burger-img {
  background-image: url("/image/burger.jpg");
}

.pasta-img {
  background-image: url("/image/pasta.jpg");
}


/* EXTRA PREMIUM IMAGES */
.avocado-img {
  background: url("/image/avocado.jpg") center/cover no-repeat;
}

.bowl-img {
  background: url("/image/bowl.jpg") center/cover no-repeat;
}

.brownie-img {
  background: url("/image/brownie.jpg") center/cover no-repeat;
}

.latte-img {
  background: url("/image/latte.jpg") center/cover no-repeat;
}

.tiramisu-img {
  background: url("/image/tiramisu.jpg") center/cover no-repeat;
}

.lemonade-img {
  background: url("/image/lemonade.jpg") center/cover no-repeat;
}

.berry-img {
  background: url("/image/berry.jpg") center/cover no-repeat;
}


.contact-section{
    width:100%;
    padding:120px 0;
}

.contact-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border-radius:999px;
    border:1px solid rgba(96,255,96,.25);
    background:rgba(25,80,25,.25);
    color:#fff;
    font-weight:700;
    margin-bottom:24px;
}

.contact-info h2{
    font-size:72px;
    line-height:1;
    font-weight:800;
    color:#fff;
    margin-bottom:24px;
}

.contact-info h2 span{
    color:#65d84d;
}

.contact-info p{
    color:#c8c8c8;
    font-size:18px;
    line-height:1.7;
    max-width:550px;
    margin-bottom:40px;
}

.contact-cards{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.contact-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:24px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
}

.contact-icon{
    width:56px;
    height:56px;
    border-radius:18px;
    background:rgba(101,216,77,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.contact-card small{
    display:block;
    color:#8f8f8f;
    margin-bottom:6px;
}

.contact-card strong{
    color:#fff;
    font-size:18px;
}

.contact-form{
    padding:36px;
    border-radius:32px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(12px);
}

.form-group{
    margin-bottom:22px;
}

.form-group label{
    display:block;
    color:#fff;
    margin-bottom:10px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:18px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    color:#fff;
    font-size:15px;
    border:1px solid rgba(255,255,255,.05);
}

.form-group textarea{
    min-height:140px;
    resize:none;
}

.contact-btn{
    width:100%;
    height:60px;
    border:none;
    border-radius:18px;
    background:#65d84d;
    color:#000;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

.contact-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 35px rgba(101,216,77,.25);
}

@media(max-width:900px){

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-info h2{
        font-size:52px;
    }

}

.logo-icon img{
    width:120%;
    height:120%;
    object-fit:contain;
}