/* ============================================================
   RJO Enterprises — Premium curtains & tracks
   Design tokens + global styles
   ============================================================ */

:root {
  /* Brand — teal (from logo) */
  --teal:      #0A6E7C;
  --teal-700:  #075762;
  --teal-800:  #054853;
  --teal-300:  #5FA9B3;
  --teal-100:  #D6EAEC;
  --teal-50:   #EAF4F5;

  /* Warm secondary accent (gold/brass) */
  --gold:      #C2945A;
  --gold-700:  #A87C44;
  --gold-100:  #F1E6D4;

  /* Neutrals */
  --ink:       #14282B;   /* headings */
  --body:      #475A5D;   /* paragraph */
  --muted:     #7E8D8F;   /* captions */
  --line:      #E5EBEC;
  --grey:      #9AA3A6;   /* logo grey */

  /* Surfaces */
  --bg:        #FFFFFF;
  --bg-soft:   #F4F8F8;
  --bg-teal:   #06343B;   /* dark teal section */

  /* Geometry */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(20,40,43,.06);
  --sh:    0 14px 40px -18px rgba(20,40,43,.22);
  --sh-lg: 0 30px 70px -30px rgba(20,40,43,.34);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --ff-head: "Poppins", system-ui, sans-serif;
  --ff-body: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--body);
  background: var(--bg);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

.section { padding: 104px 0; }
.section--soft { background: var(--bg-soft); }

/* ---- Eyebrow / section heads ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-head { max-width: 660px; }
.section-head--center { margin: 0 auto; text-align: center; }
.section-head h2 {
  font-size: 42px;
  font-weight: 700;
  margin: 18px 0 0;
}
.section-head p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--body);
}
.catalog-btn { margin-top: 30px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(10,110,124,.7);
}
.btn--primary:hover { background: var(--teal-700); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(10,110,124,.8); }
.btn--gold { background: var(--gold); color: #fff; box-shadow: 0 12px 26px -12px rgba(194,148,90,.75); }
.btn--gold:hover { background: var(--gold-700); transform: translateY(-2px); }
.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: #fff; color: var(--teal); border-color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--teal); border-color: var(--teal-100); }
.btn--outline:hover { background: var(--teal-50); border-color: var(--teal); transform: translateY(-2px); }
.btn--lg { padding: 17px 34px; font-size: 16.5px; }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.header.scrolled { box-shadow: var(--sh-sm); border-color: var(--line); background: rgba(255,255,255,.94); }
.header__inner {
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }
.brand__name { display: none; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--ff-head);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav a:hover { color: var(--teal); background: var(--teal-50); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.call-btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--teal);
  color: #fff;
  padding: 11px 20px 11px 13px;
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  box-shadow: 0 10px 22px -12px rgba(10,110,124,.8);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.call-btn:hover { background: var(--teal-700); transform: translateY(-2px); }
.call-btn__icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center; flex: none;
}
.call-btn__icon svg { width: 17px; height: 17px; }
.call-btn__txt { display: flex; flex-direction: column; line-height: 1.05; }
.call-btn__txt small { font-size: 10.5px; font-weight: 500; opacity: .82; letter-spacing: .04em; }
.call-btn__txt b { font-size: 15px; font-weight: 600; letter-spacing: .01em; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 130px 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.4s var(--ease);
}
.hero__bg img.is-active { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__bg img { transition: none; }
}
.hero__shade {
  position: absolute; inset: 0; z-index: 0;
  background:
    linear-gradient(100deg, rgba(6,52,59,.93) 0%, rgba(6,52,59,.74) 38%, rgba(6,52,59,.30) 68%, rgba(6,52,59,.08) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero__inner { max-width: 660px; color: #fff; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-size: 13.5px; font-weight: 500;
  letter-spacing: .02em;
}
.hero__badge i {
  width: 8px; height: 8px; border-radius: 50%; background: #6BD2A0;
  box-shadow: 0 0 0 4px rgba(107,210,160,.25);
}
.hero h1 {
  color: #fff;
  font-size: 58px;
  font-weight: 700;
  margin: 24px 0 0;
  line-height: 1.06;
}
.hero h1 .accent { color: #EBC68A; }
.hero__sub {
  margin-top: 22px;
  font-size: 19px;
  color: rgba(255,255,255,.86);
  max-width: 540px;
}
.hero__actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust {
  margin-top: 46px;
  display: flex; flex-wrap: wrap; gap: 30px 44px;
  align-items: center;
}
.hero__trust .t {
  display: flex; flex-direction: column;
}
.hero__trust .t b { font-family: var(--ff-head); font-size: 30px; font-weight: 700; color: #fff; line-height: 1; }
.hero__trust .t span { font-size: 13.5px; color: rgba(255,255,255,.72); margin-top: 6px; letter-spacing: .02em; }
.hero__trust .divider { width: 1px; height: 40px; background: rgba(255,255,255,.22); }

/* ============================================================
   PRODUCTS
   ============================================================ */
