/* ============================================================
   IN HEALTH — main.css
   Variables · Base · Layout · Sections · Components
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --cyan:        #0099CC;
  --cyan-light:  #00BFFF;
  --cyan-pale:   #E0F4FF;
  --cyan-bg:     #F0FAFE;
  --dark:        #0A1628;
  --dark-mid:    #1A2E45;
  --text:        #1A2E45;
  --muted:       #5A7A90;
  --surface:     #F7FBFD;
  --white:       #FFFFFF;
  --border:      rgba(0,153,204,0.15);
  --border2:     rgba(0,153,204,0.28);
  --shadow:      0 4px 24px rgba(0,100,160,0.08);
  --shadow-lg:   0 12px 48px rgba(0,100,160,0.14);
  --radius:      14px;
  --fd: "Syne", sans-serif;
  --fb: "Inter", sans-serif;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--fb);
  color: var(--text);
  overflow-x: hidden;
  background: var(--white);
  line-height: 1.65;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--fd); color: var(--dark); }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f4f7; }
::-webkit-scrollbar-thumb { background: var(--cyan); border-radius: 3px; }

/* Canvas always behind */
#gp { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
nav, section, footer, .stats-band { position: relative; z-index: 1; }

/* ── SCROLL PROGRESS ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-light));
  width: 0%; z-index: 9999; border-radius: 0 2px 2px 0;
  transition: width .1s; box-shadow: 0 0 8px rgba(0,191,255,.4);
}

/* ── SECTION UTILITIES ── */
.ih-sec     { padding: 90px 0; }
.ih-sec-alt { background: var(--surface); }
.ih-sec-dark { background: var(--dark); }

.sec-tag {
  font-size: .72rem; color: var(--cyan); text-transform: uppercase;
  letter-spacing: .12em; font-weight: 700; display: inline-flex;
  align-items: center; gap: .4rem; margin-bottom: .4rem;
}
.sec-tag::before {
  content: ''; width: 18px; height: 2px; background: var(--cyan);
  border-radius: 2px; display: inline-block;
  animation: tagLine .8s both;
}
.sec-div { width: 48px; height: 3px; background: var(--cyan); border-radius: 2px; margin-bottom: 1.2rem; }
.sec-div.cx { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn-ih {
  background: var(--cyan); color: #fff; border: none; border-radius: 8px;
  padding: .72rem 1.8rem; font-weight: 700; font-size: .9rem;
  text-decoration: none; display: inline-block; transition: .2s;
  position: relative; overflow: hidden;
}
.btn-ih::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform .4s;
}
.btn-ih:hover {
  background: #007daa; transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,153,204,.3); color: #fff;
}
.btn-ih:hover::after { transform: translateX(200%) skewX(-15deg); }

.btn-ih-out {
  border: 1.5px solid var(--border2); color: var(--cyan);
  background: rgba(255,255,255,.85); border-radius: 8px;
  padding: .7rem 1.6rem; font-weight: 600; font-size: .9rem;
  text-decoration: none; display: inline-block; transition: .2s;
}
.btn-ih-out:hover { background: var(--cyan-pale); border-color: var(--cyan); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg,
    rgba(240,250,254,.93),
    rgba(232,246,253,.9),
    rgba(245,251,255,.93));
  padding: 120px 0 80px;
  display: flex; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,153,204,.1); border: 1px solid var(--border2);
  border-radius: 99px; padding: .3rem .9rem; font-size: .74rem;
  color: var(--cyan); letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.badge-dot {
  width: 7px; height: 7px; background: var(--cyan-light);
  border-radius: 50%; animation: pulsedot 1.8s infinite;
}
.hero-title { font-size: clamp(2.4rem,5vw,3.8rem); font-weight: 800; line-height: 1.08; color: var(--dark); }
.hero-title .accent { color: var(--cyan); }
.hero-sub { font-size: clamp(.95rem,1.8vw,1.1rem); color: var(--muted); line-height: 1.75; }

.hero-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hero-img-wrap img { width: 100%; height: 460px; object-fit: cover; display: block; transition: transform .4s; }
.hero-img-wrap:hover img { transform: scale(1.02); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,22,40,.5)); }

