/* ============================================================
   NATURAL-DETOX — Production CSS
   Design: Medical Wellness Premium | Teal + White
   Fonts: DM Serif Display + Outfit
   ============================================================ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #009688;
  --teal-dark:   #00695C;
  --teal-mid:    #26A69A;
  --teal-soft:   #E0F2F1;
  --teal-xsoft:  #F0FAF9;
  --green:       #43A047;
  --green-soft:  #E8F5E9;
  --accent:      #FF6F00;
  --dark:        #1B302C;
  --dark-mid:    #2E4A44;
  --text:        #263238;
  --text-mid:    #546E7A;
  --text-light:  #90A4AE;
  --white:       #FFFFFF;
  --bg:          #F7FAFA;
  --border:      rgba(0,150,136,.14);
  --r:           10px;
  --r-lg:        18px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow:      0 4px 24px rgba(0,150,136,.10);
  --shadow-lg:   0 12px 50px rgba(0,150,136,.14);
  --transition:  .24s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: var(--teal-mid); border-radius: 3px; }

/* ── Skip Link (accessibility) ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--teal); color: #fff;
  padding: .5rem 1rem; border-radius: 0 0 var(--r) var(--r);
  font-size: .85rem; font-weight: 700; z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--dark);
  padding: .5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  position: relative; z-index: 300;
}
.topbar__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.topbar__contact { display: flex; gap: 1.4rem; align-items: center; flex-wrap: wrap; }
.topbar__contact a {
  color: rgba(255,255,255,.75);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: color var(--transition);
}
.topbar__contact a:hover { color: var(--teal-mid); }
.topbar__contact svg { width: 13px; height: 13px; flex-shrink: 0; }
.topbar__right { display: flex; gap: .8rem; align-items: center; }
.topbar__hours {
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .22rem .8rem; border-radius: 2rem;
  letter-spacing: .04em; white-space: nowrap;
}
.topbar__fb {
  display: inline-flex; align-items: center; gap: .3rem;
  color: rgba(255,255,255,.55); font-size: .78rem;
  transition: color var(--transition);
}
.topbar__fb:hover { color: #4267B2; }
.topbar__fb svg { width: 14px; height: 14px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  box-shadow: 0 2px 18px rgba(0,0,0,.07);
}
.nav__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: .6rem 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
}
.nav__logo {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
}
.nav__logo img { height: 50px; width: auto; object-fit: contain; }
.nav__logo-text { line-height: 1.15; }
.nav__logo-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; color: var(--teal-dark); letter-spacing: .01em;
}
.nav__logo-sub {
  font-size: .62rem; color: var(--text-light);
  letter-spacing: .08em; text-transform: uppercase;
}
.nav__menu { display: flex; align-items: center; gap: 0; }
.nav__item { position: relative; }
.nav__link {
  display: flex; align-items: center; gap: .22rem;
  padding: .65rem .85rem;
  font-size: .81rem; font-weight: 600; color: var(--text);
  border-radius: 7px; cursor: pointer; white-space: nowrap;
  transition: color var(--transition), background var(--transition);
  border: none; background: none; font-family: inherit;
}
.nav__link:hover,
.nav__item:hover > .nav__link { color: var(--teal); background: var(--teal-xsoft); }
.nav__link .chevron {
  width: 10px; height: 10px; opacity: .45;
  transition: transform var(--transition); flex-shrink: 0;
}
.nav__item:hover > .nav__link .chevron { transform: rotate(180deg); }
.nav__dropdown {
  position: absolute; top: calc(100% + 5px); left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  opacity: 0; pointer-events: none;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 1000;
}
.nav__item:hover > .nav__dropdown { opacity: 1; pointer-events: all; transform: none; }
.nav__dropdown a {
  display: block; padding: .52rem 1.1rem;
  font-size: .81rem; color: var(--text);
  transition: background var(--transition), color var(--transition);
}
.nav__dropdown a:hover { background: var(--teal-xsoft); color: var(--teal-dark); }
.nav__cta {
  background: var(--teal); color: #fff !important;
  padding: .62rem 1.25rem; border-radius: 2rem;
  font-size: .81rem; font-weight: 700;
  box-shadow: 0 4px 14px rgba(0,150,136,.3);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
  margin-left: .4rem; white-space: nowrap;
}
.nav__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,150,136,.4);
}
/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 5px; z-index: 201;
}
.nav__hamburger span {
  display: block; width: 23px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all .3s;
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center;
  background: linear-gradient(140deg, var(--dark) 0%, #004D40 60%, #1B5E20 100%);
  overflow: hidden;
}
/* Decorative background pattern */
.hero__pattern {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__pattern::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 65%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0,150,136,.18) 0%, transparent 70%);
}
.hero__pattern::after {
  content: '';
  position: absolute; bottom: -15%; left: -5%;
  width: 50%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(67,160,71,.14) 0%, transparent 70%);
}
/* Hero image column */
.hero__img-col {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 48%; overflow: hidden;
}
.hero__img-col::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--dark) 0%, transparent 40%);
}
.hero__img-col img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .55; filter: saturate(.7);
}
/* Overlay gradient */
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    100deg,
    rgba(27,48,44,.96) 30%,
    rgba(27,48,44,.65) 60%,
    rgba(27,48,44,.15) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  padding: 6rem 1.5rem 4rem;
  width: 100%;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,150,136,.2);
  border: 1px solid rgba(38,166,154,.4);
  color: var(--teal-mid);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .32rem .95rem; border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s ease both;
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal-mid);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: .6; }
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 5.2vw, 4rem);
  color: #fff; line-height: 1.1; margin-bottom: 1.2rem;
  max-width: 620px;
  animation: fadeUp .9s .08s ease both;
}
.hero h1 em { color: var(--teal-mid); font-style: italic; }
.hero__sub {
  font-size: clamp(.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,.72);
  line-height: 1.75; max-width: 520px;
  margin-bottom: 2.2rem; font-weight: 400;
  animation: fadeUp .9s .16s ease both;
}
.hero__btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp .9s .24s ease both;
}
.btn--hero-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--teal); color: #fff;
  padding: .9rem 1.9rem; border-radius: 3rem;
  font-weight: 700; font-size: .93rem;
  box-shadow: 0 6px 22px rgba(0,150,136,.45);
  transition: all var(--transition);
}
.btn--hero-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,150,136,.55);
}
.btn--hero-ghost {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 2px solid rgba(255,255,255,.3); color: rgba(255,255,255,.88);
  padding: .9rem 1.9rem; border-radius: 3rem;
  font-weight: 600; font-size: .93rem;
  transition: all var(--transition);
}
.btn--hero-ghost:hover {
  border-color: var(--teal-mid);
  background: rgba(0,150,136,.15);
}
.hero__stats {
  display: flex; flex-wrap: wrap; gap: 2rem;
  margin-top: 3.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeUp .9s .32s ease both;
}
.hero__stat strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--teal-mid); line-height: 1;
}
.hero__stat span {
  font-size: .78rem; color: rgba(255,255,255,.5);
  margin-top: .2rem; display: block;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .35rem;
  color: rgba(255,255,255,.3);
  font-size: .64rem; letter-spacing: .1em; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero__scroll svg { width: 17px; opacity: .4; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ============================================================
   SECTION BASE
   ============================================================ */
section { padding: 5rem 1.5rem; }
.container     { max-width: var(--max-w); margin: 0 auto; }
.container--sm { max-width: 860px; margin: 0 auto; }
.container--xs { max-width: 680px; margin: 0 auto; }

.sec-eyebrow {
  display: inline-block;
  font-size: .71rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: .55rem;
}
.sec-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--dark); line-height: 1.2;
  margin-bottom: .9rem;
}
.sec-title em { color: var(--teal); font-style: italic; }
.sec-lead {
  font-size: 1.02rem; color: var(--text-mid);
  line-height: 1.78; max-width: 680px;
}
.divider {
  width: 50px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  margin: .85rem 0 1.3rem;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
}
.trust-strip__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 2rem;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-size: .82rem; font-weight: 600; color: var(--text-mid);
}
.trust-item svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--white); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: center;
}
.about__img-wrap { position: relative; }
.about__img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
}
.about__badge {
  position: absolute; bottom: -1.2rem; right: -1rem;
  background: var(--teal); color: #fff;
  border-radius: var(--r); padding: 1rem 1.3rem;
  text-align: center; box-shadow: 0 8px 28px rgba(0,150,136,.4);
  font-size: .76rem; line-height: 1.3;
}
.about__badge strong {
  display: block; font-size: 1.5rem;
  font-family: 'DM Serif Display', serif; margin-bottom: .2rem;
}
.about__check-list { margin-top: 1.3rem; }
.about__check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .5rem 0; font-size: .9rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(0,150,136,.07);
}
.about__check-list li:last-child { border-bottom: none; }
.check-icon {
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; flex-shrink: 0; margin-top: .1rem; font-weight: 700;
}
.bicom-box {
  margin-top: 1.4rem;
  background: var(--teal-xsoft);
  border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem;
}
.bicom-box img { height: 40px; width: auto; object-fit: contain; flex-shrink: 0; }
.bicom-box p { font-size: .82rem; color: var(--text-mid); line-height: 1.6; }
.bicom-box p strong { color: var(--teal-dark); }
.bicom-box a { color: var(--teal-dark); font-weight: 700; }

