/* ==========================================================================
   UTLEX (Urology Division) — a division of Plenum Biotech
   Palette derived from the UTLEX logo: deep red + charcoal + white
   ========================================================================== */

:root {
  /* Logo reds */
  --red-800: #7a1214;
  --red-700: #8e1517;
  --red-600: #a01c1e;   /* UTLEX wordmark */
  --red-500: #c0272d;   /* kidney + ECG mark */
  --red-400: #d94a48;
  --red-300: #f0908e;
  --red-200: #f7c2c1;

  /* Logo charcoal */
  --char-900: #140f10;
  --char-800: #1e1719;
  --char-700: #231f20;  /* "(Urology Division)" */
  --char-600: #3a3032;
  --char-500: #4d4143;

  /* Warm neutrals */
  --blush-100: #fbeaea;
  --blush-50: #fdf5f5;
  --slate-700: #55494c;
  --slate-500: #857779;
  --slate-300: #cfc4c6;
  --slate-100: #ece5e6;

  --surface: #ffffff;
  --surface-alt: #faf7f7;

  /* Semantic */
  --bg: var(--surface);
  --text: var(--char-700);
  --text-muted: var(--slate-700);
  --brand: var(--red-500);
  --brand-dark: var(--red-700);
  --accent: var(--red-400);

  --grad-brand: linear-gradient(135deg, var(--red-800) 0%, var(--red-500) 55%, var(--red-400) 100%);
  --grad-deep: linear-gradient(150deg, var(--char-900) 0%, var(--char-700) 45%, #3d2224 100%);
  --grad-glow: radial-gradient(60% 60% at 50% 0%, rgba(217, 74, 72, .22) 0%, rgba(217, 74, 72, 0) 70%);

  /* Elevation */
  --sh-xs: 0 1px 2px rgba(35, 31, 32, .06);
  --sh-sm: 0 2px 8px rgba(35, 31, 32, .08);
  --sh-md: 0 10px 30px -8px rgba(35, 31, 32, .18);
  --sh-lg: 0 24px 60px -18px rgba(35, 31, 32, .3);
  --sh-brand: 0 16px 40px -12px rgba(160, 28, 30, .45);

  /* Geometry */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  --container: 1200px;
  --gutter: clamp(1rem, 4vw, 2.5rem);

  --ff-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-display: "Sora", "Plus Jakarta Sans", system-ui, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .45s;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--char-700);
}

