/* BBBRINGME Home — pixel-close redesign matching client mockups */
:root {
  --orange: #ff5a00;
  --orange-hot: #ff6a14;
  --orange-deep: #e84e00;
  --orange-soft: #fff1e6;
  --cream: #f7f3ee;
  --ink: #0f0f0f;
  --ink-2: #151515;
  --charcoal: #171717;
  --muted: #5f5f5f;
  --muted-2: #8a8a8a;
  --line: #ececec;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 48px rgba(15, 15, 15, 0.12);
  --shadow-sm: 0 8px 24px rgba(15, 15, 15, 0.08);
  --container: min(1220px, calc(100% - 56px));
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
  --header-h: 84px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
ul { list-style: none; margin: 0; padding: 0; }

.container { width: var(--container); margin-inline: auto; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(15,15,15,.05);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; line-height: 0; }
.brand__logo {
  display: block; height: 48px; width: auto; max-width: min(190px, 48vw);
  object-fit: contain; object-position: left center;
}
.brand__logo--footer { height: 56px; max-width: min(230px, 72vw); }

.nav-desktop {
  display: flex; align-items: center; gap: 30px;
  font-size: .95rem; font-weight: 500; color: var(--ink);
}
.nav-desktop a {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 0; position: relative; transition: color .2s;
}
.nav-desktop a:hover { color: var(--orange); }
.nav-desktop a.is-active { color: var(--orange); font-weight: 700; }
.nav-desktop a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--orange); border-radius: 2px;
}
.nav-desktop .chevron { width: 10px; height: 10px; opacity: .65; }

