/* ==========================================================================
   Life Fitness Zone — main stylesheet
   Palette: healthcare teal + blue, deep navy, fresh green accent
   ========================================================================== */

/* ---------- 1. Tokens & base ---------- */
:root {
  --brand: #0ea890;
  --brand-2: #2cc3a2;
  --brand-dark: #0a8573;
  --blue: #1b7fd0;
  --blue-2: #3fa4e6;
  --green: #63c98b;
  --navy: #0b2f3f;
  --navy-2: #114155;
  --deep: #08212c;
  --ink: #1e3a49;
  --body: #556c78;
  --soft: #eef8f6;
  --soft-2: #f6fbfa;
  --line: #dceae7;
  --star: #ffb400;
  --grad: linear-gradient(110deg, #0ea890 0%, #1b7fd0 100%);
  --grad-soft: linear-gradient(110deg, rgba(14,168,144,.12), rgba(27,127,208,.12));
  --shadow-sm: 0 4px 14px rgba(11,47,63,.08);
  --shadow-md: 0 12px 34px rgba(11,47,63,.12);
  --shadow-lg: 0 22px 60px rgba(11,47,63,.18);
  --radius: 18px;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--body);
  font-size: 1rem;
  line-height: 1.75;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3 { color: var(--ink); font-weight: 800; letter-spacing: -.02em; }

a { text-decoration: none; transition: color .2s ease; }
img { max-width: 100%; }
p { margin-bottom: 1rem; }

.text-brand { color: var(--brand); }
.text-blue { color: var(--blue); }
.text-ink  { color: var(--ink); }
.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-soft { background-color: var(--soft); }
.bg-navy { background: linear-gradient(135deg, var(--deep), var(--navy) 55%, var(--navy-2)); }

.section { padding: 90px 0; }
.section-sm { padding: 56px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--brand-dark);
  background: rgba(14,168,144,.1);
  border: 1px solid rgba(14,168,144,.25);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .42rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.eyebrow.on-dark { color: #7fe3cd; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); }
.eyebrow svg { width: 14px; height: 14px; }

.sec-title { font-size: clamp(1.7rem, 3.2vw, 2.45rem); margin-bottom: .6rem; }
.sec-lead { max-width: 720px; margin: 0 auto; }
.section-head { margin-bottom: 3rem; }

/* ---------- 2. Buttons ---------- */
.btn { border-radius: 100px; font-weight: 700; padding: .72rem 1.5rem; letter-spacing: .01em; }
.btn-brand {
  background: var(--grad); color: #fff; border: none;
  box-shadow: 0 8px 20px rgba(14,168,144,.3);
}
.btn-brand:hover, .btn-brand:focus { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(27,127,208,.35); }
.btn-outline-brand { border: 2px solid var(--brand); color: var(--brand-dark); background: #fff; }
.btn-outline-brand:hover { background: var(--brand); color: #fff; }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { background: #eafcf7; color: var(--navy); transform: translateY(-2px); }
.btn-ghost-white { border: 2px solid rgba(255,255,255,.55); color: #fff; background: transparent; }
.btn-ghost-white:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: .95rem 2rem; }
.btn svg { width: 18px; height: 18px; margin-left: .35rem; vertical-align: -2px; }

.link-more { font-weight: 700; color: var(--brand-dark); display: inline-flex; align-items: center; gap: .4rem; }
.link-more svg { width: 17px; height: 17px; transition: transform .2s; }
.link-more:hover { color: var(--blue); }
.link-more:hover svg { transform: translateX(4px); }

/* ---------- 3. Topbar & navbar ---------- */
.topbar {
  background: linear-gradient(90deg, var(--deep), var(--navy) 60%, #0e5a6b);
  color: rgba(255,255,255,.85);
  font-size: .84rem;
  padding: .45rem 0;
}
.topbar a { color: rgba(255,255,255,.9); }
.topbar a:hover { color: #fff; }
.topbar .bi-item { display: inline-flex; align-items: center; gap: .4rem; margin-right: 1.4rem; }
.topbar svg { width: 14px; height: 14px; color: #5fdbc0; }

.navbar {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(11,47,63,.07);
  padding: .65rem 0;
  transition: box-shadow .25s ease;
}
.navbar.is-stuck { box-shadow: 0 8px 24px rgba(11,47,63,.10); }
.navbar-brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 14px; background: var(--grad);
  display: grid; place-items: center; box-shadow: 0 6px 16px rgba(14,168,144,.35); flex: none;
}
.brand-mark svg { width: 26px; height: 26px; }
.brand-name { font-weight: 800; color: var(--ink); line-height: 1.05; }
.brand-name b { color: var(--brand-dark); }
.brand-name small { display: block; font-size: .62rem; letter-spacing: .22em; text-transform: uppercase; font-weight: 700; color: var(--blue); }

.navbar .nav-link {
  font-weight: 600; color: var(--ink); margin: 0 .1rem; padding: .55rem .95rem;
  border-radius: 100px; position: relative;
}
.navbar .nav-link:hover { color: var(--brand-dark); background: rgba(14,168,144,.07); }
.navbar .nav-link.active { color: var(--brand-dark); background: rgba(14,168,144,.12); }

.nav-cta { display: flex; align-items: center; gap: .75rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .45rem; font-weight: 800; color: var(--ink); font-size: .95rem; }
.nav-phone svg { width: 18px; height: 18px; color: var(--brand); }
.nav-phone small { display:block; font-size:.68rem; color: var(--body); font-weight:600; letter-spacing:.04em; }

/* ---------- 4. Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(100deg, rgba(8,33,44,.94) 0%, rgba(11,47,63,.82) 45%, rgba(17,65,85,.55) 100%),
    url("../img/hero-home.jpg") center 30% / cover no-repeat;
  color: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 90px;
  background: linear-gradient(180deg, transparent, rgba(8,33,44,.55));
  pointer-events: none;
}
.hero .badge-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #d9fff6; border-radius: 100px; padding: .45rem 1rem; font-size: .82rem; font-weight: 600;
  margin-bottom: 1.4rem;
}
.hero .badge-pill svg { width: 15px; height: 15px; color: #53f0c8; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.12; margin-bottom: 1.1rem; }
.hero h1 .hl { position: relative; white-space: nowrap; }
.hero p.lead { color: rgba(255,255,255,.86); font-size: 1.08rem; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 2.2rem; }
.hero-points { display: flex; flex-wrap: wrap; gap: 1.6rem; margin-top: .4rem; }
.hero-points li { display: flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: rgba(255,255,255,.92); }
.hero-points svg { width: 20px; height: 20px; color: #53f0c8; flex: none; }

/* hero lead form card */
.lead-card {
  background: #fff; border-radius: 22px; padding: 1.9rem; color: var(--body);
  box-shadow: var(--shadow-lg); position: relative; z-index: 2;
}
.lead-card h3 { font-size: 1.25rem; margin-bottom: .2rem; }
.lead-card p { font-size: .9rem; }
.lead-card .form-label { font-size: .82rem; font-weight: 700; color: var(--ink); margin-bottom: .3rem; }
.lead-card .form-control, .lead-card .form-select { border-radius: 10px; border: 1.5px solid var(--line); padding: .6rem .85rem; font-size: .92rem; background: var(--soft-2); }
.lead-card .form-control:focus, .lead-card .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .22rem rgba(14,168,144,.15); background: #fff; }
.trust-strip { display: flex; align-items: center; gap: 1rem; margin-top: 1.1rem; font-size: .8rem; color: var(--body); }
.trust-avatars { display: flex; }
.trust-avatars span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid #fff; display: grid; place-items: center; font-size: .68rem; font-weight: 800; color: #fff; margin-left: -8px; }
.trust-avatars span:first-child { margin-left: 0; }

/* stats band */
.stats-band { background: linear-gradient(110deg, var(--brand-dark), #0b9b9b 45%, var(--blue)); color: #fff; position: relative; }
.stats-band .stat { text-align: center; padding: 2.1rem .8rem; }
.stats-band .num { font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 800; line-height: 1; color: #fff; }
.stats-band .num span { font-size: 1.3rem; }
.stats-band .lbl { margin-top: .5rem; font-size: .85rem; color: rgba(255,255,255,.85); font-weight: 600; }
.stats-band .stat + .stat { border-left: 1px solid rgba(255,255,255,.18); }

/* ---------- 5. Page hero (inner pages) ---------- */
.page-hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(27,127,208,.45), transparent 60%),
    radial-gradient(800px 420px at -10% 120%, rgba(14,168,144,.4), transparent 60%),
    linear-gradient(120deg, var(--deep), var(--navy) 55%, #11556b);
  padding: 78px 0 64px;
}
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.page-hero p { color: rgba(255,255,255,.85); max-width: 640px; }
.crumb { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.65); margin-bottom: 1rem; flex-wrap: wrap; }
.crumb a { color: rgba(255,255,255,.65); }
.crumb a:hover { color: #fff; }
.crumb .sep { opacity: .5; }
.crumb .now { color: #6fe8cb; }
.page-hero-shape { position: absolute; right: -90px; top: -110px; opacity: .35; pointer-events: none; }

/* ---------- 6. Cards ---------- */
.service-card {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%;
  background: #fff; display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: rgba(14,168,144,.4); }
.service-card .img-wrap { position: relative; overflow: hidden; aspect-ratio: 16 / 10; background: var(--soft); }
.service-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .img-wrap img { transform: scale(1.07); }
.service-card .num-chip {
  position: absolute; top: 14px; left: 14px; width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.92); color: var(--brand-dark); font-weight: 800; font-size: .85rem;
  display: grid; place-items: center; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px);
}
.service-card .card-body { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.service-card h3 { font-size: 1.15rem; margin: 0; }
.service-card p { font-size: .92rem; margin: 0; }
.service-card .btn { margin-top: auto; align-self: flex-start; margin-top: 1.1rem; padding: .58rem 1.15rem; font-size: .88rem; }

/* small feature / value tiles */
.value-tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.4rem; height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.value-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-tile .tile-icon {
  width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 1rem;
  background: var(--grad-soft); color: var(--brand-dark);
}
.value-tile .tile-icon svg { width: 27px; height: 27px; }
.value-tile h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.value-tile p { font-size: .9rem; margin: 0; }

/* CTA tile that completes service grid */
.grid-cta-tile {
  height: 100%; border-radius: var(--radius); color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(140deg, #0ea890, #11556b 60%, #1b7fd0);
  display: flex; flex-direction: column; justify-content: center; padding: 1.8rem;
}
.grid-cta-tile::before { content:""; position:absolute; inset:0; background: radial-gradient(300px 200px at 110% 110%, rgba(255,255,255,.25), transparent 60%); }
.grid-cta-tile h3 { color:#fff; font-size:1.15rem; position:relative; }
.grid-cta-tile p { color: rgba(255,255,255,.85); font-size:.9rem; position:relative; }
.grid-cta-tile .btn { position:relative; align-self: flex-start; margin-top: .6rem; }

/* ---------- 7. About & why ---------- */
.about-media { position: relative; }
.about-media .main-img { border-radius: 22px; width: 100%; object-fit: cover; aspect-ratio: 4/3.4; box-shadow: var(--shadow-md); }
.about-media .blob { position: absolute; width: 60%; height: 60%; right: -6%; top: -7%; z-index: -1; border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%; background: var(--grad-soft); animation: float 7s ease-in-out infinite; }
.exp-badge {
  position: absolute; left: -18px; bottom: -22px; background: var(--grad); color: #fff; border-radius: 18px;
  padding: 1.1rem 1.4rem; box-shadow: var(--shadow-md); display: flex; gap: .9rem; align-items: center; max-width: 260px;
}
.exp-badge .big { font-size: 2.1rem; font-weight: 800; line-height: 1; }
.exp-badge .txt { font-size: .8rem; line-height: 1.3; color: rgba(255,255,255,.92); font-weight: 600; }
.check-list { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.check-list li { display: flex; gap: .7rem; align-items: flex-start; margin-bottom: .7rem; font-weight: 600; color: var(--ink); font-size: .95rem; }
.check-list svg { width: 20px; height: 20px; color: var(--brand); flex: none; margin-top: .2rem; }

/* mission / vision */
.mv-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--line); padding: 1.8rem; height: 100%; }
.mv-card .tile-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.1rem; background: var(--grad); color: #fff; box-shadow: 0 8px 18px rgba(14,168,144,.3); }
.mv-card .tile-icon svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.2rem; }
.mv-card p { font-size: .93rem; margin: 0; }

/* why-us (home) big number cards on gradient */
.why-card {
  height: 100%; border-radius: var(--radius); background: #fff; border: 1px solid var(--line);
  padding: 1.8rem 1.6rem; transition: transform .22s ease, box-shadow .22s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-card .idx { font-size: 2.6rem; font-weight: 800; line-height: 1; background: linear-gradient(120deg, rgba(14,168,144,.28), rgba(27,127,208,.28)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: .4rem; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { font-size: .9rem; margin: 0; }
.why-card .tile-icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--grad-soft); color: var(--brand-dark); margin-bottom: .9rem; }
.why-card .tile-icon svg { width: 24px; height: 24px; }

/* ---------- 8. Testimonials ---------- */
.t-card {
  height: 100%; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.t-card .quote-mark { color: var(--brand-2); opacity: .9; }
.t-card .quote-mark svg { width: 34px; height: 34px; }
.t-card p { font-size: .95rem; flex: 1; }
.stars { color: var(--star); display: inline-flex; gap: 2px; margin: .4rem 0 .9rem; }
.stars svg { width: 17px; height: 17px; }
.t-person { display: flex; gap: .85rem; align-items: center; }
.t-avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1.05rem; flex: none; }
.t-person h4 { font-size: 1rem; margin: 0; }
.t-person span { font-size: .82rem; color: var(--body); }

/* ---------- 9. Blog cards ---------- */
.blog-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; height:100%; display:flex; flex-direction:column; transition: transform .22s ease, box-shadow .22s ease; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .img-wrap { aspect-ratio: 16/9; overflow:hidden; background: var(--soft); }
.blog-card .img-wrap img { width:100%; height:100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .img-wrap img { transform: scale(1.06); }
.blog-card .card-body { padding: 1.5rem; display:flex; flex-direction:column; gap:.5rem; flex:1; }
.blog-card h3 { font-size:1.12rem; line-height:1.4; }
.blog-card p { font-size:.9rem; margin:0; flex:1; }
.blog-card .link-more { font-size:.9rem; }

/* article layout */
.article-body h2 { font-size: 1.45rem; margin: 2rem 0 .8rem; }
.article-body p, .article-body li { font-size: 1rem; }
.article-body ul { padding-left: 1.1rem; }
.article-body ul li { margin-bottom: .4rem; }
.article-lead { font-size: 1.1rem; color: var(--ink); font-weight: 600; }
.note-box { background: var(--soft); border-left: 4px solid var(--brand); border-radius: 0 14px 14px 0; padding: 1.1rem 1.3rem; font-size: .92rem; }

/* ---------- 10. FAQ ---------- */
.accordion-lfz .accordion-item { border: 1px solid var(--line); border-radius: 14px !important; overflow: hidden; margin-bottom: .8rem; background: #fff; box-shadow: var(--shadow-sm); }
.accordion-lfz .accordion-button { font-weight: 700; color: var(--ink); font-size: 1rem; padding: 1.15rem 1.3rem; background: #fff; box-shadow: none; }
.accordion-lfz .accordion-button:not(.collapsed) { color: var(--brand-dark); background: rgba(14,168,144,.06); }
.accordion-lfz .accordion-button::after { background-size: 1.1rem; }
.accordion-lfz .accordion-body { font-size: .94rem; padding: 0 1.3rem 1.2rem; }

/* ---------- 11. CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  background: radial-gradient(700px 340px at 88% 20%, rgba(99,201,139,.5), transparent 60%),
    radial-gradient(600px 300px at 6% 100%, rgba(27,127,208,.5), transparent 60%),
    linear-gradient(120deg, #0b3f37, #0ea890 55%, #11556b);
  border-radius: 26px; padding: 3.2rem 2.4rem;
}
.cta-band h2 { color:#fff; font-size: clamp(1.6rem,3vw,2.3rem); }
.cta-band p { color: rgba(255,255,255,.88); max-width: 640px; }
.cta-band .btn-white svg, .cta-band .btn-ghost-white svg { width: 17px; height: 17px; margin-left: .3rem; vertical-align: -2px; }
.cta-phone-big { display:flex; align-items:center; gap:.9rem; color:#fff; }
.cta-phone-big .pi { width:56px; height:56px; border-radius:16px; background: rgba(255,255,255,.14); display:grid; place-items:center; border:1px solid rgba(255,255,255,.2); }
.cta-phone-big .pi svg { width: 26px; height: 26px; color:#d8fff4; }
.cta-phone-big small { display:block; color: rgba(255,255,255,.75); font-size:.8rem; font-weight:600; letter-spacing:.06em; text-transform:uppercase; }
.cta-phone-big a { color:#fff; font-size:1.35rem; font-weight:800; letter-spacing:.01em; }

/* ---------- 12. Forms ---------- */
.form-card { background:#fff; border:1px solid var(--line); border-radius: 22px; padding: 2.1rem; box-shadow: var(--shadow-md); }
.form-label { font-weight:700; color: var(--ink); font-size:.88rem; margin-bottom:.35rem; }
.form-control, .form-select {
  border-radius: 11px; border: 1.5px solid var(--line); padding: .68rem .95rem; font-size: .95rem; background: var(--soft-2); color: var(--ink);
}
.form-control:focus, .form-select:focus { border-color: var(--brand); box-shadow: 0 0 0 .22rem rgba(14,168,144,.15); background:#fff; }
textarea.form-control { min-height: 130px; resize: vertical; }
.form-check-input:checked { background-color: var(--brand); border-color: var(--brand); }
.form-check-input:focus { box-shadow: 0 0 0 .22rem rgba(14,168,144,.15); border-color: var(--brand); }
.invalid-feedback, .was-validated .form-control:invalid ~ .invalid-feedback { display:none; }
.help-note { font-size:.8rem; color: var(--body); margin-top:.45rem; }

.form-success, .form-error {
  display: none; border-radius: 16px; padding: 1.3rem 1.4rem; font-size: .95rem; align-items:flex-start; gap:.8rem;
}
.form-success { background:#eafaf3; border:1px solid #bfe9d5; color:#0b6b4f; }
.form-error { background:#fff1f0; border:1px solid #f6c6c0; color:#9a2f24; }
.form-success.show, .form-error.show { display:flex; }
.form-success svg, .form-error svg { width: 22px; height: 22px; flex:none; margin-top: 3px; }
.field-error { border-color: #e35b52 !important; background:#fff7f6 !important; }
.field-tip { display:none; margin-top:.3rem; }
.text-error { color:#c0392b; font-size:.8rem; font-weight:600; }

/* quick subscribe in footer */
.newsletter-form { display:flex; gap:.5rem; }
.newsletter-form .form-control { background:#fff; border:none; border-radius: 100px; min-width:0; flex:1 1 auto; }
.newsletter-form .btn { flex:none; }
@media (max-width: 419.98px) { .newsletter-form { flex-wrap: wrap; } .newsletter-form .btn { width:100%; } }

/* form summary after success */
.sum-chip { font-size:.85rem; background:rgba(11,107,79,.08); border:1px dashed rgba(11,107,79,.35); border-radius: 100px; padding:.35rem .85rem; font-weight:700; color:#0b6b4f; display:inline-block; margin-bottom:.6rem; }

/* ---------- 13. Footer ---------- */
footer.site-footer { background: linear-gradient(180deg, var(--deep), #06202b 40%, #051a23); color: rgba(255,255,255,.72); }
.site-footer h5 { color:#fff; font-size: 1.02rem; letter-spacing:.02em; margin-bottom: 1.1rem; }
.site-footer p { font-size:.9rem; }
.foot-link { display:block; color: rgba(255,255,255,.72); font-size:.92rem; padding:.28rem 0; }
.foot-link:hover { color:#5fe6c6; padding-left: 4px; }
.foot-contact li { display:flex; gap:.7rem; margin-bottom:.9rem; font-size:.92rem; align-items:flex-start; }
.foot-contact svg { width: 17px; height:17px; color:#5fe6c6; flex:none; margin-top:5px; }
.foot-contact a { color: rgba(255,255,255,.85); }
.foot-contact a:hover { color:#fff; }
.footer-brand .brand-mark { width: 46px; height:46px; }
.social a { width: 38px; height: 38px; border-radius: 11px; display:inline-grid; place-items:center; background: rgba(255,255,255,.08); color:#fff; margin-right:.5rem; transition:.2s; }
.social a:hover { background: var(--grad); transform: translateY(-3px); }
.social svg { width: 17px; height: 17px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.1rem 0; font-size:.84rem; }
.footer-bottom a { color: rgba(255,255,255,.72); }
.footer-bottom a:hover { color:#5fe6c6; }
.site-footer .newsletter-form .form-control { background: rgba(255,255,255,.09); color:#fff; border:1px solid rgba(255,255,255,.14); }
.site-footer .newsletter-form .form-control::placeholder { color: rgba(255,255,255,.5); }

/* ---------- 14. Extras ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity:1; transform:none; transition:none; } html{scroll-behavior:auto} }

.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 1040; width: 46px; height: 46px; border-radius: 14px;
  background: var(--grad); color:#fff; display: grid; place-items: center; border:none; box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition:.25s;
}
.back-top.show { opacity:1; visibility:visible; transform:none; }
.back-top svg { width: 20px; height: 20px; }

.toast-stack { position: fixed; top: 92px; right: 18px; z-index: 2000; display:flex; flex-direction:column; gap:.6rem; max-width: min(360px, calc(100vw - 36px)); }
.lfz-toast { background:#fff; border-radius: 14px; box-shadow: var(--shadow-lg); padding: .9rem 1.1rem; font-size:.9rem; display:flex; gap:.6rem; align-items:flex-start; border-left: 4px solid var(--brand); animation: toastIn .3s ease; }
.lfz-toast svg { width: 20px; height:20px; color: var(--brand); flex:none; }
.lfz-toast.err { border-left-color:#e35b52; }
.lfz-toast.err svg { color:#e35b52; }
@keyframes toastIn { from { opacity:0; transform: translateX(20px); } }

.float-call {
  position: fixed; left: 22px; bottom: 22px; z-index: 1040; display: inline-flex; align-items:center; gap:.5rem;
  background: var(--grad); color:#fff; font-weight:700; font-size:.9rem; border-radius:100px; padding:.72rem 1.2rem; box-shadow: var(--shadow-md);
}
.float-call svg { width:18px; height:18px; }
.float-call:hover { color:#fff; transform: translateY(-2px); }

/* map + info tiles on contact */
.map-frame { width:100%; height: 100%; min-height: 300px; border:0; border-radius: var(--radius); }
.info-tile { height:100%; background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding:1.6rem; }
.info-tile .tile-icon { width:52px; height:52px; border-radius:14px; background: var(--grad-soft); color: var(--brand-dark); display:grid; place-items:center; margin-bottom:1rem; }
.info-tile .tile-icon svg { width:26px; height:26px; }
.info-tile h3 { font-size:1.02rem; margin-bottom:.2rem; }
.info-tile a, .info-tile .addr { font-size:.92rem; color: var(--body); }
.info-tile a { color: var(--ink); font-weight:600; }
.info-tile a:hover { color: var(--brand-dark); }
.info-tile p { margin:0; }

.page-header-img-radius { border-radius: 22px; }

/* misc layout helpers */
.divider-dots { width: 56px; height: 5px; border-radius: 4px; background: var(--grad); }
.list-inline-dot li { padding-left: 1.1rem; position: relative; margin-bottom: .55rem; font-size:.95rem; }
.list-inline-dot li::before { content:""; position:absolute; left:0; top:.55em; width:8px; height:8px; border-radius:50%; background: var(--brand); }

.avatar-gradient-1 { background: linear-gradient(135deg,#1b7fd0,#0ea890); }
.avatar-gradient-2 { background: linear-gradient(135deg,#8f5ee8,#1b7fd0); }
.avatar-gradient-3 { background: linear-gradient(135deg,#0ea890,#63c98b); }
.avatar-gradient-4 { background: linear-gradient(135deg,#e8825e,#8f5ee8); }
.avatar-gradient-5 { background: linear-gradient(135deg,#0ea890,#1b7fd0); }

/* ---------- 15. Responsive ---------- */
@media (max-width: 991.98px) {
  .section { padding: 64px 0; }
  .hero { padding: 84px 0 70px; }
  .topbar .d-md-flex { display:none !important; }
  .navbar .nav-cta { margin-top: .8rem; }
  .exp-badge { left: 12px; bottom: -18px; }
  .stats-band .stat + .stat { border-left: none; }
  .hero-points { gap: .9rem 1.4rem; }
}
@media (max-width: 575.98px) {
  .cta-band { padding: 2.2rem 1.4rem; border-radius: 18px; }
  .lead-card { padding: 1.4rem; }
  .back-top { right: 14px; bottom: 78px; }
}
