:root {
  --accent: #fb7d43;
  --accent-contrast: #ffffff;
  --bg: #fafafa;
  --muted: #6b6b6b;
  --dark: #111111;
  --card: #ffffff;
  --radius: 12px;
  --maxw: 1200px;
  --shadow: 0 6px 20px rgba(15, 15, 15, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 24px;
}

h1 {
  margin: 8px 0 10px;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 12px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), #ff8f5a);
  color: var(--accent-contrast);
  font-weight: 700;
  box-shadow: var(--shadow);
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
}

.nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  color: var(--dark);
  transition: all 0.2s ease;
}

.nav a:hover {
  background: rgba(251, 125, 67, 0.08);
  color: var(--accent);
}

.menu-group {
  position: relative;
}

.menu-trigger {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.menu-trigger:hover {
  background: rgba(251, 125, 67, 0.08);
  color: var(--accent);
}

.menu-drop {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 180px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  display: none;
  flex-direction: column;
  padding: 8px 0;
  z-index: 50;
}

.menu-drop a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}

.menu-drop a:hover {
  background: rgba(251, 125, 67, 0.08);
  color: var(--accent);
}

.menu-group:hover .menu-drop {
  display: flex;
}

.nav .cta {
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(251, 125, 67, 0.15);
  transition: all 0.2s ease;
}

.nav .cta:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 125, 67, 0.2);
}

.mobile-toggle {
  display: none;
  font-size: 20px;
  background: none;
  border: none;
  cursor: pointer;
}

.btn {
  display: inline-block;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-contrast);
  font-weight: 700;
  transition: all 0.3s ease-in;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#top.main-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding: 50px 0;
  align-items: flex-start;
}

#top.main-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card);
  border-radius: 20px;
  z-index: -1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-wrapper__info {
  flex: 1;
}

.info-span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

#top h1 {
  font-size: 42px;
  line-height: 1.16;
  font-weight: 700;
  margin-bottom: 20px;
}

.lead {
  color: #555;
  font-size: 18px;
  line-height: 1.55;
  max-width: 560px;
  margin-bottom: 32px;
}

.main-wrapper__btns {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  padding: 18px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: border-color 0.2s ease;
}

.feature:hover {
  border-color: var(--accent);
}

.feature h3 {
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 600;
}

.feature p {
  font-size: 14px;
  color: #666;
}

.how-card {
  width: 320px;
  padding: 24px;
  border-radius: 14px !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  background: #fff !important;
}

.how {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 22px 0;
}

.step {
  display: flex;
  gap: 14px;
  align-items: center;
  text-align: left;
}

.step .icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f5f5f5;
  display: grid;
  place-items: center;
}

.step img {
  width: 26px;
  height: 26px;
}

.step strong {
  font-size: 15px;
  font-weight: 600;
}

.muted {
  color: #777;
}

.small {
  font-size: 13px;
}

.card {
  padding: 18px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.12);
}

aside > .card {
  border: 1px dashed var(--accent);
}

.main-results {
  margin: 60px 0 0;
}

.main-results__cards {
  margin: 20px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main-results__cards > .card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background-clip: padding-box;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.main-results__cards > .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.main-results__cards > .card > .num {
  font-size: 65px;
  font-weight: 700;
  color: var(--accent);
}

.platform {
  margin: 40px 0;
}

.platform__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 20px 0 0;
}

.platform__card {
  background-color: #fff;
  padding: 30px 20px;
  border: 1px dashed var(--accent);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.platform__card img,
.platform__card svg {
  width: 48px;
  height: 48px;
}

.platform__card-text h4 {
  margin: 18px 0 6px;
}

.platform__card-text p {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin: 80px 0;
  padding: 48px 32px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(251, 125, 67, 0.08),
    rgba(0, 166, 237, 0.08)
  );
  box-shadow: 0 10px 28px rgba(15, 15, 15, 0.06);
  border: 1px solid rgba(251, 125, 67, 0.15);
  text-align: center;
}

