/* Design: B-2-γ-IV | font:playfair+inter | palette:aqua-mint-cream | extras:waves,chart,colored-ingredients,timeline */
/* Nautubone TR — single stylesheet, brand prefix ntb- on non-shared decorative selectors */

:root {
  --primary: #3FB8C9;
  --primary-dark: #2A8C9C;
  --primary-light: #67D2E0;
  --primary-rgb: 63, 184, 201;
  --accent: #7CC9A8;
  --accent-rgb: 124, 201, 168;
  --surface: #F4FBFA;
  --surface-warm: #FFFCF5;
  --ink: #1B2A30;
  --ink-soft: #4A5A60;
  --ink-mute: #6E7E84;
  --line: rgba(63, 184, 201, .14);
  --dark-bg: #0E2A33;
  --dark-bg-2: #154553;
  --discount-bg: #DC2626;
  --discount-color: #ffffff;
  --star-color: #F59E0B;
  --success: #10B981;
  --warn: #F59E0B;
  --danger: #DC2626;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow-1: 0 4px 16px rgba(20, 60, 70, .06);
  --shadow-2: 0 12px 32px rgba(20, 60, 70, .10);
  --shadow-3: 0 24px 60px rgba(20, 60, 70, .14);
  --pad-section: 48px;
  --pad-card: 24px;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --col-green: #10B981;
  --col-blue: #3B82F6;
  --col-purple: #8B5CF6;
  --col-orange: #F97316;
  --col-teal: #14B8A6;
  --col-rose: #F43F5E;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface-warm);
  overflow-x: hidden;
  padding-top: 100px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
button { font-family: inherit; cursor: pointer; border: 0; }
input, textarea, select { font-family: inherit; font-size: 16px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; color: var(--ink); line-height: 1.2; }
h1 { font-size: 2.8rem; letter-spacing: -.02em; }
h2 { font-size: 1.85rem; letter-spacing: -.01em; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }
h2 { position: relative; padding-bottom: 14px; margin-bottom: 18px; }
h2::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: .6;
}
.text-center h2::after, h2.center::after { left: 50%; transform: translateX(-50%); }

p { color: var(--ink-soft); margin-bottom: 14px; }

/* Highlight underlines */
.hl, .hl-accent {
  background-image: linear-gradient(90deg, var(--primary-light) 0%, var(--primary-light) 100%);
  background-repeat: no-repeat;
  background-size: 100% 6px;
  background-position: 0 100%;
  padding: 0 2px 1px;
  font-weight: 600;
  color: var(--ink);
}
.hl-accent {
  background-image: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
}

/* Promo bar */
.ntb-promo {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1100;
  height: 40px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-size: 13px; font-weight: 500; letter-spacing: .01em;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ntb-promo::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  animation: ntbShimmer 6.5s infinite;
}
@keyframes ntbShimmer { 0% { left: -100%; } 100% { left: 200%; } }
.ntb-promo__inner { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; justify-content: center; padding: 0 12px; }
.ntb-promo__inner span { display: inline-flex; align-items: center; gap: 6px; }
.ntb-promo__sep { opacity: .5; }

/* Header */
.ntb-header {
  position: fixed; top: 40px; left: 0; right: 0; z-index: 1000; height: 60px;
  background: rgba(255, 252, 245, .92); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.ntb-header__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.ntb-logo { display: flex; align-items: center; gap: 10px; }
.ntb-logo img { width: 32px; height: 32px; border-radius: 8px; }
.ntb-logo__name { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -.01em; }
.ntb-nav { display: flex; align-items: center; gap: 24px; }
.ntb-nav__list { display: flex; list-style: none; gap: 22px; }
.ntb-nav__list a {
  color: var(--ink-soft); font-size: 14px; font-weight: 500; padding: 6px 0;
  border-bottom: 2px solid transparent; transition: all .2s;
}
.ntb-nav__list a:hover { color: var(--primary); border-bottom-color: var(--primary); }

/* Header order CTA */
.ntb-cta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 600; font-size: 14px;
  box-shadow: 0 6px 18px rgba(var(--primary-rgb), .35);
  transition: transform .2s, box-shadow .2s;
}
.ntb-cta-pill:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(var(--primary-rgb), .45); color: #fff; }
.ntb-cta-pill svg { width: 16px; height: 16px; }

