/* === СБРОС И БАЗА === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: #FDF5F6;
  font-family: 'Inter', sans-serif;
  color: #1E1116;
  line-height: 1.4;
  min-height: 100vh;
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow-x: hidden;
  display: flex;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

/* === ФОНОВЫЕ БЛОБЫ === */
.bg-blob {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.5;
}
.blob {
  position: absolute;
  border-radius: 70% 30% 60% 40% / 50% 40% 60% 50%;
  filter: blur(100px); opacity: 0.25; mix-blend-mode: multiply;
  will-change: transform;
}
.blob-1 {
  width: 60vmax; height: 55vmax; background: #bb00f5;
  top: -5vh; right: -10vw;
  animation: floatBlob 24s infinite alternate ease-in-out;
}
.blob-2 {
  width: 50vmax; height: 60vmax; background: #FF6B8B;
  bottom: -10vh; left: -8vw;
  animation: floatBlob 28s infinite alternate-reverse ease-in-out;
  mix-blend-mode: overlay; opacity: 0.2;
}
@keyframes floatBlob {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(4vw, 5vh) rotate(5deg) scale(1.05); }
}

/* === ОБЁРТКА === */
.wrapper {
  position: relative; z-index: 10;
  max-width: 1100px; margin: 0 auto; width: 100%;
  backdrop-filter: blur(2px);
}

/* === SEO-ВСТУПЛЕНИЕ === */
.seo-intro {
  margin: 1.5rem 0 1rem;
}
.seo-heading {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1E1116;
  margin-bottom: 0.5rem;
}
.seo-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 800px;
}
.seo-text a {
  color: #FF6B8B;
  text-decoration: none;
  font-weight: 500;
}

