/* Valmo Franchise — Global Styles */
:root {
  --ink: #07111f;
  --ink-2: #0c1a2e;
  --navy: #102a43;
  --teal: #0d9488;
  --teal-deep: #0f766e;
  --teal-soft: #5eead4;
  --amber: #f59e0b;
  --amber-soft: #fcd34d;
  --sand: #eef2f7;
  --muted: #5b6b7f;
  --white: #ffffff;
  --line: rgba(7, 17, 31, 0.09);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(7, 17, 31, 0.12);
  --shadow-lg: 0 34px 80px rgba(7, 17, 31, 0.18);
  --font-logo: "Outfit", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: 1180px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s, opacity .2s; }
h1, h2, h3, h4, .display {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.18;
  color: var(--ink);
}

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  z-index: 2000;
  transition: width .1s linear;
}

/* Top bar */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: .55rem 0;
}
.topbar a { color: var(--amber-soft); font-weight: 600; }
.topbar a:hover { color: #fff; }
.topbar .sep { opacity: .35; margin: 0 .65rem; }

/* Navbar */
.navbar-valmo {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: .7rem 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: box-shadow .3s, background .3s, padding .3s;
}
.navbar-valmo.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 10px 34px rgba(7,17,31,.09);
  padding: .5rem 0;
}

/* ---- Logo ---- */
.brand-logo {
  display: flex !important;
  align-items: center;
  gap: .65rem;
  padding: 0 !important;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 13px;
  background: linear-gradient(140deg, #14b8a6 0%, var(--teal-deep) 45%, var(--ink) 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-logo);
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(13,148,136,.35);
  overflow: hidden;
  flex: 0 0 auto;
}
.brand-mark::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -80%;
  width: 60%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  transform: rotate(18deg);
  transition: left .6s ease;
}
.brand-logo:hover .brand-mark::after { left: 130%; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-text b {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: 1.32rem;
  letter-spacing: .015em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-text b em {
  font-style: normal;
  font-weight: 600;
  color: var(--teal);
}
.brand-text small {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .21em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
}

.navbar-valmo .nav-link {
  font-weight: 600;
  font-size: .92rem;
  color: var(--navy) !important;
  padding: .45rem .7rem !important;
  border-radius: 8px;
}
.navbar-valmo .nav-link:hover,
.navbar-valmo .nav-link.active {
  color: var(--teal) !important;
  background: rgba(13,148,136,.08);
}

/* Buttons */
.btn-cta {
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  color: #fff !important;
  font-family: var(--font-body);
  font-weight: 700;
  border: 0;
  border-radius: 999px;
  padding: .65rem 1.35rem;
  box-shadow: 0 10px 25px rgba(13,148,136,.3);
  transition: transform .2s, filter .2s, box-shadow .2s;
}
.btn-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.07);
  box-shadow: 0 16px 34px rgba(13,148,136,.4);
  color: #fff !important;
}
.btn-ghost {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.45);
  color: #fff !important;
  font-weight: 700;
  border-radius: 999px;
  padding: .6rem 1.3rem;
  transition: background .25s, color .25s, border-color .25s;
}
.btn-ghost:hover { background: #fff; color: var(--ink) !important; border-color: #fff; }
.btn-outline-teal {
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  border-radius: 999px;
  padding: .6rem 1.3rem;
  background: transparent;
}
.btn-outline-teal:hover { background: var(--teal); color: #fff; }

/* Hero */
.hero {
  position: relative;
  min-height: min(94vh, 860px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(7,17,31,.94) 0%, rgba(7,17,31,.6) 46%, rgba(7,17,31,.28) 100%),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 72% 38%, rgba(13,148,136,.3), transparent 55%);
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4.5rem;
  max-width: 660px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .95rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--amber-soft);
  margin-bottom: 1.25rem;
}
.hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pulseDot 1.8s infinite;
}
@keyframes pulseDot {
  70% { box-shadow: 0 0 0 9px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero-brand {
  font-family: var(--font-logo);
  font-weight: 800;
  font-size: clamp(2.6rem, 6.4vw, 4.3rem);
  letter-spacing: -0.02em;
  line-height: .98;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-brand span {
  display: block;
  color: var(--amber);
  font-family: var(--font-body);
  font-size: .22em;
  letter-spacing: .18em;
  margin-bottom: .55rem;
  font-weight: 700;
}
.hero h1 {
  color: #fff;
  font-size: clamp(1.5rem, 3.1vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 1rem;
  max-width: 30ch;
}
.hero p.lead {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  max-width: 44ch;
  margin-bottom: 1.75rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-mini div strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: #fff;
  line-height: 1;
}
.hero-mini div span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}
.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  z-index: 2;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Marquee strip */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.6);
  padding: .85rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
}
.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: slide 28s linear infinite;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.marquee-track span i { color: var(--teal-soft); margin-right: .45rem; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Sections */
.section { padding: 5rem 0; }
.section-tight { padding: 3.5rem 0; }
.section-dark { background: var(--ink); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-teal {
  background: linear-gradient(160deg, var(--teal-deep), #115e59 60%, var(--ink-2));
  color: #fff;
}
.section-teal h2 { color: #fff; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .65rem;
}
.section-dark .eyebrow,
.section-teal .eyebrow { color: var(--amber-soft); }
.section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: .85rem;
}
.section-sub {
  color: var(--muted);
  max-width: 54ch;
  font-size: 1.05rem;
}
.section-dark .section-sub,
.section-teal .section-sub { color: rgba(255,255,255,.72); }

/* Pillars */
.pillar-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pillar {
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--line);
  transition: background .25s;
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: rgba(13,148,136,.05); }
.pillar .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(13,148,136,.15), rgba(245,158,11,.12));
  display: grid;
  place-items: center;
  color: var(--teal);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}
