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

:root {
  --bg: #FAF7F4;
  --primary: #2A6B6B;
  --accent: #C8953A;
  --secondary: #F2DDD5;
  --text: #2C2C2C;
  --subtext: #6B6B6B;
  --white: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 8px;
}

body {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background-color: var(--bg);
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

/* HEADER */
header {
  background: var(--white);
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #E8E0D8;
  position: sticky;
  top: 0;
  z-index: 100;
}

header img.logo {
  max-width: 150px;
  height: auto;
  background: transparent;
}

header a.nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  padding: 8px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

header a.nav-link:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
}

/* HERO */
.hero {
  background: var(--bg);
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background-color: #2A6B6B;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: none;
}

.hero-stars {
  color: #C8953A;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.hero-stars span:last-child {
  font-size: 13px;
  color: #6B6B6B;
  font-family: 'Lato', sans-serif;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 19px;
  color: var(--subtext);
  line-height: 1.6;
  margin-bottom: 12px;
}

.hero-hook {
  font-style: italic;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 32px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 18px 32px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn-primary:hover { background: #B8852A; color: var(--white); text-decoration: none; }

.disclosure {
  font-size: 12px;
  color: var(--subtext);
  font-style: italic;
  text-align: center;
  margin-top: 10px;
}

.hero-image img {
  border-radius: 12px;
  width: 100%;
  height: 460px;
  object-fit: cover;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--primary);
  padding: 18px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0 40px;
}

.trust-item {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-item .check-mark {
  color: #C8953A;
  font-size: 14px;
}

/* GUIDE BRIDGE */
.guide-bridge-section {
  background: var(--white);
  padding: 0 60px 56px;
}

.guide-bridge {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--subtext);
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 28px 40px;
  border-left: 4px solid var(--accent);
  border-right: 4px solid var(--accent);
  background: var(--bg);
  border-radius: 4px;
}

/* SECTIONS */
.section-white { background: var(--white); padding: 72px 60px; }
.section-bg { background: var(--bg); padding: 72px 60px; }
.section-blush { background: var(--secondary); padding: 72px 60px; }
.section-teal { background: var(--primary); padding: 80px 60px; text-align: center; }

.section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-inner p {
  margin-bottom: 20px;
}

.section-inner p:last-child {
  margin-bottom: 0;
}

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

.section-teal h2 {
  font-size: 36px;
  color: var(--white);
  margin-bottom: 16px;
  text-align: center;
}

.section-teal p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

/* TOP PICK SECTION */
.top-pick-card {
  background: var(--white);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}

.top-pick-image {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.top-pick-image img {
  width: 100%;
  border-radius: 8px;
  background: var(--bg);
  display: block;
}

.top-pick-image img.main-product {
  border-radius: 8px;
}

.top-pick-image img.lifestyle-img {
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
}

.badge-top-pick {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  z-index: 2;
}

.top-pick-content h3 {
  font-size: 24px;
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 14px;
  line-height: 1.3;
}

.stars {
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars-count {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #F0EAE4;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.helper-line {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.6;
  margin-top: 8px;
  margin-bottom: 8px;
}

.top-pick-content .btn-primary {
  font-size: 17px;
  padding: 18px 36px;
  margin-top: 20px;
  width: 100%;
}

.cta-trust {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--subtext);
  text-align: center;
  margin-top: 10px;
  font-style: italic;
}

/* PRODUCT MICRO LABEL */
.product-micro-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--subtext);
  margin-bottom: 8px;
}

/* WHY DIFFERENT SECTION - redesigned with icon bullets */
.section-inner-wide {
  max-width: 800px;
  margin: 0 auto;
}

.section-inner-wide h2 {
  text-align: center;
  margin-bottom: 48px;
}

.why-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #E8E0D8;
}

.why-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-top: 2px;
}

.why-content {
  flex: 1;
}

.why-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}

.why-content strong {
  color: var(--primary);
}

/* SHOP BY NEED SECTION */
.section-intro-center {
  text-align: center;
  max-width: 700px;
  margin: -16px auto 36px;
  font-size: 16px;
  color: var(--subtext);
  line-height: 1.8;
}

.need-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.need-card {
  background: var(--white);
  border: 1px solid #E8E0D8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.need-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  text-decoration: none;
}

.need-label {
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.need-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
  text-decoration: none;
}

.need-card p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
  margin: 0;
  text-decoration: none;
}

/* COMPARISON TABLE */
.comparison-section {
  padding: 72px 60px;
}

.comparison-heading {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--text);
  text-align: center;
  margin-bottom: 12px;
}

.comparison-intro {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  color: var(--subtext);
  text-align: center;
  max-width: 620px;
  margin: 0 auto 32px;
}

.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 800px;
  margin: 0 auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
  font-size: 15px;
}

.comparison-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  text-align: left;
  padding: 12px 16px;
  white-space: nowrap;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #E8E0D8;
  color: var(--text);
  vertical-align: top;
}

.comparison-table tbody tr:nth-child(even) td {
  background: var(--bg);
}

.comparison-row-featured td {
  background: #F5F0E8;
  font-weight: 600;
}

