/* ============================================================
   FlexiPrime — New Design System
   Fonts: Poppins (headings) + Inter (body) via Google Fonts
   Palette: Navy #0b1e3f | Teal #00d4b4 | White #fff | Surface #f4f8ff
   ============================================================ */

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

/* ── Design Tokens ── */
:root {
  --navy:   #0b1e3f;
  --navy-2: #122850;
  --teal:   #00d4b4;
  --teal-2: #00b89b;
  --white:  #ffffff;
  --surface:#f4f8ff;
  --muted:  #64748b;
  --border: #e2e8f0;
  --danger: #e53e6a;
  --font-h: 'Poppins', system-ui, sans-serif;
  --font-b: 'Inter', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(11,30,63,.10);
  --shadow-md: 0 4px 16px rgba(11,30,63,.12);
  --transition: .2s ease;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  font-weight: 400;
  color: #1e293b;
  background: var(--white);
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; }
.img-responsive { display: block; }
.sec-one-offer__img,
.expert__img,
.components__img,
.reviews__img,
.desire__img img,
.advant__icon img,
.usage__icon img,
.disease_icon img { display: block; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-2); }

/* ── Typography helpers ── */
.sec-title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
  margin: 0 0 1rem;
  padding: 0 16px;
  text-transform: none;
  white-space: normal;
}

.sec-subtitle {
  font-family: var(--font-b);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  margin: 0 0 2.5rem;
  padding: 0 16px;
}

.sec-text {
  font-size: 1.1rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

/* ── Section spacing ── */
.fp-section {
  padding: 80px 0;
}

.fp-section--surface {
  background: var(--surface);
}

.fp-section--navy {
  background: var(--navy);
  color: var(--white);
}

/* ── Clip-path dividers ── */
.clip-bottom {
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  padding-bottom: 120px;
}

.clip-top {
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px;
}

/* ── Buttons ── */
.btn-buy {
  display: inline-block;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border: none;
  border-radius: 8px;
  padding: 14px 36px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  letter-spacing: .3px;
  outline: none;
  text-transform: none;
}

.btn-buy:hover,
.btn-buy:focus {
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,212,180,.35);
}

.btn-buy:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-buy--lg {
  font-size: 1.15rem;
  padding: 18px 48px;
  border-radius: 10px;
}

.btn-buy--full {
  width: 100%;
  display: block;
}

/* ── Navbar ── */
.navigate {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  /* Override Bootstrap .container max-width so navbar stretches full viewport */
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(11,30,63,.06);
}

.menu {
  margin: 0;
  padding: 0;
}

.navbar {
  min-height: 64px;
  margin: 0;
  /* flex layout only on desktop — Bootstrap collapse needs block on mobile */
}

.navbar-default {
  border: none;
  background: transparent;
  box-shadow: none;
}

.navbar-default .navbar-brand {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  height: auto;
  padding: 0;
  letter-spacing: -0.5px;
  text-transform: none;
  display: block !important; /* visible on all screen sizes */
  flex: 1;
  text-align: center;
}

.navbar-default .navbar-brand span {
  color: var(--teal);
}

.navbar-default .navbar-brand:hover {
  color: var(--navy);
  text-decoration: none;
}

.navbar-default .navbar-nav > li > a {
  font-family: var(--font-b);
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 22px 14px;
  transition: color var(--transition);
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:active {
  color: var(--teal);
  background: transparent;
}

/* CTA button in navbar header (mobile) */
.menu-buy {
  font-size: .85rem;
  padding: 9px 18px;
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

/* Navbar header: hamburger left, brand center, CTA right */
.navbar-heade {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 8px;
  min-height: 52px;
}

.navbar-toggle {
  float: none;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: transparent;
  order: -1;
}

.navbar-toggle .icon-bar {
  background-color: var(--navy);
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  margin: 4px 0;
}

/* Brand in header (mobile) */
.navbar-brand.visible-in-header {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  text-decoration: none;
  flex: 1;
  text-align: center;
  padding: 0;
}

.navbar-default .navbar-nav > .btn-wrapp {
  display: none;
}

/* ── Hero Section ── */
.sec-one-wrap {
  background: var(--white);
}

.sec-one {
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f8f5 100%);
  padding: 100px 0 60px;
  overflow: visible;
}

/* Footer order form — bg_order images (overrides hero gradient) */
#sec-one.sec-one {
  background-image: url("../images/bg_order-mob.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding-bottom: 80px;
  position: relative;
}

/* Dark overlay so text stays readable over bg_order photo */
#sec-one.sec-one::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11, 30, 63, 0.45);
  pointer-events: none;
  z-index: 0;
}