/* ============================================================
   SERVICES TILES
   ============================================================ */
.services { background: var(--bg); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem; margin-top: 2.8rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.6rem 1.3rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: all var(--transition); cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: scaleX(0); transition: transform var(--transition);
  transform-origin: left;
}
.service-card:hover {
  border-color: var(--teal-mid);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::after { transform: scaleX(1); }
.service-card__icon {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--teal-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
  transition: transform var(--transition);
}
.service-card:hover .service-card__icon { transform: scale(1.08); }
.service-card__label {
  position: absolute; top: .85rem; right: .85rem;
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: .62rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .18rem .55rem; border-radius: 2rem;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--dark);
  margin-bottom: .45rem; line-height: 1.25;
}
.service-card p {
  font-size: .84rem; color: var(--text-mid);
  line-height: 1.65; flex: 1;
}
.service-card__link {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 700; color: var(--teal);
  margin-top: 1rem; transition: gap var(--transition);
}
.service-card__link svg { width: 13px; height: 13px; }
.service-card:hover .service-card__link { gap: .55rem; }

/* ============================================================
   DEVICES / HOW WE WORK
   ============================================================ */
.devices { background: var(--dark); }
.devices .sec-eyebrow { color: var(--teal-mid); }
.devices .sec-title   { color: #fff; }
.devices .sec-lead    { color: rgba(255,255,255,.6); }
.devices__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem; margin-top: 2.5rem;
}
.device-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-lg); padding: 1.8rem 1.5rem;
  transition: all var(--transition);
}
.device-card:hover {
  background: rgba(0,150,136,.14);
  border-color: var(--teal-mid);
  transform: translateY(-3px);
}
.device-card__icon { font-size: 2.4rem; margin-bottom: .9rem; }
.device-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: #fff; margin-bottom: .45rem;
}
.device-card p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.device-card__tag {
  display: inline-block; margin-top: .85rem;
  background: rgba(0,150,136,.2); color: var(--teal-mid);
  font-size: .68rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; padding: .2rem .65rem; border-radius: 2rem;
}
.methods-wrap {
  margin-top: 2.5rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; flex-wrap: wrap; gap: .6rem;
}
.method-chip {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.68);
  font-size: .78rem; font-weight: 500;
  padding: .38rem .95rem; border-radius: 2rem;
  transition: all var(--transition); cursor: default;
}
.method-chip:hover { background: var(--teal); border-color: var(--teal); color: #fff; }
.bicom-auth {
  margin-top: 2rem;
  background: rgba(0,150,136,.12);
  border: 1px solid rgba(0,150,136,.28);
  border-radius: var(--r); padding: 1.2rem 1.5rem;
  display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap;
}
.bicom-auth p { font-size: .84rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.bicom-auth a { color: var(--teal-mid); font-weight: 600; }

/* ============================================================
   PRICE
   ============================================================ */
.price { background: var(--white); }
.price__grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem; margin-top: 2.5rem;
}
.price-card {
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--transition);
}
.price-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-mid); }
.price-card__head {
  background: var(--teal-soft);
  padding: 1.1rem 1.4rem;
  border-bottom: 1.5px solid var(--border);
  display: flex; align-items: center; gap: .75rem;
}
.price-card__head-icon { font-size: 1.4rem; }
.price-card__head h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem; color: var(--teal-dark);
}
.price-card__body { padding: 1.3rem 1.4rem; }
.price-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: .48rem 0;
  border-bottom: 1px solid rgba(0,150,136,.07);
  font-size: .86rem;
}
.price-row:last-of-type { border-bottom: none; }
.price-row .label { color: var(--text-mid); padding-right: .5rem; }
.price-row .val    { font-weight: 700; color: var(--teal-dark); white-space: nowrap; }
.price-note {
  font-size: .78rem; color: var(--text-light);
  margin-top: .7rem; line-height: 1.6; font-style: italic;
}