.float-card {
  background: #fff; border-radius: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: absolute;
  animation: floatBounce 4s ease-in-out infinite;
}
.float-card.bl { bottom: -20px; left: -20px; padding: 1rem 1.4rem; }
.float-card.tr {
  top: 20px; right: -16px; padding: .75rem 1.1rem;
  border-radius: 12px; display: flex; align-items: center; gap: .6rem;
  animation-delay: 1.5s;
}
.float-num { font-family: var(--fd); font-size: 1.8rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.float-lbl { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }

/* ── STATS BAND ── */
.stats-band { background: var(--dark); padding: 50px 0; }
.stat-col {
  text-align: center; padding: 1.5rem;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-col:last-child { border-right: none; }
.stat-n { font-family: var(--fd); font-size: 2.4rem; font-weight: 800; color: var(--cyan-light); line-height: 1; }
.stat-l { font-size: .74rem; color: rgba(255,255,255,.44); margin-top: .4rem; text-transform: uppercase; letter-spacing: .06em; }

/* ── ABOUT ── */
.about-wrap { position: relative; height: 520px; }
.about-main { position: absolute; top: 0; left: 0; width: 72%; height: 400px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.about-main img, .about-sec img { width: 100%; height: 100%; object-fit: cover; }
.about-sec { position: absolute; bottom: 0; right: 0; width: 55%; height: 280px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); border: 4px solid #fff; }
.about-badge-fl { position: absolute; top: 50%; left: 60%; transform: translate(-50%,-50%); background: #fff; border-radius: 14px; padding: 1rem 1.3rem; box-shadow: var(--shadow-lg); text-align: center; z-index: 3; }
.about-n { font-family: var(--fd); font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.about-l { font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; margin-top: .2rem; }
.about-icon { width: 42px; height: 42px; min-width: 42px; border-radius: 10px; background: var(--cyan-pale); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; border: 1px solid var(--border); }

/* ── CARDS ── */
.ih-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s, border-color .3s;
  overflow: hidden; height: 100%;
}
.ih-card:hover { transform: translateY(-8px) scale(1.01); box-shadow: var(--shadow-lg); border-color: var(--border2); }
.ih-card .c-img { height: 220px; overflow: hidden; }
.ih-card .c-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.ih-card:hover .c-img img { transform: scale(1.05); }
.card-role { font-size: .71rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .07em; font-weight: 600; margin-bottom: .3rem; }
.card-footer-row { padding: .8rem 1.2rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.read-more { font-size: .74rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .04em; }
.tag-pill { background: var(--cyan-pale); color: var(--cyan); font-size: .67rem; padding: .2rem .55rem; border-radius: 5px; font-weight: 600; display: inline-block; }

/* ── PROGRAM CARDS ── */
.prog-card { cursor: pointer; }
.prog-img { position: relative; height: 190px; overflow: hidden; }
.prog-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.prog-card:hover .prog-img img { transform: scale(1.06); }
.prog-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,22,40,.6)); }
.prog-cat { position: absolute; top: 12px; left: 12px; background: rgba(255,255,255,.92); color: var(--cyan); font-size: .67rem; font-weight: 700; padding: .22rem .65rem; border-radius: 99px; text-transform: uppercase; letter-spacing: .05em; }
.prog-arr { position: absolute; bottom: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; color: #fff; font-size: .85rem; transition: .2s; }
.prog-card:hover .prog-arr { background: var(--cyan); border-color: var(--cyan); }

/* ── WORKSHOPS ── */
.ws-row { display: flex; align-items: flex-start; gap: .9rem; padding: 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; transition: .3s; }
.ws-row:hover { border-color: var(--border2); background: var(--cyan-bg); transform: translateX(4px); }
.ws-n { font-family: var(--fd); font-size: 1.15rem; font-weight: 800; color: var(--cyan); min-width: 28px; opacity: .55; line-height: 1.2; }

/* ── GALLERY ── */
#gallery { background: var(--dark); padding: 80px 0; }
.gal-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.gal-item { border-radius: 12px; overflow: hidden; position: relative; }
.gal-item.lg { grid-column: span 2; grid-row: span 2; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 170px; transition: transform .4s; }
.gal-item:hover img { transform: scale(1.04); }
.gal-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,150,200,.5)); opacity: 0; transition: .3s; }
.gal-item:hover .gal-ov { opacity: 1; }