.pillar h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.pillar p { color: var(--muted); margin: 0; font-size: .95rem; }

/* Stats band */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--amber);
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-item .label { font-size: .9rem; color: rgba(255,255,255,.7); }

/* Image steps (home) */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7,17,31,.09);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.step-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.step-thumb {
  position: relative;
  height: 172px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--teal-deep));
}
.step-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.step-card:hover .step-thumb img { transform: scale(1.09); }
.step-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,17,31,.65), transparent 55%);
}
.step-num {
  position: absolute;
  left: 1rem;
  bottom: .85rem;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--amber);
  width: 40px; height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.3);
}
.step-body { padding: 1.25rem 1.35rem 1.5rem; flex: 1; }
.step-body h4 { font-size: 1.08rem; margin-bottom: .4rem; }
.step-body p { color: var(--muted); font-size: .9rem; margin: 0; }
.step-body .step-tag {
  display: inline-block;
  margin-top: .85rem;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Process (text-only variant) */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}
.process-step { position: relative; padding-top: .5rem; }
.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(13,148,136,.18);
  display: block;
  line-height: 1;
  margin-bottom: .75rem;
}
.process-step h4 { font-size: 1.08rem; margin-bottom: .4rem; }
.process-step p { color: var(--muted); font-size: .92rem; margin: 0; }

/* Franchise models */
.model-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.model-visual {
  border-radius: 20px;
  min-height: 420px;
  background:
    linear-gradient(160deg, rgba(7,17,31,.55), rgba(13,148,136,.35)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200&q=80") center/cover;
  position: relative;
  overflow: hidden;
}
.model-visual .caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(7,17,31,.88));
  color: #fff;
}
.model-list { display: flex; flex-direction: column; gap: 1rem; }
.model-item {
  padding: 1.35rem 1.5rem;
  border-left: 3px solid var(--teal);
  background: #fff;
  border-radius: 0 12px 12px 0;
  box-shadow: var(--shadow);
  transition: transform .25s;
}
.model-item:hover { transform: translateX(6px); }
.model-item h4 { margin-bottom: .35rem; font-size: 1.12rem; }
.model-item p { margin: 0; color: var(--muted); font-size: .92rem; }
.model-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.25rem;
  margin-top: .75rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--teal-deep);
}

/* Photo gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 168px;
  gap: 1rem;
}
.gallery figure {
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
}
.gallery figure img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease, filter .4s ease;
}
.gallery figure:hover img { transform: scale(1.08); }
.gallery figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem 1rem .85rem;
  background: linear-gradient(transparent, rgba(7,17,31,.9));
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
}
.gallery .g-tall { grid-row: span 2; }
.gallery .g-wide { grid-column: span 2; }

/* Testimonials */
.quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.85rem;
  height: 100%;
  box-shadow: 0 12px 32px rgba(7,17,31,.08);
  border-top: 3px solid var(--teal);
  position: relative;
}
.quote-card .mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: rgba(13,148,136,.2);
  margin-bottom: .25rem;
}
.quote-card p { color: var(--muted); font-size: .95rem; }
.quote-person { display: flex; align-items: center; gap: .8rem; margin-top: 1.25rem; }
.avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  flex: 0 0 auto;
}
.quote-person strong { display: block; font-size: .95rem; }
.quote-person span { font-size: .8rem; color: var(--muted); }
.stars { color: var(--amber); font-size: .85rem; letter-spacing: .1em; }

/* FAQ */
.accordion-valmo .accordion-item {
  border: 1px solid var(--line);
  border-radius: 14px !important;
  margin-bottom: .75rem;
  overflow: hidden;
  background: #fff;
}
.accordion-valmo .accordion-button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  padding: 1.1rem 1.25rem;
}
.accordion-valmo .accordion-button:not(.collapsed) {
  background: rgba(13,148,136,.07);
  color: var(--teal-deep);
  box-shadow: none;
}
.accordion-valmo .accordion-button:focus { box-shadow: none; border-color: transparent; }
.accordion-valmo .accordion-body { color: var(--muted); font-size: .95rem; padding-top: 0; }