/* ============================================================
   FAQ (EEAT)
   ============================================================ */
.faq { background: var(--bg); }
.faq__list { max-width: 820px; margin: 2.5rem auto 0; }
.faq__item {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r); margin-bottom: .7rem;
  overflow: hidden; transition: border-color var(--transition);
}
.faq__item.is-open { border-color: var(--teal-mid); }
.faq__question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; cursor: pointer;
  font-weight: 600; font-size: .93rem; color: var(--dark);
  gap: 1rem; user-select: none;
  transition: background var(--transition);
  border: none; background: none; text-align: left;
  width: 100%; font-family: 'Outfit', sans-serif;
}
.faq__question:hover { background: var(--teal-xsoft); }
.faq__q-icon {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem; font-weight: 700;
  transition: background var(--transition), transform var(--transition);
}
.faq__item.is-open .faq__q-icon {
  background: var(--teal); color: #fff; transform: rotate(45deg);
}
.faq__answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s;
}
.faq__answer p {
  padding: 0 1.4rem 1.2rem;
  font-size: .9rem; color: var(--text-mid); line-height: 1.75;
}
.faq__item.is-open .faq__answer { max-height: 500px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--teal-xsoft); }
.testimonials__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem; margin-top: 2.4rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--r-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.review-card__stars { color: #F4B942; font-size: .95rem; letter-spacing: .08em; margin-bottom: .65rem; }
.review-card__text {
  font-size: .88rem; color: var(--text-mid);
  line-height: 1.72; font-style: italic; flex: 1;
  margin-bottom: .9rem;
}
.review-card__text::before {
  content: '\201C';
  font-size: 1.8rem; color: var(--teal-mid);
  line-height: 0; vertical-align: -.35em; margin-right: .15rem;
}
.review-card__author { display: flex; align-items: center; gap: .7rem; margin-top: auto; }
.review-card__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .88rem; flex-shrink: 0;
}
.review-card__name { font-weight: 700; font-size: .85rem; color: var(--dark); }
.review-card__src  { font-size: .72rem; color: var(--text-light); }
.google-badge {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 2rem; padding: .38rem .95rem;
  font-size: .76rem; font-weight: 600; color: var(--text-mid);
  margin-bottom: 1.4rem;
}

