/* ===== MAGNIT SERVICE CENTER — SHARED STYLES ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #1DB954;
  --green-dark: #169C46;
  --green-light: #2EE06A;
  --dark: #0A0A0A;
  --dark-card: #111111;
  --dark-surface: #161616;
  --dark-border: #222222;
  --gray-text: #888888;
  --light-text: #CCCCCC;
  --white: #F5F5F5;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Onest', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E"); pointer-events: none; z-index: 9999; }
a { color: inherit; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }

/* BADGE */
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(29,185,84,0.1); border: 1px solid rgba(29,185,84,0.2); border-radius: 100px; font-size: 0.8rem; font-weight: 500; color: var(--green); letter-spacing: 0.03em; }
.badge::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.7)} }

/* TYPOGRAPHY */
.section-label { font-family: 'Unbounded', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.section-title { font-family: 'Unbounded', sans-serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-text); line-height: 1.6; max-width: 560px; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* HEADER */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.4s ease; }
.header.scrolled { background: rgba(10,10,10,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--dark-border); padding: 10px 0; }
.header .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 3px; text-decoration: none; }
.logo-text { font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 1.5rem; color: var(--white); letter-spacing: -0.02em; }
.logo-text span { color: var(--green); }
.logo-sub { font-size: 0.55rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-text); margin-top: -2px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.88rem; font-weight: 500; color: var(--light-text); text-decoration: none; transition: color 0.3s; position: relative; }
.nav a:hover { color: var(--white); }
.nav a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green); transition: width 0.3s; }
.nav a:hover::after { width: 100%; }
.header-phone { display: flex; align-items: center; gap: 10px; }
.header-phone a { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--white); text-decoration: none; transition: color 0.3s; }
.header-phone a:hover { color: var(--green); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* MOBILE MENU */
.mobile-menu { display: none; position: fixed; inset: 0; background: rgba(10,10,10,0.97); backdrop-filter: blur(30px); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 600; color: var(--white); text-decoration: none; transition: color 0.3s; }
.mobile-menu a:hover { color: var(--green); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; border-radius: var(--radius); font-family: 'Onest', sans-serif; font-size: 0.95rem; font-weight: 600; text-decoration: none; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.16,1,0.3,1); }
.btn-primary { background: var(--green); color: #000; }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(29,185,84,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid var(--dark-border); }
.btn-outline:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 700px; height: 700px; background: radial-gradient(circle,rgba(29,185,84,0.12) 0%,transparent 70%); border-radius: 50%; animation: hero-glow 8s ease-in-out infinite; }
@keyframes hero-glow { 0%,100%{transform:translate(0,0) scale(1);opacity:.6} 50%{transform:translate(-40px,30px) scale(1.1);opacity:1} }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 200px; background: linear-gradient(to top,var(--dark),transparent); }
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-title { font-family: 'Unbounded', sans-serif; font-size: clamp(2.2rem,5.5vw,4rem); font-weight: 800; line-height: 1.1; margin: 24px 0; }
.hero-title .highlight { background: linear-gradient(135deg,var(--green),var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 1.15rem; color: var(--light-text); line-height: 1.7; margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--dark-border); }
.hero-stat-num { font-family: 'Unbounded', sans-serif; font-size: 2rem; font-weight: 800; color: var(--green); }
.hero-stat-label { font-size: 0.85rem; color: var(--gray-text); margin-top: 4px; }

/* PAGE HERO (for subpages) */
.page-hero { padding: 140px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle,rgba(29,185,84,0.1) 0%,transparent 70%); border-radius: 50%; }
.page-hero-content { position: relative; z-index: 2; max-width: 720px; }
.page-hero h1 { font-family: 'Unbounded', sans-serif; font-size: clamp(1.8rem,4.5vw,3rem); font-weight: 800; line-height: 1.1; margin: 20px 0; }
.page-hero .highlight { background: linear-gradient(135deg,var(--green),var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-hero p { font-size: 1.1rem; color: var(--light-text); line-height: 1.7; max-width: 560px; margin-bottom: 32px; }

/* BREADCRUMBS */
.breadcrumbs { padding-top: 90px; padding-bottom: 0; }
.breadcrumbs-list { list-style: none; display: flex; gap: 8px; font-size: 0.78rem; color: var(--gray-text); flex-wrap: wrap; }
.breadcrumbs-list a { color: var(--gray-text); text-decoration: none; transition: color 0.3s; }
.breadcrumbs-list a:hover { color: var(--green); }
.breadcrumbs-list li::after { content: ' →'; margin-left: 8px; }
.breadcrumbs-list li:last-child::after { content: ''; }
.breadcrumbs-list li:last-child { color: var(--white); }

/* CARDS */
.service-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 32px; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); cursor: default; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: linear-gradient(90deg,var(--green),transparent); opacity: 0; transition: opacity 0.4s; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { border-color: rgba(29,185,84,0.3); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.service-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(29,185,84,0.1); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.service-card h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 600; margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--gray-text); line-height: 1.6; }
.service-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
.service-brands span { font-size: 0.72rem; padding: 3px 10px; background: rgba(255,255,255,0.05); border-radius: 100px; color: var(--gray-text); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 16px; margin-top: 48px; }

