/* ============================================
   CULTS3DD — Minimalist White Design
   Inspired by Inflatable 3D Illustrations
   Clean, bold typography, lots of whitespace
   ============================================ */

/* --- Design Tokens --- */
:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAFA;
  --bg-section: #F5F5F7;

  --text-dark: #1A1A1A;
  --text-body: #444444;
  --text-muted: #666666;
  --text-light: #666666;

  --accent: #7C3AED;
  --accent-light: #A78BFA;
  --accent-bg: #F3EEFF;
  --success: #10B981;
  --danger: #EF4444;
  --telegram: #0077A8;

  --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container-max: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--text-dark); }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); }

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--text-dark);
  color: #fff;
}
.btn-primary:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
}
.btn-outline:hover {
  background: var(--text-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-telegram {
  background: var(--telegram);
  color: #fff !important;
}
.btn-telegram:hover {
  background: #006994;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(42,171,238,0.3);
  color: #fff !important;
}

.btn-telegram svg {
  color: #fff;
}

.btn-telegram * {
  color: #fff !important;
}

.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 20px 48px; font-size: 1.05rem; }

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 14px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0;
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--text-dark); }

.logo-3d {
  color: var(--text-dark);
}

.logo-3d::before {
  display: none;
}

.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d3d3d;
}
.nav-links a:hover { color: var(--text-dark); }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 140px 24px 100px;
  overflow: hidden;
  background-image: url('../images/75499.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.45);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--accent-bg);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #3d3d3d;
  max-width: 550px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hero-stat .stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: #4d4d4d;
  margin-top: 4px;
}

/* Floating 3D decorations */
.hero-decor {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.hero-decor img {
  animation: gentleFloat 8s ease-in-out infinite;
}

.decor-torus {
  top: 5%;
  left: 5%;
  width: 30vw;
  max-width: 350px;
}
.decor-torus img { animation-delay: 0s; }

.decor-flower {
  top: 3%;
  right: 5%;
  width: 32vw;
  max-width: 380px;
}
.decor-flower img { animation-delay: -3s; }

.decor-purple {
  bottom: 5%;
  left: 8%;
  width: 25vw;
  max-width: 300px;
}
.decor-purple img { animation-delay: -5s; }

.decor-sphere {
  bottom: 15%;
  right: 10%;
  width: 30vw;
  max-width: 350px;
}
.decor-sphere img { animation-delay: -2s; }

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}

/* --- Sections with alternating backgrounds --- */
.section-alt { background: var(--bg-section); }

/* --- Problem Section --- */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.timeline-item:hover {
  background: var(--bg-section);
  border-color: rgba(0,0,0,0.04);
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  min-width: 56px;
}

.timeline-text { color: var(--text-body); font-size: 0.95rem; }

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alert-card {
  padding: 24px;
  background: #FFF5F5;
  border: 1px solid #FED7D7;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.alert-card svg { width: 24px; height: 24px; color: #FC8181; flex-shrink: 0; margin-top: 2px; }
.alert-card h4 { color: #C53030; margin-bottom: 6px; font-size: 1rem; }
.alert-card p { font-size: 0.9rem; color: var(--text-muted); }

.solution-card {
  padding: 24px;
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.solution-card svg { width: 24px; height: 24px; color: #4ADE80; flex-shrink: 0; margin-top: 2px; }
.solution-card h4 { color: #16A34A; margin-bottom: 6px; font-size: 1rem; }
.solution-card p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Methods Section --- */
.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.method-card {
  padding: 28px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  background: var(--bg);
}
.method-card:hover {
  border-color: rgba(0,0,0,0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.method-card.recommended {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
}

.method-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.method-icon svg { width: 22px; height: 22px; color: var(--accent); }

.method-card h3 { margin-bottom: 8px; }
.method-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 14px; }

.method-pros { display: flex; flex-direction: column; gap: 5px; }
.method-pro { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--success); }
.method-con { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-light); }

/* --- Service Section --- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  background: var(--bg);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.service-card .card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--accent-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card .card-icon svg { width: 28px; height: 28px; color: var(--accent); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* Remove glass-card hover defaults for this design */
.glass-card {
  background: var(--bg);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  backdrop-filter: none;
}
.glass-card:hover {
  border-color: rgba(0,0,0,0.1);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

/* --- Steps Section --- */
.steps-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-line {
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--telegram));
  opacity: 0.2;
}

.step-item {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}

.step-number {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.step-content { padding-top: 14px; }
.step-content h3 { margin-bottom: 8px; }
.step-content p { color: var(--text-muted); font-size: 0.95rem; }
.step-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* --- Pricing Section --- */
.pricing-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 48px;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius);
  text-align: center;
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 20px 0;
}
.pricing-card .price .currency {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 400;
}

.pricing-card .price-note {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  text-align: left;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-body);
}
.pricing-feature svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

/* --- FAQ Section --- */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--text-dark);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }

