/* =====================================================================
   Blue Lotus - Hotel Cleaning Specialists
   Brand color sampled from logo: #145371
   ===================================================================== */

:root {
  --brand:        #145371;
  --brand-700:    #0f4460;
  --brand-800:    #0c384e;
  --brand-900:    #08283a;
  --accent:       #2e9ab5;
  --accent-400:   #46b6d1;

  --ink:          #10303f;
  --body:         #4c5b63;
  --muted:        #82909a;
  --line:         #e6edf1;
  --mist:         #f1f6f8;
  --mist-2:       #f8fbfc;
  --paper:        #ffffff;

  --radius:       16px;
  --radius-sm:    10px;
  --radius-lg:    28px;
  --shadow-sm:    0 1px 3px rgba(16,48,63,.06), 0 6px 20px rgba(16,48,63,.05);
  --shadow:       0 18px 50px rgba(16,48,63,.12);
  --shadow-lg:    0 30px 80px rgba(8,40,58,.28);
  --container:    1200px;
  --gutter:       clamp(22px, 5vw, 56px);
  --ease:         cubic-bezier(.22,.61,.36,1);

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.3rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--body); line-height: 1.65; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(70px, 10vw, 130px) 0; }
.section--tint { background: var(--mist); }
.section--brand { background: var(--brand-800); color: #cfe0e8; }
.section--brand h2, .section--brand h3 { color: #fff; }
.narrow { max-width: 760px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: .8rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head p { color: var(--body); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  border: 1.5px solid transparent; white-space: nowrap;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px rgba(46,154,181,.34); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(46,154,181,.44); }
.btn--dark { background: var(--brand); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: var(--brand-700); }
.btn--ghost { background: transparent; color: var(--brand); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand); background: var(--mist); }
.btn--light { background: #fff; color: var(--brand); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--outline-light { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.45); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.16); }

/* =====================================================================
   Header
   ===================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s, border-color .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 82px; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: .96rem;
  color: var(--ink); position: relative; padding: 4px 0; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--accent); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--brand); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  font-family: var(--font-head); font-weight: 600; color: var(--brand);
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav__phone svg { width: 18px; height: 18px; }
.nav__toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }
.nav__toggle svg { width: 28px; height: 28px; }
.mobile-menu { display: none; }

/* =====================================================================
   Hero (image-led, full-bleed)
   ===================================================================== */
.hero {
  position: relative; min-height: min(88vh, 780px);
  display: flex; align-items: center;
  padding: clamp(80px, 12vw, 140px) 0 clamp(70px, 10vw, 120px);
  color: #fff; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(8,40,58,.92) 0%, rgba(8,40,58,.72) 42%, rgba(8,40,58,.28) 100%),
    linear-gradient(0deg, rgba(8,40,58,.55), rgba(8,40,58,0) 45%);
}
.hero__inner { position: relative; z-index: 1; max-width: 680px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px); padding: 8px 16px 8px 10px; border-radius: 999px;
  font-size: .84rem; font-weight: 500; font-family: var(--font-head);
  color: #fff; margin-bottom: 26px;
}
.hero__badge img { height: 16px; width: auto; }
.hero__badge .sep { width: 1px; height: 14px; background: rgba(255,255,255,.3); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero__lead { max-width: 560px; margin-bottom: 34px; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero__trust li { display: flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 500; color: rgba(255,255,255,.9); }
.hero__trust svg { width: 19px; height: 19px; color: var(--accent-400); flex: none; }

/* =====================================================================
   Intro statement
   ===================================================================== */
.intro { text-align: center; }
.intro .container { max-width: 900px; }
.intro__mark { height: 46px; margin: 0 auto 26px; display: block; opacity: .9; }
.intro p { font-family: var(--font-head); font-weight: 500; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink); letter-spacing: -.01em; }
.intro p .soft { color: var(--muted); }

/* =====================================================================
   Grids + service cards
   ===================================================================== */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card__icon {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  margin-bottom: 22px; background: linear-gradient(150deg, var(--mist), #e5f0f4); color: var(--brand);
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }

/* =====================================================================
   Space cards (real photos)
   ===================================================================== */
.space-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 380px; display: flex; align-items: flex-end; color: #fff; padding: 30px;
  box-shadow: var(--shadow-sm); isolation: isolate;
}
.space-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  z-index: -2; transition: transform .7s var(--ease);
}
.space-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8,40,58,0) 32%, rgba(8,40,58,.55) 66%, rgba(8,40,58,.9) 100%);
}
.space-card:hover img { transform: scale(1.05); }
.space-card h3 { color: #fff; margin-bottom: 6px; }
.space-card p { color: rgba(255,255,255,.85); font-size: .93rem; }
.space-card .tag {
  position: absolute; top: 22px; left: 22px;
  background: rgba(255,255,255,.16); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.28);
  padding: 6px 13px; border-radius: 999px; font-size: .74rem; font-weight: 600;
  font-family: var(--font-head); letter-spacing: .05em;
}
.space-card--wide { grid-column: span 2; }