/* ADVANTAGES */
.advantages-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 48px; }
.adv-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 36px 28px; text-align: center; transition: all 0.4s; }
.adv-card:hover { border-color: rgba(29,185,84,0.3); transform: translateY(-4px); }
.adv-num { font-family: 'Unbounded', sans-serif; font-size: 2.4rem; font-weight: 800; background: linear-gradient(135deg,var(--green),var(--green-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 12px; }
.adv-title { font-family: 'Unbounded', sans-serif; font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; }
.adv-text { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; }

/* PRICING */
.pricing-section { background: var(--dark-surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 16px; margin-top: 48px; }
.price-card { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); overflow: hidden; transition: all 0.4s; }
.price-card:hover { border-color: rgba(29,185,84,0.3); transform: translateY(-4px); }
.price-card-header { padding: 28px; border-bottom: 1px solid var(--dark-border); display: flex; align-items: center; gap: 16px; }
.price-card-header .icon { font-size: 1.5rem; }
.price-card-header h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 600; }
.price-list { padding: 8px 0; }
.price-item { display: flex; justify-content: space-between; align-items: center; padding: 14px 28px; border-bottom: 1px solid rgba(255,255,255,0.03); }
.price-item:last-child { border-bottom: none; }
.price-item span:first-child { font-size: 0.9rem; color: var(--light-text); }
.price-item span:last-child { font-family: 'Unbounded', sans-serif; font-size: 0.85rem; font-weight: 600; color: var(--green); white-space: nowrap; }

/* BRANCHES */
.branches-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(340px,1fr)); gap: 16px; margin-top: 48px; }
.branch-card { display: flex; gap: 20px; padding: 28px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); transition: all 0.4s; }
.branch-card:hover { border-color: rgba(29,185,84,0.3); transform: translateY(-2px); }
.branch-marker { font-size: 1.5rem; flex-shrink: 0; }
.branch-info h4 { font-family: 'Unbounded', sans-serif; font-size: 0.9rem; font-weight: 600; margin-bottom: 6px; }
.branch-info p { font-size: 0.85rem; color: var(--gray-text); line-height: 1.5; margin-bottom: 8px; }
.branch-info .hours { font-size: 0.8rem; color: var(--green); }

/* REVIEWS */
.reviews-section { background: var(--dark-surface); overflow: hidden; }
.reviews-track { display: flex; gap: 16px; overflow-x: auto; padding: 16px 0 24px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-width: 340px; max-width: 340px; scroll-snap-align: start; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 28px; flex-shrink: 0; }
.review-stars { color: #FFD700; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.review-text { font-size: 0.9rem; color: var(--light-text); line-height: 1.7; margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(29,185,84,0.15); display: flex; align-items: center; justify-content: center; font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 0.9rem; color: var(--green); }
.review-name { font-size: 0.88rem; font-weight: 600; }
.review-source { font-size: 0.75rem; color: var(--gray-text); }

/* FAQ */
.faq-list { max-width: 800px; margin-top: 48px; }
.faq-item { border: 1px solid var(--dark-border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item:hover { border-color: rgba(29,185,84,0.3); }
.faq-question { width: 100%; padding: 24px 28px; background: var(--dark-card); border: none; color: var(--white); font-family: 'Onest', sans-serif; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: var(--dark-surface); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--green); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; background: var(--dark-card); }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 28px 24px; }
.faq-answer p { font-size: 0.92rem; color: var(--gray-text); line-height: 1.7; }

/* SEO TEXT */
.seo-content { max-width: 900px; }
.seo-content h2 { font-family: 'Unbounded', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }
.seo-content h3 { font-family: 'Unbounded', sans-serif; font-size: 1rem; font-weight: 600; margin: 28px 0 12px; color: var(--green); }
.seo-content p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }

/* CTA */
.cta-section { padding: 80px 0; }
.cta-box { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-lg); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle at center,rgba(29,185,84,0.08) 0%,transparent 50%); }
.cta-phone { font-family: 'Unbounded', sans-serif; font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800; color: var(--green); text-decoration: none; display: block; margin: 24px 0; position: relative; z-index: 2; transition: color 0.3s; }
.cta-phone:hover { color: var(--green-light); }