#sec-one.sec-one > .container {
  position: relative;
  z-index: 1;
}

/* Text colors on dark overlay */
#sec-one .sec-header__title {
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

#sec-one .sec-header__pretitle {
  color: rgba(255,255,255,.85);
}

/* bg_sec-one1170: hidden by default, shown on large desktop ≥1024px */
.sec-one-imgbg {
  display: none;
  /* override global max-width: 100% so image can be larger than the column */
  max-width: none !important;
  width: 560px;
  margin: 0 0 0 -120px;
  position: relative;
  z-index: 0;
}

.sec-header__title {
  font-family: var(--font-h);
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
  margin: 0 0 .6rem;
  text-transform: none;
}

.sec-header__pretitle {
  font-family: var(--font-b);
  font-size: clamp(.95rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--muted);
  text-align: center;
  margin: 0 0 2rem;
  text-transform: none;
}

/* Product image */
.sec-one-offer__img {
  margin: 40px auto 0;
  max-height: 360px;
}

/* Order form card — outer container handles rounded corners & shadow */
.sec-one-form {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sec-one-form__wrap {
  background: var(--white);
  padding: 24px 20px 20px;
}

.sec-one-form__discount-wrap {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 18px 20px 14px;
  /* no negative margins — outer container clips cleanly */
  margin: 0;
}

.sec-one-form__discount {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 8px;
}

.sec-one-form__discount span {
  color: var(--teal);
  font-size: 1.3rem;
}

/* Timer on dark discount header */
.sec-one-form__timer .time__delimeter {
  color: var(--white);
}

.sec-one-form__timer .time-container .time-text {
  color: rgba(255,255,255,.7);
}

/* Timer */
.countdown-container {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-bottom: 4px;
}

.time {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  height: 52px;
  width: 52px;
  font-size: 1.7rem;
  font-family: var(--font-h);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.time-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.time-container .time-text {
  font-size: .65rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-top: 4px;
}

.time__delimeter {
  font-size: 1.4rem;
  color: var(--navy);
  margin: 0 2px;
  align-self: center;
  font-weight: 700;
  padding-bottom: 16px;
}

.timer-end {
  margin: 0 0 6px;
}

/* Prices */
.sec-one__prices {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin-bottom: 20px;
}

.price-text {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.price-old {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  color: #94a3b8;
  display: block;
  position: relative;
}

.price-old::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -8%;
  right: -8%;
  height: 3px;
  background: var(--danger);
  border-radius: 2px;
  transform: translateY(-50%);
}

.price-new {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal-2);
  display: block;
}

/* Forms */
input,
select,
.form-control {
  font-family: var(--font-b);
  font-size: .95rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  max-width: 100%;
  width: 100%;
  margin: 0 0 12px;
  padding: 12px 16px 12px 40px;
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input::placeholder,
.form-control::placeholder {
  color: #94a3b8;
}

.form-control:focus,
.form-control:active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,180,.15);
  background: var(--white);
  padding-left: 40px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align: left;
  cursor: pointer;
  /* Safari / WebKit: без цього текст обраного option може бути невидимим */
  color: var(--navy);
  -webkit-text-fill-color: var(--navy);
  line-height: 1.45;
  min-height: 46px;
}

select option {
  color: var(--navy);
  background-color: var(--white);
}

.form-group {
  position: relative;
  margin-bottom: 0;
}

.fp-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  padding-left: 2px;
}

/* Іконки всередині поля (wrapper) */
.select-country__field {
  position: relative;
}

