:root {
  --orange: #ED7333;
  --orange-light: #FF9A63;
  --honey: #F6B75A;
  --cream: #FFF4E6;
  --sky: #E7F6FF;
  --ink: #3A2A1E;
  --card: #FFF9F2;
  --shadow: 0 10px 30px rgba(237, 115, 51, 0.18);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", "Nunito", "Quicksand", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #ffffff 0%, var(--sky) 35%, var(--cream) 70%);
}

.page {
  min-height: 100vh;
  padding: 28px 20px 60px;
  position: relative;
  overflow-x: hidden;
}

.background-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.35;
}

.bubble.one {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, #ffe6d3, #ffd4b8);
  top: -40px;
  right: -60px;
}

.bubble.two {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #fff6e8, #ffd8b0);
  bottom: 60px;
  left: -70px;
}

.bubble.three {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #ffe9d8, #ffd0a4);
  top: 160px;
  left: 70px;
}

.header {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  background: linear-gradient(140deg, var(--orange), var(--honey));
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(237, 115, 51, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(237, 115, 51, 0.2);
}

.hero {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-title {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.jar {
  width: 220px;
  height: 300px;
  border-radius: 40px 40px 60px 60px;
  border: 5px solid #f8d0b0;
  position: relative;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: inset 0 0 20px rgba(237, 115, 51, 0.15), var(--shadow);
  overflow: hidden;
}

.jar-lid {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 160px;
  height: 30px;
  border-radius: 20px;
  background: linear-gradient(120deg, #ffb987, #f9b16f);
  box-shadow: 0 8px 16px rgba(237, 115, 51, 0.2);
}

.jar-liquid {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 65%;
  background: linear-gradient(180deg, #ffd5a7 0%, var(--orange) 70%);
  animation: float 3.5s ease-in-out infinite;
}

.jar-highlight {
  position: absolute;
  top: 26px;
  left: 24px;
  width: 40px;
  height: 180px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
}

.mascot {
  margin-top: 16px;
  text-align: center;
}

.speech-bubble {
  display: inline-block;
  background: #fff;
  padding: 10px 14px;
  border-radius: 18px;
  box-shadow: 0 6px 16px rgba(237, 115, 51, 0.12);
  position: relative;
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 30px;
  width: 16px;
  height: 16px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: 4px 4px 10px rgba(237, 115, 51, 0.08);
}

.section {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto 30px;
}

.section-title {
  font-size: 22px;
  margin-bottom: 14px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  line-height: 1.5;
}

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

.cta a {
  text-decoration: none;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(237, 115, 51, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta a.secondary {
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
}

.cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 22px rgba(237, 115, 51, 0.28);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 8px 18px rgba(237, 115, 51, 0.12);
}

.footer {
  text-align: center;
  font-size: 14px;
  margin-top: 30px;
  color: #6b4b37;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

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

  .jar {
    width: 180px;
    height: 250px;
  }
}
