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

:root{
  --bg:#05020a;
  --bg2:#0b0314;
  --pink:#ff3fbf;
  --purple:#8a35ff;
  --blue:#229ed9;
  --text:#ffffff;
  --muted:#d8cce5;
  --line:rgba(255,63,191,.45);
  --card:rgba(255,255,255,.065);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top right, rgba(255,63,191,.16), transparent 34%),
    radial-gradient(circle at 20% 10%, rgba(138,53,255,.14), transparent 30%),
    var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

.header {
  width: 100%;
  padding: 16px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  background: rgba(5,2,10,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: .9;
}

.brand-rose {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 46px;
  font-style: italic;
  text-shadow: 0 0 22px rgba(255,63,191,.75);
}

.brand-dev {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-weight: 800;
  font-size: 13px;
}

.nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
}

.nav a,
.lang a {
  transition: .25s;
}

.nav a:hover,
.lang a:hover,
.lang .active {
  color: var(--pink);
}

.lang {
  display: flex;
  gap: 8px;
}

.lang a {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  font-weight: 800;
}

.hero {
  min-height: 86vh;
  padding: 75px 5%;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 900;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 88px);
  line-height: .98;
  max-width: 850px;
  margin-bottom: 24px;
}

.hero-text {
  color: var(--muted);
  font-size: 21px;
  max-width: 780px;
  margin-bottom: 30px;
}

.hero-buttons,
.social-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

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

.btn:hover,
.social-buttons a:hover,
.contact-box a:hover,
.service:hover,
.portfolio-card:hover {
  transform: translateY(-5px);
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--purple));
  box-shadow: 0 0 28px rgba(255,63,191,.35);
}

.outline {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
}

.telegram {
  background: linear-gradient(135deg, var(--blue), #0048ff);
  box-shadow: 0 0 25px rgba(34,158,217,.35);
}

.trust-row {
  margin-top: 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.trust-row span {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  padding: 10px 14px;
  border-radius: 999px;
  color: #f5e7ff;
  font-weight: 800;
}

.hero-card {
  position: relative;
  display: grid;
  gap: 20px;
}

.photo-frame {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 0 45px rgba(255,63,191,.28);
  background: rgba(255,255,255,.05);
}

.photo-frame img {
  width: 100%;
  display: block;
}

.qr-mini {
  position: absolute;
  right: -12px;
  bottom: -22px;
  width: 190px;
  background: #fff;
  color: #111;
  border-radius: 18px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 0 30px rgba(255,63,191,.35);
}

.qr-mini img {
  width: 100%;
  display: block;
}

.qr-mini p {
  font-size: 13px;
  font-weight: 900;
}

.stats {
  margin: 20px 5% 50px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.stats strong {
  display: block;
  font-size: 42px;
  color: var(--pink);
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  padding: 80px 5%;
}

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 45px;
}

.section-title h2,
.qr-section h2,
.social-section h2,
.contact h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.08;
}

.services-grid,
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service,
.portfolio-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 24px;
  background: var(--card);
  border: 1px solid rgba(255,63,191,.32);
  box-shadow: 0 0 22px rgba(255,63,191,.10);
  transition: .25s;
}

.service span {
  font-size: 44px;
  display: block;
  margin-bottom: 16px;
}

.service h3,
.portfolio-card h3 {
  color: var(--pink);
  margin-bottom: 12px;
  font-size: 24px;
}

.service p,
.portfolio-card p,
.qr-section p,
.social-section p,
.contact p {
  color: var(--muted);
  font-size: 18px;
}

.portfolio {
  background: linear-gradient(135deg, rgba(255,63,191,.08), rgba(138,53,255,.08));
}

.qr-section {
  margin: 50px 5%;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(255,63,191,.18), transparent 35%),
    var(--card);
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 35px;
  align-items: center;
}

.qr-section img {
  width: 260px;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
}

.qr-section strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  word-break: break-word;
}

.social-section {
  padding: 80px 5%;
  text-align: center;
  background:
    radial-gradient(circle at center, rgba(255,63,191,.14), transparent 42%),
    rgba(255,255,255,.025);
}

.social-section p {
  max-width: 750px;
  margin: 0 auto 28px;
}

.social-buttons {
  justify-content: center;
}

.social-buttons a {
  padding: 15px 25px;
  border-radius: 14px;
  font-weight: 900;
  transition: .25s;
}

.instagram {
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af);
}

.facebook {
  background: #1877f2;
}

.tiktok {
  background: linear-gradient(135deg,#000,#ff0050,#00f2ea);
}

.telegram-social {
  background: linear-gradient(135deg,#229ed9,#1266f1);
}

.contact {
  text-align: center;
}

.contact p {
  margin: 15px auto 28px;
}

.contact-box {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box a {
  padding: 15px 22px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  font-weight: 900;
  transition: .25s;
}

.footer {
  padding: 55px 5%;
  text-align: center;
  border-top: 1px solid var(--line);
  background: #030106;
  color: var(--muted);
}

.footer .brand-rose {
  font-size: 42px;
}

.floating-bot {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1001;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  color: white;
  font-weight: 900;
  box-shadow: 0 0 35px rgba(255,63,191,.45);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1000px) {
  .header {
    flex-direction: column;
  }

  .hero,
  .qr-section {
    grid-template-columns: 1fr;
  }

  .qr-mini {
    position: static;
    width: 220px;
    margin: 0 auto;
  }

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

  .nav {
    justify-content: center;
  }

  .hero {
    padding-top: 45px;
  }
}

@media (max-width: 560px) {
  .floating-bot {
    left: 16px;
    right: 16px;
    text-align: center;
  }

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

  .qr-section img {
    width: 100%;
  }
}


/* ===== Rose Development Solutions domain update ===== */
.brand-dev {
  letter-spacing: 3px;
  font-size: 12px;
}

.qr-section strong::before {
  content: "🌐 ";
}

.qr-section img,
.qr-mini img {
  image-rendering: auto;
}

.qr-section img {
  border: 10px solid white;
  box-shadow: 0 0 30px rgba(255,63,191,.25);
}

.hero-content h1::after {
  content: "";
  display: block;
  width: 160px;
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink), var(--purple));
}

.service:nth-child(4) {
  border-color: rgba(34,158,217,.45);
}

.service:nth-child(4) h3 {
  color: #73d9ff;
}

@media (max-width: 560px) {
  .brand-rose {
    font-size: 38px;
  }
  .brand-dev {
    font-size: 10px;
    letter-spacing: 2px;
  }
}