.ntb-burger {
  display: none; width: 40px; height: 40px; border-radius: 10px; background: transparent;
  border: 1px solid var(--line); align-items: center; justify-content: center;
}
.ntb-burger span {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.ntb-burger span::before, .ntb-burger span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.ntb-burger span::before { top: -6px; }
.ntb-burger span::after { top: 6px; }

.ntb-mobile-nav {
  position: fixed; top: 100px; left: 0; right: 0; z-index: 999;
  background: var(--surface-warm); border-bottom: 1px solid var(--line);
  visibility: hidden; opacity: 0; transform: translateY(-8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  box-shadow: var(--shadow-2);
}
.ntb-mobile-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
.ntb-mobile-nav ul { list-style: none; padding: 12px 20px 18px; }
.ntb-mobile-nav li { border-bottom: 1px solid var(--line); }
.ntb-mobile-nav li:last-child { border: 0; }
.ntb-mobile-nav a {
  display: block; padding: 14px 4px; color: var(--ink); font-weight: 500;
}

/* Layout */
.section { padding: var(--pad-section) 20px; }
.section--alt { background: linear-gradient(180deg, var(--surface), var(--surface-warm)); }
.section--mint { background: linear-gradient(180deg, rgba(124,201,168,.08), rgba(63,184,201,.04)); }
.section--dark { background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2)); color: #E8F4F6; }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.8); }
.section--dark h2::after { background: linear-gradient(90deg, var(--primary-light), var(--accent)); opacity: .9; }
.container { max-width: 1100px; margin: 0 auto; }
.container--wide { max-width: 1200px; }
.text-center { text-align: center; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 32px; }
.section__head h2::after { left: 50%; transform: translateX(-50%); }
.section__lead { color: var(--ink-soft); font-size: 1.05rem; }

/* Hero — Variant B Centered */
.ntb-hero {
  padding: 32px 20px 56px;
  background:
    radial-gradient(ellipse at 80% -20%, rgba(124,201,168,.18), transparent 60%),
    radial-gradient(ellipse at 20% 110%, rgba(63,184,201,.18), transparent 60%),
    linear-gradient(180deg, var(--surface), var(--surface-warm));
  position: relative; overflow: hidden;
}
.ntb-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 10% 30%, rgba(63,184,201,.06) 0, transparent 25%),
    radial-gradient(circle at 90% 70%, rgba(124,201,168,.06) 0, transparent 25%);
  animation: ntbHeroBg 22s ease-in-out infinite alternate;
}
@keyframes ntbHeroBg { from { transform: scale(1) translateY(0); } to { transform: scale(1.05) translateY(-10px); } }
.ntb-hero__inner { max-width: 800px; margin: 0 auto; position: relative; text-align: center; }
.ntb-hero__img { display: flex; justify-content: center; margin-bottom: 18px; }
.ntb-hero__img img {
  max-height: 340px; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(20,60,70,.18));
}
.ntb-hero__badges {
  display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 14px;
}
.hb-oficial, .hb-rating, .hb-delivery {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px; font-size: 12px; font-weight: 600;
}
.hb-oficial { background: rgba(16,185,129,.12); color: #047857; }
.hb-rating { background: rgba(245,158,11,.12); color: #B45309; }
.hb-delivery { background: rgba(63,184,201,.12); color: var(--primary-dark); }

.ntb-hero h1 { margin-bottom: 14px; }
.ntb-hero__sub { font-size: 1.1rem; color: var(--ink-soft); margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }
.trust-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.trust-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--line); font-size: 13px; font-weight: 500; color: var(--ink-soft);
}
.trust-pill strong { color: var(--ink); }