/* CONTACTS */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px; }
.form-info h3 { font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }
.form-info > p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 18px; }
.ci-icon { font-size: 1.2rem; margin-top: 2px; }
.contact-item a { color: var(--white); text-decoration: none; font-weight: 500; font-size: 0.92rem; transition: color 0.3s; }
.contact-item a:hover { color: var(--green); }
.contact-item span { font-size: 0.82rem; color: var(--gray-text); }
.form-wrap { background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius); padding: 36px; }
.form-wrap h3 { font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 24px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.82rem; color: var(--gray-text); margin-bottom: 6px; font-weight: 500; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 14px 16px; background: var(--dark-surface); border: 1px solid var(--dark-border); border-radius: var(--radius-sm); color: var(--white); font-family: 'Onest', sans-serif; font-size: 0.92rem; transition: border-color 0.3s; outline: none; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-field select { cursor: pointer; }
.btn-submit { width: 100%; padding: 16px; background: var(--green); color: #000; border: none; border-radius: var(--radius-sm); font-family: 'Onest', sans-serif; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-submit:hover { background: var(--green-light); }

/* FOOTER */
.footer { background: var(--dark-card); padding: 64px 0 30px; border-top: 1px solid var(--dark-border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-about p { font-size: 0.88rem; color: var(--gray-text); line-height: 1.7; margin-top: 16px; max-width: 320px; }
.footer h4 { font-family: 'Unbounded', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; margin-bottom: 20px; color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: var(--gray-text); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--green); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-socials a { width: 40px; height: 40px; border-radius: var(--radius-sm); background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: var(--gray-text); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; }
.footer-socials a:hover { background: var(--green); color: #000; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid var(--dark-border); }
.footer-bottom p { font-size: 0.8rem; color: var(--gray-text); }

/* FLOATING */
.float-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 10px; z-index: 100; }
.float-btn { width: 56px; height: 56px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all 0.3s; box-shadow: 0 8px 30px rgba(0,0,0,0.3); text-decoration: none; }
.float-btn.phone-float { background: var(--green); color: #000; }
.float-btn:hover { transform: scale(1.1); }

/* SERVICE PAGE SPECIFIC */
.service-detail { background: var(--dark-surface); }
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; }
.detail-list { list-style: none; }
.detail-list li { padding: 14px 0; border-bottom: 1px solid var(--dark-border); font-size: 0.95rem; color: var(--light-text); display: flex; align-items: center; gap: 12px; }
.detail-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.detail-text h3 { font-family: 'Unbounded', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; }
.detail-text p { font-size: 0.95rem; color: var(--gray-text); line-height: 1.8; margin-bottom: 16px; }

/* OTHER SERVICES LINKS */
.other-services { margin-top: 48px; }
.other-services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; margin-top: 24px; }
.other-service-link { display: block; padding: 20px; background: var(--dark-card); border: 1px solid var(--dark-border); border-radius: var(--radius-sm); text-decoration: none; color: var(--light-text); font-size: 0.9rem; font-weight: 500; transition: all 0.3s; text-align: center; }
.other-service-link:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.other-service-link .link-icon { font-size: 1.5rem; display: block; margin-bottom: 8px; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { display: none; }
  .header-phone { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .advantages-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .advantages-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 300px; max-width: 300px; }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
  .other-services-grid { grid-template-columns: 1fr; }
}

/* Telegram floating button */
.float-btn.tg-float { background: #2AABEE; color: #fff; animation: tg-pulse 2s ease-in-out infinite; }
.float-btn.tg-float svg { width: 28px; height: 28px; fill: #fff; }
.float-btn.tg-float:hover { animation: none; }
@keyframes tg-pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(42,171,238,.5), 0 8px 30px rgba(0,0,0,.3); } 50% { box-shadow: 0 0 0 12px rgba(42,171,238,0), 0 8px 30px rgba(0,0,0,.3); } }

/* === Expanded content sections === */
.process-steps{display:grid;gap:20px;margin-top:32px}
.step{display:flex;gap:20px;padding:24px;background:var(--dark-card);border:1px solid var(--dark-border);border-radius:var(--radius)}
.step-num{font-family:'Unbounded',sans-serif;font-size:1.8rem;font-weight:800;color:var(--green);opacity:.5;line-height:1;min-width:50px}
.step-body h4{font-family:'Unbounded',sans-serif;font-size:1rem;font-weight:700;color:var(--white);margin-bottom:8px}
.step-body p{color:var(--light-text);font-size:.9rem;line-height:1.6}
.symptoms-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-top:32px}
.symptom-card{padding:24px;background:var(--dark-card);border:1px solid var(--dark-border);border-radius:var(--radius);transition:border-color .3s}
.symptom-card:hover{border-color:var(--green)}
.symptom-icon{font-size:1.5rem;margin-bottom:12px}
.symptom-card h4{font-family:'Unbounded',sans-serif;font-size:.95rem;font-weight:700;color:var(--white);margin-bottom:8px}
.symptom-card p{color:var(--light-text);font-size:.85rem;line-height:1.6}
@media(max-width:768px){.step{flex-direction:column;gap:12px}.step-num{min-width:auto}}