.cta-band__text {
  flex: 1;
  min-width: 280px;
}

.cta-band__text .big {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.cta-band__text p:not(.big) {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

.cta-band_btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-band_btns .cta {
  padding: 12px 24px;
  background: var(--accent);
  color: var(--accent-contrast);
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(251, 125, 67, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.cta-band_btns .cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(251, 125, 67, 0.25);
}

.cta-band_btns .btn {
  padding: 12px 24px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-band_btns .btn:hover {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 6px 16px rgba(251, 125, 67, 0.12);
  transform: translateY(-2px);
}

.about_section {
  margin: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about_section .page-hero {
  text-align: center;
  padding: 40px 0;
}

.about_section .page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--dark);
}

.about_section .page-hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.about_section .card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.about_section .card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.1);
}

.about_section .card h3 {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

.about_section .card ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

.about_section .card ul li {
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
}

.modules-grid div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modules-grid h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}

.modules-grid p.muted {
  font-size: 14px;
  color: var(--muted);
}

.about_section > .btn {
  align-self: center;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: var(--accent);
  color: var(--accent-contrast);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(251, 125, 67, 0.18);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.about_section > .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 22px rgba(251, 125, 67, 0.25);
}

.solution-section {
  margin: 40px 0;
  display: flex;
  flex-direction: column;
}

.solution-section .page-hero {
  text-align: center;
  padding: 40px 0;
}

.solution-section .page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--dark);
}

.solution-section .page-hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.solution-block {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px dashed var(--accent);
  box-shadow: 0 6px 20px rgba(15, 15, 15, 0.06);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.solution-block:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.1);
}

.solution-block h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.solution-block p {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--muted);
}

.solution-block ul {
  list-style: disc;
  padding-left: 20px;
  color: var(--muted);
}

.solution-block ul li {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cases-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.cases-section .page-hero {
  text-align: center;
  padding: 0;
}

.cases-section .page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cases-section .page-hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.cases-section .case {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 24px;
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.cases-section .case:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.case h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.case p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.case ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.case .metrics {
  padding: 16px;
  background: linear-gradient(
    180deg,
    rgba(251, 125, 67, 0.06),
    rgba(255, 255, 255, 0)
  );
  border-radius: var(--radius);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case .metrics .metric-title {
  font-weight: 700;
  font-size: 16px;
}

.case .metrics .muted {
  font-size: 13px;
  color: var(--muted);
}

.cases-section blockquote {
  margin: 12px 0;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  color: var(--dark);
}

.contact-section {
  padding: 60px 24px 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-section .page-hero {
  text-align: center;
  padding: 0;
}

.contact-section .page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-section .page-hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
}

.contact-section .card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px dashed var(--accent);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-section .card .form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-section .card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-section .form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-section .input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 14px;
  background: transparent;
  transition:
    border 0.3s,
    box-shadow 0.3s;
}

.contact-section .input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 8px rgba(251, 125, 67, 0.2);
}

.contact-section select.input,
.contact-section textarea.input {
  width: 100%;
}

.contact-section textarea.input {
  resize: none;
}

.contact-section .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  background: #fafafa;
  font-size: 14px;
}

.radio-label input[type="radio"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
  transition: all 0.2s;
  background: #fff;
}

.radio-label input[type="radio"]:checked {
  border-color: var(--accent);
  background-color: var(--accent);
}

.radio-label input[type="radio"]:focus {
  outline: none;
  box-shadow: none;
}

.radio-label:hover {
  background: rgba(251, 125, 67, 0.05);
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 700;
}

.contact-section .form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-section .form-actions .btn {
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-weight: 700;
  outline: none;
  transition: all 0.3s ease-in-out;
}

.contact-section .form-actions .btn-outline {
  border: 1px solid var(--accent);
}

.contact-section .form-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(251, 125, 67, 0.25);
}