/* ── MARQUEE PARTNERS ── */
.mq-wrap { overflow: hidden; position: relative; }
.mq-wrap::before, .mq-wrap::after { content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2; pointer-events: none; }
.mq-wrap::before { left: 0; background: linear-gradient(90deg, var(--surface), transparent); }
.mq-wrap::after  { right: 0; background: linear-gradient(270deg, var(--surface), transparent); }
.mq-track { display: flex; gap: 1.5rem; animation: marquee 24s linear infinite; width: max-content; padding: .5rem 0; }
.mq-pill { background: var(--white); border: 1px solid var(--border); border-radius: 99px; padding: .55rem 1.3rem; color: var(--muted); font-size: .81rem; font-weight: 600; white-space: nowrap; transition: .3s; }
.mq-pill:hover { border-color: var(--cyan); color: var(--cyan); background: var(--cyan-pale); }

/* ── TESTIMONIALS ── */
.test-feat { background: var(--dark); border-radius: 20px; padding: 2.4rem; color: #fff; position: relative; overflow: hidden; }
.test-feat::before { content: ""; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,191,255,.15), transparent 70%); }
.test-quot { font-size: 4rem; color: rgba(0,191,255,.3); line-height: 1; }
.test-sm { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; transition: .3s; }
.test-sm:hover { border-color: var(--border2); box-shadow: var(--shadow); }
.test-av { width: 34px; height: 34px; min-width: 34px; border-radius: 50%; background: var(--cyan-pale); border: 2px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: .78rem; font-weight: 700; color: var(--cyan); }

/* ── FAQ ACCORDION ── */
.acc-item { border: 1px solid var(--border) !important; border-radius: 12px !important; overflow: hidden; margin-bottom: .7rem; }
.acc-btn { font-family: var(--fb); font-weight: 600; color: var(--dark); background: #fff !important; }
.acc-btn:not(.collapsed) { color: var(--cyan) !important; background: var(--cyan-bg) !important; box-shadow: none !important; }

/* ── CONTACT ── */
#contact { background: var(--dark); }
.c-icon { width: 42px; height: 42px; border-radius: 10px; background: rgba(0,191,255,.1); border: 1px solid rgba(0,191,255,.2); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.c-form-card { background: var(--white); border-radius: 20px; padding: 2.2rem; box-shadow: var(--shadow-lg); }
.c-form-card .form-control,
.c-form-card .form-select { border-color: var(--border2); background: var(--surface); color: var(--dark); font-family: var(--fb); }
.c-form-card .form-control:focus,
.c-form-card .form-select:focus { border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,153,204,.1); background: #fff; }
.c-label { font-size: .74rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); }

/* ── FOOTER ── */
#footer { background: #030A14; border-top: 1px solid rgba(255,255,255,.05); }
.ft { font-family: var(--fd); font-size: .81rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; }
.fl { color: rgba(255,255,255,.35); text-decoration: none; font-size: .81rem; transition: .2s; }
.fl:hover { color: var(--cyan-light); }
.soc { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); color: rgba(255,255,255,.4); text-decoration: none; display: inline-flex; align-items: center; justify-content: center; font-size: .85rem; transition: .2s; }
.soc:hover { background: rgba(0,191,255,.15); border-color: rgba(0,191,255,.3); color: var(--cyan-light); }

