:root {
  --black: #090909;
  --black-2: #101010;
  --black-3: #171717;
  --yellow: #ffc400;
  --yellow-2: #ffdf4d;
  --white: #f8f8f6;
  --muted: #a7a7a2;
  --line: rgba(255,255,255,.12);
  --dark-line: rgba(0,0,0,.14);
  --success: #b8ff68;
  --error: #ff6d6d;
  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 24px 80px rgba(0,0,0,.28);
  --container: min(1240px, calc(100vw - 48px));
  --header-h: 88px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background: var(--white);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
::selection { color: var(--black); background: var(--yellow); }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 128px 0; position: relative; }
.section-dark { background: var(--black); color: var(--white); }
.section-yellow { background: var(--yellow); color: var(--black); }

.noise {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.scroll-progress {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--yellow); box-shadow: 0 0 18px var(--yellow); }
.cursor-glow {
  position: fixed;
  z-index: 2;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,196,0,.11), transparent 66%);
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header-h);
  color: var(--white);
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(8,8,8,.78);
  border-color: rgba(255,255,255,.09);
  backdrop-filter: blur(22px) saturate(130%);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 220px; }
.brand img { width: 46px; height: 52px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(255,196,0,.16)); }
.brand-copy { display: grid; gap: 1px; text-transform: uppercase; }
.brand-copy strong { font-size: 16px; letter-spacing: .18em; line-height: 1; }
.brand-copy small { color: #9d9d98; font-size: 8px; letter-spacing: .16em; white-space: nowrap; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { position: relative; color: #c8c8c4; font-size: 14px; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -8px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--yellow); transition: transform .25s ease; }
.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after, .desktop-nav a.is-active::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: grid; justify-items: end; gap: 1px; }
.header-phone span { color: #8e8e88; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.header-phone strong { font-size: 14px; }
.menu-toggle { display: none; width: 48px; height: 48px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; position: relative; }
.menu-toggle span { position: absolute; left: 14px; right: 14px; top: 20px; height: 1px; background: var(--white); transition: transform .25s ease, top .25s ease; }
.menu-toggle span:last-child { top: 27px; }
.menu-toggle[aria-expanded="true"] span:first-child { top: 24px; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { top: 24px; transform: rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-h) 0 0; padding: 34px 24px max(40px, env(safe-area-inset-bottom)); background: rgba(8,8,8,.97); backdrop-filter: blur(20px); }
.mobile-menu nav { display: grid; margin-bottom: 32px; }
.mobile-menu nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: clamp(24px, 7vw, 40px); font-weight: 700; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.button::before { content: ""; position: absolute; z-index: -1; inset: 0; transform: translateX(-102%); background: rgba(255,255,255,.18); transition: transform .35s ease; }
.button:hover::before { transform: translateX(0); }
.button:hover { transform: translateY(-2px); }
.button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { background: var(--yellow); color: var(--black); box-shadow: 0 15px 45px rgba(255,196,0,.18); }
.button-primary:hover { box-shadow: 0 20px 55px rgba(255,196,0,.28); }
.button-ghost { border-color: var(--line); color: var(--white); background: rgba(255,255,255,.03); }
.button-ghost:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.button-dark { background: var(--black); color: var(--white); }

.hero {
  min-height: 100svh;
  padding: calc(var(--header-h) + 58px) 0 70px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 74% 45%, rgba(255,196,0,.09), transparent 36%), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: auto, 68px 68px, 68px 68px; mask-image: linear-gradient(to bottom, transparent 0, #000 18%, #000 72%, transparent 100%); }
.hero-grid { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0 44%, rgba(255,196,0,.035) 44.1% 44.3%, transparent 44.4% 100%); }
.hero-orbit { position: absolute; border: 1px solid rgba(255,196,0,.11); border-radius: 50%; }
.orbit-one { width: 760px; height: 760px; right: -140px; top: 8%; animation: orbitPulse 7s ease-in-out infinite; }
.orbit-two { width: 1040px; height: 1040px; right: -280px; top: -5%; animation: orbitPulse 7s 1.6s ease-in-out infinite reverse; }
@keyframes orbitPulse { 0%,100% { opacity: .35; transform: scale(.98); } 50% { opacity: .8; transform: scale(1.02); } }
.hero-layout { position: relative; z-index: 4; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 44px; }
.hero-copy-top, .hero-copy-bottom { position: relative; z-index: 2; }
.hero-visual.hero-visual-mobile { display: none; }
.hero-visual.hero-visual-desktop { display: grid; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 26px; color: #bcbcb6; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(255,196,0,.1); animation: live 2s infinite; }
@keyframes live { 0%,100% { box-shadow: 0 0 0 4px rgba(255,196,0,.12); } 50% { box-shadow: 0 0 0 9px rgba(255,196,0,0); } }
.hero h1 { margin: 0; max-width: 820px; font-size: clamp(56px, 6.5vw, 102px); line-height: .94; letter-spacing: -.065em; font-weight: 820; }
.hero h1 em { color: var(--yellow); font-style: normal; }
.hero-lead { max-width: 660px; margin: 30px 0 0; color: #b7b7b2; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 58px; padding-top: 22px; border-top: 1px solid var(--line); max-width: 680px; }
.hero-trust div { display: flex; gap: 12px; align-items: flex-start; }
.hero-trust span { color: var(--yellow); font-size: 11px; font-weight: 800; }
.hero-trust p { margin: 0; color: #a5a59f; font-size: 13px; line-height: 1.35; }
.hero-visual { min-height: 610px; display: grid; place-items: center; position: relative; }
.visual-halo { position: absolute; width: 88%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(255,196,0,.16), rgba(255,196,0,.03) 42%, transparent 68%); filter: blur(15px); animation: halo 5s ease-in-out infinite; }
@keyframes halo { 50% { transform: scale(1.08); opacity: .72; } }
.logo-stage { position: relative; width: min(91%, 580px); z-index: 2; transition: transform .12s linear; filter: drop-shadow(0 32px 70px rgba(0,0,0,.55)); }
.logo-stage img { width: 100%; height: auto; position: relative; z-index: 2; }
.logo-scan { position: absolute; z-index: 3; left: 7%; right: 7%; top: 8%; height: 3px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent); box-shadow: 0 0 22px var(--yellow); opacity: .7; animation: scan 5.5s ease-in-out infinite; pointer-events: none; }
@keyframes scan { 0%,10% { top: 8%; opacity: 0; } 20% { opacity: .75; } 75% { top: 87%; opacity: .5; } 85%,100% { top: 87%; opacity: 0; } }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: 12px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.15); border-radius: 16px; background: rgba(15,15,15,.72); backdrop-filter: blur(16px); box-shadow: 0 20px 46px rgba(0,0,0,.35); }
.floating-card small { display: block; margin-bottom: 3px; color: #8d8d87; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.floating-card strong { font-size: 12px; }
.card-status { left: -4%; top: 23%; animation: floatCard 5s ease-in-out infinite; }
.card-response { right: -1%; bottom: 20%; animation: floatCard 5s 1.2s ease-in-out infinite reverse; }
@keyframes floatCard { 50% { transform: translateY(-12px); } }
.status-icon { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: rgba(184,255,104,.12); }
.status-icon i { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 14px var(--success); }
.mini-shield { display: grid; place-items: center; width: 30px; height: 34px; background: var(--yellow); color: var(--black); font-weight: 900; clip-path: polygon(50% 0, 95% 16%, 87% 74%, 50% 100%, 13% 74%, 5% 16%); }
.scroll-cue { position: absolute; z-index: 6; left: 28px; bottom: 40px; display: flex; align-items: center; gap: 12px; color: #767671; font-size: 10px; text-transform: uppercase; letter-spacing: .18em; transform: rotate(-90deg); transform-origin: left center; }
.scroll-cue span { width: 54px; height: 1px; background: #474743; position: relative; overflow: hidden; }
.scroll-cue span::after { content: ""; position: absolute; inset: 0; background: var(--yellow); transform: translateX(-100%); animation: cue 2.2s infinite; }
@keyframes cue { 50%,100% { transform: translateX(100%); } }

.proof-strip { background: var(--yellow); color: var(--black); overflow: hidden; border-block: 1px solid rgba(0,0,0,.14); }
.marquee { padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; align-items: center; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { padding: 0 28px; font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .11em; white-space: nowrap; }
.marquee-track i { font-style: normal; opacity: .4; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section-head { display: grid; grid-template-columns: 1fr .62fr; gap: 90px; align-items: end; margin-bottom: 64px; }
.section-head h2, .approach h2, .calculator h2, .guarantee-copy h2, .faq-head h2, .request h2, .contact-brand h2 { margin: 12px 0 0; font-size: clamp(42px, 5.3vw, 76px); line-height: .98; letter-spacing: -.055em; }
.section-head > p { margin: 0; max-width: 540px; color: #666660; font-size: 17px; line-height: 1.65; }
.section-head-light > p { color: #aaa9a3; }
.section-kicker { display: inline-block; color: #8f8f88; font-size: 11px; font-weight: 850; text-transform: uppercase; letter-spacing: .18em; }
.section-kicker::before { content: ""; display: inline-block; width: 32px; height: 1px; margin-right: 10px; vertical-align: middle; background: var(--yellow); }
.section-kicker.dark { color: rgba(0,0,0,.58); }
.section-kicker.dark::before { background: var(--black); }

.services { background: #f3f3ef; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { min-height: 400px; padding: 28px; border: 1px solid rgba(0,0,0,.09); border-radius: var(--radius); background: rgba(255,255,255,.72); display: flex; flex-direction: column; position: relative; overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease; transform-style: preserve-3d; }
.service-card::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -150px; top: -160px; background: radial-gradient(circle, rgba(255,196,0,.35), transparent 68%); transition: transform .45s ease, opacity .3s ease; opacity: .45; }
.service-card:hover { border-color: rgba(0,0,0,.2); box-shadow: 0 25px 70px rgba(0,0,0,.08); }
.service-card:hover::before { transform: translate(-20px, 22px) scale(1.25); opacity: .8; }
.service-card-large { grid-row: span 2; min-height: 818px; background: var(--black); color: var(--white); }
.service-card-wide { grid-column: span 2; min-height: 400px; }
.service-index { color: #8c8c86; font-size: 11px; font-weight: 900; }
.service-icon { width: 76px; height: 76px; margin-top: 48px; display: grid; place-items: center; border-radius: 22px; background: var(--yellow); color: var(--black); }
.service-card-large .service-icon { margin-top: 150px; width: 104px; height: 104px; border-radius: 30px; }
.service-icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card-large .service-icon svg { width: 58px; height: 58px; }
.service-content { margin-top: auto; position: relative; z-index: 2; }
.service-content h3 { margin: 0 0 14px; max-width: 420px; font-size: 27px; line-height: 1.08; letter-spacing: -.03em; }
.service-card-large .service-content h3 { font-size: clamp(34px, 3.5vw, 50px); }
.service-content p { margin: 0; color: #696964; font-size: 15px; line-height: 1.6; }
.service-card-large .service-content p { color: #aaa9a4; font-size: 17px; }
.service-card > a { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(0,0,0,.1); font-size: 13px; font-weight: 800; }
.service-card-large > a { border-color: var(--line); }
.service-card > a span { font-size: 20px; transition: transform .2s ease; }
.service-card > a:hover span { transform: translate(3px,-3px); }

.approach { overflow: hidden; }
.approach::before { content: "P"; position: absolute; left: -30px; bottom: -210px; color: rgba(0,0,0,.035); font-size: 650px; font-weight: 950; line-height: 1; }
.approach-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; align-items: start; position: relative; z-index: 2; }
.approach-copy { position: sticky; top: 132px; }
.approach-copy p { max-width: 480px; margin: 28px 0 0; color: rgba(0,0,0,.68); font-size: 17px; line-height: 1.65; }
.text-link { display: inline-flex; gap: 12px; align-items: center; margin-top: 34px; padding-bottom: 8px; border-bottom: 1px solid rgba(0,0,0,.35); font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(5px); }
.steps-list { list-style: none; padding: 0; margin: 0; }
.step-item { display: grid; grid-template-columns: 62px 1fr 60px; gap: 22px; align-items: start; padding: 36px 0; border-bottom: 1px solid var(--dark-line); }
.step-item:first-child { border-top: 1px solid var(--dark-line); }
.step-number { font-size: 12px; font-weight: 900; }
.step-item h3 { margin: 0 0 10px; font-size: 28px; letter-spacing: -.03em; }
.step-item p { margin: 0; max-width: 590px; color: rgba(0,0,0,.65); line-height: 1.6; }
.step-item i { position: relative; width: 54px; height: 54px; border: 1px solid rgba(0,0,0,.22); border-radius: 50%; }
.step-item i::before, .step-item i::after { content: ""; position: absolute; top: 50%; left: 50%; width: 16px; height: 1px; background: var(--black); transform: translate(-50%,-50%); }
.step-item i::after { transform: translate(-50%,-50%) rotate(90deg); }

.prices { overflow: hidden; }
.prices::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0, rgba(255,196,0,.07), transparent 33%); pointer-events: none; }
.price-tabs { display: inline-flex; gap: 4px; padding: 5px; margin-bottom: 38px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.03); }
.price-tab { min-height: 46px; padding: 0 20px; border: 0; border-radius: 999px; background: transparent; color: #8e8e88; font-size: 13px; font-weight: 800; cursor: pointer; transition: .25s ease; }
.price-tab.is-active { color: var(--black); background: var(--yellow); }
.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card { min-height: 390px; display: flex; flex-direction: column; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.035); position: relative; overflow: hidden; transition: transform .3s ease, border-color .3s ease, background .3s ease; }
.price-card::after { content: ""; position: absolute; width: 220px; height: 220px; right: -150px; bottom: -150px; border-radius: 50%; border: 1px solid rgba(255,196,0,.22); transition: transform .4s ease; }
.price-card:hover { transform: translateY(-7px); border-color: rgba(255,196,0,.45); background: rgba(255,255,255,.055); }
.price-card:hover::after { transform: translate(-25px,-25px) scale(1.2); }
.price-card.featured { color: var(--black); background: var(--yellow); border-color: var(--yellow); }
.price-card.featured::after { border-color: rgba(0,0,0,.18); }
.price-badge { position: absolute; right: 18px; top: 18px; padding: 7px 10px; border-radius: 999px; background: var(--black); color: var(--white); font-size: 9px; text-transform: uppercase; letter-spacing: .12em; }
.price-card > span { min-height: 40px; padding-right: 60px; color: #a2a29c; font-size: 12px; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.price-card.featured > span { color: rgba(0,0,0,.55); }
.price-card strong { margin-top: 34px; font-size: clamp(34px, 3vw, 46px); line-height: 1; letter-spacing: -.045em; }
.price-card strong small { font-size: 13px; font-weight: 650; letter-spacing: 0; color: #8b8b85; }
.price-card.featured strong small { color: rgba(0,0,0,.55); }
.price-card ul { list-style: none; padding: 0; margin: 32px 0 0; color: #a6a69f; font-size: 13px; line-height: 1.75; }
.price-card.featured ul { color: rgba(0,0,0,.67); }
.price-card li { position: relative; padding-left: 17px; }
.price-card li::before { content: ""; position: absolute; left: 0; top: .78em; width: 5px; height: 5px; border-radius: 50%; background: var(--yellow); }
.price-card.featured li::before { background: var(--black); }
.price-card > p { color: #aaa9a3; line-height: 1.65; }
.price-card button { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: auto; padding: 17px 0 0; border: 0; border-top: 1px solid var(--line); background: transparent; color: inherit; font-size: 13px; font-weight: 850; cursor: pointer; }
.price-card.featured button { border-color: rgba(0,0,0,.17); }
.price-card button span { font-size: 20px; }
.price-note { margin: 28px 0 0; color: #777772; font-size: 12px; line-height: 1.6; }

.calculator { background: #f3f3ef; }
.calculator-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; padding: 60px; border-radius: 34px; background: var(--yellow); box-shadow: 0 30px 100px rgba(0,0,0,.12); overflow: hidden; position: relative; }
.calculator-shell::before { content: ""; position: absolute; width: 520px; height: 520px; left: -250px; bottom: -300px; border: 1px solid rgba(0,0,0,.12); border-radius: 50%; box-shadow: 0 0 0 48px rgba(0,0,0,.025), 0 0 0 96px rgba(0,0,0,.02); }
.calculator-intro, .calc-form { position: relative; z-index: 2; }
.calculator-intro p { margin: 26px 0 0; color: rgba(0,0,0,.66); line-height: 1.65; }
.calc-pulse { width: 86px; height: 86px; margin-top: 55px; position: relative; }
.calc-pulse span { position: absolute; inset: 0; border: 1px solid rgba(0,0,0,.35); border-radius: 50%; animation: calcPulse 2.4s ease-out infinite; }
.calc-pulse span:nth-child(2) { animation-delay: .8s; }
.calc-pulse span:nth-child(3) { animation-delay: 1.6s; }
@keyframes calcPulse { 0% { transform: scale(.2); opacity: 0; } 20% { opacity: 1; } 100% { transform: scale(1); opacity: 0; } }
.calc-form { display: grid; gap: 18px; padding: 32px; border-radius: 24px; background: var(--black); color: var(--white); box-shadow: var(--shadow); }
.field { display: grid; gap: 9px; }
.field > span { color: #777772; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid rgba(255,255,255,.13); border-radius: 13px; background: #161616; color: var(--white); outline: none; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.field input, .field select { min-height: 54px; padding: 0 15px; }
.field textarea { padding: 15px; resize: vertical; min-height: 118px; }
.field input::placeholder, .field textarea::placeholder { color: #5e5e59; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--yellow); box-shadow: 0 0 0 4px rgba(255,196,0,.08); }
.calc-physical-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.calc-physical-fields .field:first-child { grid-column: 1 / -1; }
.range-field > span { display: flex; justify-content: space-between; }
.range-field output { color: var(--yellow); }
.range-field input[type="range"] { appearance: none; padding: 0; height: 4px; margin: 23px 0 10px; border: 0; border-radius: 999px; background: #393934; accent-color: var(--yellow); }
.range-field input[type="range"]::-webkit-slider-thumb { appearance: none; width: 20px; height: 20px; border: 5px solid var(--yellow); border-radius: 50%; background: var(--black); box-shadow: 0 0 0 3px rgba(255,196,0,.15); cursor: grab; }
.calc-result { padding: 22px; border: 1px solid rgba(255,196,0,.3); border-radius: 16px; background: rgba(255,196,0,.06); }
.calc-result span { display: block; color: #85857f; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.calc-result strong { display: block; margin-top: 7px; color: var(--yellow); font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.04em; }
.calc-result small { display: block; margin-top: 9px; color: #777772; line-height: 1.4; }
.calc-form .button-dark { background: var(--yellow); color: var(--black); }

.guarantees { overflow: hidden; }
.guarantee-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.guarantee-visual { min-height: 620px; display: grid; place-items: center; position: relative; }
.radar { position: absolute; width: min(100%, 590px); aspect-ratio: 1; border: 1px solid rgba(255,196,0,.15); border-radius: 50%; background: repeating-radial-gradient(circle, transparent 0 74px, rgba(255,255,255,.045) 75px 76px), linear-gradient(90deg, transparent 49.8%, rgba(255,255,255,.06) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, rgba(255,255,255,.06) 50%, transparent 50.2%); overflow: hidden; }
.radar::after { content: ""; position: absolute; inset: -1px; border-radius: 50%; background: conic-gradient(from 0deg, transparent 0 78%, rgba(255,196,0,.25) 95%, var(--yellow) 100%); mask: radial-gradient(circle, transparent 0 2%, #000 2.3%); animation: radar 4s linear infinite; }
@keyframes radar { to { transform: rotate(360deg); } }
.radar span, .radar i, .radar b { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 18px var(--yellow); z-index: 2; }
.radar span { left: 25%; top: 34%; }
.radar i { right: 28%; top: 44%; }
.radar b { left: 54%; bottom: 22%; }
.guarantee-logo { position: relative; z-index: 3; width: 47%; filter: drop-shadow(0 28px 52px rgba(0,0,0,.55)); }
.guarantee-copy h2 { margin-bottom: 48px; }
.guarantee-list article { display: grid; grid-template-columns: 50px 1fr; gap: 16px; padding: 25px 0; border-top: 1px solid var(--line); }
.guarantee-list article:last-child { border-bottom: 1px solid var(--line); }
.guarantee-list span { color: var(--yellow); font-size: 11px; font-weight: 900; }
.guarantee-list h3 { margin: 0 0 8px; font-size: 22px; }
.guarantee-list p { margin: 0; color: #9a9a94; line-height: 1.55; }

.faq { background: #f3f3ef; }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-head { position: sticky; top: 130px; align-self: start; }
.faq-head p { max-width: 330px; color: #696963; line-height: 1.6; }
.accordion details { border-top: 1px solid rgba(0,0,0,.14); }
.accordion details:last-child { border-bottom: 1px solid rgba(0,0,0,.14); }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 28px 0; cursor: pointer; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; width: 40px; height: 40px; border: 1px solid rgba(0,0,0,.2); border-radius: 50%; position: relative; }
.accordion summary span::before, .accordion summary span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: var(--black); transform: translate(-50%,-50%); transition: transform .25s ease; }
.accordion summary span::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion details[open] summary span::after { transform: translate(-50%,-50%) rotate(0); }
.accordion details p { max-width: 720px; margin: -4px 70px 28px 0; color: #64645f; line-height: 1.7; }

.request { overflow: hidden; }
.request::before { content: ""; position: absolute; right: -240px; bottom: -340px; width: 780px; height: 780px; border: 1px solid rgba(0,0,0,.1); border-radius: 50%; box-shadow: 0 0 0 75px rgba(0,0,0,.025), 0 0 0 150px rgba(0,0,0,.018); }
.request-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; position: relative; z-index: 2; }
.request-copy p { max-width: 500px; margin: 28px 0 0; color: rgba(0,0,0,.66); font-size: 17px; line-height: 1.65; }
.request-contacts { display: grid; gap: 2px; margin-top: 46px; }
.request-contacts a { display: grid; gap: 4px; width: fit-content; padding: 11px 0; }
.request-contacts small { color: rgba(0,0,0,.52); font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.request-contacts strong { font-size: 19px; }
.request-form { padding: 34px; border-radius: 28px; background: var(--black); color: var(--white); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.request-form .field { margin-bottom: 15px; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 2px 0 18px; color: #797974; font-size: 11px; line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--yellow); }
.consent a { color: #b8b8b3; text-decoration: underline; text-underline-offset: 2px; }
.submit-button { width: 100%; background: var(--yellow); color: var(--black); }
.submit-loader { display: none; width: 18px; height: 18px; border: 2px solid rgba(0,0,0,.3); border-top-color: var(--black); border-radius: 50%; animation: spin .7s linear infinite; }
.submit-button.is-loading .submit-loader { display: block; }
.submit-button.is-loading .submit-label, .submit-button.is-loading svg { display: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-status { min-height: 20px; margin-top: 12px; font-size: 12px; text-align: center; }
.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }

.contacts { padding-top: 100px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; padding-bottom: 80px; }
.contact-brand { display: flex; align-items: center; gap: 34px; }
.contact-brand img { width: 115px; height: auto; filter: drop-shadow(0 18px 35px rgba(0,0,0,.5)); }
.contact-brand span { color: var(--yellow); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .16em; }
.contact-brand h2 { font-size: clamp(38px, 4.2vw, 64px); }
.contact-links { display: grid; align-content: center; }
.contact-links a { display: grid; grid-template-columns: 1fr auto; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-links a:last-child { border-bottom: 1px solid var(--line); }
.contact-links small { grid-column: 1; color: #74746f; font-size: 9px; text-transform: uppercase; letter-spacing: .14em; }
.contact-links strong { grid-column: 1; margin-top: 5px; font-size: clamp(18px, 2vw, 25px); }
.contact-links span { grid-column: 2; grid-row: 1 / 3; font-size: 24px; transition: transform .2s ease; }
.contact-links a:hover span { transform: translate(4px,-4px); color: var(--yellow); }
.footer-line { border-top: 1px solid var(--line); color: #666661; font-size: 11px; }
.footer-line .container { min-height: 80px; display: flex; align-items: center; gap: 28px; }
.footer-line p { margin: 0 auto 0 0; }
.footer-line a:hover { color: var(--white); }
.to-top { margin-left: 10px; }

.mobile-contact-bar { display: none; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s cubic-bezier(.2,.65,.2,1), transform .8s cubic-bezier(.2,.65,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.tilt-card { will-change: transform; }

@media (max-width: 1100px) {
  :root { --container: min(100% - 36px, 1060px); }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; }
  .header-phone { display: none; }
  .hero-layout { grid-template-columns: 1fr .8fr; }
  .hero h1 { font-size: clamp(54px, 7.8vw, 84px); }
  .hero-visual { min-height: 520px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card-large { min-height: 818px; }
  .service-card-wide { grid-column: auto; }
  .approach-layout, .request-layout { gap: 70px; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .calculator-shell { gap: 40px; padding: 44px; }
  .guarantee-layout { gap: 50px; }
  .faq-layout { gap: 60px; }
}

@media (max-width: 820px) {
  :root { --header-h: 76px; --container: min(100% - 30px, 760px); }
  .section { padding: 92px 0; }
  .brand { min-width: auto; }
  .brand img { width: 40px; height: 45px; }
  .brand-copy small { display: none; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 60px); }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { position: relative; z-index: 5; }
  .hero h1 { font-size: clamp(50px, 13vw, 82px); }
  .hero-lead { max-width: 580px; }
  .hero-visual.hero-visual-mobile { display: grid; min-height: 380px; margin: 22px 0 8px; }
  .hero-layout > .hero-visual.hero-visual-desktop { display: none; }
  .logo-stage { width: min(78vw, 500px); }
  .card-status { left: 5%; }
  .card-response { right: 5%; }
  .scroll-cue { display: none; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head > p { max-width: 620px; }
  .approach-layout, .calculator-shell, .guarantee-layout, .faq-layout, .request-layout, .contacts-grid { grid-template-columns: 1fr; }
  .approach-layout { gap: 50px; }
  .approach-copy, .faq-head { position: static; }
  .calculator-shell { padding: 38px 26px; }
  .calc-pulse { display: none; }
  .guarantee-visual { min-height: 500px; }
  .faq-layout { gap: 38px; }
  .request-layout { gap: 46px; }
  .contacts-grid { gap: 50px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); --radius: 20px; }
  body { padding-bottom: 0; }
  .section { padding: 78px 0; }
  .site-header { height: 70px; }
  .header-inner { gap: 12px; }
  .brand-copy strong { font-size: 14px; }
  .menu-toggle { width: 44px; height: 44px; }
  .mobile-menu { inset: 70px 0 0; }
  .hero { padding: 120px 0 48px; }
  .hero::before { background-size: auto, 44px 44px, 44px 44px; }
  .eyebrow { font-size: 10px; margin-bottom: 18px; }
  .hero h1 { font-size: clamp(45px, 14.5vw, 66px); line-height: .96; }
  .hero-visual.hero-visual-mobile { min-height: 300px; margin: 18px 0 2px; }
  .hero-visual.hero-visual-mobile .logo-stage { width: min(74vw, 320px); }
  .hero-visual.hero-visual-mobile .visual-halo { width: 82%; }
  .hero-lead { margin-top: 12px; font-size: 16px; }
  .hero-cta { display: grid; margin-top: 28px; }
  .button { min-height: 54px; padding-inline: 20px; }
  .hero-trust { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .hero-visual { min-height: 420px; margin-top: -5px; }
  .logo-stage { width: min(88vw, 390px); }
  .floating-card { padding: 11px 12px; }
  .card-status { left: 0; top: 21%; }
  .card-response { right: 0; bottom: 15%; }
  .floating-card strong { font-size: 10px; }
  .orbit-one { width: 560px; height: 560px; }
  .orbit-two { width: 720px; height: 720px; }
  .marquee { padding: 15px 0; }
  .section-head { margin-bottom: 38px; }
  .section-head h2, .approach h2, .calculator h2, .guarantee-copy h2, .faq-head h2, .request h2 { font-size: clamp(39px, 12vw, 56px); }
  .section-head > p { font-size: 15px; }
  .services-grid, .price-cards { grid-template-columns: 1fr; }
  .service-card, .service-card-large, .service-card-wide { min-height: 390px; grid-row: auto; grid-column: auto; padding: 22px; }
  .service-card-large { min-height: 520px; }
  .service-card-large .service-icon { margin-top: 70px; }
  .service-icon { margin-top: 34px; }
  .service-content h3 { font-size: 25px; }
  .service-card-large .service-content h3 { font-size: 34px; }
  .approach::before { display: none; }
  .step-item { grid-template-columns: 44px 1fr; gap: 12px; padding: 28px 0; }
  .step-item i { display: none; }
  .step-item h3 { font-size: 23px; }
  .price-tabs { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .price-tab { padding: 0 10px; font-size: 11px; }
  .price-card { min-height: 360px; padding: 23px; }
  .calculator-shell { padding: 28px 16px 16px; border-radius: 24px; }
  .calc-form { padding: 20px 16px; }
  .calc-physical-fields { grid-template-columns: 1fr; }
  .calc-physical-fields .field:first-child { grid-column: auto; }
  .guarantee-visual { min-height: 380px; }
  .guarantee-logo { width: 48%; }
  .accordion summary { font-size: 18px; }
  .accordion details p { margin-right: 0; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .request-form { padding: 22px 16px; border-radius: 22px; }
  .contact-brand { align-items: flex-start; gap: 18px; }
  .contact-brand img { width: 78px; }
  .contact-brand h2 { font-size: 36px; }
  .contact-links strong { font-size: 17px; word-break: break-word; }
  .footer-line .container { align-items: flex-start; flex-direction: column; gap: 10px; padding: 24px 0; }
  .footer-line p { margin: 0; }
  .to-top { margin-left: 0; }
  .mobile-contact-bar { position: fixed; z-index: 190; left: 8px; right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); display: grid; grid-template-columns: 1fr 1fr; min-height: 58px; padding: 5px; border: 1px solid rgba(255,255,255,.13); border-radius: 18px; background: rgba(8,8,8,.88); backdrop-filter: blur(18px); box-shadow: 0 18px 50px rgba(0,0,0,.45); color: var(--white); }
  .mobile-contact-bar a { display: flex; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; font-size: 12px; font-weight: 850; }
  .mobile-contact-bar a:last-child { background: var(--yellow); color: var(--black); }
  .mobile-contact-bar svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
}

@media (hover: hover) and (pointer: fine) {
  .cursor-glow { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none; }
  .cursor-glow { display: none; }
}


/* 2026-07 revision: mobile stability, photo-backed services and embedded lead modal */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  touch-action: pan-y pinch-zoom;
}
main, section, header, .site-header, .mobile-menu { max-width: 100%; }
body.modal-open { overflow: hidden; }

.action-arrow {
  display: inline-grid !important;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: currentColor;
  line-height: 1;
}
.action-arrow svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-card > a .action-arrow,
.price-card button .action-arrow,
.text-link .action-arrow,
.contact-links .action-arrow { font-size: 0; }
.contact-links .action-arrow { grid-column: 2; grid-row: 1 / 3; }

.service-photo {
  color: var(--white);
  background-color: #101010;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-color: rgba(255,255,255,.13);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}
.service-photo::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(5,5,5,.26) 0%, rgba(5,5,5,.48) 42%, rgba(5,5,5,.94) 100%);
  opacity: 1;
  transform: none;
}
.service-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 85% 5%, rgba(255,196,0,.30), transparent 34%);
  pointer-events: none;
}
.service-photo:hover::before { transform: none; opacity: 1; }
.service-photo .service-index,
.service-photo .service-icon,
.service-photo .service-content,
.service-photo > a { position: relative; z-index: 2; }
.service-photo .service-content p { color: rgba(255,255,255,.72); }
.service-photo > a { border-color: rgba(255,255,255,.18); }
.service-photo-physical { background-image: url("../img/services/physical.webp"); background-position: 55% center; }
.service-photo-remote { background-image: url("../img/services/remote.webp"); background-position: 52% center; }
.service-photo-escort { background-image: url("../img/services/escort.webp"); background-position: 54% center; }
.service-photo-event { background-image: url("../img/services/event.webp"); background-position: center 52%; }
.service-photo-armed { background-image: url("../img/services/armed.webp"); background-position: center 46%; }

.service-icon { display: none !important; }
.service-card-large .service-icon { display: none !important; }

.logo-stage picture,
.guarantee-logo picture { display: block; width: 100%; }
.logo-stage img,
.guarantee-logo img,
.guarantee-emblem { width: 100%; height: auto !important; object-fit: contain; aspect-ratio: auto; }
.guarantee-logo { width: min(54%, 360px); }

.lead-modal {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}
.lead-modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0,0,0,.76);
  backdrop-filter: blur(16px);
  cursor: default;
}
.lead-modal-panel {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  max-height: min(880px, calc(100svh - 32px));
  overflow-y: auto;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 30px;
  color: var(--white);
  background: radial-gradient(circle at 100% 0, rgba(255,196,0,.15), transparent 34%), #0b0b0b;
  box-shadow: 0 38px 120px rgba(0,0,0,.62);
  transform: translateY(22px) scale(.98);
  transition: transform .32s cubic-bezier(.2,.75,.2,1);
  scrollbar-width: thin;
}
.lead-modal.is-open .lead-modal-panel { transform: translateY(0) scale(1); }
.lead-modal-close {
  position: absolute;
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.lead-modal-close span { position: absolute; left: 13px; right: 13px; top: 21px; height: 1px; background: #fff; transform: rotate(45deg); }
.lead-modal-close span:last-child { transform: rotate(-45deg); }
.lead-modal-head { padding-right: 58px; }
.lead-modal-head h2 { margin: 12px 0 0; max-width: 620px; font-size: clamp(38px, 6vw, 66px); line-height: .98; letter-spacing: -.055em; }
.lead-modal-head p { max-width: 600px; margin: 20px 0 0; color: #aaa9a4; font-size: 16px; line-height: 1.6; }
.modal-form { margin-top: 28px; padding: 26px; box-shadow: none; background: #121212; }
.modal-form .field { margin-bottom: 14px; }
.modal-consent { margin: 0 0 16px; color: #777772; font-size: 11px; line-height: 1.5; }
.modal-consent a { color: #bdbdb7; text-decoration: underline; text-underline-offset: 2px; }
.lead-modal-phone { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 18px; padding: 17px 2px 2px; border-top: 1px solid var(--line); }
.lead-modal-phone span { color: #777772; font-size: 10px; text-transform: uppercase; letter-spacing: .13em; }
.lead-modal-phone strong { color: var(--yellow); font-size: 18px; }

@supports not (overflow: clip) {
  html, body { overflow-x: hidden; }
}

@media (max-width: 620px) {
  html, body { position: relative; width: 100%; overflow-x: clip; }
  .tilt-card { transform: none !important; will-change: auto; }
  .service-card > a,
  .price-card button,
  .text-link,
  .contact-links a { -webkit-tap-highlight-color: transparent; }
  .service-photo { background-position: center; }
  .service-photo-physical { background-position: 54% center; }
  .service-photo-escort { background-position: 57% center; }
  .service-photo-event { background-position: center 50%; }
  .guarantee-logo { width: min(72vw, 350px); }
  .guarantee-visual { min-height: 440px; }
  .lead-modal { padding: 8px; place-items: end center; }
  .lead-modal-panel {
    width: 100%;
    max-height: calc(100svh - 8px);
    padding: 26px 16px calc(22px + env(safe-area-inset-bottom));
    border-radius: 24px 24px 0 0;
    transform: translateY(30px);
  }
  .lead-modal-head { padding-right: 46px; }
  .lead-modal-head h2 { font-size: clamp(36px, 11vw, 50px); }
  .lead-modal-head p { font-size: 14px; }
  .lead-modal-close { top: 14px; right: 14px; width: 42px; height: 42px; }
  .modal-form { padding: 18px 14px; border-radius: 20px; }
  .lead-modal-phone { flex-direction: column; align-items: flex-start; gap: 5px; }
}

/* Prevent decorative layers from expanding the swipeable canvas. */
.hero { overflow: clip; contain: paint; }
@supports not (overflow: clip) { .hero { overflow: hidden; } }
@media (max-width: 620px) {
  .hero-orbit,
  .cursor-glow { display: none !important; }
  .mobile-contact-bar { display: none !important; }
  .service-photo-armed {
    background-position: 78% center !important;
    background-size: cover;
  }
}

.to-top { display: inline-flex; align-items: center; gap: 6px; }

.service-card .service-content { max-width: 100%; }
