/* ============================
   Landing Page Styles
   ============================ */

.landing-page {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ============================
   Background Effects
   ============================ */

.bg-effects {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(51, 230, 255, 0.12), transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(122, 92, 255, 0.08), transparent 50%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(77, 163, 255, 0.08), transparent 50%),
    linear-gradient(180deg, #060a12 0%, #0a0f1a 50%, #0d1424 100%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 20%, black, transparent);
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(51, 230, 255, 0.15), transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(122, 92, 255, 0.12), transparent 70%);
  top: 50%;
  right: 5%;
  animation-delay: -7s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.1), transparent 70%);
  bottom: 10%;
  left: 30%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.05); }
  50% { transform: translate(-20px, 20px) scale(0.95); }
  75% { transform: translate(20px, 10px) scale(1.02); }
}

/* ============================
   Navbar
   ============================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(6, 10, 18, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo {
  display: flex;
  align-items: center;
}

.navbar__title {
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #33e6ff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar__actions {
  display: flex;
  gap: 12px;
}

.btn-nav {
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.btn-nav--login {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-nav--login:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-nav--register {
  background: linear-gradient(135deg, #33e6ff, #4da3ff);
  color: #060a12;
  border: none;
  box-shadow: 0 4px 16px rgba(51, 230, 255, 0.25);
}

.btn-nav--register:hover {
  box-shadow: 0 6px 20px rgba(51, 230, 255, 0.35);
  transform: translateY(-1px);
}

/* ============================
   Landing Content
   ============================ */

.landing-content {
  padding-top: 80px;
}

/* ============================
   Hero Section
   ============================ */

.hero {
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(51, 230, 255, 0.1);
  border: 1px solid rgba(51, 230, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  color: var(--brand-cyan);
  margin-bottom: 32px;
  animation: fadeInUp 0.6s ease-out;
}

.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--brand-cyan);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  background: linear-gradient(180deg, #f5f7ff 0%, #b8c2e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 0 48px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-hero {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.btn-hero--primary {
  background: linear-gradient(135deg, #33e6ff, #4da3ff, #7a5cff);
  color: #060a12;
  border: none;
  box-shadow: 0 8px 32px rgba(51, 230, 255, 0.3);
}

.btn-hero--primary:hover {
  box-shadow: 0 12px 40px rgba(51, 230, 255, 0.4);
  transform: translateY(-2px);
}

.btn-hero--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-hero--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 64px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(135deg, #33e6ff, #7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-tertiary);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================
   Sections
   ============================ */

.section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}

.section__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section__title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.section__desc {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0;
}

/* ============================
   About Section
   ============================ */

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.about-card {
  background: rgba(22, 31, 56, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
}

.about-card:hover {
  background: rgba(22, 31, 56, 0.8);
  border-color: rgba(51, 230, 255, 0.2);
  transform: translateY(-4px);
}

.about-icon {
  margin-bottom: 24px;
}

.about-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px;
}

.about-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================
   Features Section
   ============================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.feature-card {
  position: relative;
  background: rgba(22, 31, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-purple));
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  background: rgba(22, 31, 56, 0.9);
  border-color: rgba(51, 230, 255, 0.15);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(51, 230, 255, 0.1);
  border-radius: 14px;
  color: var(--brand-cyan);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 20px;
}

.feature-card__tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(51, 230, 255, 0.08);
  border: 1px solid rgba(51, 230, 255, 0.15);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-cyan);
  letter-spacing: 0.05em;
}

/* Feature card color variants */
.feature-card--video .feature-card__icon { color: #33e6ff; background: rgba(51, 230, 255, 0.1); }
.feature-card--image .feature-card__icon { color: #4da3ff; background: rgba(77, 163, 255, 0.1); }
.feature-card--replica .feature-card__icon { color: #7a5cff; background: rgba(122, 92, 255, 0.1); }
.feature-card--product .feature-card__icon { color: #a855f7; background: rgba(168, 85, 247, 0.1); }
.feature-card--marketing .feature-card__icon { color: #22c55e; background: rgba(34, 197, 94, 0.1); }
.feature-card--copyright .feature-card__icon { color: #f59e0b; background: rgba(245, 158, 11, 0.1); }

.feature-card--video:hover { border-color: rgba(51, 230, 255, 0.2); }
.feature-card--image:hover { border-color: rgba(77, 163, 255, 0.2); }
.feature-card--replica:hover { border-color: rgba(122, 92, 255, 0.2); }
.feature-card--product:hover { border-color: rgba(168, 85, 247, 0.2); }
.feature-card--marketing:hover { border-color: rgba(34, 197, 94, 0.2); }
.feature-card--copyright:hover { border-color: rgba(245, 158, 11, 0.2); }

/* ============================
   Process Section
   ============================ */

.process-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.process-step__number {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(51, 230, 255, 0.15), rgba(122, 92, 255, 0.15));
  border: 2px solid rgba(51, 230, 255, 0.3);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 700;
  color: var(--brand-cyan);
  margin-bottom: 20px;
}

.process-step__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.process-step__content p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0;
}

.process-step__connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(51, 230, 255, 0.3), rgba(122, 92, 255, 0.3));
  margin-top: 32px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .process-step__connector {
    display: none;
  }
  .process-steps {
    gap: 24px;
  }
}

/* ============================
   Partners Section
   ============================ */

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
}

.partner-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 31, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
}