.ntb-hero__price-row {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border-radius: var(--radius); padding: 18px 22px;
  box-shadow: var(--shadow-2);
  margin-bottom: 18px;
}
.price-old { text-decoration: line-through; color: var(--ink-mute); font-size: 1.05rem; }
.price-new { font-family: var(--font-display); font-weight: 700; font-size: 2.1rem; color: var(--primary-dark); }
.price-badge {
  display: inline-block; padding: 6px 12px; border-radius: 999px;
  background: var(--discount-bg); color: var(--discount-color);
  font-weight: 700; font-size: 14px; letter-spacing: .02em;
  animation: ntbPulse 3.6s ease-in-out infinite;
}
.price-badge--sm { padding: 3px 8px; font-size: 12px; }
@keyframes ntbPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
.ntb-hero__qty { font-size: 13px; color: var(--ink-mute); margin-bottom: 18px; }
.btn-hero {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 32px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), .4);
  transition: transform .2s, box-shadow .2s;
}
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(var(--primary-rgb), .5); color: #fff; }
.btn-hero svg { width: 20px; height: 20px; }

/* Trust bar */
.ntb-trustbar { padding: 32px 20px; background: rgba(255,255,255,.5); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ntb-trustbar__grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.tb-stat__num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--primary-dark); display: block; }
.tb-stat__lbl { font-size: 13px; color: var(--ink-mute); margin-top: 4px; }

/* Cards (glass γ) */
.card {
  background: rgba(255,255,255,.7); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: var(--pad-card);
  box-shadow: var(--shadow-1);
  transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Multi-color card cycle */
.cards-color > .card { position: relative; padding-left: 28px; text-align: center; }
.cards-color > .card::before {
  content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 4px; border-radius: 4px;
}
.cards-color > .card:nth-child(6n+1)::before { background: var(--col-green); }
.cards-color > .card:nth-child(6n+2)::before { background: var(--col-blue); }
.cards-color > .card:nth-child(6n+3)::before { background: var(--col-purple); }
.cards-color > .card:nth-child(6n+4)::before { background: var(--col-orange); }
.cards-color > .card:nth-child(6n+5)::before { background: var(--col-teal); }
.cards-color > .card:nth-child(6n+6)::before { background: var(--col-rose); }
.cards-color > .card .card__icon {
  font-size: 2rem; display: block; margin-bottom: 8px; text-align: center;
}

/* Objection-handling cards */
.cause-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cause-card {
  background: rgba(255,255,255,.85); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-1); position: relative; overflow: hidden;
}
.cause-card::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 4px; }
.cause-card:nth-child(1)::before { background: var(--col-green); }
.cause-card:nth-child(2)::before { background: var(--col-orange); }
.cause-card:nth-child(3)::before { background: var(--col-rose); }
.cause-pct { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--ink); display: block; margin-bottom: 6px; }
.cause-card:nth-child(1) .cause-pct { color: var(--col-green); }
.cause-card:nth-child(2) .cause-pct { color: var(--col-orange); }
.cause-card:nth-child(3) .cause-pct { color: var(--col-rose); }
.cause-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cause-card p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* VS Alternatives table */
.vs-wrap { overflow-x: auto; }
.vs-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  background: rgba(255,255,255,.85); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-1);
}
.vs-table th, .vs-table td { padding: 16px 14px; text-align: center; border-bottom: 1px solid var(--line); font-size: .95rem; }
.vs-table thead th { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; font-weight: 600; }
.vs-table tbody th { text-align: left; color: var(--ink); font-weight: 600; background: rgba(244,251,250,.6); }
.vs-table .vs-best { background: rgba(124,201,168,.10); position: relative; }
.vs-table .vs-best.vs-best-head { background: linear-gradient(135deg, var(--accent), var(--primary)); }
.vs-best-badge {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; margin-top: 4px;
}
.vs-yes { color: var(--success); font-weight: 700; }
.vs-no { color: var(--ink-mute); }

