/* Section content layouts */
.section-content {
  display: flex;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
  flex-direction: column; /* Mobile-first: default is column */
}
.section-content-column { display: flex; flex-direction: column; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Desktop styles for section content layout */
@media (min-width: 981px) { 
  .section-content { flex-direction: row; } 
  .info-section:nth-of-type(even) .section-content { flex-direction: row-reverse; } 
}

.feature-text { flex: 1; }
.feature-text h3 { font-size: 28px; margin-top: 0; }
.feature-text p { font-size: 16px; color: var(--muted); line-height: 1.6; }

.feature-visual {
  flex: 1.2;
  height: 320px; border-radius: 12px;
  background: linear-gradient(120deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  border: 1px solid rgba(255,255,255,0.03);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}
.feature-visual:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Feature grid styles */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

/* Base card style for feature-grid, download-cards, etc. */
.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 92, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.feature-card-small {
  text-align: left;
}
.feature-icon {
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}
.feature-card-small h4 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--text);
}
.feature-card-small p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.feature-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* Скругляем углы, как у других элементов */
  border: 1px solid rgba(255,255,255,0.05); /* Легкая рамка для консистентности */
}

/* Download cards */
.download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}
.download-card {
  text-align: center;
}
.os-icon {
  width: 40px; height: 40px; margin-bottom: 12px;
  filter: brightness(0) invert(1); /* Makes the icon white */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.download-card:hover .os-icon {
  transform: scale(1.15);
}
.download-card h4 { margin: 0 0 4px; font-size: 18px; }
.download-card .card-muted { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

/* Pricing styles */
.pricing{display:flex;gap:18px;align-items:flex-start}

.pricing-card {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 40px;
  max-width: 100%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.pricing-content {
  flex: 1.2;
}
.pricing-image {
  flex: 0.8;
  height: 280px;
  background: rgba(0,0,0,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
}

.pricing-card h3 {
  font-size: 28px;
  margin-top: 0;
}
.pricing-card p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 500px;
  margin: 12px 0 0;
}

.price-chooser {
  margin: 24px 0;
  text-align: left;
}

.price-label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}

.price-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 420px;
  margin-bottom: 12px;
}

.price-option-btn {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  position: relative; /* For custom input symbol */
}

.price-option-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-option-btn.active {
  border-color: var(--accent);
  background-color: rgba(124, 92, 255, 0.1);
  box-shadow: 0 0 15px rgba(124, 92, 255, 0.2);
}

.price-option-btn .price-amount {
  font-size: 20px;
}

.price-option-btn .price-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.price-info {
  font-size: 13px;
  color: var(--muted);
  text-align: left;
  margin-top: 8px;
  max-width: 420px;
}
.features-included {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  text-align: left;
}
.features-included li {
  display: flex; align-items: center; gap: 8px; color: var(--muted);
}

/* Roadmap styles */
.roadmap-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}
.roadmap-item {
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  text-align: center; /* Center content on mobile */
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.roadmap-status {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.roadmap-status.in-progress {
  background-color: rgba(124, 92, 255, 0.15);
  color: #a38dff;
}
.roadmap-status.planned {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}
.roadmap-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: inline-block; /* To respect text-align: center */
}
.roadmap-item h4 {
  margin: 0 0 8px;
  font-size: 17px;
}
.roadmap-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}
.roadmap-item:hover {
  transform: translateY(-5px); /* Добавлен hover-эффект для roadmap-элементов */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ styles */
.faq { margin-top: 12px; }
.faq .q{border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 14px; margin-bottom: 14px; cursor: pointer; overflow: hidden; }
.faq .q-header { display: flex; justify-content: space-between; align-items: center; }
.faq .q-header strong { font-weight: 600; }
.faq .q-answer { max-height: 0; opacity: 0; transform: translateY(-10px); overflow: hidden; transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), margin-top 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); margin-top: 0; line-height: 1.6; color: var(--muted); }
.faq .q.active .q-answer { max-height: 200px; opacity: 1; transform: translateY(0); margin-top: 12px; }
.faq-icon { font-size: 24px; font-weight: 300; color: var(--muted); transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.faq .q.active .faq-icon { transform: rotate(45deg); color: var(--accent); }

/* Footer styles */
footer{border-top:1px solid rgba(255,255,255,0.03);padding:22px 20px;color:var(--muted);font-size:14px;display:flex;justify-content:space-between;align-items:center; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; gap: 10px;}
.footer-link { color: var(--muted); text-decoration: underline; }

/* Section titles */
.section-title {
  color: var(--text);
  margin-bottom: 16px;
}