:root {
  --bg: #0a0a0f;
  --panel: rgba(255,255,255,0.05);
  --panel-strong: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.1);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.65);
  --muted-2: rgba(255,255,255,0.45);
  --accent-a: #d946ef;
  --accent-b: #8b5cf6;
  --shadow: 0 25px 60px rgba(0,0,0,0.35);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  position: relative;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.bg-blur {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  z-index: -1;
}
.blur-1 {
  width: 320px; height: 320px; left: -120px; top: -80px;
  background: rgba(217, 70, 239, 0.18);
}
.blur-2 {
  width: 280px; height: 280px; right: -80px; top: 180px;
  background: rgba(139, 92, 246, 0.16);
}
.blur-3 {
  width: 260px; height: 260px; left: 20%; bottom: -100px;
  background: rgba(236, 72, 153, 0.1);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(10,10,15,0.72);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.28em;
}
.brand__subtitle {
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  color: var(--muted-2);
}
.nav {
  display: flex;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}
.nav a:hover { color: #fff; }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 24px;
  border: 1px solid var(--border);
  transition: 0.25s ease;
  cursor: pointer;
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
}
.btn--primary {
  border: none;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 18px 40px rgba(139,92,246,0.28);
}
.btn--primary:hover {
  transform: translateY(-1px);
}
.btn--full { width: 100%; border-radius: 22px; padding: 16px 22px; }

.hero {
  padding: 56px 0 80px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(217,70,239,0.2);
  background: rgba(217,70,239,0.1);
  color: #f5c7ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.hero h1,
.section h2,
.about-card h2,
.contact-copy h2 {
  margin: 18px 0 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 {
  font-size: clamp(44px, 7vw, 78px);
  max-width: 760px;
}
.hero p {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.stats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 560px;
}
.stat-card {
  padding: 24px 18px;
  text-align: center;
  border-radius: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stat-card strong {
  display: block;
  font-size: 28px;
  font-weight: 700;
}
.stat-card span {
  margin-top: 6px;
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}
.hero__visuals {
  display: grid;
  gap: 20px;
}
.hero__bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.image-card,
.info-card,
.about-card,
.steps-card,
.contact-card,
.service-card {
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: var(--shadow);
}
.image-card {
  overflow: hidden;
  border-radius: 32px;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-card--large img { height: 430px; }
.image-card--small img { height: 210px; }
.info-card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
}
.info-card__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(245, 199, 255, 0.8);
}
.info-card h3 {
  margin: 18px 0 0;
  font-size: 30px;
  line-height: 1.15;
}
.info-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.section { padding: 48px 0; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 34px;
}
.section-head h2 { font-size: clamp(34px, 4vw, 54px); }
.section-head p {
  max-width: 530px;
  margin: 0;
  color: var(--muted);
  text-align: right;
  line-height: 1.8;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  border-radius: 30px;
  padding: 30px;
  transition: transform .25s ease, background .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
}
.service-card__icon {
  width: 48px; height: 48px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(217,70,239,0.3), rgba(139,92,246,0.3));
}
.service-card h3 {
  margin: 18px 0 0;
  font-size: 28px;
}
.service-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 15px;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}
.image-card--about img {
  min-height: 440px;
}
.about-card {
  border-radius: 34px;
  padding: 40px;
}
.about-card h2 {
  font-size: clamp(34px, 4vw, 56px);
}
.benefits {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}
.benefit-item {
  border-radius: 22px;
  padding: 20px 22px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
}
.steps-card {
  border-radius: 36px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
}
.steps-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step-item {
  border-radius: 28px;
  padding: 26px;
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
}
.step-item span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: #f0abfc;
}
.step-item h3 {
  margin: 18px 0 0;
  font-size: 24px;
  line-height: 1.4;
}
.section--contact { padding-bottom: 80px; }
.contact-card {
  border-radius: 36px;
  padding: 38px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
}
.contact-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.contact-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.9;
}
.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--border);
  background: #111118;
  color: #fff;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.footer {
  border-top: 1px solid var(--border);
}
.footer__inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-2);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero__grid,
  .about-grid,
  .contact-card,
  .services-grid,
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__grid,
  .about-grid,
  .contact-card { gap: 24px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav { display: none; }
  .container { width: min(100% - 28px, 1180px); }
  .hero,
  .section,
  .section--contact { padding: 30px 0 56px; }
  .hero__grid,
  .hero__bottom-grid,
  .section-head,
  .services-grid,
  .about-grid,
  .steps-grid,
  .contact-card,
  .footer__inner,
  .stats {
    grid-template-columns: 1fr !important;
    flex-direction: column;
  }
  .header__inner,
  .footer__inner {
    align-items: flex-start;
  }
  .section-head p {
    text-align: left;
  }
  .image-card--large img { height: 340px; }
  .image-card--small img,
  .image-card--about img { height: 260px; min-height: 260px; }
  .info-card,
  .about-card,
  .steps-card,
  .contact-card,
  .service-card { padding: 24px; }
  .hero p { font-size: 17px; }
  .service-card h3,
  .step-item h3,
  .info-card h3 { font-size: 24px; }
}