/* === ХЛЕБНЫЕ КРОШКИ === */
.breadcrumbs {
  margin-bottom: 1.2rem; font-size: 0.8rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.breadcrumbs a {
  color: #7A5A63; text-decoration: none;
  border-bottom: 1px dotted #FFB3C1;
}
.breadcrumbs a:hover { color: #FF6B8B; }
.breadcrumbs span { color: #1E1116; opacity: 0.6; }

/* === ШАПКА === */
.logo-area {
  margin-bottom: 1rem;
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; border-bottom: 1.5px solid rgba(30, 17, 22, 0.1);
  padding-bottom: 0.8rem;
}
.brand {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 1.8rem; letter-spacing: -0.02em; color: #1E1116;
  position: relative; display: inline-block;
}
.brand span {
  background: linear-gradient(108deg, #bb00f5, #FF6B8B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin: 0 -2px;
}
.brand::after {
  content: ""; position: absolute; bottom: 0.1em; right: -0.3em;
  width: 0.35em; height: 0.35em;
  background: radial-gradient(circle at 30% 25%, #fff, #FF6B8B);
  border-radius: 50%;
  box-shadow: 0 0 0 2px #FDF5F6, 0 6px 12px rgba(187,0,245,0.25);
}
.tagline {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em; color: #1E1116;
  opacity: 0.7; margin-top: 0.2rem;
}
.header-phone {
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 1.1rem;
  background: linear-gradient(108deg, #bb00f5, #FF6B8B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  text-decoration: none; border-bottom: 2px dashed #FFB3C1;
}

/* === СЕТКА КАРТОЧЕК (главная) === */
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem; margin: 1.2rem 0 1rem;
}
.service-card {
  background: rgba(253, 245, 246, 0.7); backdrop-filter: blur(12px);
  border-radius: 24px; padding: 1rem 1rem 0.9rem;
  box-shadow: 0 10px 20px -6px rgba(187,0,245,0.08),
              inset 0 1px 0 0 rgba(255,255,255,0.9),
              0 0 0 1px rgba(255,107,139,0.2);
  transition: transform 0.2s ease, box-shadow 0.3s;
  border: 1px solid rgba(255,255,255,0.5);
  text-decoration: none; color: inherit; display: block;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 30px -8px #bb00f540, inset 0 1px 0 #fff, 0 0 0 1px #FF6B8B;
}

/* Графика карточек */
.card-graphic { height: 60px; margin-bottom: 0.8rem; display: flex; align-items: center; }
.graphic-manicure { display: flex; align-items: flex-end; gap: 6px; }
.stroke-line {
  width: 7px; border-radius: 20px 20px 4px 4px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05), 0 0 0 1px rgba(255,255,255,0.6);
}
.line1 { height: 45px; background: linear-gradient(108deg, #bb00f5, #FF6B8B); }
.line2 { height: 60px; background: linear-gradient(108deg, #FF6B8B, #bb00f5); width: 9px; }
.line3 { height: 38px; background: #FF6B8B; }
.line4 { height: 70px; background: linear-gradient(108deg, #bb00f5, #FF6B8B); width: 11px; }
.line5 { height: 42px; background: #bb00f5; }
.graphic-coating { display: flex; flex-direction: column; gap: 6px; width: 90%; }
.layer {
  height: 9px; border-radius: 40px;
  background: linear-gradient(108deg, #bb00f5, #FF6B8B); opacity: 0.8;
  box-shadow: inset 0 1px 3px rgba(255,255,255,0.8);
}
.layer:nth-child(1) { width: 100%; } .layer:nth-child(2) { width: 80%; } .layer:nth-child(3) { width: 90%; }

/* Новые иконки */
.graphic-repair-card {
  display: flex;
  align-items: flex-end;
  position: relative;
  width: 40px;
  height: 60px;
}
.nail-crack {
  width: 14px;
  height: 55px;
  background: linear-gradient(135deg, #FCCFDF 0%, #FFB6C1 100%);
  border-radius: 20px 20px 6px 6px;
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.05);
}
.nail-crack::after {
  content: "";
  position: absolute;
  top: 15px;
  left: 4px;
  width: 2px;
  height: 25px;
  background: #1E1116;
  opacity: 0.3;
  transform: rotate(15deg);
}
.nail-patch {
  width: 10px;
  height: 25px;
  background: #FF6B8B;
  border-radius: 8px;
  position: absolute;
  left: 18px;
  bottom: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.graphic-removal-card {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.spiral-small {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,107,139,0.3);
  border-top-color: #FF6B8B;
  border-radius: 50%;
  animation: spin 2s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.graphic-pedicure-card {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100%;
}
.foot-shape {
  width: 30px;
  height: 50px;
  background: rgba(255,107,139,0.15);
  border-radius: 40% 40% 20% 20% / 60% 60% 20% 20%;
  border: 1.5px solid #FF6B8B;
}
.toes-group {
  display: flex;
  gap: 3px;
  align-items: flex-end;
}
.toe {
  display: block;
  width: 8px;
  height: 20px;
  background: #FFB6C1;
  border-radius: 4px 4px 2px 2px;
}
.toe:nth-child(2) { height: 25px; }
.toe:nth-child(3) { height: 18px; }
.toe:nth-child(4) { height: 22px; }

.graphic-toes-card {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  height: 50px;
}
.toe-small {
  width: 8px;
  height: 25px;
  background: linear-gradient(145deg, #FF9A9E, #FF6B8B);
  border-radius: 6px 6px 3px 3px;
}
.toe-small:nth-child(2) { height: 32px; }
.toe-small:nth-child(3) { height: 20px; }
.toe-small:nth-child(4) { height: 28px; }
.toe-small:nth-child(5) { height: 22px; }

.graphic-paraffin-card {
  display: flex;
  gap: 8px;
  align-items: center;
}
.drop {
  width: 16px;
  height: 16px;
  background: radial-gradient(circle at 30% 30%, #fff, #FFDAB9);
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}
.drop:nth-child(2) { width: 24px; height: 24px; }
.drop:nth-child(3) { width: 18px; height: 18px; }

.service-title {
  font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 1.1rem;
  letter-spacing: -0.01em; margin-bottom: 0.2rem; line-height: 1.2;
}
.service-desc {
  font-size: 0.7rem; color: #1E1116; opacity: 0.7;
  margin-bottom: 0.7rem; border-left: 2px solid #FF6B8B; padding-left: 0.5rem;
}
.price-time {
  display: flex; align-items: baseline; justify-content: space-between;
  border-top: 1px dashed rgba(30,17,22,0.15); padding-top: 0.7rem; margin-top: auto;
}
.price {
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.5rem;
  background: linear-gradient(108deg, #bb00f5, #FF6B8B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.duration {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; background: #FFE9EC;
  padding: 0.15rem 0.6rem; border-radius: 40px; color: #1E1116;
}
.small-note {
  font-size: 0.6rem; color: #7A5A63; margin-top: 4px; text-align: right;
  letter-spacing: 0.3px; border-top: 1px dotted #FFB3C1; padding-top: 4px;
}

/* === СТРАНИЦА УСЛУГИ === */
.service-layout {
  display: flex; gap: 2rem; margin: 2rem 0;
  background: rgba(253, 245, 246, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 2rem 2.2rem;
  box-shadow: 0 15px 30px -10px rgba(187,0,245,0.08),
              inset 0 1px 0 rgba(255,255,255,0.8),
              0 0 0 1px rgba(255,107,139,0.2);
  flex-wrap: wrap;
}
.service-content { flex: 2 1 400px; }
.service-graphic {
  flex: 1 1 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
h1 {
  font-family: 'Unbounded', sans-serif; font-weight: 700;
  font-size: 2.2rem; line-height: 1.2; letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
  background: linear-gradient(108deg, #1E1116, #FF6B8B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-row {
  display: flex; align-items: baseline; gap: 1rem; margin: 0.8rem 0 1.2rem;
}
.price-big {
  font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 2.5rem;
  background: linear-gradient(108deg, #bb00f5, #FF6B8B);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.duration-badge {
  background: #FFE9EC; border-radius: 40px; padding: 0.3rem 1.2rem;
  font-family: 'Inter', sans-serif; font-weight: 500; color: #1E1116;
  font-size: 1rem;
}
.service-description {
  font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.8rem;
  color: #1E1116; opacity: 0.85;
}
.service-description ul {
  margin-top: 0.8rem; padding-left: 1.2rem; list-style-type: none;
}
.service-description li {
  margin-bottom: 0.4rem; position: relative;
}
.service-description li::before {
  content: "✦"; color: #FF6B8B; position: absolute; left: -1.2rem;
}
.cta-button {
  display: inline-block; background: linear-gradient(145deg, #2a2a2a 0%, #1E1116 100%);
  color: #FFFFFF; font-family: 'Unbounded', sans-serif; font-weight: 500;
  font-size: 1rem; letter-spacing: 0.05em; padding: 0.9rem 2rem;
  border-radius: 60px; text-decoration: none;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.25),
              0 10px 18px -6px rgba(0,0,0,0.2);
  transition: all 0.25s; border: none;
  text-align: center;
}
.cta-button:hover {
  transform: scale(1.02);
  box-shadow: inset 0 1px 6px rgba(255,255,255,0.4),
              0 15px 22px -6px #bb00f560,
              0 0 0 1px #FF6B8B;
}
.cta-note {
  margin-top: 1rem; font-size: 0.75rem; opacity: 0.7;
  text-align: center;
}

/* === ФУТЕР === */
.footer-contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  background: rgba(255, 233, 236, 0.4);
  backdrop-filter: blur(8px);
  padding: 1rem 1.8rem;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.7);
}
.footer-left, .footer-center, .footer-right {
  flex: 1 1 200px;
  display: flex;
  justify-content: center;
}
.footer-left { justify-content: flex-start; }
.footer-right {
  justify-content: flex-end;
  gap: 15px;
  align-items: center;
}
.master-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.master-avatar {
  width: 40px;
  height: 40px;
  background: #FFE9EC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FF6B8B;
  color: #FF6B8B;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}
.master-details { text-align: left; }
.master-details h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1E1116;
  margin-bottom: 2px;
}
.master-details .tel {
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(108deg, #bb00f5, #FF6B8B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
}
.address-block {
  font-size: 0.8rem;
  color: #1E1116;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.blog-link {
  font-size: 0.9rem;
  color: #1E1116;
  text-decoration: none;
  border-bottom: 1px dashed #FFB3C1;
  margin-left: 1rem;
}
.blog-link:hover { color: #FF6B8B; }
.social-icons {
  display: flex;
  gap: 12px;
}
.social-icons a {
  color: #1E1116;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-size: 1.2rem;
  text-decoration: none;
}
.social-icons a:hover { opacity: 1; color: #FF6B8B; }
.dot-cluster {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 10px;
}

/* === БЛОГ === */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}
.blog-item {
  background: rgba(253, 245, 246, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  padding: 1.5rem 2rem;
  box-shadow: 0 10px 20px -6px rgba(187,0,245,0.08);
  border: 1px solid rgba(255,255,255,0.5);
}
.blog-item h2 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.blog-item h2 a {
  text-decoration: none;
  color: #1E1116;
  background: linear-gradient(108deg, #1E1116, #FF6B8B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blog-meta {
  font-size: 0.8rem;
  color: #7A5A63;
  margin-bottom: 0.8rem;
}
.blog-excerpt { opacity: 0.8; }

/* Статья */
.article-content {
  background: rgba(253, 245, 246, 0.4);
  backdrop-filter: blur(8px);
  border-radius: 40px;
  padding: 2rem 2.2rem;
  margin: 2rem 0;
}
.article-content h2 {
  font-family: 'Unbounded', sans-serif;
  margin: 1.5rem 0 1rem;
}
.article-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* === АДАПТИВ === */
@media (max-width: 900px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  body {
    padding: 1rem;
    align-items: flex-start;
  }
  .logo-area {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }
  .brand { font-size: 1.6rem; }
  h1 { font-size: 1.8rem; }
  .price-big { font-size: 2rem; }
  .service-layout { padding: 1.5rem; }
  .service-graphic { min-height: 120px; }
  
  .footer-contacts {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 1.2rem 1rem;
  }
  .footer-left, .footer-center, .footer-right {
    justify-content: center;
    width: 100%;
  }
  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }
  .master-info {
    flex-direction: column;
    text-align: center;
  }
  .master-details { text-align: center; }
  .address-block {
    white-space: normal;
    justify-content: center;
  }
  .blog-link { margin-left: 0; margin-top: 0.5rem; }
  .price-grid { grid-template-columns: 1fr; }
  
  .cta-button {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0.8rem 1.5rem;
  }
}