/* ============================================================
   HOURS BAND
   ============================================================ */
.hours-band { background: var(--bg); padding: 3.5rem 1.5rem; }
.hours-card {
  max-width: 860px; margin: 0 auto;
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.2rem 2.5rem; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center;
}
.hours-card h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: var(--dark); margin-bottom: .5rem;
}
.hours-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1rem; }
.hours-days { display: flex; flex-wrap: wrap; gap: .5rem; }
.hours-day {
  background: var(--teal-soft); color: var(--teal-dark);
  font-size: .78rem; font-weight: 600;
  padding: .28rem .75rem; border-radius: 2rem;
}
.hours-time {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--teal); line-height: 1;
  text-align: center;
}
.hours-time small {
  display: block; font-size: .75rem; color: var(--text-light);
  font-family: 'Outfit', sans-serif; font-weight: 500; margin-top: .3rem;
}
.hours-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--teal); color: #fff;
  padding: .65rem 1.4rem; border-radius: 2rem;
  font-weight: 700; font-size: .85rem;
  box-shadow: 0 4px 14px rgba(0,150,136,.3);
  transition: all var(--transition); margin-top: 1rem;
}
.hours-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ============================================================
   VOUCHER
   ============================================================ */
.voucher {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--dark) 100%);
  padding: 4rem 1.5rem; text-align: center;
}
.voucher__inner { max-width: 620px; margin: 0 auto; }
.voucher__icon { font-size: 3.2rem; margin-bottom: .9rem; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.voucher h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem); color: #fff; margin-bottom: .7rem;
}
.voucher h2 em { color: var(--teal-mid); font-style: italic; }
.voucher p { color: rgba(255,255,255,.62); font-size: .97rem; line-height: 1.7; margin-bottom: 1.8rem; }
.btn--voucher {
  display: inline-block;
  background: #fff; color: var(--teal-dark);
  padding: .9rem 2.1rem; border-radius: 2rem;
  font-weight: 700; font-size: .93rem;
  box-shadow: 0 6px 22px rgba(0,0,0,.28);
  transition: all var(--transition);
}
.btn--voucher:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.38); }

/* ============================================================
   COOPERATION
   ============================================================ */
.coop { background: var(--white); padding: 4rem 1.5rem; }
.coop__box {
  max-width: 900px; margin: 0 auto;
  background: var(--teal-xsoft); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 2rem 2.2rem;
  display: flex; gap: 1.8rem; align-items: flex-start; flex-wrap: wrap;
}
.coop__icon { font-size: 2.5rem; flex-shrink: 0; }
.coop__content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--dark); margin-bottom: .4rem;
}
.coop__content p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }
.coop__tags { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .9rem; }
.coop__tag {
  background: var(--white); color: var(--teal-dark);
  font-size: .75rem; font-weight: 600;
  padding: .25rem .72rem; border-radius: 2rem; border: 1px solid var(--border);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--dark); }
