/* Complete redesign with purple theme matching the screenshot */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f8f7f5;
  color: #1a1a1a;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.header {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
}

.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

.burger-icon {
  width: 32px;
  height: 32px;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.btn-primary-sm {
  background: white;
  color: #7c3aed;
  padding: 10px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-primary-sm:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  max-height: 500px;
  margin-top: 20px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-link {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(180deg, #7c3aed 0%, #9333ea 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-search {
  max-width: 700px;
  margin: 0 auto;
}

.search-box {
  position: relative;
  background: white;
  border-radius: 12px;
  padding: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  transition: box-shadow 0.3s;
}

.search-box.focused {
  box-shadow: 0 10px 60px rgba(124, 58, 237, 0.3);
}

.search-icon {
  width: 24px;
  height: 24px;
  color: #9ca3af;
  margin: 0 16px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  padding: 16px 8px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.search-input::placeholder {
  color: #9ca3af;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: #f8f7f5;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-top: -32px;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.category-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
  transform: translateY(-2px);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.category-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.category-content {
  flex: 1;
}

.category-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.category-desc {
  font-size: 14px;
  color: #6b7280;
}

.category-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.category-arrow svg {
  width: 20px;
  height: 20px;
  color: #6b7280;
  transition: transform 0.3s;
}

.category-card.expanded .category-arrow svg {
  transform: rotate(90deg);
}

.category-arrow:hover {
  background: #7c3aed;
}

.category-arrow:hover svg {
  color: white;
}

.category-expanded {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  padding: 24px;
  border-radius: 0 0 16px 16px;
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 10;
}

.category-card.expanded {
  border-radius: 16px 16px 0 0;
}

.category-card.expanded .category-expanded {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.expanded-link {
  display: inline-block;
  margin-top: 12px;
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid white;
  padding-bottom: 2px;
}

/* Articles Section */
.articles-section {
  padding: 80px 0;
  background: white;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.article-card {
  position: relative;
  height: 520px;
  perspective: 1000px;
}

.article-front,
.article-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  border-radius: 16px;
  overflow: hidden;
}

.article-front {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.article-back {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.article-card.flipped .article-front {
  transform: rotateY(180deg);
}

.article-card.flipped .article-back {
  transform: rotateY(0);
}

.article-image {
  height: 240px;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-date {
  font-size: 12px;
  font-weight: 600;
  color: #7c3aed;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.article-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-excerpt {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.article-more {
  background: none;
  border: none;
  color: #7c3aed;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
  padding: 0;
  transition: color 0.2s;
}

.article-more:hover {
  color: #6d28d9;
}

.article-back-content {
  color: white;
  text-align: left;
}

.article-back-content h4 {
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
}

.article-list {
  list-style: none;
  margin-bottom: 24px;
}

.article-list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 15px;
}

.article-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  font-weight: bold;
}

.article-link-btn {
  display: inline-block;
  background: white;
  color: #7c3aed;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: transform 0.2s;
}

.article-link-btn:hover {
  transform: translateY(-2px);
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: #f8f7f5;
}

.cta-box {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.15) 0%, rgba(196, 181, 253, 0.15) 100%);
  border-radius: 24px;
  padding: 60px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
}

.cta-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.6;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-input {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: white;
}

.cta-input:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.cta-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
}

.cta-checkbox input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.cta-button {
  background: #1a1a1a;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cta-button:hover {
  background: #000;
  transform: translateY(-2px);
}

.cta-policy {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #6b7280;
}

.cta-policy input {
  margin-top: 2px;
}

.cta-links {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
}

.cta-links a {
  color: #7c3aed;
  text-decoration: underline;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.15);
}

.team-image {
  height: 320px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.team-role {
  font-size: 14px;
  color: #7c3aed;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

/* Contacts Section */
.contacts-section {
  padding: 80px 0;
  background: #f8f7f5;
}

.contacts-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contacts-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contacts-info-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contacts-info-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.contacts-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contacts-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contacts-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.contacts-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.contacts-label {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}

.contacts-value {
  font-size: 16px;
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}

.contacts-value:hover {
  text-decoration: underline;
}

.contacts-text {
  font-size: 16px;
  color: #1a1a1a;
}

.contacts-map {
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contacts-form-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contacts-form-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-input.error,
.form-textarea.error {
  border-color: #ef4444;
}

.form-input.success,
.form-textarea.success {
  border-color: #10b981;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4b5563;
  cursor: pointer;
}

.form-checkbox input {
  margin-top: 2px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.form-link {
  color: #7c3aed;
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  background: #7c3aed;
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit-btn:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}

.footer-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
}

.footer-text {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
}

.footer-heading {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: #a855f7;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #374151;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-copyright {
  color: #9ca3af;
  font-size: 14px;
}

.footer-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #9ca3af;
  cursor: pointer;
}

.footer-checkbox input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Cookie Popup */
.cookie-popup {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  z-index: 9999;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
      transform: translateY(100px);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.cookie-content {
  background: white;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid #e5e7eb;
}

.cookie-text {
  font-size: 14px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}

.cookie-btn {
  background: #7c3aed;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}

.cookie-btn:hover {
  background: #6d28d9;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: #a855f7;
  color: white;
}

/* Focus Visible */
:focus-visible {
  outline: 2px solid #7c3aed;
  outline-offset: 2px;
}

/* Thank You Section */
.thank-section {
  padding: 80px 0;
  background: #f8f7f5;
  min-height: calc(100vh - 200px);
}

.thank-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.thank-icon svg {
  width: 48px;
  height: 48px;
  color: white;
}

.thank-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.thank-text {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 48px;
  line-height: 1.6;
}

.thank-box {
  background: white;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  text-align: left;
}

.thank-box-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 32px;
  text-align: center;
}

.thank-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.thank-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.thank-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
}

.thank-step-content {
  flex: 1;
}

.thank-step-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.thank-step-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.thank-info {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.1) 0%, rgba(196, 181, 253, 0.1) 100%);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  text-align: left;
}

.thank-info-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.thank-info-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.thank-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #7c3aed;
  color: white;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover {
  background: #6d28d9;
  transform: translateY(-2px);
}

.btn-secondary {
  background: white;
  color: #7c3aed;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  border: 2px solid #7c3aed;
}

.btn-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
}

.thank-contact {
  text-align: center;
}

.thank-contact-text {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.thank-contact-methods {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.thank-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7c3aed;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.thank-contact-link:hover {
  color: #6d28d9;
}

.thank-contact-link svg {
  width: 20px;
  height: 20px;
}

/* Business Model Section */
.business-model-section {
  padding: 80px 0;
  background: white;
}

.bm-block {
  margin-bottom: 64px;
  background: #f8f7f5;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.bm-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.bm-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  flex-shrink: 0;
}

.bm-title {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.5px;
}

.bm-content {
  padding-left: 88px;
}

.bm-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
}

.bm-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}

.bm-list-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bm-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-list-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.bm-list-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.bm-list-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.bm-card {
  background: white;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}

.bm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.12);
}