::selection { background: var(--red-500); color: #fff; }

/* Bootstrap-compatible utilities (for the social markup) */
.d-none { display: none; }
.gap-2 { gap: .5rem; }
@media (min-width: 768px) { .d-md-flex { display: flex !important; } }

/* ==========================================================================
   Layout helpers
   ========================================================================== */

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; position: relative; }
.section--tint { background: var(--surface-alt); }
.section--blush { background: linear-gradient(180deg, var(--blush-50) 0%, #ffffff 100%); }
.section--deep { background: var(--grad-deep); color: #e3d8d9; }
.section--deep h2, .section--deep h3 { color: #fff; }

.sec-head { max-width: 760px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red-700);
  background: var(--blush-100);
  border: 1px solid rgba(192, 39, 45, .2);
  padding: .4rem .9rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red-500); box-shadow: 0 0 0 3px rgba(192, 39, 45, .22); }
.section--deep .eyebrow { color: var(--red-300); background: rgba(217, 74, 72, .12); border-color: rgba(217, 74, 72, .3); }

.sec-title { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 1rem; }
.sec-title .hl {
  background: var(--grad-brand);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.section--deep .sec-title .hl {
  background: linear-gradient(100deg, var(--red-300) 0%, var(--red-400) 60%, #ff7f7c 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-sub { color: var(--text-muted); font-size: clamp(.98rem, 1.4vw, 1.08rem); }
.section--deep .sec-sub { color: #c4b3b5; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem;
  border: 0; border-radius: var(--r-pill);
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { box-shadow: 0 22px 50px -12px rgba(160, 28, 30, .6); }

.btn--dark { background: var(--char-700); color: #fff; box-shadow: var(--sh-md); }
.btn--dark:hover { background: var(--char-900); }

.btn--ghost {
  background: rgba(255, 255, 255, .08); color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .16); border-color: rgba(255, 255, 255, .55); }

.btn--outline { background: transparent; color: var(--red-700); border: 1.5px solid rgba(160, 28, 30, .3); }
.btn--outline:hover { background: var(--blush-100); border-color: var(--red-500); }

.btn--wa { background: #25d366; color: #fff; box-shadow: 0 14px 34px -12px rgba(37, 211, 102, .6); }
.btn--wa:hover { background: #1fb757; }

.btn--block { width: 100%; }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1rem; }

/* ==========================================================================
   Top bar
   ========================================================================== */

.topbar {
  background: var(--char-900);
  color: #b6a6a8;
  font-size: .82rem;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 42px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: .45rem; transition: color .3s var(--ease); }
.topbar a:hover { color: var(--red-300); }
.topbar svg { width: 14px; height: 14px; color: var(--red-400); }
.topbar__badge { display: inline-flex; align-items: center; gap: .4rem; color: var(--red-300); font-weight: 600; }

/* Social icon links (bootstrap-icons markup) */
.topbar .gap-2 a {
  width: 30px; height: 30px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #c9babc; font-size: .95rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.topbar .gap-2 a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-2px); border-color: transparent; }

/* ==========================================================================
   Header / nav
   ========================================================================== */

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid rgba(35, 31, 32, .08);
  transition: box-shadow .35s var(--ease), background-color .35s var(--ease);
}
.header.is-stuck { box-shadow: var(--sh-md); background: rgba(255, 255, 255, .96); }

.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 88px; }

.brand { display: flex; align-items: center; flex: none; }
.brand__logo { height: 62px; width: auto; transition: transform .4s var(--ease); }
.brand:hover .brand__logo { transform: scale(1.03); }
@media (max-width: 1040px) { .brand__logo { height: 54px; } }
@media (max-width: 560px) { .brand__logo { height: 44px; } }

.nav__menu { display: flex; align-items: center; gap: .3rem; }
.nav__link {
  position: relative; padding: .55rem .85rem; border-radius: var(--r-sm);
  font-size: .92rem; font-weight: 600; color: var(--slate-700);
  white-space: nowrap;
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--red-700); background: var(--blush-100); }

.nav__cta { display: flex; align-items: center; gap: .6rem; flex: none; }

.nav__toggle {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--blush-100); border: 1px solid rgba(192, 39, 45, .2);
  cursor: pointer; place-items: center; color: var(--red-700);
}
.nav__toggle svg { width: 22px; height: 22px; }
.nav__toggle .icon-close { display: none; }
.nav__toggle.is-open .icon-close { display: block; }
.nav__toggle.is-open .icon-menu { display: none; }

@media (max-width: 1040px) {
  .nav__menu {
    position: fixed; inset: 130px 0 auto; z-index: 99;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: #fff; padding: 1rem var(--gutter) 1.6rem;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: var(--sh-lg);
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .3s var(--ease), transform .3s var(--ease);
    max-height: calc(100dvh - 140px); overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__link { padding: .85rem 1rem; font-size: 1rem; }
  .nav__toggle { display: grid; }
  .nav__cta .btn--outline { display: none; }
}
@media (max-width: 560px) {
  .nav__cta .btn { padding: .75rem 1.15rem; font-size: .85rem; }
}
@media (max-width: 400px) {
  .nav__cta .btn--primary svg { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero { position: relative; overflow: hidden; background: var(--char-900); color: #fff; isolation: isolate; }

.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media video, .hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.7) contrast(1.05);
}
.hero__veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(100deg, rgba(20, 15, 16, .96) 0%, rgba(35, 31, 32, .9) 42%, rgba(61, 34, 36, .6) 72%, rgba(122, 18, 20, .45) 100%),
    radial-gradient(80% 90% at 85% 15%, rgba(217, 74, 72, .26) 0%, rgba(217, 74, 72, 0) 60%);
}
.hero__grid-lines {
  position: absolute; inset: 0; z-index: -1; opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(70% 70% at 40% 40%, #000 10%, transparent 100%);
}

.hero__inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 8vw, 6.5rem);
}

.hero__badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(217, 74, 72, .14);
  border: 1px solid rgba(217, 74, 72, .32);
  color: var(--red-300);
  padding: .45rem 1rem; border-radius: var(--r-pill);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.hero__badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-400); animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217, 74, 72, .75); }
  50% { box-shadow: 0 0 0 7px rgba(217, 74, 72, 0); }
}