.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header-divider {
  width: 1px; height: 28px; background: #e5e5e5; margin-right: 4px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 20px; border-radius: 12px;
  font-weight: 700; font-size: .92rem; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s, background .2s, color .2s, border-color .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.btn-login {
  background: var(--white); border-color: var(--orange); color: var(--ink);
  border-radius: 12px; min-height: 44px; padding: 0 16px;
}
.btn-login:hover { background: var(--orange-soft); }
.btn-login svg { color: var(--ink); }

.btn-outline {
  background: var(--white); border-color: var(--ink); color: var(--ink);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-primary {
  background: var(--orange); color: var(--white); border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(255,90,0,.28); border-radius: 12px;
}
.btn-primary:hover { background: var(--orange-hot); border-color: var(--orange-hot); }

.btn-secondary {
  background: var(--white); border-color: #1a1a1a; color: var(--ink);
  border-radius: 12px;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.btn-dark {
  background: var(--ink); color: var(--white); border-color: var(--ink);
  border-radius: 999px; padding-inline: 24px;
}
.btn-dark:hover { background: #000; }

.btn-ghost-orange {
  background: transparent; border-color: var(--orange); color: var(--ink);
}
.btn-ghost-orange:hover { background: var(--orange-soft); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line);
  border-radius: 12px; background: var(--white); align-items: center;
  justify-content: center; cursor: pointer;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; background: var(--ink); position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--ink);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0 0;
  background: var(--white); padding: 24px; z-index: 99; overflow-y: auto;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: flex; align-items: center; gap: 10px; padding: 14px 0;
  border-bottom: 1px solid var(--line); font-weight: 600;
}
.mobile-nav .mobile-actions { display: grid; gap: 12px; margin-top: 24px; }
body.nav-open { overflow: hidden; }

/* Hero */
.hero {
  position: relative; padding: 36px 0 20px; overflow: hidden;
  background:
    radial-gradient(ellipse 50% 60% at 88% 35%, rgba(255,90,0,.10), transparent 60%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 28px; align-items: center;
}
.eyebrow {
  color: var(--orange); font-weight: 800; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase; margin: 0 0 14px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2.7rem, 5.4vw, 4.55rem); line-height: .92;
  letter-spacing: .01em; text-transform: uppercase; margin: 0 0 18px;
}
.hero-title .accent { color: var(--orange); }
.hero-lead {
  color: var(--muted); font-size: 1.05rem; max-width: 48ch; margin: 0 0 26px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.trust-row {
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; max-width: 580px;
}
.trust-item { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.trust-item svg { width: 28px; height: 28px; color: var(--orange); flex-shrink: 0; }
.trust-item span { font-size: .72rem; font-weight: 700; line-height: 1.3; color: var(--ink); }

.hero-visual {
  position: relative; min-height: 560px; display: grid; place-items: center;
}
.hero-blob {
  position: absolute; width: min(440px, 92%); height: min(440px, 92%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff9a4a, var(--orange) 52%, #d94400);
  opacity: .95; z-index: 0;
  animation: blobPulse 7s ease-in-out infinite;
}
.hero-blob--soft {
  width: min(300px, 62%); height: min(300px, 62%);
  right: 2%; top: 6%; left: auto; background: #ffe3cc; opacity: .9; z-index: 0;
  animation: none;
}
.hero-dots {
  position: absolute; top: 4%; right: 6%; width: 130px; height: 100px;
  background-image: radial-gradient(var(--orange) 1.6px, transparent 1.7px);
  background-size: 14px 14px; opacity: .5; z-index: 1;
}
.hero-main-photo {
  position: relative; z-index: 2; width: min(360px, 74%); aspect-ratio: 3/4;
  border-radius: 32px; overflow: hidden; box-shadow: var(--shadow);
}
.hero-main-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

.float-card {
  position: absolute; z-index: 3; width: 158px; background: var(--white);
  border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .35s ease; animation: floatY 5.5s ease-in-out infinite;
}
.float-card:nth-child(odd) { animation-delay: -.8s; }
.float-card:hover { transform: translateY(-6px) scale(1.02); animation-play-state: paused; }
.float-card img { width: 100%; height: 102px; object-fit: cover; }
.float-card__label {
  display: flex; align-items: center; gap: 6px; padding: 9px 11px;
  font-size: .72rem; font-weight: 800; color: var(--ink);
}
.float-card__label svg { width: 15px; height: 15px; color: var(--orange); flex-shrink: 0; }
.float-card--tl { top: 6%; left: -2%; }
.float-card--bl { bottom: 12%; left: 0; animation-delay: -2.2s; }
.float-card--tr { top: 10%; right: -2%; animation-delay: -1.4s; }
.float-card--br { bottom: 8%; right: 0; animation-delay: -3s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* Search */
.search-wrap {
  position: relative; z-index: 5; margin-top: -8px; margin-bottom: 56px;
  display: flex; justify-content: flex-end;
}
.search-panel {
  width: min(680px, 100%); background: var(--white); border-radius: 22px;
  padding: 22px 24px; box-shadow: 0 22px 56px rgba(15,15,15,.14);
  border: 1px solid rgba(15,15,15,.04);
}
.search-panel h2 { margin: 0 0 12px; font-size: 1.2rem; font-weight: 800; }
.search-form { display: flex; gap: 10px; align-items: stretch; }
.search-form input {
  flex: 1; min-height: 54px; border: 1px solid #e4e4e4; border-radius: 14px;
  padding: 0 18px; background: #fafafa;
}
.search-form input:focus {
  outline: 2px solid rgba(255,90,0,.3); border-color: var(--orange); background: var(--white);
}
.search-form button {
  width: 54px; min-height: 54px; border: 0; border-radius: 14px; background: var(--orange);
  color: var(--white); cursor: pointer; display: grid; place-items: center; flex-shrink: 0;
}
.search-form button:hover { background: var(--orange-hot); }

/* Sections */
.section { padding: 76px 0; }
.section--services { background: var(--white); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.section-head--services {
  display: grid; grid-template-columns: auto 1fr auto; align-items: end; gap: 20px 28px;
}
.section-head--services h2,
.section-head__copy h2 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2.1rem, 3.6vw, 3rem); text-transform: uppercase;
  letter-spacing: .01em; margin: 0; line-height: 1;
}
.section-head--services h2 .accent,
.section-head__copy h2 .accent { color: var(--orange); }
.section-head--services p {
  margin: 0; color: var(--muted); max-width: 42ch; padding-bottom: 4px;
}
.section-head--services p strong { color: var(--ink); font-weight: 800; }

.btn-view-all {
  border-radius: 999px; border: 1.5px solid var(--orange); background: var(--white);
  color: var(--orange); min-height: 44px; padding: 0 18px; font-weight: 700;
  font-size: .9rem; display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s, color .2s;
}
.btn-view-all__sep { width: 1px; height: 18px; background: rgba(255,90,0,.35); }
.btn-view-all:hover { background: var(--orange-soft); }

/* Category cards */
.category-track {
  display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 18px;
}
.cat-card {
  border-radius: 20px; overflow: hidden; background: var(--charcoal); color: var(--white);
  display: flex; flex-direction: column; min-height: 380px;
  transition: transform .28s, box-shadow .28s; box-shadow: var(--shadow-sm);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.cat-card__top {
  display: flex; align-items: center; gap: 8px; padding: 14px 14px;
  font-family: var(--font-display); font-weight: 700; font-size: .98rem;
  letter-spacing: .02em; text-transform: uppercase;
}
.cat-card__top svg { width: 18px; height: 18px; flex-shrink: 0; }
.cat-card__media { flex: 1; min-height: 160px; position: relative; }
.cat-card__media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.cat-card__body {
  padding: 16px 14px 18px; display: flex; align-items: flex-end;
  justify-content: space-between; gap: 10px; background: #111; position: relative; z-index: 1;
}
.cat-card__body p {
  margin: 0; font-size: .78rem; line-height: 1.4; color: rgba(255,255,255,.9);
}
.cat-card__go {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  flex-shrink: 0; color: var(--white); font-weight: 700; font-size: 1rem;
}

.cat-card--community .cat-card__top,
.cat-card--community .cat-card__go { background: #ff5a00; }
.cat-card--auto .cat-card__top,
.cat-card--auto .cat-card__go { background: #d4a017; }
.cat-card--home .cat-card__top,
.cat-card--home .cat-card__go { background: #c2185b; }
.cat-card--learn .cat-card__top,
.cat-card--learn .cat-card__go { background: #1e56d9; }
.cat-card--move .cat-card__top,
.cat-card--move .cat-card__go { background: #0f8f7f; }
.cat-card--events .cat-card__top,
.cat-card--events .cat-card__go { background: #6a2fd4; }

/* How it works */
.how { text-align: center; background: linear-gradient(180deg, #fff, #fbfbfb 60%, #fff); }
.how h2 {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2.1rem, 3.6vw, 3rem); text-transform: uppercase; margin: 0 0 44px;
}
.how h2 .accent { color: var(--orange); }

.steps {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: stretch; gap: 0; position: relative;
}
.step-card {
  background: var(--white); border-radius: 18px; padding: 22px 18px 22px;
  text-align: center; box-shadow: 0 10px 28px rgba(15,15,15,.06);
  border: 1px solid #f0f0f0; position: relative;
}
.step-card__top {
  display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px;
}
.step-card__num {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: 2.6rem; color: #e6e6e6; line-height: 1;
}
.step-card__icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--orange);
  color: var(--white); display: grid; place-items: center; flex-shrink: 0;
}
.step-card__icon svg { width: 20px; height: 20px; }
.step-card h3 { margin: 4px 0 8px; font-size: 1.05rem; font-weight: 800; }
.step-card p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.4; }

.step-connector {
  position: relative; align-self: center; height: 48px; width: 28px;
}
.step-connector::before,
.step-connector::after {
  content: ""; position: absolute; left: 50%; top: 50%; width: 34px; height: 0;
  border-top: 2px dashed rgba(255,90,0,.55); transform-origin: center;
}
.step-connector::before { transform: translate(-50%, -50%) rotate(28deg); }
.step-connector::after { transform: translate(-50%, -50%) rotate(-28deg); }

/* Mission */
.mission-grid {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 52px; align-items: center;
}
.mission-label {
  color: var(--orange); font-weight: 800; font-size: .8rem;
  letter-spacing: .14em; margin: 0 0 14px;
}
.mission-title {
  font-family: var(--font-display); font-weight: 800; font-style: italic;
  font-size: clamp(2.5rem, 4.8vw, 4rem); line-height: .95;
  text-transform: uppercase; margin: 0 0 18px;
}
.mission-title .accent { color: var(--orange); }
.mission-copy { color: var(--muted); max-width: 46ch; margin: 0 0 28px; font-size: 1.02rem; }
.mission-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mission-feature {
  border-radius: 18px; padding: 24px 20px; color: var(--white);
  min-height: 148px; display: flex; flex-direction: column; justify-content: space-between;
}
.mission-feature--orange { background: linear-gradient(145deg, #ff7a2e, #ff5a00); }
.mission-feature--dark { background: var(--ink); }
.mission-feature h3 {
  margin: 0 0 8px; font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 800; letter-spacing: .02em; text-transform: uppercase;
}
.mission-feature p { margin: 0; font-size: .9rem; opacity: .95; }
.mission-feature__rule {
  width: 36px; height: 3px; margin-top: 16px; background: rgba(255,255,255,.9); border-radius: 2px;
}
.mission-feature--dark .mission-feature__rule { background: var(--orange); }

.mission-visual { position: relative; min-height: 520px; }
.mission-orbit {
  position: absolute; inset: 0; width: 100%; height: 100%;
  color: rgba(255,90,0,.55); z-index: 0; pointer-events: none;
}
.mission-blob {
  position: absolute; inset: 10% 18% 14% 0; background: var(--ink);
  border-radius: 48% 52% 44% 56% / 52% 40% 60% 48%; z-index: 1;
}
.mission-blob-text {
  position: absolute; left: 8%; top: 24%; z-index: 2; color: var(--white);
  max-width: 230px; font-size: 1rem; line-height: 1.5; font-weight: 500;
}
.mission-blob-text::after {
  content: ""; display: block; width: 44px; height: 3px; background: var(--orange);
  margin-top: 16px; border-radius: 2px;
}
.mission-dot {
  position: absolute; z-index: 2; width: 10px; height: 10px; border-radius: 50%;
  background: var(--orange);
}
.mission-dot--1 { top: 12%; left: 18%; }
.mission-dot--2 { top: 58%; left: 4%; }
.mission-dot--3 { bottom: 18%; right: 8%; width: 8px; height: 8px; }
.mission-spark {
  position: absolute; top: 4%; right: 18%; z-index: 2; width: 28px; height: 28px;
  background:
    linear-gradient(var(--orange), var(--orange)) center/2px 100% no-repeat,
    linear-gradient(var(--orange), var(--orange)) center/100% 2px no-repeat,
    linear-gradient(45deg, transparent 46%, var(--orange) 46%, var(--orange) 54%, transparent 54%) center/70% 70% no-repeat;
  opacity: .85;
}
.mission-photo {
  position: absolute; z-index: 3; border-radius: 50%; overflow: hidden;
  box-shadow: var(--shadow); border: 5px solid var(--white);
}
.mission-photo img { width: 100%; height: 100%; object-fit: cover; }
.mission-photo--1 { width: 178px; height: 178px; top: 0; right: 10%; border-radius: 48% 52% 50% 50% / 45% 55% 45% 55%; }
.mission-photo--2 { width: 198px; height: 198px; top: 28%; right: -2%; }
.mission-photo--3 { width: 168px; height: 168px; bottom: 2%; right: 26%; border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%; }

/* Specialist */
.specialist { padding: 12px 0 64px; }
.specialist-banner {
  background: linear-gradient(115deg, #ff8a2b 0%, #ff5a00 48%, #ff6200 100%);
  border-radius: 36px 36px 56px 28px; padding: 42px 40px; color: var(--white);
  display: grid; grid-template-columns: 1fr 1.05fr .95fr; gap: 28px; align-items: center;
  position: relative; overflow: hidden;
}
.specialist-banner::before {
  content: ""; position: absolute; inset: -30% -8% auto auto; width: 320px; height: 320px;
  background: rgba(255,255,255,.1); border-radius: 50%;
}
.specialist-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem); text-transform: uppercase;
  margin: 0 0 8px; letter-spacing: .02em; position: relative;
}
.specialist-copy .sub {
  font-style: italic; font-size: 1.12rem; margin: 0 0 12px; opacity: .97; font-weight: 600;
}
.specialist-copy p {
  margin: 0 0 22px; opacity: .94; font-size: .96rem; max-width: 36ch;
}
.specialist-people { position: relative; z-index: 1; display: flex; justify-content: center; }
.specialist-people img {
  width: min(400px, 100%); max-height: 300px; object-fit: cover; object-position: center top;
  border-radius: 20px; filter: drop-shadow(0 18px 30px rgba(0,0,0,.22));
}
.benefits {
  background: var(--white); border-radius: 20px; padding: 8px; display: grid;
  grid-template-columns: 1fr 1fr; position: relative; z-index: 1; color: var(--ink);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}
.benefit { padding: 18px 16px; position: relative; }
.benefit:nth-child(1), .benefit:nth-child(2) { border-bottom: 1px solid #eee; }
.benefit:nth-child(odd) { border-right: 1px solid #eee; }
.benefit svg { width: 26px; height: 26px; color: var(--orange); margin-bottom: 10px; }
.benefit h3 { margin: 0 0 4px; font-size: .92rem; font-weight: 800; }
.benefit p { margin: 0; font-size: .78rem; color: var(--muted); line-height: 1.35; }

/* App promo */
.app-promo { background: var(--white); padding: 24px 0 80px; position: relative; }
.app-panel {
  background: var(--cream); border-radius: 36px; padding: 48px 40px;
  position: relative; overflow: hidden;
}
.app-panel::before {
  content: ""; position: absolute; left: 8%; top: 14%; width: 120px; height: 90px;
  background-image: radial-gradient(var(--orange) 1.5px, transparent 1.6px);
  background-size: 14px 14px; opacity: .35; pointer-events: none;
}
.app-grid {
  display: grid; grid-template-columns: .85fr 1fr .95fr; gap: 36px; align-items: center;
}
.phone-mock {
  width: min(250px, 100%); margin-inline: auto; background: #111; border-radius: 38px;
  padding: 10px; box-shadow: var(--shadow); aspect-ratio: 9/18.5; position: relative;
  border: 2px solid #2a2a2a;
}
.phone-mock__screen {
  background: var(--white); border-radius: 30px; height: 100%; overflow: hidden;
  display: flex; flex-direction: column;
}
.phone-mock__status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 14px 4px; font-size: .58rem; font-weight: 700;
}
.phone-mock__island {
  width: 56px; height: 14px; background: #111; border-radius: 999px;
}
.phone-mock__loc {
  padding: 2px 14px 0; font-size: .65rem; font-weight: 700; color: var(--ink);
}
.phone-mock__bar {
  margin: 8px 12px; height: 34px; border-radius: 10px; background: #f3f3f3;
  display: flex; align-items: center; padding: 0 12px; font-size: .68rem; color: var(--muted-2);
}
.phone-cats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; padding: 4px 12px 10px;
}
.phone-cats span {
  aspect-ratio: 1; border-radius: 50%; background: var(--orange-soft);
  display: grid; place-items: center; font-size: .52rem; font-weight: 800;
  color: var(--orange); text-align: center; padding: 4px;
}
.phone-mock__banner {
  margin: 0 12px 12px; flex: 1; border-radius: 14px; overflow: hidden;
  background: linear-gradient(160deg, #ffe8d6, #ffd0ad); position: relative;
}
.phone-mock__banner img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.phone-mock__banner strong {
  position: absolute; left: 10px; bottom: 10px; font-size: .68rem;
  background: rgba(255,255,255,.92); padding: 4px 8px; border-radius: 8px;
}

.app-copy h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2.1rem, 3.6vw, 3rem); text-transform: uppercase;
  line-height: 1; margin: 0 0 14px;
}
.app-copy h2 .accent { color: var(--orange); }
.app-copy p { color: var(--muted); margin: 0; max-width: 36ch; font-size: 1.02rem; }
.app-download { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.app-download__qr {
  width: 148px; height: 148px; background: var(--white); padding: 8px;
  border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.app-download__qr img { width: 100%; height: 100%; object-fit: contain; }
.store-badges { display: flex; flex-direction: column; gap: 10px; }
.store-badges a { display: block; transition: transform .2s; }
.store-badges a:hover { transform: translateY(-2px); }
.store-badges img { height: 48px; width: auto; }
.store-badges .badge-play { height: 72px; margin: -12px 0; }

/* Footer */
.site-footer {
  background: #000; color: rgba(255,255,255,.84); padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr 1.25fr; gap: 28px;
}
.footer-brand .brand { color: var(--white); margin-bottom: 12px; display: inline-block; }
.footer-brand .brand__logo--footer { border-radius: 8px; }
.footer-brand p { margin: 0 0 18px; font-size: .9rem; max-width: 30ch; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.28); display: grid; place-items: center;
  transition: background .2s, border-color .2s;
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); }
.socials svg { width: 16px; height: 16px; }
.footer-col h4 {
  margin: 0 0 16px; color: var(--white); font-size: .82rem; letter-spacing: .1em; font-weight: 800;
}
.footer-col a {
  display: block; font-size: .9rem; margin-bottom: 11px; color: rgba(255,255,255,.72);
  transition: color .2s;
}
.footer-col a:hover { color: var(--orange); }
.newsletter p { margin: 0 0 12px; font-size: .88rem; }
.newsletter-form { display: flex; gap: 0; overflow: hidden; border-radius: 10px; }
.newsletter-form input {
  flex: 1; min-height: 46px; border-radius: 10px 0 0 10px; border: 0; padding: 0 14px;
}
.newsletter-form button {
  width: 48px; min-height: 46px; border: 0; border-radius: 0 10px 10px 0;
  background: var(--orange); color: var(--white); cursor: pointer; display: grid; place-items: center;
}
.footer-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1);
  font-size: .82rem; color: rgba(255,255,255,.5); display: flex;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--orange); }

/* Reveal motion */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-in { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1180px) {
  .category-track { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .section-head--services { grid-template-columns: 1fr auto; }
  .section-head--services p { grid-column: 1 / -1; }
}
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: repeat(3,1fr); }
  .specialist-banner { grid-template-columns: 1fr 1fr; }
  .specialist-people { grid-column: 1 / -1; order: -1; }
}
@media (max-width: 960px) {
  .nav-desktop, .header-divider { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { min-height: 460px; order: -1; }
  .trust-row { grid-template-columns: repeat(2,1fr); max-width: none; }
  .search-wrap { justify-content: stretch; }
  .search-panel { width: 100%; }
  .mission-grid, .app-grid { grid-template-columns: 1fr; }
  .mission-visual { min-height: 440px; max-width: 500px; margin-inline: auto; width: 100%; }
  .steps {
    display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
    padding-bottom: 8px; -webkit-overflow-scrolling: touch;
  }
  .step-connector { display: none; }
  .step-card { min-width: 220px; scroll-snap-align: start; flex: 0 0 auto; }
}
@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1220px); }
  .header-actions .btn-login { display: none; }
  .category-track { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .specialist-banner { grid-template-columns: 1fr; padding: 28px 22px; border-radius: 28px; }
  .benefits { grid-template-columns: 1fr; }
  .benefit:nth-child(odd) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card { width: 124px; }
  .float-card img { height: 76px; }
  .hero-title { font-size: 2.4rem; }
  .mission-cards { grid-template-columns: 1fr; }
  .app-panel { padding: 28px 20px; border-radius: 28px; }
  .app-download { justify-content: center; }
  .app-copy { text-align: center; }
  .app-copy p { margin-inline: auto; }
  .section-head--services { grid-template-columns: 1fr; }
  .btn-view-all { justify-self: start; }
}
@media (max-width: 480px) {
  .category-track { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .cat-card, .float-card, .reveal, .hero-blob { transition: none; animation: none !important; }
}