.bm-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bm-card-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.bm-card-icon svg {
  width: 28px;
  height: 28px;
  color: white;
}

.bm-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.bm-card-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
}

.bm-channels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.bm-channel-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bm-channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-channel-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.bm-channel-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.bm-channel-text {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}

.bm-contacts {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.bm-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.bm-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bm-contact-icon.purple {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
}

.bm-contact-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.bm-contact-label {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 4px;
}

.bm-contact-value {
  font-size: 16px;
  color: #7c3aed;
  text-decoration: none;
  font-weight: 500;
}

.bm-contact-value:hover {
  text-decoration: underline;
}

.bm-contact-text {
  font-size: 16px;
  color: #1a1a1a;
}

.bm-cta {
  margin-top: 32px;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .nav-desktop {
      display: none;
  }
  
  .burger-menu {
      display: block;
  }
  
  .contacts-wrapper {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-title {
      font-size: 36px;
  }
  
  .hero-subtitle {
      font-size: 16px;
  }
  
  .section-title {
      font-size: 32px;
  }
  
  .categories-grid {
      grid-template-columns: 1fr;
  }
  
  .articles-grid {
      grid-template-columns: 1fr;
  }
  
  .team-grid {
      grid-template-columns: 1fr;
  }
  
  .cta-box {
      padding: 40px 24px;
  }
  
  .cta-title {
      font-size: 28px;
  }
  
  .footer-grid {
      grid-template-columns: 1fr;
      gap: 32px;
  }
  
  .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .btn-primary-sm {
      display: none;
  }

  /* Responsive adjustments for new pages */
  .thank-title {
      font-size: 32px;
  }
  
  .thank-box {
      padding: 24px;
  }
  
  .thank-actions {
      flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
      width: 100%;
      text-align: center;
  }
  
  .thank-contact-methods {
      flex-direction: column;
  }
  
  .bm-block {
      padding: 32px 24px;
  }
  
  .bm-header {
      flex-direction: column;
      align-items: flex-start;
  }
  
  .bm-content {
      padding-left: 0;
  }
  
  .bm-title {
      font-size: 24px;
  }
  
  .bm-grid {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
      padding: 0 16px;
  }
  
  .hero-title {
      font-size: 28px;
  }
  
  .search-input {
      font-size: 14px;
  }
  
  .category-card {
      flex-direction: column;
      text-align: center;
  }
  
  .cookie-popup {
      left: 16px;
      right: 16px;
      bottom: 16px;
      max-width: none;
  }
  
  .thank-icon {
      width: 64px;
      height: 64px;
  }
  
  .thank-icon svg {
      width: 36px;
      height: 36px;
  }
  
  .thank-title {
      font-size: 28px;
  }
  
  .thank-step {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }
  
  .bm-number {
      width: 56px;
      height: 56px;
      font-size: 24px;
  }
  
  .bm-title {
      font-size: 22px;
  }
}