/* Split feature with image */
.split-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.float-stat {
  position: absolute;
  right: -12px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  min-width: 168px;
}
.float-stat .n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--teal-deep);
  line-height: 1;
}
.float-stat .t { font-size: .78rem; color: var(--muted); }

/* CTA banner */
.cta-banner {
  border-radius: 24px;
  padding: 3rem;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(245,158,11,.28), transparent 52%),
    linear-gradient(120deg, var(--ink) 0%, var(--navy) 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.cta-banner h2 { color: #fff; margin-bottom: .5rem; }
.cta-banner p { color: rgba(255,255,255,.72); margin: 0; max-width: 44ch; }

/* Page hero (inner) */
.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background:
    linear-gradient(120deg, rgba(7,17,31,.94), rgba(13,148,136,.55)),
    url("https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
  overflow: hidden;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: .65rem; }
.page-hero p { color: rgba(255,255,255,.8); max-width: 52ch; margin: 0; font-size: 1.05rem; }
.breadcrumb-valmo { font-size: .85rem; margin-bottom: 1rem; color: rgba(255,255,255,.6); }
.breadcrumb-valmo a { color: var(--amber-soft); }

/* Forms */
.form-shell {
  background: #fff;
  border-radius: 20px;
  padding: 2.25rem;
  box-shadow: var(--shadow);
}
.form-label { font-weight: 600; font-size: .88rem; margin-bottom: .35rem; }
.form-control, .form-select {
  border: 1.5px solid #d8e0ea;
  border-radius: 12px;
  padding: .8rem 1rem;
  font-size: .95rem;
  background: #f8fafc;
}
.form-control:focus, .form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 .2rem rgba(13,148,136,.15);
  background: #fff;
}
.required::after { content: " *"; color: #dc2626; }

/* Contact info blocks */
.contact-block { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 0; }
.contact-block .label {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .35rem;
}
.contact-block a {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
}
.contact-block a:hover { color: var(--teal); }

/* Legal content */
.legal-content h2 { font-size: 1.32rem; margin-top: 2rem; margin-bottom: .75rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: var(--muted); font-size: .98rem; }
.legal-content ul { padding-left: 1.2rem; }
.legal-content li { margin-bottom: .4rem; }

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 4rem 0 0;
}
.site-footer h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
.site-footer a {
  color: rgba(255,255,255,.68);
  font-size: .92rem;
  display: inline-block;
  margin-bottom: .45rem;
}
.site-footer a:hover { color: var(--amber-soft); }
.site-footer .brand-text b { color: #fff; }
.site-footer .brand-text small { color: rgba(255,255,255,.5); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 2rem;
  padding: 1.25rem 0;
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* Disclaimer — clearly visible */
.disclaimer {
  margin-top: 2.5rem;
  padding: 1.15rem 1.35rem;
  border: 1px solid rgba(255,255,255,.16);
  border-left: 4px solid var(--amber);
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  line-height: 1.7;
  max-width: 100%;
}
.disclaimer strong { color: var(--amber-soft); }

/* Floating actions */
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  border: 0;
  box-shadow: 0 12px 28px rgba(7,17,31,.28);
  transition: transform .2s;
}
.fab:hover { transform: translateY(-3px); color: #fff; }
.fab-call,
.fab-contact { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); }
.fab-top { background: var(--ink); opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s; }
.fab-top.show { opacity: 1; pointer-events: auto; }

/* Mobile call bar */
.mobile-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1400;
  display: none;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(7,17,31,.12);
}
.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: .85rem .5rem;
  font-weight: 700;
  font-size: .88rem;
  color: var(--ink);
}
.mobile-bar a.primary { background: linear-gradient(135deg, var(--teal), var(--teal-deep)); color: #fff; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* Misc */
.divider-soft { height: 1px; background: var(--line); margin: 2rem 0; }
.chip {
  display: inline-block;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(13,148,136,.1);
  color: var(--teal-deep);
  font-size: .78rem;
  font-weight: 700;
}
.alert-success-custom {
  background: rgba(13,148,136,.1);
  border: 1px solid rgba(13,148,136,.3);
  color: var(--teal-deep);
  border-radius: 12px;
}
.table-details td:first-child { font-weight: 700; width: 40%; color: var(--ink); }
.table-details td { padding: .85rem 0; border-color: var(--line); vertical-align: top; }

@media (max-width: 1199px) {
  .step-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 991px) {
  .pillar-row { grid-template-columns: 1fr; }
  .pillar { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr 1fr; }
  .model-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .hero { min-height: 82vh; align-items: center; }
  .hero-content { padding: 6rem 0 3rem; }
  .float-stat { right: 12px; bottom: 12px; }
  .mobile-bar { display: flex; }
  .float-actions { bottom: 74px; }
  body { padding-bottom: 56px; }
}
@media (max-width: 575px) {
  .step-grid { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem 1.35rem; }
  .form-shell { padding: 1.5rem; }
  .brand-text b { font-size: 1.12rem; }
  .brand-mark { width: 38px; height: 38px; border-radius: 11px; }
  .gallery .g-wide { grid-column: span 2; }
}
