:root {
  --bg: #050505;
  --bg-soft: #0d0d0f;
  --card: #101114;
  --card-2: #141519;
  --text: #ffffff;
  --muted: #b6b6c2;
  --border: rgba(255, 255, 255, 0.08);
  --pink: #ff4fc8;
  --purple: #8d4dff;
  --blue: #34a4ff;
  --green: #22d17d;
  --orange: #ff9f1c;
  --red: #ff4d6d;
  --shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
  --radius: 18px;
  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Tahoma, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(141, 77, 255, 0.12), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 79, 200, 0.1), transparent 25%),
    var(--bg);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.section {
  padding: 85px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 34px;
}

.section-head-right {
  text-align: right;
}

html[dir="ltr"] .section-head-right {
  text-align: left;
}

.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.2;
  background: linear-gradient(90deg, var(--pink), #ff7de2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.lang-toggle {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #121317;
  color: #fff;
  cursor: pointer;
  transition: 0.25s ease;
}

.lang-toggle:hover {
  transform: translateY(-2px);
}

.hero {
  padding-top: 90px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
}

.hero::before {
  width: 260px;
  height: 260px;
  top: 40px;
  right: -60px;
  background: rgba(141, 77, 255, 0.2);
}

.hero::after {
  width: 240px;
  height: 240px;
  left: -50px;
  bottom: 20px;
  background: rgba(255, 79, 200, 0.16);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 28px;
}

.hero-content h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.15;
  font-weight: 800;
  background: linear-gradient(90deg, #8d4dff 0%, #ff5fcb 45%, #7cb6ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
  cursor: pointer;
  font-weight: 700;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  border: none;
  box-shadow: 0 12px 26px rgba(141, 77, 255, 0.25);
}

.btn-secondary {
  background: #17181d;
  color: #fff;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #1ccf7a, #16b86c);
  color: #fff;
  border: none;
  padding-inline: 28px;
}

.full {
  width: 100%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-card,
.service-card,
.price-card,
.team-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  text-align: center;
  padding: 22px 16px;
}

.stat-card h3 {
  margin: 0 0 8px;
  font-size: 32px;
  color: var(--pink);
}

.stat-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 24px;
  min-height: 220px;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.service-icon.pink {
  background: linear-gradient(135deg, #ff6ecf, #d942ff);
}

.service-icon.blue {
  background: linear-gradient(135deg, #3ab7ff, #2979ff);
}

.service-icon.red {
  background: linear-gradient(135deg, #ff5a7d, #ff3366);
}

.service-icon.purple {
  background: linear-gradient(135deg, #9b6dff, #6f46ff);
}

.service-icon.orange {
  background: linear-gradient(135deg, #ffb347, #ff8800);
}

.service-icon.green {
  background: linear-gradient(135deg, #37e28c, #16b86c);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.center-box {
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  padding: 22px 18px;
  text-align: center;
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 21px;
}

.price {
  font-size: 34px;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 16px;
}

.price span {
  font-size: 18px;
  color: var(--blue);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.price-card li {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 14px;
}

.price-card li::before {
  content: "✓";
  color: var(--green);
  margin-inline-end: 8px;
}

.price-card.featured {
  border-color: rgba(255, 79, 200, 0.32);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 79, 200, 0.08),
    0 0 35px rgba(141, 77, 255, 0.15);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

html[dir="ltr"] .badge {
  right: auto;
  left: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}

.about-image::before {
  width: 180px;
  height: 180px;
  background: rgba(52, 164, 255, 0.25);
  bottom: -20px;
  left: -20px;
}

.about-image::after {
  width: 180px;
  height: 180px;
  background: rgba(255, 79, 200, 0.18);
  top: -10px;
  right: 10px;
}

.about-image img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #0d0e11;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
  flex-shrink: 0;
}

.feature-item h3 {
  margin: 0 0 6px;
  font-size: 17px;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.team-card {
  max-width: 320px;
  margin: 0 auto;
  text-align: center;
  padding: 28px 20px;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 16px;
  object-fit: cover;
  border: 3px solid rgba(255, 79, 200, 0.35);
}

.team-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.team-card p {
  margin: 0 0 14px;
  color: var(--muted);
}

.socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #17181d;
  border: 1px solid var(--border);
  color: #fff;
  font-size: 14px;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 30px;
  background: #060607;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 24px;
  padding: 40px 0;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 20px;
}

.footer p,
.footer li,
.footer a {
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.socials-footer {
  justify-content: flex-start;
}

html[dir="ltr"] .socials-footer {
  justify-content: flex-start;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #8a8a96;
  font-size: 13px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  z-index: 1200;
}

html[dir="ltr"] .floating-whatsapp {
  right: auto;
  left: 18px;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 520px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 65px 0;
  }

  .site-header {
    padding-block: 4px;
  }

  .header-inner {
    min-height: 62px;
  }

  .brand img {
    height: 40px;
  }

  .hero {
    padding-top: 60px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .services-grid,
  .pricing-grid,
  .features-list {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .price-card.featured {
    transform: none;
  }

  .about-image img {
    height: 380px;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .footer-grid {
    text-align: center;
  }

  .socials-footer {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(var(--container), calc(100% - 20px));
  }

  .lang-toggle {
    min-height: 38px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .price-card {
    border-radius: 16px;
  }

  .floating-whatsapp {
    width: 54px;
    height: 54px;
    font-size: 26px;
    right: 14px;
    bottom: 14px;
  }

  html[dir="ltr"] .floating-whatsapp {
    left: 14px;
    right: auto;
  }
}