html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Анимации появления при скролле */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Классы для анимаций */
.fade-in-up {
  opacity: 0;
}

.fade-in-up.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in {
  opacity: 0;
}

.fade-in.animate-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.scale-in {
  opacity: 0;
}

.scale-in.animate-in {
  animation: scaleIn 0.5s ease-out forwards;
}

:root {
  color-scheme: light;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bg: #f7f8fb;
  --card: #ffffff;
  --accent: #2f6ff3;
  --accent-dark: #1c4ed8;
  --text: #0f172a;
  --muted: #64748b;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.4;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  padding: 80px clamp(24px, 5vw, 96px) 64px;
  background: #0f172a;
  color: white;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px clamp(24px, 5vw, 96px);
  gap: 32px;
  max-width: 1600px;
  margin: 0 auto;
}

.site-nav__logo a {
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__logo a:hover {
  color: var(--accent);
}

.site-nav__links {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.site-nav__links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  position: relative;
}

.site-nav__links a:hover {
  color: white;
}

.site-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.site-nav__links a:hover::after {
  width: 100%;
}

.site-nav__actions {
  display: flex;
  gap: 12px;
}

.cta--nav {
  padding: 10px 20px;
  font-size: 0.9rem;
}

@media (max-width: 968px) {
  .site-nav {
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .site-nav__links {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  
  .site-nav__links a {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .site-nav {
    padding: 12px 12px;
    gap: 8px;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .site-nav__logo {
    flex-shrink: 0;
  }
  
  .site-nav__logo a {
    font-size: 1rem;
    white-space: nowrap;
  }
  
  .site-nav__actions {
    flex-shrink: 0;
  }
  
  .cta--nav {
    padding: 8px 12px;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  
  .site-nav__links {
    display: none;
  }
  
  .hero {
    padding: 16px 12px 12px;
    min-height: auto;
  }
  
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .hero__visual {
    display: none !important;
  }
  
  .hero__content {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .hero .eyebrow {
    font-size: 0.6rem;
    margin-bottom: 4px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .hero h1 {
    font-size: 1.15rem;
    margin: 4px 0 6px;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero .lead {
    font-size: 0.75rem;
    line-height: 1.3;
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }
  
  .hero__actions {
    flex-direction: column;
    width: 100%;
    gap: 6px;
    margin: 12px 0 0;
  }
  
  .hero__actions .cta {
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 11px 18px;
    font-size: 0.85rem;
    box-sizing: border-box;
  }
  
  .hero__actions .cta.secondary {
    display: none;
  }
  
  .hero__features {
    display: none;
  }
  
  .trust {
    display: none;
  }
  
  .metrics {
    padding: 48px 20px;
  }
  
  .metrics__card {
    padding: 24px 16px;
  }
  
  .section-title {
    margin-bottom: 32px;
  }
  
  .section-title h2 {
    font-size: 1.5rem;
  }
  
  .features,
  .pricing,
  .process,
  .testimonials,
  .faq,
  .cta-section {
    padding: 48px 20px;
  }
  
  .floating-cta {
    right: 16px;
    left: 16px;
    transform: none;
    bottom: 16px;
    padding: 14px 24px;
    font-size: 0.9rem;
    width: auto;
    max-width: none;
    text-align: center;
    border-radius: 12px;
  }
  
  .floating-cta:hover {
    transform: translateY(-2px);
  }
  
  .pricing__tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .pricing__tab {
    flex: 1;
    min-width: calc(50% - 4px);
  }
  
  .timeline li {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline span {
    margin-bottom: 12px;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.nav__actions {
  display: flex;
  gap: 12px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  flex: 1;
}

@media (max-width: 968px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  
  .hero__visual {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .hero__features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero__features {
    grid-template-columns: 1fr;
  }
}

.hero__content {
  max-width: 100%;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: rgba(47, 111, 243, 0.9);
  font-weight: 600;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 16px 0;
  line-height: 1.2;
  font-weight: 700;
}

.hero h1 {
  color: white;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 32px 0 24px;
}

.cta--large {
  padding: 16px 32px;
  font-size: 1.05rem;
}

.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.hero__feature-item {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.hero__feature-item:hover {
  background: rgba(47, 111, 243, 0.2);
  border-color: rgba(47, 111, 243, 0.4);
  transform: translateY(-2px);
  color: white;
}

.cta {
  background: var(--accent);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta:hover::before {
  width: 300px;
  height: 300px;
}

.cta:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 111, 243, 0.3);
}

.cta:active {
  transform: translateY(0);
}

.cta.secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.1);
}

.hero .cta.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero .cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta.ghost {
  padding: 10px 18px;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 999px;
}

.cta.outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(47, 111, 243, 0.3);
}

.trust {
  margin-top: 32px;
  color: var(--muted);
}

.hero .trust {
  color: rgba(255, 255, 255, 0.7);
}

.hero .trust p {
  color: rgba(255, 255, 255, 0.8);
}

.trust__logos {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.trust__logos span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(47, 111, 243, 0.08);
  font-weight: 500;
  color: var(--accent-dark);
}

.hero .trust__logos span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  overflow: visible;
}

.hero__image-wrapper {
  position: relative;
  z-index: 2;
}

.hero__image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero__image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

.card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--card);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.15);
  max-width: 240px;
  text-align: left;
  z-index: 10;
}

.card p {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.card strong {
  font-size: 2.5rem;
  display: block;
  margin: 8px 0 10px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}

.card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.4;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 64px clamp(24px, 5vw, 96px);
  background: var(--bg);
}

.metrics__card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.metrics__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.15);
}

.metrics__card .counter {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1.2;
  font-family: 'Inter', system-ui, sans-serif;
}

.metrics__card p {
  color: #475569;
  font-size: 0.95rem;
  margin: 4px 0;
  line-height: 1.5;
}

.metrics__subtitle {
  color: #64748b !important;
  font-size: 0.85rem !important;
  margin-top: 4px !important;
}

.intro-section {
  background: #0f172a;
  color: white;
  padding: 96px clamp(24px, 5vw, 96px);
  position: relative;
  overflow: hidden;
}

.intro-section__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-section__content h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.2;
}

.intro-section__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 40px;
  line-height: 1.6;
}

.intro-section__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.intro-section__feature-btn {
  background: var(--accent);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.intro-section__feature-btn:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 111, 243, 0.3);
}

.intro-section__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.intro-section__image-wrapper {
  position: relative;
  z-index: 2;
}

.intro-section__image-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.intro-section__image-wrapper img {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 1;
}

@media (max-width: 968px) {
  .intro-section__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .intro-section__visual {
    order: -1;
  }
  
  .intro-section__features {
    grid-template-columns: 1fr;
  }
  
  .intro-section__image-wrapper img {
    max-width: 400px;
  }
}

.features,
.pricing,
.process,
.testimonials,
.faq,
.cta-section {
  padding: 64px clamp(24px, 5vw, 96px);
}

.section-title {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin: 12px 0;
  line-height: 1.2;
  font-weight: 700;
}

.section-title p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 16px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.features__grid article {
  background: var(--card);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.features__grid article:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.features__grid article h3 {
  margin-top: 0;
  margin-bottom: 12px;
  flex-shrink: 0;
}

.features__grid article p {
  margin: 0;
  flex-grow: 1;
}

.avatar-showcase {
  background: #ffffff;
}

.avatar-showcase__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.avatar-showcase__grid article {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.avatar-wrapper {
  border-radius: 20px;
  padding: 20px;
  margin: 0 auto 16px;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper--gradient-1 {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.avatar-wrapper--gradient-2 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.avatar-wrapper--gradient-3 {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.avatar-wrapper--gradient-4 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.avatar-wrapper--gradient-5 {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.avatar-wrapper--gradient-6 {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.avatar-wrapper img {
  height: 200px;
  object-fit: contain;
  display: block;
}

.testimonial-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar--1 {
  background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.testimonial-avatar--2 {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.testimonial-avatar--3 {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

.testimonial-avatar--4 {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.testimonial-avatar--5 {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.testimonial-avatar--6 {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.process {
  background: #0f172a;
  color: white;
}

.timeline {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  gap: 24px;
  max-width: 800px;
}

.timeline li {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 20px;
}

.timeline span {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto;
  align-items: stretch;
}

@media (max-width: 1400px) {
  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonials__grid figure {
  margin: 0;
  padding: 24px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.testimonials__grid figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.testimonials__grid blockquote {
  flex-grow: 1;
  margin: 0;
  font-style: italic;
  display: flex;
  align-items: center;
  color: var(--text);
}

.testimonials__grid figcaption {
  font-weight: 600;
  color: var(--muted);
}

.faq {
  background: #eef2ff;
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion article {
  background: white;
  border-radius: 20px;
  padding: 24px;
  margin-bottom: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(0);
}

.accordion article:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
}

.accordion header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

[data-accordion] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: transparent;
  cursor: pointer;
  position: relative;
}

[data-accordion]::before,
[data-accordion]::after {
  content: '';
  position: absolute;
  background: var(--text);
  width: 14px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

[data-accordion]::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion article.open [data-accordion]::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion p {
  margin-top: 16px;
  display: none;
  color: var(--muted);
  line-height: 1.5;
}

.accordion article.open p {
  display: block;
}

.pricing {
  background: #f8fafc;
}

.pricing__tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pricing__tab {
  padding: 12px 24px;
  border: 2px solid rgba(47, 111, 243, 0.2);
  background: white;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pricing__tab:hover {
  border-color: var(--accent);
  background: rgba(47, 111, 243, 0.05);
}

.pricing__tab.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.pricing__content {
  position: relative;
}

.pricing__panel {
  display: none;
}

.pricing__panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing__card {
  background: white;
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform: translateY(0);
}

.pricing__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.15);
}

.pricing__card--popular {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing__card h3 {
  font-size: 1.5rem;
  margin: 0 0 12px;
  color: var(--text);
}

.pricing__price {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.pricing__amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 24px;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  flex-grow: 1;
  text-align: left;
}

.pricing__features li {
  padding: 8px 0;
  color: var(--text);
  position: relative;
  padding-left: 24px;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing__cta {
  margin-top: auto;
  width: 100%;
  display: block;
  text-align: center;
}

.cta-section {
  background: #0b1120;
  color: white;
  border-radius: 32px;
  margin: 96px clamp(24px, 5vw, 96px);
  padding: 64px clamp(32px, 5vw, 96px);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-large {
  font-size: 1.2rem;
  padding: 18px 40px;
  min-width: 280px;
}

.cta-section__hint {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.9rem !important;
  margin: 0 !important;
}

.footer {
  background: #ffffff;
  padding: 64px clamp(24px, 5vw, 96px) 32px;
  color: var(--text);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer__description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer__nav-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__nav-column a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer__nav-column a:hover {
  color: var(--accent);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__phone {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.footer__phone:hover {
  color: var(--accent);
}

.footer__email {
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__email:hover {
  color: var(--accent);
}

.cta--footer {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  font-size: 0.9rem;
}

.footer__divider {
  height: 1px;
  background: rgba(15, 23, 42, 0.1);
  margin: 32px 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__legal {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer__legal a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--accent);
}

.footer__legal a svg {
  width: 14px;
  height: 14px;
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--text);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
}

.footer__social a:hover {
  color: var(--accent);
  background: rgba(47, 111, 243, 0.1);
}

@media (max-width: 968px) {
  .footer {
    padding: 48px 20px 24px;
  }
  
  .footer__main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .footer__legal {
    flex-direction: column;
    gap: 12px;
  }
}

.floating-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  background: linear-gradient(120deg, var(--accent), #5b89ff);
  color: white;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(47, 111, 243, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(47, 111, 243, 0.5);
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modal.open {
  display: flex;
}

.modal__card {
  background: var(--card);
  border-radius: 24px;
  padding: 32px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow);
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal ul {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 80px;
  }

  .hero__avatar-wrapper {
    padding: 24px;
    border-radius: 24px;
  }

  .hero__avatar-wrapper img {
    width: min(350px, 100%);
  }

  .card {
    position: static;
    margin-top: 24px;
    max-width: 100%;
    right: auto;
    bottom: auto;
  }

  .cta-section {
    margin: 64px 24px;
  }

  .floating-cta {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