/* Quiz */
.quiz {
  background: rgba(255,255,255,.85); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow-2); max-width: 720px; margin: 0 auto;
}
.quiz__step { display: none; }
.quiz__step.is-active { display: block; }
.quiz__q { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 18px; text-align: center; }
.quiz__opts { display: grid; gap: 10px; }
.quiz__opt {
  padding: 14px 18px; border-radius: var(--radius);
  background: var(--surface); border: 2px solid var(--line);
  text-align: left; cursor: pointer; font-size: 1rem; transition: all .2s;
}
.quiz__opt:hover { border-color: var(--primary); background: #fff; }
.quiz__progress { height: 6px; background: var(--line); border-radius: 999px; margin-bottom: 22px; overflow: hidden; }
.quiz__progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary), var(--accent)); width: 0; transition: width .3s; }
.quiz__result { display: none; text-align: center; padding: 16px 0; }
.quiz__result.is-active { display: block; }
.quiz__meter { height: 14px; background: var(--line); border-radius: 999px; margin: 18px 0; overflow: hidden; }
.quiz__meter-bar { height: 100%; background: linear-gradient(90deg, var(--col-green), var(--col-orange), var(--col-rose)); }

/* Two-column kullanmalı/kullanmamalı */
.tcol-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tcol { background: rgba(255,255,255,.8); border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); }
.tcol--yes { border-left: 4px solid var(--success); }
.tcol--no { border-left: 4px solid var(--danger); }
.tcol h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.tcol ul { list-style: none; }
.tcol li { padding: 8px 0 8px 28px; position: relative; color: var(--ink-soft); }
.tcol--yes li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--success); font-weight: 700; }
.tcol--no li::before { content: '✗'; position: absolute; left: 0; top: 8px; color: var(--danger); font-weight: 700; }