.contact .sec-eyebrow { color: var(--teal-mid); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; align-items: start; }
.contact__info-title {
  font-family: 'DM Serif Display', serif;
  font-size: 1.85rem; color: #fff; margin-bottom: 1.5rem;
}
.contact__info-title em { color: var(--teal-mid); font-style: italic; }
.contact-item { display: flex; align-items: flex-start; gap: .85rem; margin-bottom: 1.15rem; }
.contact-item__icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: rgba(0,150,136,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1rem;
}
.contact-item__label {
  font-size: .69rem; color: rgba(255,255,255,.38);
  letter-spacing: .07em; text-transform: uppercase;
  display: block; margin-bottom: .18rem;
}
.contact-item__value { font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.82); }
.contact-item__value a {
  color: rgba(255,255,255,.82); transition: color var(--transition);
}
.contact-item__value a:hover { color: var(--teal-mid); }
.contact__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.5rem; }
.btn--call {
  display: inline-flex; align-items: center; gap: .45rem;
  background: var(--teal); color: #fff;
  padding: .72rem 1.4rem; border-radius: 2rem;
  font-weight: 700; font-size: .88rem;
  transition: all var(--transition);
}
.btn--call:hover { background: var(--teal-dark); transform: translateY(-1px); }
.btn--fb {
  display: inline-flex; align-items: center; gap: .45rem;
  background: rgba(66,103,178,.88); color: #fff;
  padding: .72rem 1.4rem; border-radius: 2rem;
  font-weight: 700; font-size: .88rem;
  transition: all var(--transition);
}
.btn--fb:hover { background: rgba(66,103,178,1); transform: translateY(-1px); }
.btn--fb svg { width: 14px; height: 14px; }
.bank-box {
  margin-top: 1.8rem;
  background: rgba(0,150,136,.1); border: 1px solid rgba(0,150,136,.22);
  border-radius: var(--r); padding: 1.1rem 1.3rem;
}
.bank-box p { font-size: .81rem; color: rgba(255,255,255,.55); line-height: 1.65; }
.bank-box strong { color: var(--teal-mid); }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-embed iframe { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0D1F1B;
  padding: 3rem 1.5rem 1.5rem;
  color: rgba(255,255,255,.4);
}
.site-footer__grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img   { height: 46px; width: auto; object-fit: contain; filter: brightness(2) saturate(0); }
.footer-brand p     { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.36); margin-top: .7rem; max-width: 270px; }
.footer-col h4      { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-mid); margin-bottom: .85rem; font-weight: 700; }
.footer-col li      { margin-bottom: .45rem; }
.footer-col a       { font-size: .82rem; color: rgba(255,255,255,.38); transition: color var(--transition); }
.footer-col a:hover { color: var(--teal-mid); }
.site-footer__bottom {
  max-width: var(--max-w); margin: 1.4rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem; font-size: .75rem;
}
.site-footer__bottom a { color: rgba(255,255,255,.35); transition: color var(--transition); }
.site-footer__bottom a:hover { color: var(--teal-mid); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: var(--dark);
  border-top: 2px solid var(--teal);
  padding: 1rem 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%); transition: transform .4s ease;
}
.cookie-bar.is-visible { transform: none; }
.cookie-bar p { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.5; max-width: 680px; }
.cookie-bar a { color: var(--teal-mid); font-weight: 600; }
.btn--cookie {
  background: var(--teal); color: #fff; border: none; cursor: pointer;
  padding: .52rem 1.4rem; border-radius: 2rem;
  font-size: .82rem; font-weight: 700; white-space: nowrap;
  transition: background var(--transition); font-family: 'Outfit', sans-serif;
}
.btn--cookie:hover { background: var(--teal-dark); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 1.2rem; z-index: 400;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(0,150,136,.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  border: none; cursor: pointer;
}
.back-to-top.is-visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); }
.back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  .services__grid   { grid-template-columns: repeat(2, 1fr); }
  .about__grid      { grid-template-columns: 1fr; gap: 3rem; }
  .about__img-wrap  { max-width: 580px; margin: 0 auto; }
  .about__badge     { right: 0; bottom: -1rem; }
  .devices__grid    { grid-template-columns: repeat(2, 1fr); }
  .contact__grid    { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
  :root { --max-w: 100%; }
  section { padding: 3.5rem 1rem; }

  /* Topbar */
  .topbar__contact { justify-content: center; width: 100%; font-size: .78rem; }
  .topbar__right { display: none; }

  /* Nav */
  .nav__menu {
    display: none;
    position: fixed; inset: 0; top: 0;
    background: rgba(20,40,36,.97);
    flex-direction: column; justify-content: center;
    align-items: center; gap: 0;
    z-index: 199; padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
  }
  .nav__menu.is-open { display: flex; }
  .nav__item { width: 100%; text-align: center; }
  .nav__link { font-size: 1rem; color: rgba(255,255,255,.85); justify-content: center; padding: .85rem 1rem; }
  .nav__link:hover { background: rgba(0,150,136,.2); color: #fff; }
  .nav__dropdown {
    position: static; opacity: 1; pointer-events: none;
    transform: none; box-shadow: none;
    border: none; background: rgba(255,255,255,.05);
    border-radius: var(--r); margin: .25rem 0;
    display: none;
  }
  .nav__dropdown.is-open { display: block; pointer-events: all; }
  .nav__dropdown a { color: rgba(255,255,255,.65); text-align: center; padding: .45rem; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__img-col { display: none; }
  .hero__overlay {
    background: linear-gradient(180deg, rgba(27,48,44,.97) 0%, rgba(27,48,44,.85) 100%);
  }
  .hero__content { padding: 5rem 1rem 3rem; }
  .hero__stats { gap: 1.2rem; }
  .hero__stat strong { font-size: 1.7rem; }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Devices */
  .devices__grid { grid-template-columns: 1fr; }

  /* Price */
  .price__grid { grid-template-columns: 1fr; }

  /* Hours */
  .hours-card { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; padding: 1.8rem 1.2rem; }
  .hours-days { justify-content: center; }
  .hours-time { font-size: 2.2rem; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Footer */
  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; }

  /* Coop */
  .coop__box { flex-direction: column; gap: 1rem; padding: 1.5rem; }
}

/* Small phones: ≤ 480px */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero__btns { flex-direction: column; }
  .btn--hero-primary,
  .btn--hero-ghost { width: 100%; justify-content: center; }
  .hero__stats { grid-template-columns: 1fr 1fr; display: grid; }
  .nav__inner { padding: .6rem 1rem; }
  .nav__logo img { height: 42px; }
  .nav__logo-name { font-size: 1rem; }
  .topbar__contact { gap: .8rem; flex-direction: column; }
}

/* ============================================================
   SUBPAGE ADDITIONS – v4 Professional
   ============================================================ */

/* ── NAV LOGO FIX (single logo, left-aligned) ── */
.nav__logo {
  display: flex !important;
  align-items: center !important;
  gap: .6rem !important;
  flex-shrink: 0 !important;
  text-decoration: none !important;
}
.nav__logo img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
}
/* Remove any double-logo glitch */
.nav__logo > img:nth-child(2) { display: none !important; }

/* ── MOBILE NAV FIX ── */
@media (max-width: 768px) {
  .nav__inner { padding: .5rem 1rem; }
  .nav__logo img { height: 42px !important; }
  .nav__logo-name { font-size: .95rem !important; }
  .nav__logo-sub { font-size: .55rem !important; }
}

