
:root {
  --orange: #ff7a21;
  --orange-dark: #e56610;
  --blue: #2bc1e5;
  --green: #13d4b1;
  --text-main: #1b1b1f;
  --bg-light: #f5fbff;
  --bg-white: #ffffff;
  --error: #ff3b3b;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.08);
  --max-width: 1100px;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #f0f7fb;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #f0f7fb;
}

.section {
  padding: 20px 16px 24px;
}

@media (min-width: 768px) {
  .section {
    padding: 32px 24px 40px;
  }
}

h1,
h2,
h3,
h4 {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #101018;
}

h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* H2 fixed: fits on 2 lines on mobile, larger on desktop */
h2 {
  font-size: 1.28rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  h2 {
    font-size: 1.85rem;
  }
}

h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p {
  font-size: 0.98rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.6rem;
  }

  p {
    font-size: 1.02rem;
  }
}

/* ------------------------------ */
/* HERO                          */
/* ------------------------------ */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0f172a;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff7a21, #ff9b3a);
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 40px rgba(255, 122, 33, 0.45);
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease;
}

.btn-primary span {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.9;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 45px rgba(255, 122, 33, 0.55);
  background: linear-gradient(135deg, #ff7a21, #ffb347);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(255, 122, 33, 0.4);
}

.pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.pill-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.pill-bullet {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 4px;
  background: var(--orange);
}

.hero {
  background: radial-gradient(circle at top left, #ffffff 0%, #ffffff 40%, #2bc1e5 40%, #1aa7cb 100%);
  padding-top: 18px;
  padding-bottom: 26px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 26px;
  padding: 18px 16px 16px;
  box-shadow: var(--shadow-soft);
}

.hero-top {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: center;
}

.hero-logo-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ff7a21, #ff9b3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
  font-size: 0.94rem;
  color: #4b5563;
  margin-bottom: 12px;
}

.hero-benefits {
  margin: 10px 0 14px;
  padding: 10px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px dashed rgba(15, 23, 42, 0.1);
}

.hero-benefits-title {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.hero-footer-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 768px) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    padding: 22px 22px 18px;
  }

  .hero-footer-row {
    flex-direction: row;
    align-items: center;
  }

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

  .hero-product-card {
    max-width: 320px;
  }
}

.timer-box {
  background: #111827;
  color: #fff;
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.4);
  font-size: 0.85rem;
}

.timer-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
  opacity: 0.9;
}

.timer-values {
  display: flex;
  gap: 6px;
  font-family: "Poppins", sans-serif;
}

.timer-unit {
  background: #0f172a;
  border-radius: 10px;
  padding: 6px 8px;
  min-width: 40px;
  text-align: center;
}

.timer-unit span {
  display: block;
  font-size: 0.75rem;
  opacity: 0.7;
  margin-top: 2px;
}

.hero-note {
  font-size: 0.8rem;
  color: #4b5563;
  text-align: center;
}

.hero-note b {
  color: var(--orange);
}

.hero-product-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 12px 12px 10px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.hero-product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #0f172a;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-product-image {
  height: 180px;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 10px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-price {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.hero-old-price {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: #9ca3af;
}

.hero-new-price {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--orange);
}

.hero-badge-sale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(19, 212, 177, 0.09);
  color: #064e3b;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.75rem;
  margin-top: 4px;
}

.hero-badge-sale strong {
  font-size: 0.85rem;
}

/* ------------------------------ */
/* GENERIC CARDS / LISTS         */
/* ------------------------------ */

.section-title-highlight {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(43, 193, 229, 0.12);
  color: #0369a1;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}

.card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 16px 14px 16px;
  box-shadow: var(--shadow-card);
}

@media (min-width: 768px) {
  .card {
    padding: 20px 18px 20px;
  }
}

