:root {
  --primary: #3a86ff;
  --primary-dark: #14213d;
  --light: #f5f7ff;
  --surface: #ffffff;
  --accent: #ffbe0b;
  --text: #24304a;
  --muted: #61708f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--light);
  line-height: 1.6;
}

.hero {
  min-height: 60vh;
  background: linear-gradient(rgba(20, 33, 61, 0.75), rgba(20, 33, 61, 0.75)),
    url("https://images.unsplash.com/photo-1523362628745-0c100150b504?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #fff;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-size: clamp(2.75rem, 6vw, 3.75rem);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(20, 33, 61, 0.2);
  background-color: #ffd85c;
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: none;
}

main {
  padding: 3.5rem 1.5rem 4.5rem;
}

.section {
  max-width: 1100px;
  margin: 0 auto 4rem;
}

.section--alt {
  background: var(--surface);
  border-radius: 20px;
  padding: 2.75rem;
  box-shadow: 0 40px 80px rgba(20, 33, 61, 0.08);
}

.section__intro {
  text-align: center;
  margin-bottom: 2.25rem;
}

.section__intro h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 0.9rem;
  color: var(--primary-dark);
}

.section__intro p {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto;
}

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

.card {
  background: var(--surface);
  padding: 1.9rem;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(20, 33, 61, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card h3 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: 1.2rem;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 36px 70px rgba(20, 33, 61, 0.12);
}

.plan {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2rem;
}

.plan__day {
  background: var(--light);
  padding: 1.65rem;
  border-radius: 16px;
  border: 1px solid rgba(58, 134, 255, 0.2);
}

.plan__day h4 {
  margin-top: 0;
  margin-bottom: 0.9rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.plan__day ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plan__day li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.35rem;
}

.plan__day li::before {
  content: "•";
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 1.3rem;
  line-height: 1;
}

.tips {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 620px;
  display: grid;
  gap: 0.85rem;
}

.tips li {
  background: var(--surface);
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(36, 48, 74, 0.08);
}

.section--blog .section__intro {
  margin-bottom: 2.5rem;
}

.blog-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.blog-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(20, 33, 61, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.blog-card h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.blog-card__meta {
  color: var(--muted);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.blog-card__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

.blog-card__link:hover {
  text-decoration: underline;
}

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 1.5rem 2.5rem;
}

.footer__content {
  max-width: 1100px;
  margin: 0 auto 2rem;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer h4,
.footer h5 {
  margin-top: 0;
  color: #fff;
}

.footer__brand p {
  margin-bottom: 0.75rem;
}

.footer__contact a {
  color: #fff;
  text-decoration: none;
}

.footer__contact a:hover {
  text-decoration: underline;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer__links a:hover {
  color: #fff;
}

.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
  font-size: 0.95rem;
}

.page-header {
  background: var(--surface);
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
}

.page-header .logo {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-dark);
  text-decoration: none;
}

.page-content {
  max-width: 900px;
  margin: 0 auto 4rem;
  background: var(--surface);
  padding: 2.5rem 2.75rem;
  border-radius: 20px;
  box-shadow: 0 32px 70px rgba(20, 33, 61, 0.08);
}

.page-content h1 {
  margin-top: 0;
  color: var(--primary-dark);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-content h2 {
  color: var(--primary-dark);
  margin-top: 2rem;
}

.page-content p,
.page-content li {
  color: var(--text);
}

.article-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.article-content {
  display: grid;
  gap: 1.25rem;
}

.article-content ul {
  padding-left: 1.2rem;
}

@media (max-width: 720px) {
  .section--alt {
    padding: 2.25rem 1.75rem;
  }

  .page-content {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 600px) {
  main {
    padding: 3rem 1.1rem 3.75rem;
  }

  .hero {
    padding: 3.5rem 1.25rem;
  }

  .hero__eyebrow {
    letter-spacing: 0.16em;
  }
}

.hero--gelatin {
  background: linear-gradient(rgba(20, 33, 61, 0.78), rgba(20, 33, 61, 0.78)),
    url("https://images.unsplash.com/photo-1505250469679-203ad9ced0cb?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.landing {
  padding-top: 3rem;
}

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

.benefit {
  background: var(--surface);
  padding: 1.9rem;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(20, 33, 61, 0.08);
}

.benefit h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

.recipe-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.recipe {
  background: var(--surface);
  padding: 1.9rem;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(20, 33, 61, 0.08);
}

.recipe h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

.recipe ul {
  padding-left: 1.1rem;
  margin-top: 1rem;
}

.section--cta {
  display: flex;
  justify-content: center;
}

.cta-card {
  background: var(--primary-dark);
  color: #fff;
  padding: 2.75rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 36px 80px rgba(20, 33, 61, 0.2);
  max-width: 640px;
  width: 100%;
}

.cta-card h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.cta-card p {
  margin-bottom: 1.75rem;
}

.cta-card .btn {
  background: var(--accent);
  color: var(--primary-dark);
}

.cta-hours {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 600px) {
  .cta-card {
    padding: 2.25rem 1.75rem;
  }
}

/* Window landing page styles */
.window-body {
  background: #f7f9fc;
}

.window-hero {
  background: linear-gradient(rgba(17, 34, 64, 0.82), rgba(17, 34, 64, 0.8)),
    url("https://images.unsplash.com/photo-1523419400524-e9de49d1c1c7?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
  padding: 4rem 1.5rem 3rem;
}

.window-hero__overlay {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: start;
}

.window-hero__content h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0.6rem 0 1rem;
}

.window-hero__content p {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

.eyebrow {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.window-hero__form {
  background: #fff;
  color: var(--text);
  padding: 1.75rem 1.75rem 1.9rem;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
}

.window-hero__form h2 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  color: var(--primary-dark);
}

.form-subtitle {
  color: var(--muted);
  margin-top: 0;
  margin-bottom: 1.2rem;
}

.lead-form {
  display: grid;
  gap: 0.9rem;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(36, 48, 74, 0.18);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.checkbox {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--muted);
}

.checkbox input {
  margin-top: 0.2rem;
}

.btn--primary {
  width: 100%;
  text-align: center;
}

.privacy {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

.privacy a {
  color: var(--primary);
}

.process {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1.4rem 1.5rem;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(20, 33, 61, 0.08);
  align-items: center;
}

.step-number {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
}

.trust {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.ratings {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.rating-card {
  background: #f0f4ff;
  border: 1px solid rgba(58, 134, 255, 0.25);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.rating-score {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.rating-label {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.testimonial {
  background: var(--surface);
  padding: 1.6rem;
  border-radius: 18px;
  box-shadow: 0 28px 60px rgba(20, 33, 61, 0.08);
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0 0 0.8rem;
}

.quote-author {
  margin: 0;
  color: var(--muted);
}

.cta-card--light {
  background: var(--surface);
  color: var(--text);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: center;
  gap: 1.25rem;
  border: 1px solid rgba(36, 48, 74, 0.1);
}

.cta-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.cta-list li {
  position: relative;
  padding-left: 1.3rem;
}

.cta-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
}

.cta-card__actions {
  display: grid;
  gap: 0.35rem;
  justify-items: start;
}

.cta-note {
  margin: 0;
  color: var(--muted);
}

.cta-note a {
  color: var(--primary-dark);
  font-weight: 700;
  text-decoration: none;
}

.faq {
  display: grid;
  gap: 1.5rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.faq-item {
  background: var(--surface);
  padding: 1.4rem 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(36, 48, 74, 0.08);
  box-shadow: 0 20px 50px rgba(20, 33, 61, 0.06);
}

.faq-item h3 {
  margin-top: 0;
  color: var(--primary-dark);
}

@media (max-width: 760px) {
  .window-hero {
    padding: 3.25rem 1.25rem 2.5rem;
  }

  .window-hero__form {
    padding: 1.5rem 1.4rem 1.7rem;
  }
}