/* ── FOOTER LOGO FIX ── */
.footer-brand { display: flex; flex-direction: column; }
.footer-brand img {
  height: 44px !important; width: auto !important;
  object-fit: contain !important; filter: brightness(0) invert(1) !important;
  margin-bottom: .6rem;
}

/* ── SUBPAGE HERO ── */
.sub-hero {
  background: linear-gradient(140deg, var(--dark) 0%, #004D40 65%, #1B5E20 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sub-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(0,150,136,.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(67,160,71,.10) 0%, transparent 50%);
}
.sub-hero__inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }
.sub-hero__badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,150,136,.2); border: 1px solid rgba(38,166,154,.4);
  color: var(--teal-mid); font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .32rem .95rem; border-radius: 2rem; margin-bottom: 1.2rem;
}
.sub-hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.sub-hero h1 em { color: var(--teal-mid); font-style: italic; }
.sub-hero__lead {
  font-size: clamp(.93rem, 1.8vw, 1.08rem);
  color: rgba(255,255,255,.72); line-height: 1.75;
  max-width: 640px; margin: 0 auto 1.5rem;
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; flex-wrap: wrap;
  font-size: .74rem; color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--teal-mid); }
.breadcrumb span { opacity: .4; }

@media (max-width: 768px) {
  .sub-hero { padding: 3.5rem 1rem 3rem; }
  .sub-hero h1 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
}

/* ── CONTENT SECTIONS ── */
.sub-content { background: var(--white); }
.sub-content--alt { background: var(--bg); }
.sub-content > .container,
.sub-content--alt > .container { padding-top: 4rem; padding-bottom: 4rem; }
@media (max-width: 768px) {
  .sub-content > .container,
  .sub-content--alt > .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}

/* ── RICH BLOCK (image + text) ── */
.rich-block { margin: 0; }
.rich-block + .rich-block { border-top: 1px solid var(--border); }
.rich-block__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.rich-block__grid.reverse .rich-block__media { order: 2; }
.rich-block__grid.reverse .rich-block__text  { order: 1; }
@media (max-width: 900px) {
  .rich-block__grid,
  .rich-block__grid.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .rich-block__grid.reverse .rich-block__media,
  .rich-block__grid.reverse .rich-block__text { order: 0; }
}
.rich-block__media { position: relative; }
.rich-block__media img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg); display: block;
}
.rich-block__media video {
  width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.img-badge {
  position: absolute; bottom: 1rem; left: 1rem;
  background: var(--teal); color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: .3rem .9rem; border-radius: 2rem;
  letter-spacing: .04em; pointer-events: none;
}
.rich-block__text {}
.rich-block__text .sec-eyebrow { display: block; margin-bottom: .4rem; }
.rich-block__text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--dark); margin-bottom: .5rem; line-height: 1.2;
}
.rich-block__text h2 em { color: var(--teal); font-style: italic; }
.rich-block__text h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.15rem; color: var(--dark-mid); margin: 1.5rem 0 .4rem;
}
.rich-block__text p {
  font-size: .93rem; color: var(--text-mid); line-height: 1.82;
  margin-bottom: .85rem;
}
.rich-block__text strong { color: var(--dark); }

/* ── STAT BADGES ── */
.stat-badges {
  display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.3rem 0;
}
.stat-badge {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border-radius: var(--r); padding: .75rem 1.1rem;
  text-align: center; min-width: 90px;
}
.stat-badge strong { display: block; font-size: 1.5rem; font-weight: 800; line-height: 1; font-family: 'DM Serif Display', serif; }
.stat-badge span { font-size: .68rem; opacity: .85; margin-top: .2rem; display: block; }

/* ── CHECK LIST ── */
.check-list { list-style: none; padding: 0; margin: 1rem 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  padding: .52rem 0; font-size: .9rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(0,150,136,.06); line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list .check-icon {
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; font-weight: 700;
  flex-shrink: 0; margin-top: .15rem;
}

/* ── STEPS (numbered) ── */
.steps { list-style: none; padding: 0; margin: 1.2rem 0; counter-reset: step; }
.steps li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .9rem 0; font-size: .9rem; color: var(--text-mid);
  border-bottom: 1px solid rgba(0,150,136,.06);
  counter-increment: step; line-height: 1.6;
}
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(step);
  min-width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; font-weight: 800; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── INFO / WARN BOXES ── */
.info-box {
  background: var(--teal-xsoft);
  border-left: 3px solid var(--teal);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.3rem; margin: 1.2rem 0;
  font-size: .88rem; color: var(--text-mid); line-height: 1.7;
}
.info-box strong { color: var(--teal-dark); }
.warn-box {
  background: #fffbf0; border-left: 3px solid #F59E0B;
  border-radius: 0 var(--r) var(--r) 0;
  padding: 1rem 1.3rem; margin: 1.2rem 0;
  font-size: .88rem; color: #78350F; line-height: 1.7;
}

/* ── HIGHLIGHT CARDS ── */
.hl-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 1rem; margin-top: 2rem;
}
.hl-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.5rem;
  display: flex; gap: .9rem; align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.sub-content--alt .hl-card { background: var(--white); }