.comparison-row-featured td:first-child {
  border-left: 3px solid var(--accent);
}

.comparison-table a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
}

.comparison-table a:hover { text-decoration: underline; }

/* PRODUCT GRID */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: var(--white);
  border: 1px solid #E8E0D8;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  text-decoration: none;
  color: inherit;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  border-radius: 6px;
  background: var(--bg);
  flex-shrink: 0;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

/* first p (description) grows to fill space -- this is what aligns buttons */
.product-card p.card-desc {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 10px;
  text-decoration: none;
  flex-grow: 1;
}

.product-card p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.7;
  margin-bottom: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.product-card .helper-line {
  font-size: 13px;
  color: var(--subtext);
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.6;
  flex-shrink: 0;
}

/* CRITICAL: no underlines inside product cards ever */
.product-card,
.product-card * {
  text-decoration: none;
}

.btn-secondary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 14px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  display: block;
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
}

.btn-secondary:hover { background: #B8852A; color: var(--white); text-decoration: none; }

.cta-helper {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  color: var(--subtext);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  text-decoration: none;
  flex-shrink: 0;
}

.badge-meaningful {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
}

/* CRITERIA SECTION */
.criteria-heading {
  text-align: center;
}

.criteria-intro {
  text-align: center;
  max-width: 640px;
  margin: -16px auto 40px;
  font-size: 15px;
  color: var(--subtext);
  line-height: 1.8;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.criteria-col {
  text-align: center;
  padding: 28px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.criteria-col svg {
  display: block;
  margin: 0 auto 16px;
  width: 40px;
  height: 40px;
}

.criteria-col h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 10px;
}

.criteria-col p {
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.8;
}

/* NURSES WEEK CALLOUT */
.nurses-week-callout {
  padding: 60px 60px;
}

.nurses-week-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #E8E0D8;
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.nurses-week-accent {
  width: 40px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 0 auto 24px;
}

.nurses-week-body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}

.nurses-week-note {
  font-size: 13px;
  font-style: italic;
  color: var(--subtext);
  margin-top: 0;
}

/* INSIGHT BLOCKS */
.insight-block {
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid #E8E0D8;
  padding: 28px 24px;
  box-shadow: var(--shadow);
}

.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.insight-block p {
  font-size: 14px;
  color: var(--subtext);
  line-height: 1.8;
}

/* TESTIMONIALS grid */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CHECKLIST SECTION */
#who-for h2 {
  text-align: center;
}

#who-for .section-inner > p {
  margin-bottom: 28px;
}

.checklist {
  list-style: none;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.checklist li {
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #E8E0D8;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.checklist li::before {
  content: "✓";
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA BOX - gold button full width */
.cta-box {
  background: var(--bg);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
  border: 1px solid #E8E0D8;
}

.cta-box .btn-primary {
  background: var(--accent);
  color: var(--white);
  display: block;
  width: 100%;
  padding: 18px 32px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}

.cta-box .btn-primary:hover {
  background: #B8852A;
  color: var(--white);
  text-decoration: none;
}

/* FAQ - heading LEFT aligned as requested */
#faq h2 {
  text-align: left;
  margin-bottom: 36px;
}

.faq-item {
  border-bottom: 1px solid #E8E0D8;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
}

.faq-icon {
  font-size: 22px;
  color: var(--accent);
  min-width: 24px;
  text-align: right;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer.open { max-height: 400px; }

.faq-answer p {
  padding: 0 0 20px 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--subtext);
  text-align: left;
}

/* FINAL CTA */
.btn-white {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  padding: 16px 48px;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  text-decoration: none;
}

.disclosure-teal {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  font-style: italic;
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid #E8E0D8;
  padding: 48px 40px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer {
  font-size: 12px;
  color: var(--subtext);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.footer-trust {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  color: var(--subtext);
  text-align: center;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-bottom: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 13px;
  color: var(--primary);
  text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

.footer-copy {
  font-size: 12px;
  color: var(--subtext);
}

/* STICKY MOBILE BAR */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  padding: 14px 20px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.sticky-bar a {
  flex-grow: 1;
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}

.sticky-bar-close {
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  opacity: 0.8;
  margin-left: 12px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { padding: 60px 40px; }
  .need-card-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  header { padding: 16px 20px; }
  header img.logo { max-width: 120px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .hero h1 { font-size: 30px; }
  .hero-sub { font-size: 17px; }
  .hero-image { order: -1; }
  .hero-image img { height: 260px; }

  .trust-strip {
    gap: 10px 24px;
    padding: 20px 24px;
  }

  .section-white,
  .section-bg,
  .section-blush,
  .section-teal {
    padding: 48px 24px;
  }

  .comparison-section,
  .nurses-week-callout { padding: 48px 24px; }

  .guide-bridge-section { padding: 0 24px 40px; }
  .guide-bridge { font-size: 15px; }

  h2 { font-size: 26px; }

  .top-pick-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 24px;
  }

  .product-grid { grid-template-columns: 1fr; }
  .need-card-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .why-item { flex-direction: column; gap: 12px; }

  .sticky-bar { display: flex; }

  .section-inner { max-width: 100%; }
  .section-inner-wide { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; font-size: 13px; }
}