/* =====================================================================
   Split / feature with image
   ===================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); width: 100%; box-shadow: var(--shadow); aspect-ratio: 5/5.4; object-fit: cover; }
.split__badge {
  position: absolute; left: -22px; bottom: 34px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.split__badge .n { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--brand); line-height: 1; }
.split__badge small { color: var(--body); font-size: .86rem; line-height: 1.4; }

.checklist { display: grid; gap: 16px; margin: 26px 0 32px; }
.checklist li { display: flex; gap: 13px; align-items: flex-start; }
.checklist svg { width: 22px; height: 22px; color: var(--accent); flex: none; margin-top: 3px; }
.checklist strong { color: var(--ink); font-family: var(--font-head); }

/* =====================================================================
   Stats
   ===================================================================== */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.4rem, 4vw, 3.4rem); color: #fff; line-height: 1; }
.stat .num .plus { color: var(--accent-400); }
.stat p { color: rgba(255,255,255,.72); margin: 10px 0 0; font-size: .95rem; }

/* =====================================================================
   Steps
   ===================================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step__num {
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--mist); color: var(--brand); font-family: var(--font-head); font-weight: 700; font-size: 1.15rem;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: .95rem; }

/* =====================================================================
   Testimonials
   ===================================================================== */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.quote .stars { color: #f5b301; margin-bottom: 16px; letter-spacing: 3px; font-size: .95rem; }
.quote blockquote { font-size: 1.04rem; color: var(--ink); margin-bottom: 22px; line-height: 1.6; }
.quote__by { display: flex; align-items: center; gap: 13px; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; flex: none; background: linear-gradient(150deg, var(--accent), var(--brand)); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; }
.quote__by strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: .95rem; }
.quote__by small { color: var(--muted); }

/* =====================================================================
   CTA band (image)
   ===================================================================== */
.cta {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 72px); text-align: center; color: #fff; isolation: isolate;
}
.cta img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(12,56,78,.94), rgba(12,56,78,.78)); }
.cta h2 { color: #fff; margin-bottom: 16px; }
.cta p { color: rgba(255,255,255,.88); max-width: 580px; margin: 0 auto 30px; }
.cta .hero__actions { justify-content: center; margin: 0; }

/* =====================================================================
   Page hero (inner)
   ===================================================================== */
.page-hero {
  position: relative; color: #fff; padding: clamp(90px, 11vw, 150px) 0 clamp(60px, 8vw, 96px); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgba(8,40,58,.92), rgba(8,40,58,.62)); }
.page-hero .container { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero p { max-width: 640px; color: rgba(255,255,255,.9); }
.breadcrumb { font-size: .86rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }
.page-hero .eyebrow { color: var(--accent-400); }

/* =====================================================================
   Contact
   ===================================================================== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-item .ic { width: 48px; height: 48px; border-radius: 14px; flex: none; display: grid; place-items: center; background: var(--mist); color: var(--brand); }
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h3 { font-size: 1.05rem; margin-bottom: 3px; }
.info-item p { font-size: .96rem; }
.info-item a:hover { color: var(--brand); }

.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: var(--mist-2); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px rgba(46,154,181,.12); }
.field textarea { min-height: 130px; resize: vertical; }
.form .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form__note { text-align: center; font-size: .82rem; color: var(--muted); margin-top: 14px; }
.form-error {
  display: none; text-align: center; padding: 18px 22px;
  background: #fdecec; border: 1px solid #f5c2c2; border-radius: var(--radius);
  color: #a12b2b; font-size: .95rem; margin-bottom: 16px;
}
.form-error a { color: #a12b2b; text-decoration: underline; }
.form-success { display: none; text-align: center; padding: 22px; background: #e7f6ef; border: 1px solid #b8e6cf; border-radius: var(--radius); color: #1c7a4d; font-weight: 600; font-family: var(--font-head); margin-top: 16px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); }
.faq__q .icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content: ""; position: absolute; background: var(--brand); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq__q .icon::before { width: 14px; height: 2px; }
.faq__q .icon::after { width: 2px; height: 14px; transition: transform .3s; }
.faq__item.open .faq__q .icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a p { padding: 0 0 24px; color: var(--body); }

/* =====================================================================
   Video feature
   ===================================================================== */
.video-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: var(--brand-900);
}
.video-frame video { display: block; width: 100%; height: auto; }
.video-frame--split { box-shadow: var(--shadow); }
.video-frame--split video { aspect-ratio: 5/5.4; object-fit: cover; }
.video-caption {
  position: absolute; left: 18px; bottom: 18px;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(8,40,58,.72); backdrop-filter: blur(6px);
  color: #fff; padding: 9px 16px; border-radius: 999px;
  font-family: var(--font-head); font-weight: 600; font-size: .85rem;
}
.video-caption .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-400); }

