:root {
  --black: #050505;
  --dark: #0d0d10;
  --dark-2: #15151b;
  --white: #ffffff;
  --soft-white: #f7f7f8;
  --muted: #777887;
  --text: #17171d;
  --pink: #ff2d67;
  --pink-dark: #d80f4d;
  --cyan: #20f0e9;
  --border: #e8e8ee;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--soft-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrapper {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  font-size: 29px;
}

.brand span span {
  color: var(--pink);
}

.brand small {
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.45em;
  margin-top: 7px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.9;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--pink);
  opacity: 1;
}

.nav-btn {
  background: linear-gradient(135deg, var(--pink), #ff4e88);
  padding: 13px 22px;
  border-radius: 999px;
  opacity: 1 !important;
  color: var(--white) !important;
  box-shadow: 0 12px 30px rgba(255, 45, 103, 0.28);
}

.menu-toggle,
.menu-icon {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 45, 103, 0.22), transparent 34%),
    radial-gradient(circle at 80% 40%, rgba(32, 240, 233, 0.13), transparent 28%),
    linear-gradient(135deg, #050505, #111116 60%, #050505);
  color: var(--white);
  padding: 98px 0 86px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(35px);
  opacity: 0.35;
}

.hero-glow.one {
  width: 330px;
  height: 330px;
  background: var(--pink);
  right: 12%;
  top: 15%;
}

.hero-glow.two {
  width: 220px;
  height: 220px;
  background: var(--cyan);
  left: 6%;
  bottom: 10%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.eyebrow,
.section-heading span,
.section-label,
.cta-box span {
  display: inline-block;
  color: var(--pink);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  margin-bottom: 25px;
  max-width: 720px;
}

.hero p {
  max-width: 610px;
  color: #d8d8de;
  font-size: 18px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  padding: 16px 24px;
  font-weight: 900;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--pink), #ff5a91);
  box-shadow: 0 18px 42px rgba(255, 45, 103, 0.34);
}

.btn.primary:hover {
  transform: translateY(-3px);
}

.btn.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.btn.secondary:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-points span {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: #ededf2;
  padding: 10px 13px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.hero-card {
  position: relative;
}

.dashboard-card {
  background: linear-gradient(155deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  backdrop-filter: blur(18px);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.shop-icon {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 22px;
  background: #08080b;
  color: var(--pink);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(32,240,233,0.18);
}

.dashboard-top h3 {
  font-size: 24px;
  line-height: 1.1;
}

.dashboard-top p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #b9b9c3;
}

.health-score {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.23);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 24px;
}

.health-score span {
  display: block;
  color: #c6c6ce;
  font-size: 14px;
  margin-bottom: 6px;
}

.health-score strong {
  color: var(--cyan);
  font-size: 28px;
}

.score-circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  border: 7px solid var(--cyan);
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(32, 240, 233, 0.2);
}

.mini-chart {
  height: 96px;
  display: flex;
  align-items: end;
  gap: 12px;
}

.mini-chart span {
  flex: 1;
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(to top, var(--pink), var(--cyan));
  min-height: 24px;
}

.mini-chart span:nth-child(1) { height: 40%; }
.mini-chart span:nth-child(2) { height: 62%; }
.mini-chart span:nth-child(3) { height: 48%; }
.mini-chart span:nth-child(4) { height: 78%; }
.mini-chart span:nth-child(5) { height: 58%; }
.mini-chart span:nth-child(6) { height: 88%; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.stat-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.stat-card small {
  display: block;
  color: #c8c8cf;
  font-size: 12px;
  margin-bottom: 6px;
}

.stat-card strong {
  font-size: 23px;
}

.section {
  padding: 92px 0;
}

.white-section {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.95fr 0.75fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.section-heading.center {
  display: block;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 42px;
}

.section-heading h2,
.problems-grid h2,
.cta-box h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.section-heading p,
.problems-grid p,
.cta-box p {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  min-height: 235px;
  transition: 0.25s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.035);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 45, 103, 0.32);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: rgba(255, 45, 103, 0.1);
  color: var(--pink);
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
}

.service-card p {
  color: #5f606b;
  font-size: 14.5px;
}

.dark-strip {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 45, 103, 0.18), transparent 30%),
    linear-gradient(135deg, #070707, #15151b);
  color: var(--white);
}

.problems-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.problems-grid p {
  color: #c6c6cc;
  margin-top: 20px;
}

.problem-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.problem-list div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: 18px;
  font-weight: 800;
}

.process-section {
  background: #fbfbfc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

.step {
  color: var(--pink);
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
  margin-bottom: 22px;
}

.process-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.process-card p {
  color: var(--muted);
}

.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fff1f5, #f5ffff);
}

.cta-box {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,45,103,0.22), transparent 25%),
    linear-gradient(135deg, #0a0a0d, #171721);
  color: var(--white);
  border-radius: 36px;
  padding: 52px;
  display: grid;
  grid-template-columns: 0.9fr 0.8fr;
  gap: 44px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.2);
}

.cta-box p {
  color: #d5d5dc;
  margin-top: 18px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 22px;
  display: grid;
  gap: 13px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  outline: none;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  border-radius: 14px;
  padding: 15px 16px;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #c8c8cf;
}

.contact-form textarea {
  min-height: 115px;
  resize: vertical;
}

.contact-form button {
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 16px;
  background: linear-gradient(135deg, var(--pink), #ff5a91);
  color: var(--white);
  font-weight: 900;
  font-family: inherit;
  font-size: 16px;
}

.site-footer {
  background: #050505;
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.6fr 0.7fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 20px;
}

.site-footer p {
  color: #bdbdc6;
  max-width: 420px;
}

.site-footer h4 {
  margin-bottom: 14px;
}

.site-footer a:not(.brand) {
  display: block;
  color: #bdbdc6;
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.site-footer a:hover {
  color: var(--pink);
}

.copyright {
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #858592;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }

  .menu-icon span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 999px;
  }

  .main-nav {
    position: absolute;
    top: 82px;
    left: 0;
    width: 100%;
    background: #050505;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px 30px;
    gap: 20px;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .menu-toggle:checked ~ .main-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .section-heading,
  .problems-grid,
  .cta-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .problem-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 26px, 1180px);
  }

  .brand {
    font-size: 23px;
  }

  .brand small {
    font-size: 9px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p,
  .section-heading p,
  .problems-grid p,
  .cta-box p {
    font-size: 16px;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .cta-box {
    padding: 30px 18px;
    border-radius: 26px;
  }

  .section {
    padding: 68px 0;
  }
}