.select-country__field::before {
  content: '🌍';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

.select-country__field::after {
  content: '▾';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .8rem;
  color: var(--muted);
  pointer-events: none;
  z-index: 2;
}

.input-name::before,
.input-phone::before {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .95rem;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

.input-name::before { content: '👤'; }
.input-phone::before { content: '📞'; }

/* Shields / payment */
.shields__block {
  margin-top: 16px;
}

.free-delivery {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.free-delivery-title {
  font-size: .78rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.free-delivery-subtitle {
  font-size: .75rem;
  color: var(--muted);
}

.free-delivery-cards {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.free-delivery-cards img {
  height: 22px;
  width: auto;
  border-radius: 3px;
}

.shields {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 8px;
}

.shields img {
  height: 22px;
  width: auto;
}

.terms {
  font-size: .75rem;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* Advantages row */
.sec-one-advantages {
  margin-top: 40px;
}

.advant {
  margin-top: 20px;
  text-align: center;
}

.advant__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--teal) 0%, #00b89b 100%);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.advant__icon img {
  filter: brightness(0) invert(1);
  width: 28px;
  height: 28px;
}

.advant__title {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  text-transform: none;
}

.advant__text {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  font-weight: 400;
}

.advant__title--dark {
  color: var(--navy);
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--white);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--navy);
}

.trust-item__icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* ── Symptoms Section ── */
.sec-second {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
}

.sec-second__title {
  white-space: normal;
}

.sec-second__title span {
  display: block;
  font-family: var(--font-b);
  font-size: 1rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  text-transform: none;
}

.sec-second__img {
  display: none;
}

.symptoms {
  padding: 8px 0;
}

.symptoms__list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 24px;
}

.symptoms__item {
  font-size: 1rem;
  color: #334155;
  padding: 12px 16px 12px 44px;
  margin-bottom: 8px;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--teal);
  position: relative;
  line-height: 1.5;
}

.symptoms__item::before {
  content: '✓';
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal);
  font-weight: 700;
  font-size: 1rem;
}

.symptoms__desc {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  line-height: 1.5;
}

/* ── Section Three — Risks ── */
.sec-three {
  background: var(--surface);
  padding: 80px 0;
}

.sec-three__title {
  white-space: normal;
}

.sec-three__text {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-2);
  text-align: center;
  margin-top: 32px;
}

.disease_icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #fff0f3, #ffe4e6);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.disease_icon img {
  filter: none;
  width: 36px;
  height: 36px;
}

.disease {
  margin-top: 40px;
  text-align: center;
}

.disease__title {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: none;
}

.disease_text {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Expert Section ── */
.sec-expert {
  background: var(--white);
  padding: 80px 0;
  overflow: visible;
}

.sec-expert__title {
  color: var(--navy);
}

.expert__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto;
  max-width: 280px;
}

.expert__wrapp {
  margin-top: 16px;
  text-align: center;
}

.expert__name {
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 4px;
}

.expert__prof {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.5;
}

.sec-expert__article {
  font-size: 1rem;
  color: #334155;
  line-height: 1.75;
}

.sec-expert__article p {
  border-left: 4px solid var(--teal);
  padding-left: 20px;
  font-style: italic;
}

.sec-expert__text {
  text-align: center;
  text-transform: none;
}

.sec-expert__text--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.sec-expert__text--flex p {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

.sec-expert .btn-buy {
  padding: 14px 48px;
}

/* ── Ingredients Section ── */
.sec-five {
  background: var(--surface);
  padding: 80px 0;
}

.sec-five__title {
  color: var(--navy);
  text-transform: none;
}

.sec-five__text {
  white-space: normal;
}

.plus {
  margin-top: 32px;
}

.components__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 24px 20px;
  text-align: center;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.components__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.components__wrapp {
  position: relative;
  margin-bottom: 12px;
}

.components__img {
  border-radius: 8px;
  margin: 0 auto 0;
  max-height: 180px;
  width: 100%;
  object-fit: cover;
}

.components__denom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,30,63,.85), transparent);
  color: var(--white);
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 600;
  padding: 20px 10px 8px;
  border-radius: 0 0 8px 8px;
  text-transform: none;
}

.components__desc {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.6;
  padding: 0;
}

/* carousel overrides */
.carousel-indicators {
  bottom: -40px;
}

.carousel-indicators li {
  background-color: var(--border);
  border: none;
}

.carousel-indicators .active {
  background-color: var(--teal);
  border: none;
}

.components {
  width: 280px;
  height: auto;
  margin: 20px auto;
}

.c_i-1, .c_i-2 {
  margin: 0 0 20px;
}

.hide-for-desctop { display: none; }
.hide-for-mobile { display: block; }

/* ── Scientists / Research Section ── */
.sec-scientists {
  display: none;
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.sec-scientists__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--navy);
}

.sec-scientists__subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 8px;
}