/* Ingredient cards (colored-header) */
.ing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ing-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-1); border: 1px solid var(--line);
}
.ing-card__head { padding: 14px 16px; color: #fff; font-weight: 700; font-size: 1rem; text-align: center; }
.ing-card:nth-child(8n+1) .ing-card__head { background: var(--col-green); }
.ing-card:nth-child(8n+2) .ing-card__head { background: var(--col-blue); }
.ing-card:nth-child(8n+3) .ing-card__head { background: var(--col-purple); }
.ing-card:nth-child(8n+4) .ing-card__head { background: var(--col-orange); }
.ing-card:nth-child(8n+5) .ing-card__head { background: var(--col-teal); }
.ing-card:nth-child(8n+6) .ing-card__head { background: var(--col-rose); }
.ing-card:nth-child(8n+7) .ing-card__head { background: var(--primary); }
.ing-card:nth-child(8n+8) .ing-card__head { background: var(--accent); }
.ing-card__body { padding: 16px; font-size: .92rem; color: var(--ink-soft); }

/* Timeline (Nasıl Çalışır + Testimonials) */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 38px; }
.timeline::before {
  content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
}
.tl-item { position: relative; padding: 12px 0 22px; }
.tl-item::before {
  content: ''; position: absolute; left: -32px; top: 16px; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; border: 3px solid var(--primary);
}
.tl-step { font-size: 12px; color: var(--primary-dark); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.tl-item h4 { margin: 4px 0 6px; }
.tl-item p { margin: 0; }

/* Price-comparison table */
.pc-table { width: 100%; border-collapse: collapse; background: rgba(255,255,255,.85); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-1); }
.pc-table th, .pc-table td { padding: 13px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
.pc-table thead th { background: var(--primary-dark); color: #fff; }
.pc-table tfoot td { background: rgba(124,201,168,.18); font-weight: 700; }
.pc-table .pc-savings { color: var(--success); font-weight: 700; }

/* How-to-use */
.htu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.htu-card {
  background: rgba(255,255,255,.85); border-radius: var(--radius); padding: 26px 22px; text-align: center;
  border: 1px solid var(--line); position: relative;
}
.htu-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  margin-bottom: 12px;
}

/* How-to-Order V2 */
.os-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 56px 20px;
  position: relative; overflow: hidden;
}
.os-section::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.10) 0, transparent 30%),
    radial-gradient(circle at 85% 75%, rgba(255,255,255,.08) 0, transparent 30%);
}
.os-section h2 { color: #fff; text-align: center; }
.os-section h2::after { background: rgba(255,255,255,.7); left: 50%; transform: translateX(-50%); }
.os-section .section__lead { color: rgba(255,255,255,.85); text-align: center; max-width: 640px; margin: 0 auto 32px; }
.os-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }
.os-tile {
  background: rgba(255,255,255,.12); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-lg);
  padding: 32px 24px; position: relative; color: #fff;
}
.os-num {
  position: absolute; top: -16px; right: 18px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--primary-dark);
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 16px rgba(0,0,0,.16);
}
.os-icon {
  width: 84px; height: 84px; border-radius: var(--radius);
  background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.os-icon svg { width: 44px; height: 44px; stroke: #fff; }
.os-tile h4 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
.os-tile p { color: rgba(255,255,255,.78); font-size: .95rem; margin: 0; }

/* Mid CTA */
.midcta {
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2));
  border-radius: var(--radius-lg); padding: 44px 32px; color: #fff;
  text-align: center; max-width: 980px; margin: 0 auto;
  box-shadow: var(--shadow-3);
}
.midcta h2 { color: #fff; }
.midcta h2::after { background: linear-gradient(90deg, var(--primary-light), var(--accent)); left: 50%; transform: translateX(-50%); }
.midcta p { color: rgba(255,255,255,.8); margin-bottom: 20px; }
.midcta .price-new { color: #fff; }
.midcta .ntb-hero__price-row { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.btn-discount-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px;
  background: #fff; color: var(--primary-dark); font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
  transition: transform .2s;
}
.btn-discount-pill:hover { transform: translateY(-2px); color: var(--primary-dark); }
.btn-discount-pill svg { width: 20px; height: 20px; }

/* Testimonials timeline */
.test-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 28px; max-width: 720px; margin-left: auto; margin-right: auto; }
.test-stat { text-align: center; background: rgba(255,255,255,.7); border-radius: var(--radius); padding: 16px; border: 1px solid var(--line); }
.test-stat__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--primary-dark); font-weight: 700; display: block; }
.test-stat__lbl { font-size: 12px; color: var(--ink-mute); }
.histo { max-width: 480px; margin: 0 auto 28px; }
.histo__row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13px; }
.histo__star { width: 56px; color: var(--star-color); }
.histo__bar { flex: 1; height: 8px; background: var(--line); border-radius: 999px; overflow: hidden; }
.histo__bar-fill { height: 100%; background: linear-gradient(90deg, var(--star-color), #FBBF24); border-radius: inherit; }
.histo__pct { width: 42px; text-align: right; color: var(--ink-mute); }

.test-tl { max-width: 760px; margin: 0 auto; position: relative; padding-left: 38px; }
.test-tl::before { content: ''; position: absolute; left: 14px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(180deg, var(--primary), var(--accent)); }
.ntb-test-card {
  position: relative; padding: 18px 20px; margin-bottom: 18px;
  background: rgba(255,255,255,.85); border: 1px solid var(--line);
  border-radius: var(--radius); box-shadow: var(--shadow-1);
}
.ntb-test-card::before {
  content: ''; position: absolute; left: -32px; top: 22px; width: 14px; height: 14px;
  border-radius: 50%; background: #fff; border: 3px solid var(--primary);
}
.tc-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; flex-wrap: wrap; }
.tc-author { font-weight: 700; color: var(--ink); font-size: .98rem; }
.tc-date { font-size: 12px; color: var(--ink-mute); }
.tc-stars { color: var(--star-color); font-size: 14px; letter-spacing: 1px; }
.tc-verified { display: inline-flex; align-items: center; gap: 4px; padding: 2px 8px; border-radius: 999px; background: rgba(16,185,129,.14); color: #047857; font-size: 11px; font-weight: 600; }
.tc-body { color: var(--ink-soft); font-size: .96rem; }

/* Guarantee */
.guarantee {
  max-width: 820px; margin: 0 auto; background: rgba(255,255,255,.85);
  border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-1);
  border: 1px solid var(--line); display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
}
.guarantee__icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #34D399);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-size: 2rem; flex-shrink: 0;
}

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: rgba(255,255,255,.85); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
}
.faq__q {
  width: 100%; padding: 16px 18px; background: transparent;
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  font-weight: 600; color: var(--ink); font-size: 1rem; text-align: left;
}
.faq__q::after { content: '+'; color: var(--primary); font-weight: 700; font-size: 1.4rem; transition: transform .2s; }
.faq__item.is-open .faq__q::after { content: '−'; }
.faq__a { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .3s, padding .3s; color: var(--ink-soft); }
.faq__item.is-open .faq__a { padding: 0 18px 16px; max-height: 600px; }