.cat-tabs {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 340px;
  cursor: pointer;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  text-align: left;
  padding: 0;
  background: #000;
  isolation: isolate;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.cat-card__img { position: absolute; inset: 0; z-index: -2; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card__img img { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(to top, rgba(6,52,59,.92) 0%, rgba(6,52,59,.45) 46%, rgba(6,52,59,.08) 100%);
}
.cat-card.active { outline: 3px solid var(--teal); outline-offset: 3px; }
.cat-card__body {
  position: absolute; inset: auto 0 0 0;
  padding: 80px 26px 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(4,40,46,.96) 8%, rgba(4,40,46,.78) 48%, rgba(4,40,46,0) 100%);
}
.cat-card__count {
  display: inline-block;
  font-family: var(--ff-head);
  font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  padding: 5px 12px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.cat-card__body h3 { color: #fff; font-size: 25px; font-weight: 600; }
.cat-card__body p { color: rgba(255,255,255,.82); font-size: 15px; margin-top: 7px; }
.cat-card__link {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--ff-head); font-weight: 600; font-size: 14.5px;
  color: #EBC68A;
}
.cat-card__link svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.cat-card:hover .cat-card__link svg { transform: translateX(4px); }
.cat-card.active .cat-card__link { color: #fff; }

/* Gallery panel */
.gallery {
  margin-top: 8px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .55s var(--ease), opacity .45s var(--ease), margin-top .4s var(--ease);
}
.gallery.open { max-height: 4000px; opacity: 1; margin-top: 44px; }
.gallery__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 32px;
}
.gallery__head h3 { font-size: 28px; font-weight: 700; }
.gallery__head p { margin-top: 6px; color: var(--body); }
.gallery__close {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-weight: 600; font-size: 14px;
  color: var(--teal);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 10px 18px; border-radius: var(--r-pill);
  cursor: pointer;
  transition: background .2s var(--ease);
}
.gallery__close:hover { background: var(--teal-100); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  opacity: 0;
  transform: translateY(18px);
}
.gallery.open .product { animation: prodIn .5s var(--ease) forwards; }
@keyframes prodIn { to { opacity: 1; transform: none; } }
.product:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--teal-100); }
.product image-slot { width: 100%; height: 220px; display: block; }
.product__body { padding: 20px 22px 24px; }
.product__tag {
  font-family: var(--ff-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: var(--gold);
}
.product__body h4 { font-size: 19px; font-weight: 600; margin-top: 8px; }
.product__body p { font-size: 14.5px; color: var(--body); margin-top: 9px; line-height: 1.55; }
.product__feats { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.product__feats span {
  font-size: 12px; font-weight: 500;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 5px 11px; border-radius: var(--r-pill);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about__grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center;
}
.about__media { position: relative; }
.about__media img { border-radius: var(--r-lg); box-shadow: var(--sh); width: 100%; height: 100%; object-fit: cover; max-height: 540px; }
.about__media .badge-float {
  position: absolute; left: -28px; bottom: 36px;
  background: #fff; border-radius: var(--r);
  box-shadow: var(--sh-lg);
  padding: 22px 26px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid var(--line);
}
.about__media .badge-float .num { font-family: var(--ff-head); font-size: 38px; font-weight: 700; color: var(--teal); line-height: 1; }
.about__media .badge-float .lab { font-size: 14px; color: var(--body); max-width: 130px; }
.about__lead { font-size: 20px; color: var(--ink); font-weight: 500; margin-top: 22px; line-height: 1.5; }
.about__text p { margin-top: 18px; }
.about__points { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; }
.about__points li { list-style: none; display: flex; gap: 12px; align-items: flex-start; }
.about__points .tick {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background: var(--teal-50); color: var(--teal);
  display: grid; place-items: center; margin-top: 1px;
}
.about__points .tick svg { width: 15px; height: 15px; }
.about__points b { font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: 15.5px; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 28px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.service:hover { transform: translateY(-6px); box-shadow: var(--sh); border-color: var(--teal-100); }
.service__icon {
  width: 62px; height: 62px; border-radius: 16px;
  background: linear-gradient(140deg, var(--teal-50), var(--teal-100));
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.service:hover .service__icon { background: var(--teal); color: #fff; transform: rotate(-6deg) scale(1.04); }
.service__icon svg { width: 28px; height: 28px; }
.service h3 { font-size: 19.5px; font-weight: 600; }
.service p { margin-top: 11px; font-size: 14.8px; color: var(--body); line-height: 1.55; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why { background: var(--bg-teal); color: #fff; position: relative; overflow: hidden; }
.why::before {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(95,169,179,.22), transparent 70%);
}
.why .eyebrow { color: #EBC68A; }
.why .section-head h2 { color: #fff; }
.why .section-head p { color: rgba(255,255,255,.74); }
.why-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r);
  padding: 32px 26px;
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.why-card .n { font-family: var(--ff-head); font-size: 14px; font-weight: 600; color: #EBC68A; letter-spacing: .1em; }
.why-card .ic {
  width: 56px; height: 56px; border-radius: 14px; margin: 16px 0 20px;
  background: rgba(235,198,138,.14); color: #EBC68A;
  display: grid; place-items: center;
}
.why-card .ic svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 19px; font-weight: 600; }
.why-card p { color: rgba(255,255,255,.72); font-size: 14.5px; margin-top: 10px; }

/* ============================================================
   STATS
   ============================================================ */
.stats { background: var(--teal); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.stat { text-align: center; color: #fff; padding: 8px; position: relative; }
.stat:not(:last-child)::after {
  content: ""; position: absolute; right: -14px; top: 14%; height: 72%;
  width: 1px; background: rgba(255,255,255,.22);
}
.stat .num {
  font-family: var(--ff-head);
  font-size: 54px; font-weight: 700; line-height: 1;
  display: flex; align-items: baseline; justify-content: center; gap: 2px;
}
.stat .num .suffix { color: #EBC68A; }
.stat .lab { margin-top: 12px; font-size: 15.5px; color: rgba(255,255,255,.84); font-family: var(--ff-head); font-weight: 500; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.tst { position: relative; }
.tst__viewport { overflow: hidden; margin-top: 48px; }
.tst__track { display: flex; transition: transform .6s var(--ease); }
.tst__slide { min-width: 100%; padding: 8px; }
.tst-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: 48px 54px;
  max-width: 880px; margin: 0 auto; text-align: center;
  position: relative;
}
.tst-card .quote-mark {
  font-family: Georgia, serif; font-size: 90px; line-height: 1; color: var(--teal-100);
  position: absolute; top: 18px; left: 36px;
}
.tst-card .stars { display: flex; justify-content: center; gap: 4px; color: var(--gold); margin-bottom: 20px; position: relative; }
.tst-card .stars svg { width: 20px; height: 20px; }
.tst-card blockquote {
  font-family: var(--ff-head); font-weight: 500;
  font-size: 23px; line-height: 1.5; color: var(--ink);
  margin: 0; position: relative;
}
.tst-card .person { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.tst-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 20px; color: #fff;
}
.tst-card .who { text-align: left; }
.tst-card .who b { font-family: var(--ff-head); font-weight: 600; color: var(--ink); display: block; font-size: 16.5px; }
.tst-card .who span { font-size: 14px; color: var(--muted); }
.tst__nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 34px; }
.tst__arrow {
  width: 50px; height: 50px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  display: grid; place-items: center; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.tst__arrow:hover { background: var(--teal); color: #fff; border-color: var(--teal); transform: scale(1.06); }
.tst__arrow svg { width: 20px; height: 20px; }
.tst__dots { display: flex; gap: 9px; }
.tst__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: none; cursor: pointer; padding: 0; transition: all .3s var(--ease); }
.tst__dot.active { background: var(--teal); width: 28px; border-radius: var(--r-pill); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { padding: 92px 0; }
.cta-box {
  background: linear-gradient(120deg, var(--teal-800), var(--teal) 120%);
  border-radius: var(--r-lg);
  padding: 64px 72px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
  position: relative; overflow: hidden;
  box-shadow: var(--sh-lg);
}
.cta-box::before {
  content: ""; position: absolute; right: -80px; bottom: -120px;
  width: 360px; height: 360px; border-radius: 50%;
  background: radial-gradient(circle, rgba(235,198,138,.22), transparent 70%);
}
.cta-box__txt { position: relative; max-width: 620px; }
.cta-box__txt .eyebrow { color: #EBC68A; }
.cta-box__txt h2 { color: #fff; font-size: 38px; font-weight: 700; margin-top: 14px; }
.cta-box__txt p { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 18px; }
.cta-box__actions { position: relative; display: flex; gap: 14px; flex-wrap: wrap; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact__info .lead { font-size: 18px; margin-top: 18px; }
.info-list { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 22px; box-shadow: var(--sh-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.info-item:hover { transform: translateY(-3px); box-shadow: var(--sh); }
.info-item .ic {
  width: 48px; height: 48px; border-radius: 13px; flex: none;
  background: var(--teal-50); color: var(--teal);
  display: grid; place-items: center;
}
.info-item.wa .ic { background: #E7F8EE; color: #1FAD5B; }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item .t small { font-family: var(--ff-head); font-weight: 600; font-size: 13px; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.info-item .t b { display: block; font-family: var(--ff-head); font-weight: 600; color: var(--ink); font-size: 17px; margin-top: 3px; }
.info-item .t span { font-size: 14.5px; }
.info-item a.t-link { color: var(--teal); }

.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh); padding: 40px;
}
.form-card h3 { font-size: 24px; font-weight: 700; }
.form-card > p { margin-top: 8px; color: var(--body); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-top: 18px; }
.field label { display: block; font-family: var(--ff-head); font-weight: 500; font-size: 14px; color: var(--ink); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%;
  font-family: var(--ff-body); font-size: 15.5px; color: var(--ink);
  padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--bg-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #A9B5B6; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 4px var(--teal-50);
}
.field textarea { resize: vertical; min-height: 130px; }
.form-card .btn { width: 100%; margin-top: 24px; }
.form-note { margin-top: 14px; font-size: 13px; color: var(--muted); text-align: center; }
.form-success {
  margin-top: 18px; display: none;
  background: #E7F8EE; border: 1px solid #BCE8CD; color: #157A41;
  padding: 14px 18px; border-radius: var(--r-sm); font-size: 14.5px;
  align-items: center; gap: 10px;
}
.form-success.show { display: flex; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #04282E; color: rgba(255,255,255,.72); padding: 76px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 56px; }
.footer__brand .logo-chip { display: inline-block; background: #fff; border-radius: 14px; padding: 12px 16px; box-shadow: 0 8px 20px -10px rgba(0,0,0,.5); }
.footer__brand .logo-chip img { height: 54px; }
.footer__brand p { margin-top: 20px; font-size: 15px; max-width: 320px; line-height: 1.6; }
.footer h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 20px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { font-size: 14.5px; transition: color .2s var(--ease), padding .2s var(--ease); }
.footer ul a:hover { color: #EBC68A; padding-left: 5px; }
.footer__contact li { display: flex; gap: 11px; font-size: 14.5px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: #EBC68A; flex: none; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08); color: #fff;
  display: grid; place-items: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer__social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px;
}
.footer__bottom a:hover { color: #EBC68A; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-stack {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: flex; flex-direction: column; gap: 14px;
}
.float-btn {
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,.4);
  position: relative;
  transition: transform .25s var(--ease);
}
.float-btn:hover { transform: scale(1.08); }
.float-btn svg { width: 28px; height: 28px; }
.float-btn.wa { background: #25D366; }
.float-btn.call { background: var(--teal); }
.float-btn::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid currentColor; opacity: .6;
  animation: ring 2.4s var(--ease) infinite;
}
@keyframes ring { 0% { transform: scale(1); opacity: .5; } 100% { transform: scale(1.7); opacity: 0; } }
.float-btn .tip {
  position: absolute; right: 70px; top: 50%; transform: translateY(-50%);
  background: var(--ink); color: #fff; font-size: 13px; font-weight: 500;
  padding: 7px 13px; border-radius: 9px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .2s var(--ease), transform .2s var(--ease);
  font-family: var(--ff-head);
}
.float-btn:hover .tip { opacity: 1; transform: translateY(-50%) translateX(-4px); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
/* reveal only hides when JS is active so content never gets stuck invisible */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
/* Hard failsafe: environments that freeze CSS transitions (background tabs,
   non-painting preview iframes) keep opacity stuck at 0 even after .in is
   added. This class forces full visibility with NO transition, so content
   can never be permanently hidden. */
html.reveal-now .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   MOBILE NAV PANEL
   ============================================================ */
.mobile-nav {
  position: fixed; inset: 84px 0 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(8px);
  padding: 30px 28px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  overflow-y: auto;
}
body.nav-open .mobile-nav { transform: none; }
.mobile-nav a {
  font-family: var(--ff-head); font-weight: 500; font-size: 19px; color: var(--ink);
  padding: 16px 8px; border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 24px; }

/* ============================================================
   PROOF OF WORK
   ============================================================ */
.proof__layout {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 28px;
  align-items: start;
}
.proof__video {
  position: relative; margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #04282E;
  box-shadow: var(--sh-lg);
}
.proof__video video {
  display: block; width: 100%; height: auto;
  background: #04282E;
}
.proof__video figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 34px 18px 14px;
  font-family: var(--ff-head); font-weight: 500; font-size: 13.5px; color: #fff;
  background: linear-gradient(to top, rgba(4,40,46,.88), transparent);
  pointer-events: none;
}
.proof__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--gold); color: #fff;
  font-family: var(--ff-head); font-weight: 600; font-size: 12.5px; letter-spacing: .03em;
  padding: 7px 13px; border-radius: var(--r-pill);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}
.proof__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.proof__gallery figure {
  position: relative; margin: 0;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--sh);
  aspect-ratio: 4 / 3;
  background: var(--bg-soft);
}
.proof__gallery img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease);
}
.proof__gallery figure:hover img { transform: scale(1.06); }
.proof__gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 28px 14px 12px;
  font-family: var(--ff-head); font-weight: 500; font-size: 13px; color: #fff;
  background: linear-gradient(to top, rgba(4,40,46,.85), transparent);
  pointer-events: none;
}

/* ==== HOSPITAL INTERFACE (added on request · delete this whole block to revert) START ==== */
.hosp-intro { margin-bottom: 42px; }
.hosp-intro__banner {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  min-height: 320px;
  display: flex;
  box-shadow: var(--sh);
}
.hosp-intro__banner img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.hosp-intro__banner::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(6,52,59,.93) 0%, rgba(6,52,59,.80) 45%, rgba(6,52,59,.32) 100%);
}
.hosp-intro__copy {
  position: relative; z-index: 1;
  max-width: 560px; color: #fff;
  padding: 46px;
  align-self: center;
}
.hosp-intro__eyebrow {
  font-family: var(--ff-head); font-weight: 600; font-size: 12.5px;
  letter-spacing: .12em; text-transform: uppercase; color: #EBC68A;
}
.hosp-intro__copy h4 { color: #fff; font-size: 30px; font-weight: 700; margin: 12px 0 0; line-height: 1.16; }
.hosp-intro__copy p { color: rgba(255,255,255,.86); margin-top: 14px; font-size: 15.5px; line-height: 1.6; }
.hosp-intro__cta { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hosp-intro__feats {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.hosp-feat {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 18px;
  box-shadow: var(--sh-sm);
}
.hosp-feat__ic {
  flex: none;
  width: 46px; height: 46px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-700) 100%);
  color: #fff;
  box-shadow: 0 8px 18px -8px rgba(10,110,124,.65);
}
.hosp-feat__ic svg { width: 23px; height: 23px; stroke-width: 2; }
.hosp-feat div b { font-family: var(--ff-head); font-weight: 600; font-size: 14.5px; color: var(--ink); display: block; }
.hosp-feat div span { font-size: 12.8px; color: var(--body); margin-top: 3px; display: block; line-height: 1.45; }
@media (max-width: 960px) {
  .hosp-intro__feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .hosp-intro__feats { grid-template-columns: 1fr; }
  .hosp-intro__copy { padding: 32px 24px; }
  .hosp-intro__copy h4 { font-size: 24px; }
  .hosp-intro__banner { min-height: 0; }
}
/* ==== HOSPITAL INTERFACE END ==== */

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about__grid { gap: 44px; }
}
@media (max-width: 960px) {
  .nav, .header__cta .call-btn { display: none; }
  .burger { display: block; }
  .header__cta { gap: 10px; }
  .section { padding: 80px 0; }
  .hero h1 { font-size: 50px; }
  .section-head h2 { font-size: 36px; }
  .stat .num { font-size: 48px; }
  .cta-box__txt h2 { font-size: 34px; }
  .proof__layout { grid-template-columns: 1fr; gap: 30px; }
  .proof__video { width: 100%; max-width: 440px; margin: 0 auto; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .stat:nth-child(2)::after { display: none; }
  .about__grid, .contact__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__media .badge-float { left: 16px; }
  .cat-tabs { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr 1fr; }
  .cta-box { padding: 48px; }
}
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 120px 0 70px; }
  .hero h1 { font-size: 40px; }
  .section-head h2 { font-size: 30px; }
  .hero__sub { font-size: 17px; }
  .stat .num { font-size: 42px; }
  .tst-card blockquote { font-size: 21px; }
  .cta-box__txt h2 { font-size: 28px; }
  .hero__trust { gap: 22px 26px; }
  .hero__trust .divider { display: none; }
  .services-grid, .why-grid, .product-grid, .footer__top, .form-row, .cat-tabs { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat::after { display: none !important; }
  .about__points { grid-template-columns: 1fr; }
  .tst-card { padding: 38px 24px; }
  .tst-card .quote-mark { left: 18px; font-size: 64px; }
  .cta-box { padding: 36px 28px; }
  .form-card { padding: 28px 22px; }
  .float-stack { right: 16px; bottom: 16px; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .brand img { height: 46px; }
  .header__inner { height: 76px; }
  .mobile-nav { inset: 76px 0 0 0; }
  .hero { padding: 108px 0 60px; min-height: auto; }
  .hero h1 { font-size: 33px; }
  .hero__sub { font-size: 16px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 18px 32px; margin-top: 36px; }
  .hero__trust .t b { font-size: 26px; }
  .cat-card { min-height: 300px; }
  .cta-box { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
  .cta-box__actions { width: 100%; }
  .cta-box__actions .btn { flex: 1; }
  .float-btn { width: 54px; height: 54px; }
  .float-btn svg { width: 26px; height: 26px; }
  .tst__nav { gap: 12px; }
  .section-head p { font-size: 16.5px; }
}
@media (max-width: 380px) {
  .stats-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero h1 { font-size: 30px; }
}