.sec-scientists__text {
  font-size: .95rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.sec-scientists__text span {
  font-weight: 700;
  color: var(--navy);
}

.sec-scientists-wrapp {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}

.sec-scientists__tablet {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.sec-scientists__tablet--dashed {
  background: transparent;
  border: 1px dashed var(--border);
  border-left: none;
  box-shadow: none;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sec-scientists__row {
  border-bottom: 1px solid var(--border);
}

.sec-scientists__row:first-child {
  border-bottom: none;
}

.sec-scientists__col {
  padding: 14px 12px;
  font-size: .9rem;
}

.sec-scientists__col:first-child {
  text-align: left;
}

.sec-scientists__col--bold { font-weight: 700; color: var(--navy); }

.sec-scientists__col--blue {
  color: var(--teal-2);
  font-size: 1.4rem;
  font-weight: 700;
}

.sec-scientists__col--minus {
  color: #cbd5e1;
  font-size: 1.4rem;
}

.sec-scientists__col--padding { font-weight: 700; }

.sec-scientists__footnote {
  font-weight: 600;
  font-size: .95rem;
  color: var(--teal-2);
  margin-top: 24px;
}

.sec-scientists__tablet--dashed .sec-scientists__row {
  border-bottom: 1px dashed var(--border);
}

.sec-scientists__tablet--dashed .border-none {
  border-bottom: none;
}

.sec-scientists__tablet--dashed .sec-scientists__col {
  text-align: center;
}

.sec-scientists__tablet--dashed table {
  width: 100%;
}

/* ── Reviews Section ── */
.sec-reviews {
  background: var(--surface);
  padding: 80px 0;
  overflow: hidden;
}

.sec-reviews__title {
  color: var(--navy);
  margin: 0 0 4px;
}

.sec-reviews__text {
  text-transform: none;
  color: var(--muted);
  font-size: 1rem;
}

.sec-reviews__text--dark {
  color: var(--muted);
}

.sec-reviews__text--flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

.sec-reviews__text--flex p {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  text-align: center;
}

.sec-text--weight { font-weight: 500; }

.reviews {
  margin-bottom: 56px;
}

.reviews__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.reviews__wrap {
  position: relative;
  width: 140px;
  flex-shrink: 0;
}

.reviews__img {
  border-radius: var(--radius);
  width: 140px;
  height: 140px;
  object-fit: cover;
  margin: 0 auto;
}

.reviews__name {
  font-size: .85rem;
  color: var(--navy);
  font-weight: 600;
  text-align: center;
  margin-top: 8px;
}

.reviews__name span {
  font-weight: 400;
  color: var(--muted);
}

.reviews__text {
  font-size: .95rem;
  color: #334155;
  line-height: 1.7;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.reviews-carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
}

.reviews-carousel-control:hover {
  background: var(--teal);
}

.reviews-carousel-control:hover svg path {
  fill: var(--white);
}

.reviews-carousel-control svg {
  width: 12px;
  height: 20px;
}

.reviews-carousel-control svg path {
  fill: var(--navy);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-control-prev-icon {
  transform: rotate(180deg);
}

.sec-reviews .btn-buy {
  display: inline-block;
  width: auto;
  min-width: 240px;
}

/* ── Plus / NO section ── */
.sec-plus {
  background: var(--white);
  padding: 80px 0;
}

.sec-plus__title {
  color: var(--navy);
  text-transform: none;
}

.sec-pluse__text {
  text-transform: none;
  color: var(--muted);
}

.plus__item {
  text-align: center;
  padding: 12px;
  /* flex so .plus__wrapp can stretch to full height */
  display: flex;
  flex-direction: column;
  height: 220px;
}

.plus__wrapp {
  border-radius: var(--radius);
  padding: 24px 16px;
  position: relative;
  overflow: hidden;
  background-color: var(--navy);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* dark overlay over the photo */
.plus__wrapp::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11, 30, 63, 0.62);
  border-radius: var(--radius);
}

.plus1 { background-image: url("../images/plus1.jpg"); }
.plus2 { background-image: url("../images/plus2.jpg"); }
.plus3 { background-image: url("../images/plus3.jpg"); }
.plus4 { background-image: url("../images/plus4.jpg"); }

/* "NO" headline — white on dark overlay */
.plus__title {
  font-family: var(--font-h);
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
  position: relative;
  z-index: 2;
  line-height: 1;
}

.plus__title--none {
  display: block;
}

/* description text — white on dark overlay */
.plus__desc {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 16px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.plus__desc::before {
  display: none;
}

/* ── Usage Section ── */
.sec-usage {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  padding: 80px 0;
}

.sec-usage__title {
  color: var(--white);
  text-transform: none;
}

.usage {
  text-align: center;
  margin-top: 40px;
}

.usage__item {
  padding: 16px;
}

.usage__icon {
  width: 100px;
  height: 100px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.usage__icon img {
  max-height: 56px;
  filter: brightness(0) invert(1);
}

.usage__text {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  font-weight: 400;
  text-transform: none;
  padding: 0 16px;
  line-height: 1.6;
}

.usage__text span {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--teal);
  display: block;
  margin-bottom: 4px;
}

/* ── Desire Section ── */
.sec-desire {
  background: var(--surface);
  padding: 80px 0;
  overflow: hidden;
}

.sec-desire__title {
  color: var(--navy);
  text-transform: none;
}

.desire {
  margin-top: 40px;
}

.desire__item {
  text-align: center;
  margin-bottom: 24px;
}

.desire__img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: block;
  width: 100%;
}

.desire__img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

.desire__text {
  margin-top: 16px;
  margin-bottom: 0;
  text-align: center;
}

.desire__title {
  font-family: var(--font-h);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  padding: 0;
  margin: 0 0 4px;
  text-transform: none;
}

.desire__text p:last-child {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}

/* ── Urgency / Chance Section ── */
.sec-chance {
  background: var(--white);
  padding: 80px 0;
  text-align: center;
}

.sec-chance__wrapp {
  max-width: 700px;
  margin: 0 auto;
}

.sec-chance__title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 16px;
  padding: 0;
  text-transform: none;
  white-space: normal;
}

.sec-chance__title--light {
  display: block;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  color: var(--muted);
  margin-top: 8px;
  text-transform: none;
  font-family: var(--font-b);
}

.sec-chance__title--none {
  display: block;
}

.sec-chance__desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  display: block;
}

.sec-chance__text {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-2);
  margin-bottom: 32px;
  text-transform: none;
}

