@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =============================================
   CARDIOEASEX.CO — CLEAN WHITE DESIGN
   Inspired by breatheasyx.com
   White bg + Teal/Green accents + Gold CTA
   ============================================= */
:root {
  --teal:    #0d7a6b;
  --teal2:   #095e53;
  --teal3:   #e6f5f2;
  --green:   #1a9e6b;
  --gold:    #d4820a;
  --gold2:   #b86e08;
  --white:   #ffffff;
  --light:   #f7faf9;
  --light2:  #edf6f4;
  --text:    #1a2e2a;
  --muted:   #4a6860;
  --border:  #c8deda;
  --gray:    #8aaa9e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  line-height: 1.85;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

h1 { font-size: clamp(34px, 4.5vw, 58px); font-weight: 800; line-height: 1.1; color: var(--teal2); }
h2 { font-size: clamp(26px, 3.5vw, 42px); font-weight: 700; line-height: 1.2; color: var(--teal2); }
h3 { font-size: clamp(19px, 2.2vw, 24px); font-weight: 600; color: var(--teal); }
p  { font-size: clamp(16px, 1.7vw, 18px); color: var(--muted); line-height: 1.85; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 10px;
  background: var(--teal3); padding: 5px 14px; border-radius: 999px;
}

/* ── NAV ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 10px rgba(13,122,107,0.06);
}
.nav-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.nav-brand { font-size: 20px; font-weight: 800; color: var(--teal2); }
.nav-brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 14px; font-weight: 500; padding: 6px 12px; border-radius: 6px; }
.nav-links a:hover { color: var(--teal); background: var(--teal3); }
.nav-btn { background: var(--teal) !important; color: var(--white) !important; font-weight: 700 !important; border-radius: 6px !important; padding: 8px 18px !important; }
.nav-btn:hover { background: var(--teal2) !important; color: var(--white) !important; }

.nav-actions { display: none; align-items: center; gap: 10px; }
.nav-btn-mobile { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 34px; height: 34px; padding: 0; align-items: center; justify-content: center; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ''; display: block; width: 22px; height: 2px; background: var(--teal2); }
.nav-toggle span { position: relative; transition: background .2s; }
.nav-toggle span::before, .nav-toggle span::after { position: absolute; left: 0; transition: transform .2s, top .2s; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ── BUTTONS ── */
.btn { display: inline-block; padding: 14px 32px; border-radius: 8px; font-size: 16px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; text-align: center; }
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: var(--gold2); color: var(--white); }
.btn-teal    { background: var(--teal); color: var(--white); }
.btn-teal:hover  { background: var(--teal2); color: var(--white); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--teal2); }