.hl-card:hover { box-shadow: var(--shadow); border-color: var(--teal-mid); transform: translateY(-2px); }
.hl-card__icon { font-size: 1.8rem; flex-shrink: 0; line-height: 1; }
.hl-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1rem; color: var(--dark); margin-bottom: .35rem;
}
.hl-card p { font-size: .84rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ── CTA SUBPAGE BOX ── */
.cta-sub {
  background: linear-gradient(135deg, var(--dark) 0%, #004D40 100%);
  border-radius: var(--r-lg); padding: 3rem 2.5rem;
  text-align: center; margin: 2.5rem 0 0;
}
.cta-sub h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #fff; margin-bottom: .55rem;
}
.cta-sub h2 em { color: var(--teal-mid); font-style: italic; }
.cta-sub p { color: rgba(255,255,255,.65); font-size: .93rem; max-width: 500px; margin: 0 auto 1.8rem; line-height: 1.7; }
.cta-sub__btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.btn--cta-white {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; color: var(--teal-dark);
  padding: .75rem 1.6rem; border-radius: 2rem;
  font-weight: 700; font-size: .88rem;
  box-shadow: 0 4px 14px rgba(0,0,0,.2);
  transition: all var(--transition);
}
.btn--cta-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.28); }
.btn--cta-ghost {
  display: inline-flex; align-items: center; gap: .4rem;
  border: 1.5px solid rgba(255,255,255,.35); color: rgba(255,255,255,.82);
  padding: .75rem 1.6rem; border-radius: 2rem;
  font-weight: 600; font-size: .88rem;
  transition: all var(--transition);
}
.btn--cta-ghost:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.65); color: #fff; }
@media (max-width: 600px) {
  .cta-sub { padding: 2rem 1.2rem; }
  .cta-sub__btns { flex-direction: column; align-items: center; }
  .btn--cta-white, .btn--cta-ghost { width: 100%; justify-content: center; }
}

/* ── RELATED LINKS ── */
.related-links {
  background: var(--teal-xsoft); border-radius: var(--r-lg);
  padding: 1.6rem 1.8rem; margin: 2rem 0 0;
}
.related-links h4 {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--teal-dark); margin-bottom: .9rem;
}
.related-links ul { display: flex; flex-wrap: wrap; gap: .5rem; }
.related-links a {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .83rem; font-weight: 600; color: var(--teal-dark);
  background: var(--white); padding: .38rem 1rem;
  border-radius: 2rem; border: 1px solid var(--border);
  transition: all var(--transition);
}
.related-links a:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* ── SECTION IMAGE HERO (subpage) ── */
.sub-hero-img {
  width: 100%; max-height: 420px; object-fit: cover;
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
  display: block;
}

/* ── PRICE TABLE ── */
.price-tbl { width: 100%; border-collapse: collapse; font-size: .88rem; margin: 1.2rem 0; }
.price-tbl thead th {
  background: var(--teal); color: #fff;
  padding: .75rem 1rem; text-align: left; font-weight: 600;
}
.price-tbl thead th:last-child { text-align: right; }
.price-tbl td { padding: .7rem 1rem; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.price-tbl td:last-child { font-weight: 700; color: var(--teal-dark); text-align: right; white-space: nowrap; }
.price-tbl tr:last-child td { border-bottom: none; }
.price-tbl tr:nth-child(even) td { background: var(--bg); }

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--white); border-radius: var(--r-lg);
  border: 1.5px solid var(--border); padding: 2.2rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.35rem; color: var(--dark); margin-bottom: 1.4rem;
}
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-grid2 { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: .8rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: .72rem .95rem;
  border: 1.5px solid var(--border); border-radius: var(--r);
  font-family: 'Outfit', sans-serif; font-size: .9rem; color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,150,136,.12);
}
.form-group textarea { resize: vertical; min-height: 115px; }
.form-note-sm { font-size: .75rem; color: var(--text-light); line-height: 1.5; margin-top: .2rem; }
.btn--submit {
  width: 100%; padding: .85rem;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: #fff; border: none; border-radius: 2rem;
  font-family: 'Outfit', sans-serif; font-size: .93rem; font-weight: 700;
  cursor: pointer; transition: all var(--transition); margin-top: .5rem;
  display: flex; align-items: center; justify-content: center; gap: .45rem;
}
.btn--submit:hover { opacity: .9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,150,136,.35); }
.btn--submit:disabled { opacity: .55; cursor: not-allowed; transform: none; }
#form-status {
  margin-top: .85rem; padding: .85rem 1.1rem;
  border-radius: var(--r); font-size: .87rem; display: none; line-height: 1.5;
}
#form-status.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; display: block; }
#form-status.error   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; display: block; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem; margin-top: 2rem;
}
.gallery-item { border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm); transition: all var(--transition); }
.gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery-item img { width: 100%; height: 210px; object-fit: cover; display: block; }
.gallery-item figcaption { padding: .65rem .9rem; font-size: .8rem; color: var(--text-mid); background: var(--white); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px,1fr)); gap: 1.4rem; margin-top: 2.2rem; }
.blog-card { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); border-color: var(--teal-mid); transform: translateY(-3px); }
.blog-card__img { height: 190px; overflow: hidden; }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }
.blog-card__body { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__cat { font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--teal); margin-bottom: .5rem; }
.blog-card__title { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: var(--dark); margin-bottom: .5rem; line-height: 1.3; }
.blog-card__excerpt { font-size: .84rem; color: var(--text-mid); line-height: 1.65; flex: 1; }
.blog-card__link { display: inline-flex; align-items: center; gap: .3rem; margin-top: .9rem; font-size: .8rem; font-weight: 700; color: var(--teal); transition: gap var(--transition); }
.blog-card:hover .blog-card__link { gap: .55rem; }