.contact-section .contact-info {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-section .contact-info h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-section .contact-info p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.price-section {
  padding: 60px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.price-section .page-hero {
  text-align: center;
}

.price-section .page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price-section .page-hero .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

.price-section .pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.price-section .price-card {
  padding: 24px 20px;
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  height: 100%;
}

.price-section .price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 15, 15, 0.12);
}

.price-section .price-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-section .price-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.price-section .price-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
  gap: 16px;
}

.price-section .price-value {
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

footer {
  padding: 28px 0;
  color: var(--muted);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.55);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 999;
}

.modal.show {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s ease;
}

.modal-content .btn {
  border: none;
  cursor: pointer;
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: bold;
  background: rgba(0, 200, 120, 0.1);
  color: #00a86b;
}

.modal.error .modal-icon {
  background: rgba(255, 80, 80, 0.1);
  color: #ff4d4f;
}

.modal h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.modal p {
  color: #666;
  margin-bottom: 18px;
}

@media (max-width: 1100px) {
  .nav {
    gap: 2px;
  }
  .platform__cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-band {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 1000px) {
  .nav {
    display: none;
    position: fixed;
    right: 16px;
    top: 60px;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    gap: 12px;
    z-index: 100;
  }

  .nav.show {
    display: flex;
  }

  .mobile-toggle {
    display: inline-block;
  }

  .menu-drop {
    position: relative;
    top: 0;
    box-shadow: none;
    border-radius: 8px;
  }

  .menu-group:hover .menu-drop {
    display: none;
  }

  .menu-group .menu-drop.show {
    display: flex;
  }
}

@media (max-width: 900px) {
  #top.main-wrapper {
    flex-direction: column;
    padding: 60px 0;
  }
  .how-card {
    width: 100%;
  }

  .platform__card {
    align-items: flex-start;
  }
  .pricing {
    flex-direction: column;
  }
  .cases-section .case {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-section .pricing {
    flex-direction: column;
    align-items: center;
  }

  .price-section .form-row {
    flex-direction: column;
  }
}

@media (max-width: 900px) {
  .contact-section .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-section .input {
    flex: 1 1 100%;
    width: 100%;
  }

  .radio-label {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-section .form-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .contact-section .form-actions .btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .form-row {
    flex-direction: column;
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .solution-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 600px) {
  .platform__cards {
    grid-template-columns: 1fr;
  }
  .modules-grid {
    grid-template-columns: 1fr;
  }
  .cases-section {
    padding: 40px 16px;
  }

  .cases-section .case {
    padding: 20px 16px;
  }
  .contact-section {
    padding: 40px 16px;
  }
  .price-section {
    padding: 40px 16px;
  }
}

/* Адаптивный фикс для маленьких экранов */
@media (max-width: 480px) {
  .cta-band {
    padding: 28px 16px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .cta-band__text {
    min-width: 100%;
  }

  .cta-band__text .big {
    font-size: 20px;
  }

  .cta-band__text p:not(.big) {
    font-size: 14px;
  }

  .cta-band_btns {
    width: 100%;
    flex-direction: column;
    gap: 12px;
  }

  .cta-band_btns .cta,
  .cta-band_btns .btn {
    width: 100%;
    padding: 12px 16px;
    text-align: center;
    box-sizing: border-box;
  }
}

@media (max-width: 470px) {
  .main-wrapper__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .cases-section {
    padding: 32px 12px;
  }

  .cases-section .case {
    padding: 18px 14px;
    gap: 16px;
  }

  .case h3 {
    font-size: 18px;
  }

  .case p,
  .case ul li {
    font-size: 13px;
  }

  .case .metrics {
    padding: 14px;
  }

  .case .metrics .metric-title {
    font-size: 14px;
  }

  .case .metrics .muted {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .cta-band {
    padding: 24px 12px;
  }

  .cta-band_btns .cta,
  .cta-band_btns .btn {
    padding: 10px 14px;
    font-size: 14px;
  }
}