/* =====================================================================
   Brand film (logo animation)
   ===================================================================== */
.brandfilm {
  width: min(440px, 78vw);
  margin: 0 auto 10px;
  aspect-ratio: 16 / 9;
  position: relative;
}
.brandfilm video {
  width: 100%; height: 100%; object-fit: cover;
  display: block; background: transparent;
  position: relative; z-index: 1;
  /* feather the edges so the clip melts into the page instead of sitting in a box.
     closest-side keeps the fade inside every edge, so it fully reaches transparent
     before the box boundary and no hard rectangle is ever visible. */
  -webkit-mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 30%, rgba(0,0,0,.5) 58%, transparent 80%);
          mask-image: radial-gradient(ellipse closest-side at 50% 50%, #000 30%, rgba(0,0,0,.5) 58%, transparent 80%);
}
/* Static logo sits behind and shows whenever the clip is not actually playing
   (autoplay blocked, iOS Low Power Mode, video still loading, codec unsupported).
   It is hidden the moment playback really starts. */
.brandfilm__fallback {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34%; height: auto;
  transition: opacity .4s ease;
}
.brandfilm.is-playing .brandfilm__fallback { opacity: 0; }

/* =====================================================================
   Five-way standard
   ===================================================================== */
.steps--5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 980px) { .steps--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps--5 { grid-template-columns: 1fr; } }

/* =====================================================================
   Timeline
   ===================================================================== */
.timeline { max-width: 760px; margin-inline: auto; position: relative; padding-left: 34px; }
.timeline::before {
  content: ""; position: absolute; left: 8px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(180deg, var(--accent), var(--brand)); border-radius: 2px;
}
.timeline__item { position: relative; padding-bottom: 34px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: ""; position: absolute; left: -32px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--accent);
}
.timeline__year {
  font-family: var(--font-head); font-weight: 700; color: var(--accent);
  font-size: .95rem; letter-spacing: .06em; margin-bottom: 4px;
}
.timeline__item h3 { margin-bottom: 6px; }
.timeline__item p { font-size: .97rem; margin: 0; }

/* Sector status tag */
.tag--soon { background: rgba(245,179,1,.25); border-color: rgba(245,179,1,.5); }

/* =====================================================================
   Specialist pills
   ===================================================================== */
.pill-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 34px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-family: var(--font-head); font-weight: 600;
  font-size: .9rem; color: var(--brand);
  transition: border-color .25s, transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pill svg { width: 16px; height: 16px; color: var(--accent); }
a.pill:hover { border-color: var(--brand); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Sector teaser chips (text-only partner chips) */
.partner-chip small { color: var(--muted); font-weight: 500; font-family: var(--font-body); }
.partner-chip--plain { padding: 11px 22px; }

/* =====================================================================
   Partners
   ===================================================================== */
.partners__group + .partners__group { margin-top: 46px; }
.partners__label {
  text-align: center; color: var(--muted); font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; font-weight: 600; font-family: var(--font-head); margin-bottom: 24px;
}
.partner-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.partner-chip {
  display: flex; align-items: center; gap: 12px; background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 11px 22px 11px 12px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.partner-chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: transparent; }
.partner-chip img { width: 34px; height: 34px; object-fit: contain; border-radius: 8px; flex: none; }
.partner-chip span { font-family: var(--font-head); font-weight: 600; color: var(--ink); font-size: .95rem; white-space: nowrap; }
@media (max-width: 640px) {
  .partner-chip { padding: 9px 16px 9px 10px; }
  .partner-chip span { font-size: .88rem; }
  .partner-chip img { width: 28px; height: 28px; }
}

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--brand-900); color: #9fb4bf; padding: clamp(60px, 8vw, 90px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 54px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 20px; font-family: var(--font-head); }
.site-footer .flogo { height: 30px; margin-bottom: 20px; }
.site-footer p { font-size: .92rem; line-height: 1.75; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: .93rem; transition: color .2s, padding .2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 15px; font-size: .93rem; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--accent-400); flex: none; margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .86rem; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.08); transition: background .25s, transform .25s; }
.footer-social a:hover { background: var(--accent); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; color: #fff; }

/* =====================================================================
   Gentle reveal (subtle, non-jarring)
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
  .space-card img, .btn, .card { transition: none; }
}

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 44px 24px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .split { grid-template-columns: 1fr; }
  .split__media { max-width: 540px; margin-inline: auto; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px; }
}
@media (max-width: 780px) {
  .nav__links, .nav__phone { display: none; }
  .nav__toggle { display: inline-flex; }
  .mobile-menu {
    position: fixed; inset: 82px 0 auto 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); padding: 18px var(--gutter) 28px; z-index: 99;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 15px 0; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 500; color: var(--ink); font-size: 1.05rem; }
  .mobile-menu .btn { width: 100%; justify-content: center; margin-top: 20px; }
  .space-card--wide { grid-column: span 1; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { justify-content: center; text-align: center; }
  .split__badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
}