/* ── Footer ── */
.fp-footer {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}

.fp-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.fp-footer__brand {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 10px;
}

.fp-footer__brand span {
  color: var(--teal);
}

.fp-footer__tagline {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
  margin-bottom: 0;
}

.fp-footer__heading {
  font-family: var(--font-h);
  font-size: .75rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 16px;
}

.fp-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fp-footer__links li {
  margin-bottom: 10px;
}

.fp-footer__links a {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
  transition: color var(--transition);
}

.fp-footer__links a:hover {
  color: var(--teal);
}

.fp-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: .85rem;
  color: rgba(255,255,255,.65);
}

.fp-footer__contact-item .icon {
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fp-footer__legal-info {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  margin-top: 16px;
}

.fp-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.fp-footer__copy {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  margin: 0;
}

.fp-footer__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.fp-footer__bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: color var(--transition);
}

.fp-footer__bottom-links a:hover {
  color: var(--teal);
}

/* ── Inner page (legal pages) ── */
.inner-hero {
  background: linear-gradient(160deg, #f0f7ff 0%, #e8f8f5 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.inner-hero__title {
  font-family: var(--font-h);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
}

.inner-hero__meta {
  font-size: .875rem;
  color: var(--muted);
}

.inner-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}

.inner-content h2 {
  font-family: var(--font-h);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
}

.inner-content h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 .6rem;
}

.inner-content p,
.inner-content li {
  font-size: .98rem;
  color: #334155;
  line-height: 1.8;
}

.inner-content ul,
.inner-content ol {
  padding-left: 1.5rem;
  margin: .5rem 0 1rem;
}

.inner-content li {
  margin-bottom: .4rem;
}

.inner-content a {
  color: var(--teal-2);
  text-decoration: underline;
}

.inner-content strong {
  color: var(--navy);
}

.inner-content .highlight-box {
  background: var(--surface);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 1.5rem 0;
}

/* ── Responsive ── */
@media (min-width: 576px) {
  .sec-second__img {
    display: block;
  }
  .reviews__wrapper {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
  }
  .reviews__text {
    width: 55%;
  }
}

@media (min-width: 768px) {
  .fp-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .sec-scientists {
    display: block;
  }

  /* Hero only — footer order form gets bg_order-tablet */
  .sec-one-wrap .sec-one {
    background-image: url("../images/bg_section-one768.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
  }

  .sec-one-wrap .sec-one .sec-header__title {
    color: var(--navy);
  }

  #sec-one.sec-one {
    background-image: url("../images/bg_order-tablet.jpg");
  }

  .sec-one-form__wrap {
    box-shadow: var(--shadow);
  }

  .plus__item {
    height: 278px;
    padding: 16px;
    margin-bottom: 20px;
  }

  .navbar-nav > li {
    float: none;
  }

  .sec-reviews {
    padding: 80px 40px;
  }

  .reviews-carousel-control {
    position: absolute;
  }

  .carousel-control-prev { left: -20px; }
  .carousel-control-next { right: -20px; }
}

