/* Reset & base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #050510;
  background-image:
    radial-gradient(ellipse 120% 80% at 70% 0%, rgba(88, 28, 135, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse 100% 60% at 20% 30%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse 80% 50% at 90% 70%, rgba(67, 56, 202, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, #0f0a1a 0%, #0a0e1a 25%, #050814 50%, #030508 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3,
.hero__title,
.section__title,
.section__desc,
.feature__title,
.platform-card__title,
.platform-section__lead,
.wl-source__title,
.pricing-table__th,
.pricing__col-title,
.faq__q,
.footer__cta-title,
.logo {
  font-family: 'Unbounded', 'Manrope', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
}

a {
  color: #5b9cff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Header */
.header {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header .container {
  padding-left: 4px;
}

@media (max-width: 768px) {
  .header {
    padding: 12px 0;
  }
  .logo__img {
    height: 48px;
  }
  .header .container {
    padding-left: 16px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-block;
  text-decoration: none;
}

.logo__img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.2s;
}

.logo:hover .logo__img {
  opacity: 0.9;
}

/* Hero */
.hero {
  padding: 80px 0 100px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__visual { order: -1; min-height: 200px; }
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0 56px;
  }
  .hero__title {
    margin: 24px 0 32px 0;
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .hero__tagline {
    font-size: 1rem;
  }
  .hero__cta {
    flex-direction: column;
    margin-top: 20px;
    gap: 12px;
  }
  .hero__cta-link {
    display: block;
    text-align: center;
    padding: 14px 20px;
    min-height: 48px;
    box-sizing: border-box;
  }
  .hero__visual-inner {
    height: 280px;
  }
  .hero__visual {
    min-height: 280px;
  }
}

.hero__title {
  max-width: 720px;
  margin: 60px 0 60px 0;
  padding: 5px 1px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.4px;
  text-align: left;
}

.hero__tagline {
  margin: 0 0 4px;
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.section__desc {
  margin: 0 auto 40px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  max-width: 65ch;
  line-height: 1.4;
  text-align: center;
  letter-spacing: -0.02em;
}

.section__desc--left {
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
}

.section__cta {
  text-align: center;
  margin: 32px 0 0;
}

@media (max-width: 768px) {
  .section__cta {
    margin: 24px 0 0;
  }
  .section__cta .hero__cta-link {
    display: block;
    min-height: 48px;
    padding: 14px 20px;
  }
}

.platform-list {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.platform-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.0625rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .platform-list {
    margin-top: 20px;
  }
  .platform-list li {
    font-size: 1rem;
    padding: 10px 0;
  }
}

.platform-list li:last-child {
  border-bottom: none;
}

.platform-list strong {
  color: #fff;
}

/* Platform section — modern layout */
.platform-section {
  background: linear-gradient(180deg, rgba(10, 14, 28, 0.6) 0%, rgba(5, 8, 20, 0.4) 50%, transparent 100%);
}

.platform-section__lead {
  margin: -8px auto 40px;
  max-width: 42ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 380px);
  gap: 56px;
  align-items: center;
  margin-top: 48px;
}

@media (max-width: 1000px) {
  .platform-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .platform-visual { order: -1; }
}

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

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

@media (max-width: 768px) {
  .platform-layout {
    margin-top: 32px;
    gap: 32px;
  }
  .platform-section__lead {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .platform-card {
    padding: 16px 16px 16px 48px;
  }
  .platform-card__num {
    left: 14px;
    top: 14px;
  }
  .platform-card__title {
    font-size: 0.9375rem;
  }
  .platform-card__desc {
    font-size: 0.8125rem;
  }
}

.platform-card {
  position: relative;
  padding: 20px 20px 20px 56px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(91, 156, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.platform-card__num {
  position: absolute;
  left: 18px;
  top: 18px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(91, 156, 255, 0.6);
}

.platform-card__title {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.platform-card__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}

/* Overlapping phone mockups */
.platform-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

.platform-phones {
  position: relative;
  width: 220px;
  height: 440px;
}

.platform-phones__mock {
  position: absolute;
  width: 200px;
  height: 400px;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0e1a;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.3),
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 60px -20px rgba(91, 156, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.platform-phones__mock:hover {
  transform: scale(1.02);
  box-shadow:
    0 0 0 1px rgba(91, 156, 255, 0.2),
    0 30px 60px -12px rgba(0, 0, 0, 0.5),
    0 0 80px -15px rgba(91, 156, 255, 0.25);
  z-index: 2;
}

.platform-phones__mock--1 {
  left: 0;
  top: 0;
  transform: rotate(-8deg);
  z-index: 1;
}

.platform-phones__mock--1:hover {
  transform: rotate(-6deg) scale(1.02);
}

.platform-phones__mock--2 {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(2deg);
  z-index: 2;
}

.platform-phones__mock--2:hover {
  transform: translate(-50%, -50%) rotate(2deg) scale(1.02);
}

.platform-phones__mock--3 {
  right: 0;
  bottom: 0;
  transform: rotate(8deg);
  z-index: 1;
}

.platform-phones__mock--3:hover {
  transform: rotate(6deg) scale(1.02);
}

.platform-phones__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 1000px) {
  .platform-phones {
    width: 100%;
    height: 380px;
    max-width: 280px;
    margin: 0 auto;
  }
  .platform-phones__mock {
    width: 160px;
    height: 320px;
  }
  .platform-phones__mock--1 { left: 0; top: 50%; transform: translateY(-50%) rotate(-12deg); }
  .platform-phones__mock--2 { left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .platform-phones__mock--3 { right: 0; top: 50%; transform: translateY(-50%) rotate(12deg); }
}

@media (max-width: 480px) {
  .platform-phones {
    height: 300px;
    max-width: 240px;
  }
  .platform-phones__mock {
    width: 120px;
    height: 240px;
  }
}

.hero__cta {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__cta-link {
  display: inline-block;
  padding: 12px 20px;
  background: linear-gradient(135deg, rgba(91, 156, 255, 0.25) 0%, rgba(91, 156, 255, 0.15) 100%);
  border: 1px solid rgba(91, 156, 255, 0.4);
  border-radius: 8px;
  color: #93c5ff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.hero__cta-link:hover {
  background: linear-gradient(135deg, rgba(91, 156, 255, 0.35) 0%, rgba(91, 156, 255, 0.2) 100%);
  border-color: rgba(91, 156, 255, 0.6);
  color: #fff;
  text-decoration: none;
}

.hero__contact {
  margin-top: 24px;
}

.hero__contact-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero__contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.hero__contact-icon img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.hero__contact-list a {
  color: #5b9cff;
  text-decoration: none;
}

.hero__contact-list a:hover {
  text-decoration: underline;
}

.hero__visual {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__visual-inner {
  width: 100%;
  max-width: 760px;
  height: 560px;
  border-radius: 16px;
  overflow: visible;
  position: relative;
  background: transparent;
}

.hero__visual-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: transparent;
  mix-blend-mode: screen;
}

/* Sections */
.section {
  padding: 64px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
  .section__title {
    font-size: 1.375rem;
    margin-bottom: 12px;
  }
  .section__desc {
    font-size: 1.125rem;
  }
  .section__lead {
    font-size: 1rem;
  }
}

.section--dark {
  background: linear-gradient(180deg, rgba(15, 10, 26, 0.7) 0%, rgba(10, 14, 26, 0.6) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.section__title {
  margin: 0 0 16px;
  font-size: clamp(1.625rem, 2.75vw, 2.125rem);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: -0.02em;
}

.section__lead {
  margin: 0 auto 40px;
  max-width: 65ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* White Label / Source Code */
.wl-source {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .wl-source {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .wl-source__or { order: -1; }
}

@media (max-width: 480px) {
  .wl-source__col {
    padding: 20px 16px;
  }
  .wl-source__title {
    font-size: 1.1rem;
  }
  .wl-source__text {
    font-size: 1rem;
  }
}

.wl-source__col {
  text-align: center;
  padding: 28px 32px;
  background: linear-gradient(145deg, rgba(91, 156, 255, 0.08) 0%, rgba(139, 92, 246, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(91, 156, 255, 0.2);
  border-radius: 16px;
  min-height: 124px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wl-source__col:hover {
  border-color: rgba(91, 156, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 40px rgba(91, 156, 255, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.wl-source__col:first-of-type {
  border-color: rgba(91, 156, 255, 0.25);
  background: linear-gradient(145deg, rgba(59, 130, 246, 0.1) 0%, rgba(91, 156, 255, 0.05) 100%);
}

.wl-source__col:last-of-type {
  border-color: rgba(139, 92, 246, 0.25);
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08) 0%, rgba(91, 156, 255, 0.05) 100%);
}

.wl-source__title {
  margin: 0 0 14px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wl-source__col:first-of-type .wl-source__title {
  color: #93c5ff;
}

.wl-source__col:last-of-type .wl-source__title {
  color: #a78bfa;
}

.wl-source__text {
  margin: 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.wl-source__or {
  font-size: 1.75rem;
  font-weight: 700;
  color: #5b9cff;
  text-shadow: 0 0 24px rgba(91, 156, 255, 0.5);
  padding: 0 16px;
}

/* Mobile App phones */
.phones {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.phones__mock {
  width: 180px;
  height: 360px;
  border-radius: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  background: #0d1220;
}

.phones__mock-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Features (AML/KYC) */
.features {
  display: grid;
  gap: 32px;
  margin-top: 40px;
}

.features--three {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 800px) {
  .features--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .features {
    margin-top: 28px;
    gap: 20px;
  }
  .feature {
    padding: 20px 16px;
  }
  .feature__title {
    font-size: 1rem;
  }
  .feature__text {
    font-size: 0.9375rem;
  }
}

.feature {
  text-align: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(91, 156, 255, 0.2) 0%, rgba(139, 92, 246, 0.15) 100%);
  border: 1px solid rgba(91, 156, 255, 0.2);
}

.feature__icon--building::after { content: 'KYC'; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,0.6); }
.feature__icon--bot::after { content: 'AML'; font-size: 0.65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; height: 100%; color: rgba(255,255,255,0.6); }
.feature__icon--globe::after { content: '✓'; font-size: 1.5rem; font-weight: 700; display: flex; align-items: center; justify-content: center; height: 100%; color: #5b9cff; }

.feature__icon--svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(91, 156, 255, 0.9);
}

.feature__icon--svg::after {
  content: none;
}

.feature__icon--svg svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.feature__title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
}

.feature__text {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

/* Affiliate */
.affiliate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 32px;
}

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

.affiliate__text p {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.affiliate__text p:last-child {
  margin-bottom: 0;
}

.affiliate__diagram {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.affiliate__level {
  padding: 16px 24px;
  background: rgba(91, 156, 255, 0.1);
  border: 1px solid rgba(91, 156, 255, 0.25);
  border-radius: 8px;
  font-weight: 600;
  color: #5b9cff;
}

/* Payments */
.payments {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.payments__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 32px auto 0;
}

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

.pricing__col {
  padding: 28px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing__col-title {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.pricing__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pricing__list li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing__list li:last-child {
  border-bottom: none;
}

.pricing__price {
  color: #5b9cff !important;
  font-weight: 600;
}

/* Pricing table (Тарифы) */
.pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
  .pricing-table-wrap {
    margin-left: -16px;
    margin-right: -16px;
    border-radius: 0;
    border-left: none;
    border-right: none;
  }
}

.pricing-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 1rem;
}

@media (max-width: 600px) {
  .pricing-table {
    min-width: 360px;
    font-size: 0.875rem;
  }
  .pricing-table th,
  .pricing-table td {
    padding: 10px 12px;
  }
  .pricing-table__th--param {
    width: 32%;
  }
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table__th {
  font-weight: 700;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.pricing-table__th--param {
  width: 28%;
}

.pricing-table__param {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* FAQ */
.faq {
  max-width: 720px;
  margin: 24px auto 0;
  padding: 0;
}

.faq__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__q {
  margin: 0;
  padding: 18px 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: #fff;
}

.faq__a {
  margin: 0 0 18px;
  padding: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faq__q {
    padding: 14px 0 6px;
    font-size: 1rem;
  }
  .faq__a {
    margin-bottom: 14px;
    font-size: 0.9375rem;
  }
}

/* Footer */
.footer {
  padding: 48px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(5, 8, 20, 0.95) 0%, #030508 100%);
}

.footer .container {
  max-width: 900px;
  text-align: center;
}

/* Product & Demo block (отдельная секция как Price) */
.product-block {
  display: flex;
  align-items: center;
  gap: 48px;
  text-align: left;
}

@media (max-width: 768px) {
  .product-block {
    flex-direction: column;
    gap: 24px;
  }
  .product-block__image { order: -1; }
}

.product-block__content {
  flex: 1;
  min-width: 0;
}

.product-block__image {
  flex-shrink: 0;
}

.product-block__image img {
  display: block;
  max-width: 320px;
  width: 100%;
  height: auto;
}

.product-block__product {
  margin-bottom: 16px;
}

.product-block__product p {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.product-block__product a {
  color: #5b9cff;
}

.product-block__calendly,
.product-block__info {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}

.product-block__info {
  margin-bottom: 0;
}

.footer__cta-title {
  margin: 0 0 16px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .footer {
    padding: 32px 0 48px;
  }
  .footer__cta-title {
    font-size: 1.125rem;
  }
  .footer__cta-link-wrap .hero__cta-link {
    display: block;
    text-align: center;
    padding: 14px 20px;
    min-height: 48px;
  }
}

.footer__cta-link-wrap {
  margin: 0;
}

.footer__contact-title {
  margin: 24px 0 12px;
  font-weight: 600;
  color: #fff;
}

.footer__contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__contact li {
  margin: 4px 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.footer__contact a {
  color: #5b9cff;
}

/* Contact modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(18, 22, 40, 0.98) 0%, rgba(10, 14, 28, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(91, 156, 255, 0.1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.modal__title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.modal__subtitle {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

.modal__contacts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal__link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.0625rem;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.modal__link:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}

.modal__link--telegram .modal__icon {
  background: rgba(0, 136, 204, 0.2);
  color: #0088cc;
}

.modal__link--whatsapp .modal__icon {
  background: rgba(37, 211, 102, 0.2);
  color: #25d366;
}

.modal__link--email .modal__icon {
  background: rgba(91, 156, 255, 0.2);
  color: #5b9cff;
}

@media (max-width: 480px) {
  .modal-overlay {
    padding: 16px;
    align-items: flex-end;
  }
  .modal {
    max-width: none;
    width: 100%;
    padding: 24px 20px 28px;
    border-radius: 20px 20px 0 0;
  }
  .modal__close {
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.75rem;
  }
  .modal__title {
    font-size: 1.25rem;
    padding-right: 36px;
  }
  .modal__subtitle {
    font-size: 0.875rem;
    margin-bottom: 20px;
  }
  .modal__link {
    padding: 14px 18px;
    min-height: 56px;
    font-size: 1rem;
  }
  .modal__icon {
    width: 40px;
    height: 40px;
  }
}