.hero__title { font-size: clamp(2.2rem, 5.2vw, 3.9rem); color: #fff; line-height: 1.08; margin-bottom: 1.2rem; }
.hero__title .hl {
  background: linear-gradient(100deg, var(--red-300) 0%, var(--red-400) 55%, #ff8b88 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero__text { color: #d3c3c4; font-size: clamp(.98rem, 1.5vw, 1.09rem); max-width: 58ch; margin-bottom: 2rem; }

.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.6rem; }

.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(1.2rem, 4vw, 2.8rem); border-top: 1px solid rgba(255, 255, 255, .14); padding-top: 1.6rem; }
.hstat__num { font-family: var(--ff-display); font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 800; color: #fff; line-height: 1; }
.hstat__num span { color: var(--red-400); }
.hstat__label { font-size: .78rem; color: #ac9b9d; letter-spacing: .04em; margin-top: .35rem; }

/* ==========================================================================
   Forms
   ========================================================================== */

.equiry-card {
  background: rgba(255, 255, 255, .97);
  color: var(--text); /* reset: .hero sets color:#fff, which the fields would inherit */
  border-radius: var(--r-xl);
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: 0 40px 90px -25px rgba(0, 0, 0, .6);
  border: 1px solid rgba(255, 255, 255, .5);
  position: relative;
}
.equiry-card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; z-index: -1;
  background: var(--grad-brand); opacity: .5; filter: blur(18px);
}
.equiry-card__head { text-align: center; margin-bottom: 1.3rem; }
.equiry-card__title { font-size: 1.45rem; margin-bottom: .3rem; }
.equiry-card__note { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red-600); }

.form-grid { display: grid; gap: .8rem; }
.field { position: relative; }
.field label { display: block; font-size: .78rem; font-weight: 700; color: var(--slate-700); margin-bottom: .35rem; letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: .82rem 1rem;
  border: 1.5px solid var(--slate-100); border-radius: var(--r-sm);
  background: var(--surface-alt); font-size: .92rem;
  color: var(--char-700); /* explicit — never inherit from a dark section */
  transition: border-color .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-500); opacity: 1; }
.field select option { color: var(--char-700); background: #fff; }
.field select:invalid, .field select option[value=""] { color: var(--slate-500); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--red-500); background: #fff;
  box-shadow: 0 0 0 4px rgba(192, 39, 45, .13);
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23857779' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.6rem;
}
.field textarea { resize: vertical; min-height: 84px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.form-note { font-size: .74rem; color: var(--slate-500); text-align: center; margin-top: .2rem; }
.form-msg { font-size: .85rem; text-align: center; padding: .6rem; border-radius: var(--r-sm); background: var(--blush-100); color: var(--red-700); font-weight: 600; display: none; }
.form-msg.is-visible { display: block; }

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .equiry-card { max-width: 520px; margin-inline: auto; width: 100%; }
}
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } }

/* ==========================================================================
   Enquiry modal
   ========================================================================== */

.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: 1rem;
  visibility: hidden; opacity: 0;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}
.modal.is-open { visibility: visible; opacity: 1; }

.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 15, 16, .72);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal__dialog {
  position: relative; z-index: 1;
  width: min(520px, 100%);
  max-height: calc(100dvh - 2rem); overflow-y: auto;
  background: #fff; border-radius: var(--r-xl);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  box-shadow: 0 40px 100px -20px rgba(0, 0, 0, .6);
  transform: translateY(24px) scale(.96);
  transition: transform .4s var(--ease);
}
.modal.is-open .modal__dialog { transform: none; }

.modal__dialog::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 5px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--grad-brand);
}

.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%; border: 0;
  background: var(--blush-100); color: var(--red-700);
  display: grid; place-items: center; cursor: pointer;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.modal__close svg { width: 17px; height: 17px; }