/* ── CONTACT MAP GRID ── */
.contact-sub-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .contact-sub-grid { grid-template-columns: 1fr; } }

/* ── STATS ROW (contact/cennik) ── */
.stats-row4 {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; margin-bottom: 2.5rem;
}
@media (max-width: 768px) { .stats-row4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-row4 { grid-template-columns: repeat(2, 1fr); gap: .6rem; } }
.stat-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 1.3rem 1rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-box .num { font-family: 'DM Serif Display', serif; font-size: 1.8rem; color: var(--teal); line-height: 1; }
.stat-box .lbl { font-size: .75rem; color: var(--text-mid); margin-top: .3rem; line-height: 1.4; }

/* ── CRITICAL SPACING FIX ── */
/* sub-content overrides generic section padding */
section.sub-content,
section.sub-content--alt,
section.faq {
  padding: 0 !important;
}
section.sub-content > .container,
section.sub-content--alt > .container,
section.faq > .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 768px) {
  section.sub-content > .container,
  section.sub-content--alt > .container,
  section.faq > .container {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Fix methods-wrap on light bg */
.sub-content .methods-wrap,
.sub-content--alt .methods-wrap {
  background: transparent !important;
  border-top: 1px solid var(--border) !important;
  padding-top: 1.2rem !important;
}
.sub-content .method-chip,
.sub-content--alt .method-chip {
  background: var(--teal-soft) !important;
  color: var(--teal-dark) !important;
  border-color: var(--border) !important;
}
.sub-content .method-chip:hover,
.sub-content--alt .method-chip:hover {
  background: var(--teal) !important;
  color: #fff !important;
}

/* Fix devices grid on light bg */
.sub-content--alt .device-card,
.sub-content .device-card {
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
}
.sub-content--alt .device-card h3,
.sub-content .device-card h3 { color: var(--dark) !important; }
.sub-content--alt .device-card p,
.sub-content .device-card p { color: var(--text-mid) !important; }
.sub-content--alt .device-card__tag { background: var(--teal-soft) !important; color: var(--teal-dark) !important; }
.sub-content .device-card__tag { background: var(--teal-soft) !important; color: var(--teal-dark) !important; }

/* Fix bicom-auth on light bg */
.sub-content--alt .bicom-auth,
.sub-content .bicom-auth {
  background: var(--teal-xsoft) !important;
  border: 1px solid var(--border) !important;
}
.sub-content--alt .bicom-auth p,
.sub-content .bicom-auth p { color: var(--text-mid) !important; }
.sub-content--alt .bicom-auth a,
.sub-content .bicom-auth a { color: var(--teal-dark) !important; }
.sub-content--alt .bicom-auth div,
.sub-content .bicom-auth div { font-size: 1.8rem; }

/* Fix stat-badge text visibility */
.stat-badge strong { color: #fff !important; }
.stat-badge span { color: rgba(255,255,255,.85) !important; }

/* Ensure rich-block text colors */
.rich-block__text p { color: var(--text-mid) !important; }
.rich-block__text h2 { color: var(--dark) !important; }
.rich-block__text h2 em { color: var(--teal) !important; }
.rich-block__text h3 { color: var(--dark-mid) !important; }
.rich-block__text strong { color: var(--dark) !important; }

/* sec-title always dark */
.sec-title { color: var(--dark) !important; }
.sec-title em { color: var(--teal) !important; font-style: italic; }

/* Check list text */
.check-list li { color: var(--text-mid) !important; }

/* Steps text */
.steps li { color: var(--text-mid) !important; }

/* Price card on light bg */
.price-card__body .price-row .label { color: var(--text-mid) !important; }
.price-card__body .price-row .val { color: var(--teal-dark) !important; }

/* Blog/gallery card text */
.blog-card__title { color: var(--dark) !important; }
.blog-card__excerpt { color: var(--text-mid) !important; }
.blog-card__cat { color: var(--teal) !important; }
.gallery-item figcaption { color: var(--text-mid) !important; }

/* Stats box */
.stat-box .num { color: var(--teal) !important; }
.stat-box .lbl { color: var(--text-mid) !important; }

/* Reveal – also show immediately for no-JS */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── LOGO SIZE FINAL FIX ── */
.nav__logo img {
  height: 50px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain !important;
  flex-shrink: 0 !important;
}
@media (max-width: 480px) {
  .nav__logo img { height: 40px !important; }
  .nav__logo-name { font-size: .9rem !important; }
}
/* footer logo */
.footer-brand img {
  height: 44px !important;
  width: auto !important;
  max-width: 140px !important;
  object-fit: contain !important;
}
