#title-block-header {
  display: none;
}

:root {
  --rp-navy: #163d73;
  --rp-navy-dark: #0f2f5e;
  --rp-cyan: #58d2da;
  --rp-cyan-dark: #25b8c6;
  --rp-cyan-soft: #e8fbfd;
  --rp-sand: #f7f1e4;
  --rp-cream: #fcfaf5;
  --rp-bg: #fffdf8;
  --rp-text: #20324a;
  --rp-muted: #627086;
  --rp-border: #dfe7ef;
  --rp-shadow: 0 18px 48px rgba(22, 61, 115, 0.12);
  --rp-radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--rp-bg);
  color: var(--rp-text);
  font-size: 18px;
  line-height: 1.7;
}

main.content {
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.page-columns,
.page-full {
  max-width: none !important;
}

h1,
h2,
h3 {
  color: var(--rp-navy-dark);
  font-weight: 800;
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  letter-spacing: -0.05em;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  letter-spacing: -0.03em;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.28rem;
}

p {
  margin-bottom: 1rem;
}

.recipe-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 2.5rem;
  align-items: center;
  padding: 5rem min(6vw, 5rem);
  background:
    radial-gradient(circle at top left, rgba(88, 210, 218, 0.14), transparent 35%),
    radial-gradient(circle at bottom right, rgba(247, 241, 228, 0.8), transparent 35%),
    linear-gradient(135deg, #fffefb 0%, #f8fcff 100%);
}

.recipe-hero-text {
  max-width: 860px;
}

.recipe-eyebrow {
  display: inline-block;
  color: var(--rp-navy-dark);
  background: var(--rp-cyan);
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 24px rgba(37, 184, 198, 0.18);
}

.recipe-price {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.1rem 0;
  padding: 0.9rem 1.2rem;
  background: var(--rp-sand);
  border: 1px solid #eadcc4;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--rp-navy-dark);
  box-shadow: 0 10px 28px rgba(22, 61, 115, 0.08);
}

.recipe-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.recipe-button {
  display: inline-block;
  text-decoration: none !important;
  font-weight: 800;
  border-radius: 999px;
  padding: 0.95rem 1.45rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.recipe-button:hover {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.recipe-button-primary {
  background: linear-gradient(135deg, var(--rp-navy), var(--rp-navy-dark));
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(22, 61, 115, 0.22);
}

.recipe-button-secondary {
  background: #fff;
  color: var(--rp-navy-dark) !important;
  border: 1px solid var(--rp-border);
}

.recipe-button-large {
  font-size: 1.08rem;
  padding: 1rem 1.55rem;
}

.recipe-hero-visual {
  display: flex;
  justify-content: center;
}

.recipe-creative {
  width: 100%;
  max-width: 700px;
  border-radius: 28px;
  border: 8px solid #fff;
  box-shadow: var(--rp-shadow);
  background: #fff;
}

.section {
  padding: 4.6rem min(6vw, 5rem);
}

.section.soft {
  background: linear-gradient(180deg, #f7fbfd 0%, #fbfdfd 100%);
}

.narrow {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.center {
  text-align: center;
}

.recipe-highlight {
  background: linear-gradient(135deg, var(--rp-cyan-soft), #ffffff);
  border-left: 6px solid var(--rp-cyan-dark);
  border-radius: 0 var(--rp-radius) var(--rp-radius) 0;
  padding: 1.35rem 1.55rem;
  margin: 1.7rem 0;
  color: var(--rp-navy-dark);
  font-weight: 750;
}

.recipe-note {
  background: #fff;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.25rem 1.45rem;
  margin: 1.5rem 0;
  box-shadow: 0 10px 30px rgba(22, 61, 115, 0.06);
  color: var(--rp-navy-dark);
  font-weight: 700;
}

.recipe-grid {
  max-width: 1140px;
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.recipe-feature {
  background: #fff;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.4rem;
  box-shadow: 0 12px 28px rgba(22, 61, 115, 0.07);
}

.recipe-feature h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}

.recipe-feature p {
  margin-bottom: 0;
}

.recipe-cta-inline {
  margin-top: 2rem;
  text-align: center;
}

.columns {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.recipe-portrait {
  width: min(100%, 360px);
  border-radius: var(--rp-radius);
  box-shadow: var(--rp-shadow);
  border: 8px solid #fff;
}

.recipe-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.4rem 0;
}

.recipe-trust-item {
  background: #fff;
  border: 1px solid var(--rp-border);
  border-radius: 16px;
  padding: 1rem;
  line-height: 1.35;
  box-shadow: 0 8px 24px rgba(22, 61, 115, 0.05);
}

.recipe-trust-item strong {
  display: block;
  color: var(--rp-cyan-dark);
  font-size: 1.2rem;
}

.recipe-testimonial {
  background: #fff;
  border: 1px solid var(--rp-border);
  border-radius: var(--rp-radius);
  padding: 1.45rem;
  box-shadow: 0 12px 28px rgba(22, 61, 115, 0.07);
  margin: 1rem 0;
  font-size: 1.12rem;
}

.recipe-buy {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(88, 210, 218, 0.16), transparent 35%),
    linear-gradient(180deg, #fbfffe 0%, #fffefb 100%);
}

.recipe-price-final {
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  color: var(--rp-navy);
  line-height: 1;
  margin: 1rem 0 1.25rem;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.recipe-buy ul {
  display: inline-block;
  text-align: left;
  max-width: 740px;
}

.recipe-order-bump {
  max-width: 760px;
  margin: 1.6rem auto;
  padding: 1.3rem 1.45rem;
  border-radius: var(--rp-radius);
  background: var(--rp-sand);
  border: 1px solid #eadcc4;
  color: var(--rp-navy-dark);
  font-weight: 750;
}

.recipe-final {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(247, 241, 228, 0.9), transparent 35%),
    linear-gradient(180deg, #fbfdff 0%, #f8fcff 100%);
}

.recipe-final .recipe-button {
  margin-top: 1rem;
}

.callout-important,
.callout-warning,
.callout-tip,
.callout-note {
  border-radius: var(--rp-radius);
  box-shadow: 0 10px 26px rgba(22, 61, 115, 0.07);
  margin: 1.8rem 0;
}

a {
  color: var(--rp-navy);
}

@media (max-width: 1100px) {
  .recipe-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  body {
    font-size: 17px;
  }

  .recipe-hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.2rem;
  }

  .section {
    padding: 3.2rem 1.2rem;
  }

  .recipe-trust-row {
    grid-template-columns: 1fr;
  }
}

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

  .recipe-buttons {
    flex-direction: column;
  }

  .recipe-button {
    width: 100%;
    text-align: center;
  }
}