/* Realistic expectations */
.expect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 980px; margin: 0 auto; }
.expect-col { background: rgba(255,255,255,.85); border-radius: var(--radius); padding: 26px 24px; border: 1px solid var(--line); }
.expect-col--no { border-left: 4px solid var(--danger); }
.expect-col--yes { border-left: 4px solid var(--success); }
.expect-col h3 { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.expect-col ul { list-style: none; }
.expect-col li { padding: 8px 0 8px 28px; position: relative; color: var(--ink-soft); }
.expect-col--no li::before { content: '✗'; position: absolute; left: 0; top: 8px; color: var(--danger); font-weight: 700; }
.expect-col--yes li::before { content: '✓'; position: absolute; left: 0; top: 8px; color: var(--success); font-weight: 700; }

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  background-size: 200% 200%; animation: ntbCtaBg 12s ease-in-out infinite;
  padding: 56px 20px; color: #fff; position: relative; overflow: hidden;
}
@keyframes ntbCtaBg { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.final-cta__inner { max-width: 820px; margin: 0 auto; }
.final-cta h2 { color: #fff; text-align: center; }
.final-cta h2::after { background: rgba(255,255,255,.7); left: 50%; transform: translateX(-50%); }
.final-cta__lead { color: rgba(255,255,255,.9); text-align: center; max-width: 600px; margin: 0 auto 24px; }
.final-cta__feat { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.final-cta__feat span { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: 13px; }

/* Order forms */
.ntb-offer {
  background: rgba(255,255,255,.95); border-radius: var(--radius-lg);
  padding: 28px 26px; box-shadow: var(--shadow-3);
  max-width: 460px; margin: 0 auto; color: var(--ink);
}
.ntb-offer__head { text-align: center; margin-bottom: 18px; }
.ntb-offer__head h3 { font-size: 1.4rem; margin-bottom: 6px; }
.ntb-offer__price-row { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 6px; }
.ntb-form { display: flex; flex-direction: column; gap: 10px; }
.ntb-input {
  position: relative; display: flex; align-items: center;
}
.ntb-input svg.ntb-input__icon, .ntb-input span.ntb-input__prefix {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--ink-mute); pointer-events: none;
}
.ntb-input span.ntb-input__prefix {
  width: auto; font-size: 14px; font-weight: 600; color: var(--ink-soft);
  padding-right: 10px; border-right: 1px solid var(--line);
  height: 22px; display: inline-flex; align-items: center;
}
.ntb-input--phone input { padding-left: 72px; }
.ntb-input input {
  width: 100%; padding: 14px 14px 14px 42px; border-radius: var(--radius);
  border: 1.5px solid var(--line); background: var(--surface);
  font-size: 1rem; color: var(--ink); transition: border-color .2s, background .2s;
}
.ntb-input input:focus { outline: 0; border-color: var(--primary); background: #fff; }
.ntb-form__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 22px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; font-weight: 700; font-size: 1rem;
  box-shadow: 0 10px 24px rgba(var(--primary-rgb), .35);
  transition: transform .2s, box-shadow .2s; margin-top: 6px;
}
.ntb-form__btn:hover { transform: translateY(-1px); box-shadow: 0 14px 30px rgba(var(--primary-rgb), .45); }
.ntb-form__btn svg { width: 20px; height: 20px; }
.md-icon { width: 20px; height: 20px; }
.ntb-form__note { font-size: 12px; color: var(--ink-mute); text-align: center; margin-top: 8px; }
.ntb-form__err { display: none; color: var(--danger); font-size: 13px; margin-top: 6px; }

/* Modal */
.modal {
  position: fixed; inset: 0; z-index: 2000;
  visibility: hidden; opacity: 0;
  background: rgba(14,42,51,.65); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 12px; transition: opacity .25s, visibility .25s;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-content {
  background: #fff; border-radius: var(--radius-lg); padding: 24px 22px;
  width: 100%; max-width: 440px; max-height: calc(100dvh - 24px);
  overflow: hidden; display: flex; flex-direction: column; gap: 12px;
  position: relative; box-shadow: var(--shadow-3);
}
.modal-close {
  position: absolute; top: 10px; right: 10px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface); color: var(--ink); font-size: 1.3rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.modal__urgency { background: linear-gradient(135deg, var(--danger), #B91C1C); color: #fff; padding: 8px 14px; border-radius: var(--radius-sm); text-align: center; font-size: 13px; font-weight: 600; }
.modal__hero { display: flex; gap: 12px; align-items: center; }
.modal__hero img { width: 64px; height: 64px; object-fit: contain; }
.modal__hero h3 { font-size: 1.15rem; margin-bottom: 2px; }
.modal__hero .tc-stars { font-size: 13px; }
.modal__hero--text { display: block; text-align: center; padding: 4px 0 0; }
.modal__hero--text h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 4px; }
.modal__hero--text .tc-stars { color: var(--star-color); letter-spacing: 1px; }
.modal__price { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.modal__trust { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; font-size: 11px; color: var(--ink-mute); }
.md-submit { background: linear-gradient(135deg, var(--accent), var(--primary)); padding: 14px 22px; }
.md-submit:hover { box-shadow: 0 14px 30px rgba(var(--accent-rgb), .5); }

/* Sticky V2 (mobile) */
.sticky-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: linear-gradient(135deg, var(--dark-bg), var(--dark-bg-2));
  color: #fff; padding: 10px 14px;
  border-top-left-radius: 16px; border-top-right-radius: 16px;
  box-shadow: 0 -10px 28px rgba(0,0,0,.18);
  display: none; align-items: center; gap: 10px;
}
.sticky-bar img { width: 44px; height: 44px; flex-shrink: 0; }
.sticky-bar--noimg { padding-left: 18px; }
.sticky-bar__info { flex: 1; min-width: 0; }
.sticky-bar__name { font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: -.01em; line-height: 1.2; }
.sticky-bar__price-row { display: flex; gap: 8px; align-items: center; font-size: 13px; }
.sticky-bar__old { text-decoration: line-through; color: rgba(255,255,255,.5); }
.sticky-bar__new { font-weight: 700; color: var(--primary-light); }
.sticky-bar__btn {
  background: linear-gradient(135deg, var(--accent), #5BB890); color: #fff;
  padding: 10px 14px; border-radius: 999px; font-weight: 700; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px; flex-shrink: 0;
}
@media (max-width: 768px) { .sticky-bar { display: flex; } body { padding-bottom: 78px; } }

/* Footer */
.ntb-footer {
  background: linear-gradient(180deg, #0E2A33, #061A20);
  color: rgba(255,255,255,.78); padding: 48px 20px 28px;
}
.ntb-footer__inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.ntb-footer__brand { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 28px; }
.ntb-footer__brand img { width: 48px; height: 48px; border-radius: 12px; }
.ntb-footer__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.ntb-footer__tagline { font-size: 13px; color: rgba(255,255,255,.6); max-width: 520px; }
.ntb-footer__grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
  text-align: left; max-width: 1100px; margin: 0 auto 28px;
}
.ntb-footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; font-family: var(--font-body); font-weight: 600; }
.ntb-footer__col a { color: rgba(255,255,255,.7); display: block; padding: 4px 0; font-size: 14px; }
.ntb-footer__col a:hover { color: var(--primary-light); }
.ntb-footer__col p { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 6px; }
.ntb-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.5);
}
.ntb-footer__disclaimer { max-width: 720px; margin: 6px auto 0; font-size: 11px; line-height: 1.5; }

/* Pharmacy/marketplace cards */
.farma-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.farma-card { background: rgba(255,255,255,.85); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: transform .2s; }
.farma-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.farma-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.farma-card h3 .farma-badge { font-size: 11px; padding: 3px 8px; border-radius: 999px; background: var(--surface); color: var(--ink-mute); font-weight: 600; letter-spacing: .04em; }
.farma-reason { color: var(--ink-soft); font-size: .95rem; margin-bottom: 12px; }
.farma-card a { font-weight: 600; }

/* Expert team block */
.expert-card {
  max-width: 760px; margin: 0 auto;
  background: rgba(255,255,255,.85); border-radius: var(--radius);
  padding: 26px 24px; border: 1px solid var(--line); box-shadow: var(--shadow-1);
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: center;
}
.expert-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center; color: #fff;
  flex-shrink: 0;
}
.expert-icon svg { width: 36px; height: 36px; }
.expert-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.expert-card p { margin: 0; font-size: .95rem; }

/* Misc utility */
.section--pharm-content { padding: 36px 20px; }
.crumbs { font-size: 13px; color: var(--ink-mute); padding: 12px 20px; max-width: 1100px; margin: 0 auto; }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--primary); }
.lead-block {
  background: rgba(255,255,255,.85); border-radius: var(--radius); padding: 22px 24px;
  border-left: 4px solid var(--primary); margin: 22px 0; box-shadow: var(--shadow-1);
}
.lead-block strong { color: var(--ink); }