.modal__close:hover { background: var(--grad-brand); color: #fff; transform: rotate(90deg); }

.modal__head { text-align: center; margin-bottom: 1.4rem; }
.modal__logo { height: 46px; width: auto; margin: .4rem auto 1rem; }
.modal__title { font-size: 1.5rem; margin-bottom: .3rem; }
.modal__sub { font-size: .88rem; color: var(--text-muted); }

.modal__foot {
  margin-top: 1.2rem; padding-top: 1.2rem;
  border-top: 1px solid var(--slate-100);
  display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
}
.modal__foot .btn { padding: .7rem 1.2rem; font-size: .85rem; }

/* ==========================================================================
   Marquee
   ========================================================================== */

.marquee {
  background: var(--char-700); color: #fff; overflow: hidden; padding: .95rem 0;
  border-block: 1px solid rgba(255, 255, 255, .08);
}
.marquee__track { display: flex; gap: 3rem; width: max-content; animation: scroll 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { display: inline-flex; align-items: center; gap: .6rem; font-size: .88rem; font-weight: 600; color: #e0d2d3; white-space: nowrap; }
.marquee__item svg { width: 16px; height: 16px; color: var(--red-400); flex: none; }
.marquee__item .sep { color: var(--red-500); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ==========================================================================
   Cards / grids
   ========================================================================== */

.grid { display: grid; gap: 1.25rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--r-lg);
  padding: 1.6rem; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.card::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur) var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: rgba(192, 39, 45, .25); }
.card:hover::after { transform: scaleX(1); }

.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--blush-100); color: var(--red-700);
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.card__icon svg { width: 25px; height: 25px; }
.card:hover .card__icon { background: var(--grad-brand); color: #fff; transform: scale(1.06) rotate(-4deg); }

.card__title { font-size: 1.08rem; margin-bottom: .45rem; }
.card__text { font-size: .9rem; color: var(--text-muted); }

/* Why-choose bento */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.bento > .card:nth-child(1) { grid-column: span 2; }
.bento > .card:nth-child(6) { grid-column: span 2; }
@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .bento > .card:nth-child(1), .bento > .card:nth-child(6) { grid-column: span 2; } }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } .bento > .card:nth-child(1), .bento > .card:nth-child(6) { grid-column: span 1; } }

.card--feature {
  background: var(--grad-deep); border-color: transparent; color: #d9caca;
  display: flex; flex-direction: column; justify-content: space-between; min-height: 220px;
}
.card--feature .card__title { color: #fff; font-size: 1.35rem; }
.card--feature .card__text { color: #bda9ab; }
.card--feature .card__icon { background: rgba(217, 74, 72, .16); color: var(--red-300); }
.card--feature:hover .card__icon { background: var(--grad-brand); color: #fff; }

/* ==========================================================================
   Split sections
   ========================================================================== */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }

.split__media { position: relative; }
.media-frame {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); aspect-ratio: 4 / 3; background: var(--slate-100);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.media-frame:hover img { transform: scale(1.06); }
.media-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 15, 16, 0) 45%, rgba(20, 15, 16, .5) 100%);
}
.media-badge {
  position: absolute; z-index: 2; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
  background: rgba(255, 255, 255, .95); backdrop-filter: blur(10px);
  border-radius: var(--r-md); padding: 1rem 1.2rem;
  display: flex; align-items: center; gap: .9rem; box-shadow: var(--sh-md);
}
.media-badge__icon { width: 42px; height: 42px; border-radius: 12px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; flex: none; }
.media-badge__icon svg { width: 21px; height: 21px; }
.media-badge__t { font-weight: 800; font-size: .95rem; font-family: var(--ff-display); display: block; }
.media-badge__s { font-size: .78rem; color: var(--slate-500); }

