:root {
  --primary: #e53935;
  --accent: #ffd600;
  --text: #111111;
  --muted: #585858;
  --bg: #ffffff;
  --card: #ffffff;
  --shadow: 0 10px 30px rgba(229, 57, 53, 0.1);
  --shadow-soft: 0 6px 18px rgba(0, 0, 0, 0.08);
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 214, 0, 0.15), transparent 24%),
    radial-gradient(circle at 15% 78%, rgba(229, 57, 53, 0.08), transparent 28%),
    var(--bg);
  line-height: 1.5;
}

img {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.topbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.topbar-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(229, 57, 53, 0.22);
}

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

h1 {
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  line-height: 1.1;
  margin: 14px 0;
  max-width: 14ch;
}

h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin-bottom: 20px;
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.kicker {
  display: inline-block;
  background: rgba(255, 214, 0, 0.25);
  color: #6d4f00;
  border: 1px solid rgba(255, 214, 0, 0.55);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.87rem;
  font-weight: 600;
}

.hero-subtext {
  color: var(--muted);
  max-width: 50ch;
  font-size: 1.03rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.hero-media img {
  min-height: 420px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.hero-cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-row span {
  font-size: 0.87rem;
  font-weight: 500;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 12px;
  border-radius: 999px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

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

.btn:focus-visible {
  outline: 3px solid rgba(229, 57, 53, 0.3);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(229, 57, 53, 0.28);
}

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

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #1fbe59;
}

.btn-accent {
  background: var(--accent);
  color: #232323;
  box-shadow: 0 10px 22px rgba(255, 214, 0, 0.35);
}

.btn-accent:hover {
  background: #f6cc00;
}

.btn-rider {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 25px rgba(229, 57, 53, 0.28);
}

.btn-rider:hover {
  background: #cf2f2b;
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-small {
  padding: 10px 14px;
  font-size: 0.92rem;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.step-card {
  padding: 20px;
}

.step-index {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
}

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

.food-card {
  overflow: hidden;
  padding: 0;
  position: relative;
}

.food-card img {
  height: 230px;
  object-fit: cover;
  border-radius: 16px;
}

.food-label {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 9px 10px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72));
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

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

.value-card {
  padding: 22px;
}

.value-card ul {
  margin: 12px 0 18px;
  padding-left: 19px;
}

.value-card li {
  margin: 8px 0;
  color: #262626;
}

.final-cta-inner {
  text-align: center;
  padding: 38px 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(229, 57, 53, 0.1), rgba(255, 214, 0, 0.2)),
    #fff;
  border: 1px solid rgba(229, 57, 53, 0.15);
}

.final-cta-inner p {
  color: var(--muted);
  margin: 6px 0 18px;
}

.social-follow {
  margin-top: 18px;
}

.social-follow p {
  margin: 0 0 10px;
  color: #2c2c2c;
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #151515;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease, background 0.18s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-card {
  padding: 18px;
}

.faq-card summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 24px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 200;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: none;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.42);
  cursor: pointer;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-wa:hover {
  transform: translateY(-3px) scale(1.03);
}

.floating-wa svg {
  width: 34px;
  height: 34px;
  color: #fff;
}

.footer {
  padding: 30px 0 44px;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-media img {
    min-height: 300px;
  }

  .steps,
  .split-grid,
  .faq-grid,
  .food-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .section {
    padding: 56px 0;
  }

  .topbar-inner {
    min-height: 68px;
  }

  .steps,
  .split-grid,
  .faq-grid,
  .food-grid {
    grid-template-columns: 1fr;
  }

  .hero-cta-row .btn {
    width: 100%;
  }
}