/* Responsive */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ing-grid { grid-template-columns: repeat(2, 1fr); }
  .ntb-trustbar__grid { grid-template-columns: repeat(2, 1fr); }
  .ntb-footer__grid { grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 720px; }
}
@media (max-width: 768px) {
  body { padding-top: 100px; padding-bottom: 78px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }
  .section { padding: 36px 16px; }
  .ntb-promo { font-size: 11px; }
  .ntb-promo__inner { gap: 8px; }
  .ntb-promo__sep { display: none; }
  .ntb-nav { display: none; }
  .ntb-burger { display: inline-flex; }
  .ntb-cta-pill { padding: 8px 14px; font-size: 13px; }
  .ntb-hero { padding: 24px 16px 40px; }
  .ntb-hero__img img { max-height: 260px; }
  .ntb-hero__badges { display: none; }
  .price-new { font-size: 1.7rem; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .cause-grid { grid-template-columns: 1fr; }
  .htu-grid, .os-grid { grid-template-columns: 1fr; }
  .tcol-wrap, .expect-grid { grid-template-columns: 1fr; }
  .farma-grid { grid-template-columns: 1fr; }
  .ntb-footer__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 480px; }
  .vs-table { font-size: .85rem; }
  .vs-table th, .vs-table td { padding: 10px 8px; }
  .ntb-trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .midcta { padding: 32px 22px; }
  .ntb-hero__price-row { padding: 14px 18px; gap: 10px; }
  .guarantee, .expert-card { grid-template-columns: 1fr; text-align: center; }
  .guarantee__icon, .expert-icon { margin: 0 auto; }
  .ing-grid { grid-template-columns: 1fr; }
  .test-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  .ntb-hero__img img { max-height: 220px; }
}

/* Print */
@media print { .ntb-promo, .ntb-header, .sticky-bar, .modal { display: none !important; } body { padding-top: 0; padding-bottom: 0; } }