/* ── WHATSAPP FAB ── */
.wa-fab { position: fixed; bottom: 28px; right: 28px; z-index: 5000; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 24px rgba(37,211,102,.4); text-decoration: none; color: #fff; font-size: 1.5rem; transition: .3s; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 32px rgba(37,211,102,.55); color: #fff; }

/* ── TEAM MODAL ── */
.tm-ov { position: fixed; inset: 0; z-index: 9000; background: rgba(10,22,40,.65); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; pointer-events: none; transition: opacity .3s; }
.tm-ov.open { opacity: 1; pointer-events: all; }
.tm-box { background: #fff; border-radius: 24px; max-width: 680px; width: 100%; max-height: 90vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,100,160,.25); transform: translateY(30px) scale(.97); transition: .35s; position: relative; }
.tm-ov.open .tm-box { transform: none; }
.tm-hero { height: 280px; overflow: hidden; border-radius: 24px 24px 0 0; position: relative; }
.tm-hero img { width: 100%; height: 100%; object-fit: cover; }
.tm-hero-ov { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(10,22,40,.85)); }
.tm-hero-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 2rem; }
.tm-role { font-size: .71rem; color: rgba(0,191,255,.9); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .3rem; }
.tm-name { font-family: var(--fd); font-size: 1.8rem; font-weight: 800; color: #fff; line-height: 1.1; }
.tm-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: .2s; z-index: 10; font-size: 1rem; }
.tm-close:hover { background: rgba(255,255,255,.3); }
.tm-body { padding: 2rem; }
.tm-sec { font-size: .71rem; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .6rem; display: flex; align-items: center; gap: .5rem; }
.tm-sec::after { content: ""; flex: 1; height: 1px; background: var(--border); }
.tm-tag { background: var(--cyan-pale); color: var(--cyan); font-size: .71rem; padding: .22rem .65rem; border-radius: 6px; font-weight: 600; display: inline-block; margin: .2rem; }
.tm-cred { display: flex; align-items: flex-start; gap: .7rem; font-size: .83rem; margin-bottom: .55rem; color: var(--muted); line-height: 1.55; }
.tm-quote { background: var(--cyan-pale); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem 1.4rem; margin-top: 1rem; }