.faq-question svg {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-light);
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding-bottom: 24px;
}

.faq-answer p { color: var(--text-muted); font-size: 0.95rem; }

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: var(--text-dark);
  color: #fff;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 36px; }
.cta-section .btn-telegram:hover { color: #fff; }

/* --- Blog Preview --- */
.blog-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.blog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-body { 
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 16px;
}

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

.blog-card h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.4; }
.blog-card h3 a { color: var(--text-dark); }
.blog-card h3 a:hover { color: var(--accent); }
.blog-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.blog-card .btn { margin-top: auto !important; }

/* --- Footer --- */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.footer-col a {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 5px 0;
}
.footer-col a:hover { color: var(--text-dark); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0,0,0,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p { font-size: 0.8rem; color: var(--text-light); }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }

/* --- Floating Telegram Button --- */
.float-telegram {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--telegram);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(42,171,238,0.35);
  z-index: 999;
  transition: all var(--transition);
  text-decoration: none;
}
.float-telegram:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 30px rgba(42,171,238,0.5);
}
.float-telegram svg { width: 26px; height: 26px; color: #fff; }

.float-telegram .pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(42,171,238,0.4);
  animation: pulseRing 2.5s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed {
  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; }

/* --- Blog Page --- */
.blog-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.article-page { padding: 40px 0 100px; }

.article-content {
  max-width: 750px;
  margin: 0 auto;
}

.article-content h2 { margin-top: 48px; margin-bottom: 20px; }
.article-content h3 { margin-top: 32px; margin-bottom: 14px; color: var(--text-dark); }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin-bottom: 16px; padding-left: 24px; }
.article-content li { color: var(--text-body); padding: 4px 0; list-style: disc; font-size: 1rem; }
.article-content ol li { list-style: decimal; }
.article-content strong { color: var(--text-dark); font-weight: 600; }
.article-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.breadcrumbs {
  display: flex;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--accent); }

/* Hide old visual elements */
.hero-visual, .hero-bg, .float-shape, .glass-ring { display: none; }
.text-gradient { color: var(--text-dark); background: none; -webkit-text-fill-color: unset; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .problem-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .decor-torus, .decor-flower { width: 25vw; }
  .decor-purple, .decor-sphere { width: 18vw; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 20px;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 12px;
  }
  .nav-links.active { display: flex; }
  .menu-toggle { display: flex; }

  .hero { min-height: auto; padding: 120px 24px 60px; }
  .hero-stats { flex-direction: column; gap: 24px; }

  .decor-torus, .decor-flower, .decor-purple, .decor-sphere { display: none; }

  .methods-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }

  .step-item { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .steps-line { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-telegram { bottom: 16px; right: 16px; width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .trust-bar .container { flex-direction: column; gap: 16px; }
  .pricing-card { padding: 28px 20px; }
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

::selection { background: var(--accent-bg); color: var(--accent); }

@media print {
  .navbar, .float-telegram { display: none; }
}