@media (min-width: 1024px) {
  .fp-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }

  .fp-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .sec-expert__text--flex {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }

  .sec-reviews__text--flex {
    flex-direction: row;
    justify-content: center;
  }

  /* bg_sec-one1170 decorative illustration shows on large screens */
  .sec-one-imgbg {
    display: block;
  }

  #sec-one.sec-one {
    background-image: url("../images/bg_order.jpg");
  }

  .sec-five {
    background-image: url("../images/bg_component.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
  }

  div#bs-example-navbar-collapse-1 {
    display: block !important;
  }

  .navbar {
    min-height: 64px;
    display: flex;
    align-items: center;
  }

  .navbar-heade .menu-buy {
    display: none;
  }

  li a.btn-buy.menu-buy {
    font-size: .9rem;
    color: var(--white);
    padding: 10px 24px;
    margin: 0;
  }

  .navbar-default .navbar-nav > .btn-wrapp {
    display: inline-block;
  }

  .navbar-nav > li {
    float: left;
    margin-left: 20px;
  }

  .c_i-1, .c_i-2 {
    width: 100%;
    height: auto;
  }

  .reviews__name {
    transform: none;
  }

  .expert {
    position: relative;
  }

  .expert__wrapp {
    text-align: left;
  }
}

@media (max-width: 767px) {
  .hide-for-mobile { display: none !important; }
  .show-for-mobile { display: block !important; }

  .components__denom {
    font-size: .85rem;
  }

  .sec-one {
    padding-top: 80px;
  }

  .sec-one-offer__img {
    margin: 24px auto 0;
  }

  .carousel-control-prev { left: -8px; }
  .carousel-control-next { right: -8px; }

  .plus__item { margin-bottom: 16px; }

  .free-delivery {
    flex-direction: column;
  }
}

@media (max-width: 425px) {
  .show-for-mobile { display: block !important; }

  .sec-title {
    font-size: 1.5rem;
  }

  .reviews__text {
    margin: 12px auto;
  }

  .free-delivery-cards img {
    width: 28px;
    height: auto;
  }
}

/* ── Utility ── */
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-muted-fp { color: var(--muted); }

.mt-8  { margin-top: 2rem; }
.mb-8  { margin-bottom: 2rem; }


/* Form checkbox */
form {
  --form-border: var(--border);
  --form-check-border-checked: var(--teal);
  --form-check-bg-checked: var(--teal);
  --form-check-yes-checked: var(--white);
}

.form__checkbox {
  position: relative;
  display: grid;
  grid-template-columns: min-content 1fr;
  align-items: center;
  column-gap: 12px;
  font-size: .78rem;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 14px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  max-width: 280px;
  width: 100%;
}

.form__checkbox a {
  text-decoration: underline;
  color: var(--teal-2);
}

.form__checkbox-mark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  background-color: var(--white);
  border-radius: 4px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  cursor: pointer;
}

.form__checkbox-mark::after {
  position: relative;
  content: '';
  display: none;
  width: 80%;
  height: 80%;
  top: 2px;
  left: 1px;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 10 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.823 2.774A.5.5 0 0 0 10 2.392V.91a.5.5 0 0 0-.823-.382l-5.422 4.58a.5.5 0 0 1-.637.007L.815 3.246A.5.5 0 0 0 0 3.634v1.503a.5.5 0 0 0 .185.389l2.933 2.38a.5.5 0 0 0 .637-.007l6.068-5.125z' fill='%23fff'/%3E%3C/svg%3E");
}

.form__checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
  z-index: -10;
}

.form__checkbox input[type=checkbox]:checked ~ .form__checkbox-mark::after {
  display: block;
}

.form__checkbox input[type=checkbox]:checked ~ .form__checkbox-mark {
  border-color: var(--teal);
  background-color: var(--teal);
}

.form__checkbox input[type=checkbox]:focus ~ .form__checkbox-mark {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,212,180,.2);
}

/* About page cards */
.about-value-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  height: 100%;
}

.about-value-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.about-value-card h3 {
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.about-value-card p {
  font-size: .875rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Contact page */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.contact-form-card .form-control {
  padding-left: 14px;
  margin-bottom: 16px;
}

.contact-form-card textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding: 12px 14px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item .icon-wrap {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-family: var(--font-h);
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.contact-info-item p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}