/* ── LAYOUT ── */
.container    { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px;  margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.bg-white  { background: var(--white); }
.bg-light  { background: var(--light); }
.bg-light2 { background: var(--light2); }
.bg-teal   { background: var(--teal2); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head p { margin-top: 12px; font-size: 18px; }

/* ── HERO ── */
.hero { background: var(--white); padding: 80px 0 90px; border-bottom: 1px solid var(--border); }
.hero-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.hero h1 { color: var(--teal2); margin-bottom: 14px; }
.hero-sub { color: var(--muted); font-size: 18px; line-height: 1.8; margin-bottom: 20px; }
.hero-list { list-style: none; margin: 18px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.hero-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; color: var(--text); }
.hero-list li::before { content: "✔"; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-img-wrap { width: 340px; flex-shrink: 0; }
.hero-img-wrap img { filter: drop-shadow(0 16px 32px rgba(13,122,107,0.18)); }
.rating-row { display: flex; align-items: center; gap: 10px; margin-top: 18px; }
.stars { color: #f5a623; font-size: 20px; }
.rating-text { font-size: 15px; color: var(--muted); }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.why-card { text-align: center; padding: 32px 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--white); transition: transform .2s, box-shadow .2s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(13,122,107,0.1); }
.why-card img { height: 58px; width: auto; margin: 0 auto 16px; object-fit: contain; }
.why-card h3 { font-size: 17px; margin-bottom: 8px; }
.why-card p  { font-size: 14px; }

/* ── SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split img { border-radius: 16px; width: 100%; box-shadow: 0 8px 32px rgba(13,122,107,0.1); }
.split-text h2 { margin-bottom: 14px; }
.split-text p  { margin-bottom: 12px; }
.split-list { list-style: none; margin: 14px 0; }
.split-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; color: var(--text); padding: 6px 0; border-bottom: 1px solid var(--border); }
.split-list li:last-child { border-bottom: none; }
.split-list li::before { content: "✔"; color: var(--teal); font-weight: 700; flex-shrink: 0; margin-top: 3px; }

/* ── REVIEWS ── */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.review-card { padding: 28px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 4px 14px rgba(13,122,107,0.06); }
.review-card img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; margin-bottom: 14px; border: 2px solid var(--teal3); }
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 8px; }
.review-name { font-size: 16px; font-weight: 700; color: var(--text); }
.review-loc  { font-size: 13px; color: var(--gray); margin-bottom: 12px; }
.review-card p { font-size: 15px; color: var(--muted); font-style: italic; line-height: 1.7; }

/* ── STEPS ── */
.step-list { display: flex; flex-direction: column; gap: 14px; }
.step-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.step-num { min-width: 42px; height: 42px; background: var(--teal); color: var(--white); font-size: 17px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-item h3 { font-size: 18px; margin-bottom: 4px; }
.step-item p  { font-size: 15px; }

/* ── INGREDIENTS ── */
.ing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ing-card { display: flex; gap: 14px; align-items: flex-start; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; transition: box-shadow .2s; }
.ing-card:hover { box-shadow: 0 6px 20px rgba(13,122,107,0.1); }
.ing-num { min-width: 38px; height: 38px; background: var(--teal); color: var(--white); font-size: 15px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ing-card h3 { font-size: 17px; margin-bottom: 5px; }
.ing-card p  { font-size: 14px; }

/* ── BENEFITS ── */
.ben-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ben-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.ben-icon { width: 44px; height: 44px; background: var(--teal3); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.ben-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 2; }
.ben-card h3 { font-size: 18px; margin-bottom: 6px; }
.ben-card p  { font-size: 15px; }

/* ── PRICING ── */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.price-card { padding: 30px 22px; background: var(--white); border: 2px solid var(--border); border-radius: 16px; text-align: center; transition: box-shadow .2s; }
.price-card:hover { box-shadow: 0 8px 28px rgba(13,122,107,0.1); }
.price-card.featured { border-color: var(--gold); box-shadow: 0 6px 24px rgba(212,130,10,0.15); }
.price-badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 5px 14px; border-radius: 999px; background: var(--gold); color: var(--white); margin-bottom: 12px; }
.price-badge.teal { background: var(--teal); }
.price-card img { max-width: 130px; margin: 0 auto 14px; }
.price-card h3 { font-size: 20px; color: var(--text); margin-bottom: 4px; }
.price-supply { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.price-big { font-size: 40px; font-weight: 800; color: var(--teal2); line-height: 1; }
.price-per { font-size: 15px; font-weight: 400; color: var(--muted); }
.price-was { font-size: 14px; color: var(--gray); text-decoration: line-through; margin: 4px 0 2px; }
.price-total { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 14px; }
.check-list { list-style: none; text-align: left; margin-bottom: 18px; }
.check-list li { font-size: 15px; color: var(--muted); padding: 4px 0; display: flex; gap: 8px; align-items: flex-start; }
.check-list li::before { content: "✔"; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── BONUS ── */
.bonus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bonus-card { padding: 26px; background: var(--white); border: 1px solid var(--border); border-radius: 14px; }
.bonus-num { width: 36px; height: 36px; background: var(--teal3); color: var(--teal); font-size: 15px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 1px solid var(--border); }
.bonus-card h3 { font-size: 18px; margin-bottom: 8px; }
.bonus-card p { font-size: 15px; }
.bonus-val { font-size: 13px; color: var(--teal); font-weight: 600; margin-top: 8px; }

/* ── GUARANTEE ── */
.guarantee-sec { background: var(--teal2); padding: 80px 0; }
.guarantee-wrap { display: grid; grid-template-columns: auto 1fr; gap: 50px; align-items: center; }
.guarantee-wrap img { max-width: 180px; }
.guarantee-wrap h2 { color: var(--white); margin-bottom: 14px; }
.guarantee-wrap p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 10px; }
.guarantee-list { list-style: none; margin: 16px 0; }
.guarantee-list li { color: rgba(255,255,255,0.9); font-size: 17px; padding: 5px 0; display: flex; gap: 10px; }
.guarantee-list li::before { content: "✔"; color: #7fe0c8; font-weight: 700; }

/* ── HOW TO TAKE ── */
.take-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.take-card { padding: 24px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.take-num { width: 42px; height: 42px; background: var(--teal3); color: var(--teal); font-size: 17px; font-weight: 700; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; border: 1px solid var(--border); }
.take-card h3 { font-size: 18px; margin-bottom: 6px; }
.take-card p  { font-size: 15px; }

/* ── FAQ ── */
.lumora-fi { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 8px; overflow: hidden; }
.lumora-fq { width: 100%; background: var(--white); border: none; text-align: left; padding: 20px 24px; font-size: 17px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.lumora-fq .icon { font-size: 20px; color: var(--teal); flex-shrink: 0; transition: transform .2s; }
.lumora-fq[aria-expanded="true"] { background: var(--teal); color: var(--white); }
.lumora-fq[aria-expanded="true"] .icon { color: var(--white); transform: rotate(45deg); }
.lumora-fa { padding: 18px 24px; font-size: 16px; color: var(--muted); line-height: 1.8; background: var(--light); display: none; }
.lumora-fa.cx-open { display: block; }

/* ── FINAL CTA ── */
.final-cta { background: var(--teal2); padding: 80px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.final-cta h2 { color: var(--white); margin-bottom: 12px; }
.final-cta p  { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 14px; }
.final-price  { font-size: 22px; font-weight: 800; color: #7fe0c8; margin-bottom: 22px; }
.final-cta img { max-width: 220px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.2)); }

/* ── STICKY BAR ── */
.sticky-bar { background: var(--teal2); border-top: 2px solid var(--gold); padding: 12px 0; position: sticky; bottom: 0; z-index: 99; }
.sticky-inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.sticky-bar strong { color: var(--white); font-size: 16px; }
.sticky-bar span { color: rgba(255,255,255,0.6); font-size: 14px; margin-left: 8px; }

/* ── FOOTER ── */
footer { background: var(--teal2); border-top: 1px solid rgba(255,255,255,0.1); padding: 56px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-brand { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.footer-brand span { color: #7fe0c8; }
footer p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
footer h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
footer a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 7px; }
footer a:hover { color: #7fe0c8; }
.footer-rule { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 20px; }
.disclaimer { font-size: 12px; color: rgba(255,255,255,0.3); line-height: 1.7; margin-bottom: 8px; }
.note { font-size: 14px; color: var(--gray); font-style: italic; margin-top: 8px; }
.highlight-box { background: var(--light); border: 1px solid var(--border); border-radius: 10px; padding: 20px; margin-top: 18px; }

/* ── OFFICIAL BADGE ── */
.official-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--teal3); border: 1px solid var(--border); border-radius: 999px; padding: 6px 16px; font-size: 13px; font-weight: 600; color: var(--teal); margin-bottom: 12px; }
.official-badge::before { content: "✔"; font-weight: 700; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-img-wrap { width: 260px; margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .rating-row { justify-content: center; }
  .split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2,1fr); }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .guarantee-wrap { grid-template-columns: 1fr; text-align: center; }
  .guarantee-wrap img { margin: 0 auto; }
}
@media (max-width: 767px) {
  section { padding: 56px 0; }
  h1 { font-size: clamp(30px,8vw,42px); }
  .ing-grid, .take-grid, .bonus-grid, .ben-grid { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .final-cta-inner { grid-template-columns: 1fr; text-align: center; }
  .final-cta img { margin: 0 auto; }
  .nav-actions { display: flex; }
  .nav-btn-mobile { display: inline-block; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; flex-wrap: nowrap;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 3px solid var(--teal);
    padding: 8px 24px 18px;
    box-shadow: 0 16px 24px rgba(13,122,107,0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--border); font-size: 16px; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links .nav-btn { margin-top: 10px; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .split img { order: -1; }
}