.list-dash {
  margin: 8px 0 0 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.list-dash li {
  position: relative;
  padding-left: 16px;
}

.list-dash li::before {
  content: "–";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 700;
}

.problem-highlight {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: #fef2f2;
  font-weight: 600;
  font-size: 0.95rem;
  color: #991b1b;
}

/* ------------------------------ */
/* INGREDIENTS                   */
/* ------------------------------ */

.ingredients-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.ingredient-card {
  border-radius: 18px;
  padding: 10px 12px 12px;
  background: #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.ingredient-tag {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(43, 193, 229, 0.12);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0369a1;
}

/* Ingredient image block */
.ingredient-img {
  width: 150px;
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ------------------------------ */
/* TIMELINE                      */
/* ------------------------------ */

.timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.timeline-item {
  border-radius: 18px;
  padding: 12px 12px 12px;
  background: #f9fafb;
  border-left: 4px solid var(--orange);
}

.timeline-label {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.note-small {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ------------------------------ */
/* BENEFITS                      */
/* ------------------------------ */

.benefits-list {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefit-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 10px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.benefit-icon {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #022c22;
}

/* ------------------------------ */
/* DOCTOR                        */
/* ------------------------------ */

.doctor-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.doctor-photo {
  width: 140px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #e5e7eb;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


@media (min-width: 768px) {
  .doctor-card {
    flex-direction: row;
    align-items: center;
  }
}



/* ------------------------------ */
/* REVIEWS                       */
/* ------------------------------ */

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.review-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 14px 14px 14px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.review-avatar-img {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.review-avatar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-name {
  font-weight: 600;
  font-size: 0.96rem;
}

.review-label {
  font-size: 0.78rem;
  color: #6b7280;
}

.review-body {
  font-size: 0.9rem;
  color: #111827;
}

/* ------------------------------ */
/* FAQ ACCORDION                 */
/* ------------------------------ */

.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.accordion-item {
  border-radius: 16px;
  background: #f9fafb;
  border: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.acc-icon {
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform .25s ease;
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: .96rem;
  line-height: 1.45;
  color: #111827;
  transition: max-height .25s ease, padding .25s ease;
}

/* Active state – extra space so text is not cut */
.accordion-item.active .acc-btn {
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding-bottom: 14px;
  margin-bottom: 4px;
}

.accordion-item.active .acc-content {
  padding: 0 18px 18px;
}

.accordion-item.active .acc-icon {
  transform: rotate(45deg);
}

/* ------------------------------ */
/* USAGE / ORDER / PRICE         */
/* ------------------------------ */

.usage-list {
  margin-top: 8px;
  font-size: 0.92rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-steps {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.92rem;
}

.order-steps span {
  font-weight: 600;
  color: var(--orange);
  margin-right: 4px;
}

.price-box {
  border-radius: 22px;
  padding: 14px 14px 14px;
  background: linear-gradient(135deg, #111827, #020617);
  color: #f9fafb;
  box-shadow: var(--shadow-soft);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 2px;
}

.price-old {
  text-decoration: line-through;
  color: #9ca3af;
  font-size: 0.95rem;
}

.price-new {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffb347;
  letter-spacing: 0.02em;
}

.price-note {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-top: 6px;
}

.security-list {
  margin-top: 8px;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ------------------------------ */
/* FORM                          */
/* ------------------------------ */

.form-card {
  margin-top: 14px;
  background: #ffffff;
  border-radius: 22px;
  padding: 14px 14px 16px;
  box-shadow: var(--shadow-card);
  border: 2px solid var(--orange);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  background: #f9fafb;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(43, 193, 229, 0.4);
  background: #ffffff;
}

.form-note {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ------------------------------ */
/* FOOTER & STICKY CTA           */
/* ------------------------------ */

.footer {
  padding: 18px 16px 80px;
  font-size: 0.78rem;
  color: #6b7280;
  text-align: center;
}

.footer-links {
  margin-top: 6px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
}

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

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(15, 23, 42, 0.98);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.45);
  padding: 8px 12px 10px;
}

.sticky-cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sticky-cta-text {
  flex: 1;
  color: #e5e7eb;
  font-size: 0.78rem;
  line-height: 1.3;
}

.sticky-cta-price {
  font-weight: 700;
  color: #ffb347;
  font-size: 0.92rem;
}

.sticky-cta-btn {
  flex: 1.1;
}

/* Desktop adjustments for sticky text */
@media (min-width: 768px) {
  .sticky-cta-text {
    font-size: 0.85rem;
  }

  .sticky-cta-price {
    font-size: 1rem;
  }
}