.media-float {
  position: absolute; z-index: 3; top: -18px; right: -18px;
  background: #fff; border-radius: var(--r-md); padding: .9rem 1.1rem;
  box-shadow: var(--sh-lg); border: 1px solid var(--slate-100);
  display: flex; align-items: center; gap: .7rem;
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.media-float__n { font-family: var(--ff-display); font-weight: 800; font-size: 1.2rem; color: var(--red-600); line-height: 1; }
.media-float__l { font-size: .72rem; color: var(--slate-500); }
@media (max-width: 900px) { .media-float { right: 8px; top: -14px; } }

.tick-list { display: grid; gap: .7rem; margin-top: 1.6rem; }
.tick-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .93rem; color: var(--text-muted); }
.tick-list li strong { color: var(--char-700); font-weight: 700; }
.tick-list .tick {
  width: 21px; height: 21px; border-radius: 50%; flex: none; margin-top: .22rem;
  background: var(--blush-100); color: var(--red-700);
  display: grid; place-items: center;
}
.tick-list .tick svg { width: 12px; height: 12px; stroke-width: 3.2; }
.section--deep .tick-list li { color: #c9b8ba; }
.section--deep .tick-list li strong { color: #fff; }
.section--deep .tick { background: rgba(217, 74, 72, .18); color: var(--red-300); }

/* ==========================================================================
   Product portfolio
   ========================================================================== */

.prod-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }

.prod {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  background: #fff; border: 1px solid var(--slate-100);
  padding: 1.4rem; display: flex; align-items: center; gap: .95rem;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease);
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: rgba(192, 39, 45, .3); background: var(--blush-50); }
.prod__icon {
  width: 46px; height: 46px; border-radius: 12px; flex: none;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 18px -6px rgba(160, 28, 30, .55);
  transition: transform var(--dur) var(--ease);
}
.prod:hover .prod__icon { transform: rotate(-6deg) scale(1.07); }
.prod__icon svg { width: 22px; height: 22px; }
.prod__name { font-weight: 700; font-size: .92rem; line-height: 1.35; color: var(--char-700); font-family: var(--ff-display); }

/* ==========================================================================
   Benefits
   ========================================================================== */