/* ── PROJECT SLIDE PAGE ── */
.pp { position: fixed; inset: 0; z-index: 8000; background: #fff; overflow-y: auto; transform: translateX(100%); transition: transform .45s cubic-bezier(.4,0,.2,1); }
.pp.open { transform: none; }
.pp-hero { position: relative; height: 420px; }
.pp-hero img { width: 100%; height: 100%; object-fit: cover; }
.pp-hero-ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,.4), rgba(10,22,40,.8)); }
.pp-back { position: absolute; top: 24px; left: 5%; display: flex; align-items: center; gap: .5rem; color: rgba(255,255,255,.85); font-size: .84rem; font-weight: 600; cursor: pointer; background: rgba(255,255,255,.12); backdrop-filter: blur(8px); padding: .4rem .9rem; border-radius: 99px; border: 1px solid rgba(255,255,255,.2); transition: .2s; z-index: 10; }
.pp-back:hover { background: rgba(255,255,255,.25); color: #fff; }
.pp-hc { position: absolute; bottom: 0; left: 0; right: 0; padding: 3rem 5%; }
.pp-cat { font-size: .71rem; color: rgba(0,191,255,.9); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; margin-bottom: .5rem; }
.pp-title { font-family: var(--fd); font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; color: #fff; line-height: 1.1; }
.pp-content { max-width: 900px; margin: 0 auto; padding: 3rem 5% 80px; }
.pp-meta { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.4rem; margin-bottom: 2.5rem; }
.pp-ml { font-size: .7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .05em; }
.pp-mv { font-size: .87rem; font-weight: 600; color: var(--dark); }
.pp-st { font-family: var(--fd); font-size: 1.12rem; font-weight: 800; color: var(--dark); margin-bottom: .9rem; padding-bottom: .55rem; border-bottom: 2px solid var(--cyan-pale); }
.pp-out { background: var(--cyan-bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.1rem; text-align: center; }
.pp-on { font-family: var(--fd); font-size: 1.75rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.pp-ol { font-size: .74rem; color: var(--muted); margin-top: .25rem; text-transform: uppercase; letter-spacing: .04em; }
.pp-gi { border-radius: 12px; height: 200px; object-fit: cover; width: 100%; }
.pp-tag { background: var(--cyan-pale); color: var(--cyan); font-size: .79rem; padding: .32rem .8rem; border-radius: 7px; font-weight: 600; display: inline-block; margin: .2rem; }
.pp-cta { background: var(--dark); border-radius: 16px; padding: 2rem; margin-top: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-visual { display: none; }
  .about-wrap  { height: 320px; }
  .about-main  { width: 80%; height: 260px; }
  .about-sec   { width: 60%; height: 200px; }
  .gal-grid    { grid-template-columns: 1fr 1fr; }
  .gal-item.lg { grid-column: span 2; }
}
@media (max-width: 576px) {
  .stat-col { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ════════════════════════════════
   CONTACT CARDS (v2)
════════════════════════════════ */
.contact-card-link { text-decoration: none; display: block; }
.contact-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 1.4rem 1.2rem; text-align: center;
  transition: transform .3s cubic-bezier(.34,1.4,.64,1), background .2s, border-color .2s, box-shadow .2s;
  cursor: pointer;
}
.contact-card-link:hover .contact-card,
.contact-card:hover {
  background: rgba(0,191,255,.1); border-color: rgba(0,191,255,.35);
  transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(0,191,255,.15); color: var(--cyan-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto .8rem;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.contact-card-link:hover .contact-card-icon { transform: scale(1.15) rotate(-8deg); }
.contact-card-label { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; margin-bottom: .25rem; }
.contact-card-val   { font-size: .9rem; color: #fff; font-weight: 600; line-height: 1.3; }

/* ════════════════════════════════
   CONTACT FORM GLASS
════════════════════════════════ */
.contact-form-glass {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px; padding: 2.4rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.08);
}

/* Steps indicator */
.cf-steps {
  display: flex; align-items: center; margin-bottom: 2rem; gap: 0;
}
.cf-step { display: flex; flex-direction: column; align-items: center; gap: .3rem; flex-shrink: 0; }
.cf-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.5); font-size: .85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, border-color .3s, color .3s;
}
.cf-step.active .cf-step-num  { background: var(--cyan); border-color: var(--cyan); color: #fff; box-shadow: 0 0 16px rgba(0,191,255,.4); }
.cf-step.done .cf-step-num    { background: rgba(0,191,255,.25); border-color: var(--cyan); color: var(--cyan-light); }
.cf-step-label { font-size: .68rem; color: rgba(255,255,255,.4); font-weight: 600; letter-spacing: .05em; text-transform: uppercase; transition: color .3s; white-space: nowrap; }
.cf-step.active .cf-step-label { color: var(--cyan-light); }
.cf-step-line { flex: 1; height: 2px; background: rgba(255,255,255,.1); margin: 0 .5rem; margin-bottom: 1.4rem; transition: background .4s; }
.cf-step.done + .cf-step-line { background: var(--cyan); }

/* Pages */
.cf-page { display: none; animation: cfSlideIn .35s cubic-bezier(.4,0,.2,1); }
.cf-page.active { display: block; }
@keyframes cfSlideIn { from{opacity:0;transform:translateX(20px)} to{opacity:1;transform:none} }

.cf-page-title {
  font-family: var(--fd); font-size: 1.15rem; font-weight: 800;
  color: #fff; margin-bottom: 1.4rem;
}

/* Floating label inputs */
.cf-group { position: relative; }
.cf-icon {
  position: absolute; left: .9rem; top: 50%; transform: translateY(-50%);
  color: rgba(255,255,255,.3); font-size: .9rem; z-index: 2; pointer-events: none;
  transition: color .2s;
}
.cf-textarea ~ .cf-icon,
.cf-group:has(.cf-textarea) .cf-icon { top: 1.2rem; transform: none; }
.cf-input {
  width: 100%; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14); border-radius: 12px;
  padding: 1.3rem 1rem .5rem 2.6rem;
  color: #fff; font-family: var(--fb); font-size: .9rem;
  outline: none; transition: border-color .2s, background .2s, box-shadow .2s;
  -webkit-appearance: none;
}
.cf-input:focus {
  border-color: var(--cyan); background: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(0,191,255,.15);
}
.cf-input:focus ~ .cf-icon { color: var(--cyan-light); }
.cf-label {
  position: absolute; left: 2.6rem; top: 50%; transform: translateY(-50%);
  font-size: .88rem; color: rgba(255,255,255,.4); pointer-events: none;
  transition: top .2s, font-size .2s, color .2s, transform .2s;
  background: transparent;
}
.cf-textarea { resize: vertical; min-height: 110px; padding-top: 1.4rem !important; }
.cf-group:has(.cf-textarea) .cf-label { top: 1.3rem; transform: none; }
/* Float label up when filled or focused */
.cf-input:focus ~ .cf-label,
.cf-input:not(:placeholder-shown) ~ .cf-label {
  top: .42rem; transform: none; font-size: .68rem;
  color: var(--cyan-light); letter-spacing: .04em;
}
.cf-group:has(.cf-textarea) .cf-input:focus ~ .cf-label,
.cf-group:has(.cf-textarea) .cf-input:not(:placeholder-shown) ~ .cf-label {
  top: .42rem;
}
/* Validation */
.cf-input.invalid { border-color: rgba(255,80,80,.5); box-shadow: 0 0 0 3px rgba(255,80,80,.12); }
.cf-input.valid   { border-color: rgba(0,191,100,.4); }

/* Topic grid */
.cf-topic-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.cf-topic {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px; padding: .65rem .5rem; font-size: .78rem; font-weight: 600;
  color: rgba(255,255,255,.65); cursor: pointer; transition: .2s;
  font-family: var(--fb); text-align: center; line-height: 1.3;
}
.cf-topic:hover  { background: rgba(0,191,255,.12); border-color: rgba(0,191,255,.3); color: #fff; }
.cf-topic.active { background: rgba(0,191,255,.2); border-color: var(--cyan); color: var(--cyan-light); box-shadow: 0 0 12px rgba(0,191,255,.2); }

/* Buttons */
.cf-next-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: var(--cyan); color: #fff; border: none; border-radius: 12px;
  padding: .85rem 2rem; font-weight: 700; font-size: .92rem;
  cursor: pointer; transition: .2s; font-family: var(--fb); margin-top: 1.2rem; width: 100%;
}
.cf-next-btn:hover { background: #007daa; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,153,204,.4); }
.cf-back-btn {
  display: flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px; padding: .85rem 1.4rem; color: rgba(255,255,255,.7);
  font-size: .88rem; font-weight: 600; cursor: pointer; transition: .2s; font-family: var(--fb);
}
.cf-back-btn:hover { background: rgba(255,255,255,.14); color: #fff; }
.cf-submit-btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: linear-gradient(135deg, var(--cyan), #007daa); color: #fff;
  border: none; border-radius: 12px; padding: .85rem; font-weight: 700;
  font-size: .92rem; cursor: pointer; transition: .2s; font-family: var(--fb);
  box-shadow: 0 4px 20px rgba(0,153,204,.3);
}
.cf-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,153,204,.45); }
.cf-submit-btn.loading { pointer-events: none; opacity: .8; }

/* Review box */
.cf-review {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; padding: 1.2rem; margin-bottom: 1rem;
}
.cf-review-row { display: flex; justify-content: space-between; padding: .45rem 0;
  border-bottom: 1px solid rgba(255,255,255,.06); font-size: .85rem; gap: 1rem; }
.cf-review-row:last-child { border-bottom: none; }
.cf-review-label { color: rgba(255,255,255,.4); font-weight: 600; font-size: .75rem; text-transform: uppercase; letter-spacing: .05em; flex-shrink: 0; }
.cf-review-val   { color: rgba(255,255,255,.85); text-align: right; }

/* Privacy */
.cf-privacy {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.5;
}
.cf-privacy i { color: rgba(0,191,255,.5); font-size: .9rem; flex-shrink: 0; margin-top: .1rem; }

/* Success */
.cf-success { text-align: center; padding: 2rem 1rem; }
.cf-success-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,191,100,.2), rgba(0,191,255,.15));
  border: 2px solid rgba(0,191,100,.4); color: #4ade80;
  font-size: 1.8rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  animation: successPop .5s cubic-bezier(.34,1.56,.64,1);
}
@keyframes successPop { from{transform:scale(.3) rotate(-20deg);opacity:0} to{transform:none;opacity:1} }
.cf-success h4 { color: #fff; font-family: var(--fd); font-size: 1.3rem; margin-bottom: .5rem; }
.cf-success p  { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.7; }

@media(max-width:576px){
  .contact-form-glass { padding: 1.4rem; }
  .cf-topic-grid { grid-template-columns: 1fr 1fr; }
}