.partner-logo:hover {
  background: rgba(22, 31, 56, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
}

/* ============================
   FAQ Section
   ============================ */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(22, 31, 56, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
}

.faq-item__arrow {
  color: var(--text-tertiary);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-item__arrow {
  transform: rotate(180deg);
}

.faq-item__answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-item__answer {
  padding: 0 24px 20px;
  max-height: 200px;
}

/* ============================
   CTA Section
   ============================ */

.cta-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-content {
  background: linear-gradient(135deg, rgba(51, 230, 255, 0.1), rgba(122, 92, 255, 0.1));
  border: 1px solid rgba(51, 230, 255, 0.2);
  border-radius: 32px;
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(51, 230, 255, 0.15), transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(122, 92, 255, 0.15), transparent 50%);
}

.cta-content h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px;
  position: relative;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin: 0 0 40px;
  position: relative;
}

.btn-cta {
  position: relative;
  padding: 16px 48px;
  background: linear-gradient(135deg, #33e6ff, #4da3ff, #7a5cff);
  color: #060a12;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(51, 230, 255, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(51, 230, 255, 0.4);
}

/* ============================
   Footer
   ============================ */

.footer {
  background: rgba(6, 10, 18, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 48px 30px;
}

.footer__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.footer__links {
  display: flex;
  gap: 60px;
}

.footer__column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__column h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.footer__column a {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: color 0.2s;
}

.footer__column a:hover {
  color: var(--brand-cyan);
}

.footer__bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-disabled);
  margin: 0;
}

/* ============================
   Modal Styles
   ============================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 18, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: 100%;
  max-width: 440px;
  background: rgba(17, 24, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 10px;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.2s;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

.modal__header {
  text-align: center;
  margin-bottom: 32px;
}

.modal__header h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.modal__header p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0;
}

.modal__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 14px;
  transition: all 0.2s;
}

.form-group input::placeholder {
  color: var(--text-disabled);
}

.form-group input:focus {
  outline: none;
  border-color: rgba(51, 230, 255, 0.5);
  background: rgba(51, 230, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(51, 230, 255, 0.1);
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text-secondary);
}

.checkbox-label input {
  display: none;
}

.checkbox-custom {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  position: relative;
  transition: all 0.2s;
  flex-shrink: 0;
}

.checkbox-label input:checked + .checkbox-custom {
  background: linear-gradient(135deg, #33e6ff, #4da3ff);
  border-color: #33e6ff;
}

.checkbox-label input:checked + .checkbox-custom::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #060a12;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label a {
  color: var(--brand-cyan);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.forgot-link {
  font-size: 13px;
  color: var(--brand-cyan);
  text-decoration: none;
}

.forgot-link:hover {
  text-decoration: underline;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #33e6ff, #4da3ff, #7a5cff);
  color: #060a12;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(51, 230, 255, 0.25);
}

.btn-submit:hover {
  box-shadow: 0 12px 32px rgba(51, 230, 255, 0.35);
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: translateY(0);
}

.modal__footer {
  margin-top: 24px;
  text-align: center;
  font-size: 14px;
  color: var(--text-tertiary);
}

.modal__footer a {
  color: var(--brand-cyan);
  font-weight: 500;
  text-decoration: none;
}

.modal__footer a:hover {
  text-decoration: underline;
}

/* ============================
   Toast
   ============================ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 14px 28px;
  background: rgba(17, 24, 45, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.toast.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast--success {
  border-color: rgba(34, 197, 94, 0.3);
}

.toast--error {
  border-color: rgba(239, 68, 68, 0.3);
}

/* ============================
   Responsive
   ============================ */

@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }

  .navbar__title {
    font-size: 16px;
  }

  .btn-nav {
    padding: 8px 16px;
    font-size: 13px;
  }

  .section {
    padding: 60px 20px;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero__stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer__content {
    flex-direction: column;
    gap: 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 32px;
  }

  .modal {
    padding: 32px 24px;
  }
}
