:root {
  color-scheme: dark;
  --bg: #0f172a;
  --bg-deep: #0b1120;
  --card: rgba(30, 41, 59, 0.88);
  --card-border: rgba(148, 163, 184, 0.16);
  --text: #f8fafc;
  --muted: #94a3b8;
  --primary: #2563eb;
  --primary-light: #38bdf8;
  --secondary: #10b981;
  --purple: #8b5cf6;
  --gold: #eab308;
  --pink: #ec4899;
  --header-height: 80px;
  --container: 1216px;
  --radius: 15px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; position: relative; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 1000; padding: 10px 16px; border-radius: 8px; background: var(--text); color: var(--bg); transition: top .2s; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
}
.site-header.scrolled, .site-header.menu-active { background: rgba(11, 17, 32, .9); border-bottom-color: rgba(148, 163, 184, .12); backdrop-filter: blur(18px); }
.nav-wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 24px; font-weight: 800; letter-spacing: -.5px; white-space: nowrap; }
.brand img { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35); object-fit: cover; }
.brand-accent { color: #22d3ee; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 500; }
.desktop-nav > a:not(.nav-contact) { color: #d6deeb; position: relative; transition: color .2s; }
.desktop-nav > a:not(.nav-contact)::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -9px; height: 2px; background: var(--primary-light); transition: left .2s, right .2s; }
.desktop-nav > a:hover, .desktop-nav > a:focus-visible { color: white; }
.desktop-nav > a:hover::after, .desktop-nav > a:focus-visible::after { left: 0; right: 0; }
.nav-contact { display: inline-flex; align-items: center; gap: 7px; padding: 8px 17px; border-radius: 999px; color: white; background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 8px 24px rgba(37,99,235,.28); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 9px; background: transparent; color: white; cursor: pointer; font-size: 20px; }
.mobile-menu { position: absolute; top: calc(var(--header-height) - 1px); left: 16px; right: 16px; padding: 12px; border: 1px solid rgba(148,163,184,.14); border-radius: 0 0 14px 14px; background: rgba(15,23,42,.96); box-shadow: 0 24px 45px rgba(0,0,0,.34); backdrop-filter: blur(20px); }
.mobile-menu a { display: flex; align-items: center; min-height: 45px; padding: 0 14px; border-radius: 8px; color: #dbe4f0; }
.mobile-menu a:hover { background: rgba(255,255,255,.06); color: white; }
.mobile-menu .mobile-contact { justify-content: center; gap: 8px; margin-top: 7px; color: white; background: var(--primary); }

.hero { position: relative; isolation: isolate; min-height: 100vh; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: #071224; }
.hero-background, .section-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -3; }
.hero-background { object-position: center 44%; }
.hero-overlay { position: absolute; inset: 0; z-index: -2; background: linear-gradient(90deg, rgba(7,17,36,.95) 0%, rgba(8,20,40,.75) 48%, rgba(8,20,40,.5) 100%), linear-gradient(180deg, rgba(5,13,29,.18), #0f172a 98%); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .035; background-image: url("../img/cubes.png"); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr); align-items: center; gap: 40px; padding-top: 35px; }
.hero-copy { max-width: 680px; }
.eyebrow-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 7px 14px; border: 1px solid rgba(59,130,246,.35); border-radius: 999px; color: #93c5fd; background: rgba(30,64,175,.18); font-size: 13px; font-weight: 600; letter-spacing: .04em; }
.hero h1 { margin: 0 0 20px; font-size: clamp(50px, 4.5vw, 68px); line-height: 1.06; letter-spacing: -2.7px; text-shadow: 0 7px 30px rgba(0,0,0,.3); }
.hero h1 .title-accent { color: transparent; background: linear-gradient(90deg, #38bdf8, #14b8a6); background-clip: text; -webkit-background-clip: text; }
.mobile-amp { display: none; }
.hero-copy > p { max-width: 650px; margin: 0 0 28px; color: #cbd5e1; font-size: 17px; line-height: 1.85; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 49px; padding: 0 25px; border: 1px solid transparent; border-radius: 999px; font-weight: 700; line-height: 1.2; transition: transform .2s, border-color .2s, background .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: white; background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 12px 30px rgba(37,99,235,.35); }
.button-primary:hover { box-shadow: 0 15px 38px rgba(37,99,235,.5); }
.button-ghost { color: #e2e8f0; border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
.button-ghost:hover { border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.1); }
.trust-list { display: flex; flex-wrap: wrap; gap: 26px; margin: 0; padding: 0; color: #94a3b8; font-size: 13px; list-style: none; }
.trust-list li { display: flex; align-items: center; gap: 7px; }
.trust-list i { color: #22c55e; }
.campaign-panel { position: relative; padding: 23px 25px 0; border: 1px solid rgba(148,163,184,.16); border-radius: 18px; background: linear-gradient(135deg, rgba(51,65,85,.72), rgba(15,23,42,.78)); box-shadow: 0 26px 70px rgba(0,0,0,.35), 0 0 70px rgba(16,185,129,.12); backdrop-filter: blur(14px); animation: panel-float 5s ease-in-out infinite; }
.campaign-panel::before { content: ""; position: absolute; left: -30px; bottom: -25px; width: 150px; height: 120px; border-radius: 50%; background: rgba(16,185,129,.25); filter: blur(38px); z-index: -1; }
.panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; color: #a7b3c5; font-size: 11px; }
.panel-dots { display: flex; gap: 7px; }.panel-dots span { width: 10px; height: 10px; border-radius: 50%; background: #f43f5e; }.panel-dots span:nth-child(2){background:#facc15}.panel-dots span:nth-child(3){background:#22c55e}
.panel-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.panel-stats > div { display: flex; flex-direction: column; min-height: 115px; padding: 19px; border-radius: 9px; background: rgba(15,23,42,.3); }
.panel-stats small { color: #94a3b8; font-size: 11px; }.panel-stats strong { margin: 4px 0; font-size: 25px; line-height: 1.2; }.panel-stats em { color: #22c55e; font-size: 11px; font-style: normal; }
.panel-platforms { display: grid; grid-template-columns: repeat(4,1fr); margin: 21px -25px 0; border-top: 1px solid rgba(148,163,184,.08); }
.panel-platforms span { display: grid; height: 76px; place-items: center; color: #cbd5e1; font-size: 22px; }
.scroll-hint { position: absolute; left: 50%; bottom: 30px; display: grid; width: 42px; height: 42px; place-items: center; color: #94a3b8; transform: translateX(-50%); animation: scroll-bounce 2s infinite; }
.meteor { position: absolute; z-index: -1; width: 160px; height: 1px; opacity: 0; background: linear-gradient(90deg, transparent, #e0f2fe); transform: rotate(45deg); filter: drop-shadow(0 0 5px #e0f2fe); animation: meteor 6s linear infinite; }
.meteor::after { content:""; position:absolute; right:0; top:-2px; width:5px; height:5px; border-radius:50%; background:white; box-shadow:0 0 9px 2px white; }
.meteor-one { top: 6%; left: 50%; }.meteor-two { top: 13%; left: 79%; animation-delay: 2.1s; }.meteor-three { top: 26%; left: 64%; animation-delay: 4.2s; }

.section { position: relative; isolation: isolate; padding: 96px 0; }
.section-heading { max-width: 820px; margin: 0 auto 58px; text-align: center; }
.section-heading > span, .section-kicker { display: block; margin-bottom: 5px; color: #38bdf8; font-size: 12px; font-weight: 800; letter-spacing: .13em; }
.section-heading h2, .advantage-copy h2 { margin: 0; font-size: clamp(30px, 3vw, 40px); line-height: 1.25; letter-spacing: -.8px; }
.section-heading p { margin: 14px auto 0; max-width: 790px; color: #aebbd0; }
.heading-line { width: 88px; height: 3px; margin: 18px auto 0; border-radius: 99px; background: linear-gradient(90deg, #8b5cf6, #22d3ee); }
.glass-card { border: 1px solid var(--card-border); border-radius: var(--radius); background: linear-gradient(145deg, rgba(30,41,59,.92), rgba(30,41,59,.72)); box-shadow: 0 15px 35px rgba(0,0,0,.12); transition: transform .3s, border-color .3s, box-shadow .3s; }
.glass-card:hover { transform: translateY(-6px); border-color: rgba(59,130,246,.35); box-shadow: 0 22px 45px rgba(0,0,0,.22); }
.services { min-height: 602px; background: #0f172a; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { min-height: 245px; padding: 32px; }
.icon-orb { display: grid; width: 48px; height: 48px; place-items: center; border-radius: 50%; font-size: 19px; flex: 0 0 auto; }
.icon-orb.blue { color: #60a5fa; background: rgba(37,99,235,.2); }.icon-orb.green { color: #34d399; background: rgba(16,185,129,.2); }.icon-orb.purple { color: #c084fc; background: rgba(126,34,206,.2); }.icon-orb.gold { color: #facc15; background: rgba(234,179,8,.2); }.icon-orb.pink { color: #f472b6; background: rgba(236,72,153,.2); }
.service-card h3, .solution-card h3 { margin: 22px 0 10px; font-size: 20px; }
.service-card p, .solution-card p { margin: 0; color: #94a3b8; font-size: 14px; line-height: 1.75; }

.platforms { min-height: 900px; overflow: hidden; }
.section-shade { position:absolute; inset:0; z-index:-2; background: rgba(15,23,42,.9); }
.platforms .section-shade { background: linear-gradient(rgba(15,23,42,.92), rgba(15,23,42,.94)); }
.platform-content { z-index: 1; }
.platforms .section-heading { margin-bottom: 45px; }
.platforms .section-heading > span { color: #34d399; }
.platform-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.platform-card { position: relative; min-height: 220px; padding: 27px; overflow: hidden; }
.platform-title { display: flex; align-items: center; gap: 15px; }
.platform-title img, .platform-logo { width: 47px; height: 47px; border-radius: 10px; object-fit: cover; flex: 0 0 auto; }
.platform-logo { display: grid; place-items: center; font-size: 24px; }
.platform-logo.meta { color: #60a5fa; background: rgba(37,99,235,.2); }.platform-logo.bing { color: #38bdf8; background: rgba(14,165,233,.18); }.platform-logo.special { color:#facc15;background:rgba(234,179,8,.18); }
.platform-title h3 { margin: 0; font-size: 20px; line-height: 1.25; }.platform-title span { display:block; margin-top:2px; color:#38bdf8; font-size:12px; font-weight:600; }
.platform-card ul { display:grid; gap:8px; margin: 22px 0 0; padding:0; list-style:none; color:#a9b6c9; font-size:13px; }
.platform-card li { position:relative; padding-left:20px; }.platform-card li::before { content:"✓"; position:absolute; left:0; color:#34d399; font-weight:800; }
.platform-card.featured::after { content:""; position:absolute; top:-36px; right:-36px; width:100px; height:100px; border-radius:50%; background:rgba(234,179,8,.16); }
.platform-card.featured .platform-title span { color:#facc15; }

.solutions { min-height: 674px; display:flex; align-items:center; background:#0f172a; }
.solutions .section-heading > span { color:#a78bfa; }
.solution-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.solution-card { min-height: 250px; padding: 31px 28px; }
.solution-card h3 { margin-top:22px; }

.advantages { min-height: 592px; display:flex; align-items:center; overflow:hidden; }
.advantages .section-background { object-position:center 57%; filter:saturate(.65); }
.advantages .section-shade { background: linear-gradient(90deg, rgba(15,31,54,.9), rgba(15,31,54,.7)); }
.advantage-grid { display:grid; grid-template-columns:1.08fr .92fr; align-items:center; gap:70px; }
.section-kicker { color:#34d399; }
.advantage-copy h2 { font-size:39px; }
.advantage-intro { max-width:650px; margin:16px 0 30px; color:#c0cad8; }
.advantage-list { display:grid; gap:20px; }
.advantage-list article { display:flex; align-items:flex-start; gap:17px; }
.advantage-list .icon-orb { width:43px; height:43px; font-size:16px; }
.advantage-list h3 { margin:0 0 3px; font-size:17px; }.advantage-list p { margin:0; color:#98a6ba; font-size:13px; }
.stat-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.stat-card { position:relative; display:flex; min-height:135px; flex-direction:column; align-items:center; justify-content:center; overflow:hidden; border:1px solid rgba(148,163,184,.15); border-radius:14px; background:rgba(51,65,85,.76); box-shadow:0 16px 40px rgba(0,0,0,.16); }
.stat-card::before { content:""; position:absolute; inset:0 0 auto; height:4px; background:#3b82f6; }.stat-card.green::before{background:#10b981}.stat-card.purple::before{background:#8b5cf6}.stat-card.gold::before{background:#eab308}
.stat-card strong { font-size:42px; line-height:1.1; }.stat-card span { margin-top:7px; color:#aab6c7; font-size:13px; }

.cta-section { position:relative; min-height:436px; display:flex; align-items:center; overflow:hidden; background:#0b1120; text-align:center; }
.cta-section::before { content:""; position:absolute; inset:0; opacity:.07; background-image:url("../img/cubes.png"); }
.cta-glow { position:absolute; left:50%; top:52%; width:560px; height:240px; border-radius:50%; background:rgba(37,99,235,.17); filter:blur(80px); transform:translate(-50%,-50%); }
.cta-content { max-width:900px; }
.cta-content h2 { margin:0; font-size:clamp(34px,4vw,48px); line-height:1.2; }
.cta-content > p { max-width:810px; margin:18px auto 30px; color:#b7c2d2; font-size:17px; }
.cta-button { min-height:54px; padding-inline:30px; }
.cta-content small { display:block; margin-top:13px; color:#64748b; }

.site-footer { min-height:370px; padding:66px 0 28px; background:#070d1b; color:#94a3b8; }
.footer-grid { display:grid; grid-template-columns:1.75fr .65fr .75fr; gap:100px; min-height:215px; }
.footer-about .brand { color:white; }.footer-about p { max-width:500px; margin:23px 0 0; font-size:13px; }
.footer-links { display:flex; flex-direction:column; align-items:flex-start; gap:8px; }.footer-links h2,.footer-contact h2 { margin:6px 0 17px; color:white; font-size:15px; }.footer-links a { font-size:13px; transition:color .2s; }.footer-links a:hover { color:#38bdf8; }
.footer-contact a { display:inline-flex; align-items:center; gap:10px; font-size:13px; }.contact-icon { display:grid; width:30px; height:30px; place-items:center; border-radius:50%; color:#60a5fa; background:rgba(37,99,235,.18); }
.copyright { padding-top:23px; border-top:1px solid rgba(148,163,184,.08); font-size:12px; }
.floating-actions { position:fixed; z-index:90; right:22px; top:50%; display:flex; flex-direction:column; align-items:center; gap:12px; transform:translateY(-50%); }
.floating-telegram, .back-to-top { display:grid; width:48px; height:48px; place-items:center; border:0; border-radius:50%; color:white; cursor:pointer; }
.floating-telegram { position:relative; font-size:23px; background:linear-gradient(135deg,#3b82f6,#2563eb); box-shadow:0 0 0 8px rgba(37,99,235,.14),0 10px 25px rgba(0,0,0,.3); animation: telegram-pulse 2.5s infinite; }
.floating-tooltip { position:absolute; right:60px; width:max-content; padding:6px 10px; border-radius:6px; color:white; background:#1e293b; font-size:12px; opacity:0; pointer-events:none; transform:translateX(5px); transition:opacity .2s,transform .2s; }.floating-telegram:hover .floating-tooltip,.floating-telegram:focus-visible .floating-tooltip{opacity:1;transform:none}
.back-to-top { font-size:15px; background:rgba(30,41,59,.86); box-shadow:0 6px 20px rgba(0,0,0,.24); transition:transform .2s,background .2s; }.back-to-top:hover { transform:translateY(-2px); background:#334155; }

.motion-ready .reveal { opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease; }
.motion-ready .reveal.is-visible { opacity:1; transform:none; }
.service-grid .reveal:nth-child(2),.platform-grid .reveal:nth-child(2),.solution-grid .reveal:nth-child(2){transition-delay:.08s}.service-grid .reveal:nth-child(3),.platform-grid .reveal:nth-child(3),.solution-grid .reveal:nth-child(3){transition-delay:.16s}.platform-grid .reveal:nth-child(5),.solution-grid .reveal:nth-child(4){transition-delay:.08s}.platform-grid .reveal:nth-child(6){transition-delay:.16s}

.error-page { display:grid; min-height:100vh; place-items:center; padding:24px; text-align:center; }.error-page main { max-width:520px; }.error-page img { width:72px; height:72px; margin:0 auto 24px; border-radius:50%; object-fit:cover; }.error-code { margin:0; color:#38bdf8; font-size:76px; font-weight:900; line-height:1; }.error-page h1 { margin:12px 0 8px; font-size:36px; }.error-page main > p:not(.error-code) { margin:0 0 28px; color:#94a3b8; }

@keyframes panel-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes scroll-bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,9px)} }
@keyframes meteor { 0%{opacity:0;transform:translate(-180px,-180px) rotate(45deg)} 8%{opacity:1} 22%{opacity:0;transform:translate(200px,200px) rotate(45deg)} 100%{opacity:0} }
@keyframes telegram-pulse { 0%,100%{box-shadow:0 0 0 8px rgba(37,99,235,.13),0 10px 25px rgba(0,0,0,.3)} 50%{box-shadow:0 0 0 13px rgba(37,99,235,.04),0 10px 25px rgba(0,0,0,.3)} }

@media (max-width: 1100px) {
  .desktop-nav { gap:20px; }.hero-grid { grid-template-columns:1fr 420px; gap:34px; }.hero h1 { font-size:54px; }.advantage-grid { gap:40px; }
}
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns:1fr; }.campaign-panel { display:none; }.hero-copy { max-width:760px; }.platform-grid { grid-template-columns:1fr 1fr; }.platforms { min-height:auto; }.solution-grid { grid-template-columns:1fr 1fr; }.advantages { padding-block:90px; }.advantage-grid { grid-template-columns:1fr; }.stat-grid { max-width:700px; width:100%; }.footer-grid { gap:50px; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hero { min-height:100vh; }
  .services { min-height:671px; }
  .platforms { min-height:1154px; }
  .solutions { min-height:911px; padding-block:88px; }
  .advantages { min-height:888px; }
  .cta-section { min-height:436px; }
  .site-footer { min-height:370px; }
}
@media (max-width: 767px) {
  :root { --header-height:80px; }
  .container { width:min(calc(100% - 32px),var(--container)); }
  .desktop-nav { display:none; }.menu-toggle { display:grid; width:48px; height:48px; place-items:center; font-size:27px; }.brand { font-size:27px; gap:10px; }.brand img { width:48px; height:48px; }
  .hero { min-height:659px; align-items:flex-start; }.hero-background { object-position:60% center; }.hero-overlay { background:linear-gradient(90deg,rgba(7,17,36,.96),rgba(8,20,40,.72)),linear-gradient(180deg,rgba(5,13,29,.1),#0f172a 99%); }
  .hero-grid { padding-top:108px; }.hero-copy { max-width:100%; }.eyebrow-pill { margin-bottom:22px; padding:6px 12px; font-size:12px; }.desktop-amp { display:none; }.desktop-title-break { display:none; }.mobile-amp { display:inline; }.hero h1 { margin-bottom:22px; font-size:52px; line-height:1.13; letter-spacing:-2.3px; }.hero-copy > p { max-width:620px; margin-bottom:36px; font-size:17px; line-height:1.72; }.hero-actions { gap:16px; margin-bottom:40px; }.button { min-height:56px; padding-inline:38px; font-size:14px; }.trust-list { gap:24px; font-size:13px; }.scroll-hint { display:none; }.meteor { width:100px; }
  .section { padding:96px 0; }.section-heading { margin-bottom:58px; }.section-heading > span,.section-kicker { font-size:11px; }.section-heading h2,.advantage-copy h2 { font-size:30px; }.section-heading p { font-size:14px; line-height:1.75; }.heading-line { width:76px; margin-top:18px; }
  .services { min-height:1179px; display:flex; align-items:center; }.service-grid,.platform-grid,.solution-grid { grid-template-columns:1fr; gap:24px; }.service-card { min-height:0; padding:32px; }.service-card h3,.solution-card h3 { font-size:20px; }.service-card p,.solution-card p { font-size:14px; }.icon-orb { width:48px; height:48px; font-size:19px; }
  .platforms { min-height:1936px; padding-block:96px; display:flex; align-items:center; }.platforms .section-heading { margin-bottom:50px; }.platform-card { min-height:0; padding:27px; }.platform-title img,.platform-logo { width:47px; height:47px; }.platform-title h3 { font-size:20px; }.platform-title span { font-size:12px; }.platform-card ul { margin-top:22px; font-size:13px; line-height:1.75; }
  .solutions { min-height:1450px; }.solution-card { min-height:0; padding:32px; }
  .advantages { min-height:970px; padding-block:96px; }.advantage-grid { gap:45px; }.advantage-copy h2 { font-size:30px; }.advantage-intro { margin:16px 0 30px; font-size:14px; }.advantage-list { gap:21px; }.advantage-list h3 { font-size:17px; }.advantage-list p { font-size:13px; line-height:1.7; }.advantage-list .icon-orb { width:43px; height:43px; }.stat-grid { gap:14px; }.stat-card { min-height:112px; }.stat-card strong { font-size:34px; }.stat-card span { font-size:11px; }
  .cta-section { min-height:488px; }.cta-content h2 { font-size:31px; }.cta-content > p { margin:18px auto 28px; font-size:14px; }.cta-button { min-height:52px; }.cta-content small { font-size:11px; }
  .site-footer { min-height:690px; padding-top:64px; }.footer-grid { grid-template-columns:1fr; gap:38px; min-height:0; }.footer-about p { font-size:13px; }.footer-links h2,.footer-contact h2 { margin-bottom:12px; }.copyright { margin-top:42px; padding-top:24px; line-height:1.7; }.floating-actions { right:16px; }.floating-telegram { width:56px; height:56px; }.back-to-top { width:48px; height:48px; }.floating-tooltip { display:none; }
}
@media (max-width: 410px) {
  .container { width:calc(100% - 32px); }.hero-actions .button { padding-inline:38px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { scroll-behavior:auto!important; animation-duration:.01ms!important; animation-iteration-count:1!important; transition-duration:.01ms!important; }
  .motion-ready .reveal { opacity:1; transform:none; }
}