.benefit {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.15rem 1.3rem; border-radius: var(--r-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.benefit:hover { background: rgba(217, 74, 72, .12); border-color: rgba(217, 74, 72, .38); transform: translateX(6px); }
.benefit__ic { width: 40px; height: 40px; border-radius: 11px; flex: none; background: rgba(217, 74, 72, .16); color: var(--red-300); display: grid; place-items: center; }
.benefit__ic svg { width: 19px; height: 19px; }
.benefit__t { font-weight: 700; color: #fff; font-size: .95rem; font-family: var(--ff-display); }

/* ==========================================================================
   Steps
   ========================================================================== */

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
@media (max-width: 1040px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--r-lg);
  padding: 1.5rem 1.35rem; position: relative; overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(192, 39, 45, .3); }
.step__n {
  font-family: var(--ff-display); font-size: 3.4rem; font-weight: 800; line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px rgba(192, 39, 45, .28);
  position: absolute; top: .5rem; right: .9rem;
  transition: -webkit-text-stroke-color var(--dur) var(--ease);
}
.step:hover .step__n { -webkit-text-stroke-color: rgba(192, 39, 45, .65); }
.step__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--blush-100); color: var(--red-700); display: grid; place-items: center; margin-bottom: .9rem; }
.step__ic svg { width: 21px; height: 21px; }
.step:hover .step__ic { background: var(--grad-brand); color: #fff; }
.step__t { font-size: 1rem; margin-bottom: .3rem; }
.step__d { font-size: .84rem; color: var(--text-muted); }

/* ==========================================================================
   Stats band
   ========================================================================== */

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(255, 255, 255, .12); border-radius: var(--r-lg); overflow: hidden; }
@media (max-width: 780px) { .stats-band { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { background: var(--char-800); padding: 2rem 1.4rem; text-align: center; transition: background var(--dur) var(--ease); }
.stat-cell:hover { background: var(--char-600); }
.stat-cell__n { font-family: var(--ff-display); font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-cell__n span { color: var(--red-400); }
.stat-cell__l { font-size: .82rem; color: #ad9c9e; margin-top: .5rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq { max-width: 880px; margin-inline: auto; display: grid; gap: .75rem; }
.faq__item {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--r-md);
  overflow: hidden; transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq__item[open] { border-color: rgba(192, 39, 45, .35); box-shadow: var(--sh-md); }
.faq__q {
  list-style: none; cursor: pointer; padding: 1.15rem 1.4rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 700; font-size: .98rem; color: var(--char-700); font-family: var(--ff-display);
  transition: color .3s var(--ease), background-color .3s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--red-700); background: var(--blush-50); }
.faq__ic {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  background: var(--blush-100); color: var(--red-700);
  display: grid; place-items: center; transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
}
.faq__ic svg { width: 15px; height: 15px; stroke-width: 2.6; }
.faq__item[open] .faq__ic { transform: rotate(45deg); background: var(--grad-brand); color: #fff; }
.faq__a { padding: 0 1.4rem 1.3rem; color: var(--text-muted); font-size: .92rem; border-top: 1px solid var(--slate-100); padding-top: 1.1rem; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  position: relative; overflow: hidden; border-radius: var(--r-xl);
  background: var(--grad-deep); padding: clamp(2.2rem, 5vw, 3.6rem);
  display: grid; grid-template-columns: 1.4fr auto; gap: 2rem; align-items: center;
  box-shadow: var(--sh-lg);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background: var(--grad-glow); }
.cta-band::after {
  content: ""; position: absolute; width: 380px; height: 380px; right: -120px; bottom: -180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(192, 39, 45, .4), transparent 65%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band__t { font-size: clamp(1.5rem, 3vw, 2.2rem); color: #fff; margin-bottom: .6rem; }
.cta-band__s { color: #c4b1b3; font-size: .98rem; max-width: 62ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
@media (max-width: 860px) { .cta-band { grid-template-columns: 1fr; } }

/* ==========================================================================
   Contact
   ========================================================================== */

.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; }

.ccard {
  background: #fff; border: 1px solid var(--slate-100); border-radius: var(--r-lg);
  padding: 1.8rem 1.6rem; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ccard:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); border-color: rgba(192, 39, 45, .3); }
.ccard__ic {
  width: 56px; height: 56px; border-radius: 16px; margin: 0 auto 1rem;
  background: var(--grad-brand); color: #fff; display: grid; place-items: center;
  box-shadow: var(--sh-brand);
}
.ccard__ic svg { width: 26px; height: 26px; }
.ccard__t { font-size: 1.05rem; margin-bottom: .5rem; }
.ccard__v { font-size: .9rem; color: var(--text-muted); }
.ccard__v a { transition: color .3s var(--ease); }
.ccard__v a:hover { color: var(--red-700); }

/* ==========================================================================
   Footer
   ========================================================================== */

.footer { background: var(--char-900); color: #a99799; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__logo { height: 56px; width: auto; }
.footer__about { font-size: .88rem; margin-top: 1.1rem; max-width: 42ch; }
.footer__h { color: #fff; font-size: 1rem; margin-bottom: 1.1rem; font-family: var(--ff-display); }
.footer__list { display: grid; gap: .6rem; font-size: .88rem; }
.footer__list a { transition: color .3s var(--ease), padding-left .3s var(--ease); }
.footer__list a:hover { color: var(--red-300); padding-left: 5px; }
.footer__contact li { display: flex; gap: .7rem; font-size: .88rem; margin-bottom: .8rem; }
.footer__contact svg { width: 16px; height: 16px; color: var(--red-400); flex: none; margin-top: .28rem; }
.footer__contact a:hover { color: var(--red-300); }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08); padding: 1.4rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem;
}

.socials { display: flex; gap: .55rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1);
  color: #c0aeb0; font-size: 1.05rem;
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.socials a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); border-color: transparent; }

/* ==========================================================================
   Floating actions
   ========================================================================== */

.fab { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: grid; gap: .6rem; }
.fab__btn {
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; box-shadow: var(--sh-lg); cursor: pointer; border: 0;
  transition: transform .3s var(--ease);
}
.fab__btn:hover { transform: scale(1.1); }
.fab__btn svg { width: 23px; height: 23px; }
.fab--wa { background: #25d366; }
.fab--call { background: var(--grad-brand); }
.fab--form { background: var(--char-700); }
.fab--top { background: var(--red-800); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease); }
.fab--top.is-visible { opacity: 1; pointer-events: auto; }

/* ==========================================================================
   Reveal animation
   ========================================================================== */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
