/* ============================================
   LASH LILI — Design System
   Direction: Luxury Organic
   ============================================ */

:root {
  --primary: #C4917B;
  --primary-light: #E8C4B8;
  --primary-dark: #A87060;
  --accent: #B8860B;
  --accent-light: #D4A843;
  --gold: #C9A84C;
  --bg: #FDF8F6;
  --bg-alt: #FAF0EB;
  --text: #2D2019;
  --text-muted: #7A6B5D;
  --white: #FFFFFF;
  --border: rgba(196, 145, 123, 0.15);
  --shadow: 0 4px 24px rgba(45, 32, 25, 0.06);
  --shadow-lg: 0 12px 48px rgba(45, 32, 25, 0.1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; overflow-x: clip; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
.nav--scrolled {
  background: rgba(253, 248, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
  padding: 12px 0;
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.nav__logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
}
.nav__links {
  display: flex;
  gap: 28px;
}
.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--primary-dark); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nav__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(253, 248, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-menu--open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  text-align: center;
}
.mobile-menu__link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  padding: 12px 0;
  color: var(--text);
  transition: var(--transition);
}
.mobile-menu__link:hover { color: var(--primary); }
.mobile-menu__ctas {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.btn--primary {
  background: var(--primary);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 145, 123, 0.3);
}
.btn--secondary {
  background: var(--accent);
  color: var(--white);
}
.btn--secondary:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.btn--glass {
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn--glass:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn--lg {
  padding: 16px 32px;
  font-size: 1.05rem;
}
.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196, 145, 123, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(232, 196, 184, 0.2) 0%, transparent 60%),
    var(--bg);
}
.hero__bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 145, 123, 0.12) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}
.hero__bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 134, 11, 0.08) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}
.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196, 145, 123, 0.1);
  border: 1px solid rgba(196, 145, 123, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--text);
}
.hero__title-accent {
  color: var(--primary);
  font-style: italic;
}
.hero__subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero__stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.hero__stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196, 145, 123, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section__badge--center { display: block; text-align: center; }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section__title--center { text-align: center; }
.accent { color: var(--primary); }

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about__features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.about__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about__feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.about__feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.about__feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.about__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.slideshow__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slideshowFade 10s linear infinite;
}
.slideshow__slide:nth-child(1) { animation-delay: 0s; }
.slideshow__slide:nth-child(2) { animation-delay: 2s; }
.slideshow__slide:nth-child(3) { animation-delay: 4s; }
.slideshow__slide:nth-child(4) { animation-delay: 6s; }
.slideshow__slide:nth-child(5) { animation-delay: 8s; }
@keyframes slideshowFade {
  0%      { opacity: 0; }
  2%      { opacity: 1; }
  20%     { opacity: 1; }
  22%     { opacity: 0; }
  100%    { opacity: 0; }
}
.about__stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.about__card {
  padding: 20px 12px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.about__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.about__card-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2px;
  color: var(--primary-dark);
}
.about__card-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--bg);
}
.services__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}
.services__tab {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.services__tab:hover { color: var(--primary); border-color: var(--primary-light); }
.services__tab--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.services__panel { display: none; }
.services__panel--active { display: block; }
.services__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
}
.service-card--hit { border-color: var(--accent-light); }
.service-card--premium {
  background: linear-gradient(135deg, #FFF9F0, #FFF5EB);
  border-color: var(--accent);
}
.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.service-card__header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}
.service-card__price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}
.service-card__time {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.service-card__master {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
}

/* ============================================
   PRICE
   ============================================ */
.price {
  padding: 100px 0;
  background: var(--white);
}
.price__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.price__categories {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.price__cat {
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.price__cat:hover { color: var(--primary); }
.price__cat--active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.price__table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.price__table {
  width: 100%;
  border-collapse: collapse;
}
.price__table th {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.price__table td {
  padding: 14px 20px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}
.price__table tr:last-child td { border-bottom: none; }
.price__table tr:hover td { background: rgba(196, 145, 123, 0.04); }
.price__table td:nth-child(2) {
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}
.price__table td:nth-child(3) {
  color: var(--text-muted);
  white-space: nowrap;
}
.price__table-master {
  display: none;
}
.price__table td:nth-child(4) {
  font-size: 0.85rem;
  color: var(--accent);
}
.price__cta {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--bg);
  border-radius: var(--radius);
}
.price__cta p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

/* ============================================
   MASTERS
   ============================================ */
.masters {
  padding: 100px 0;
  background: var(--bg);
}
.masters__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: start;
}
.master-card {
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.master-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.master-card--featured {
  background: linear-gradient(135deg, #FFF9F0, #FFF5EB);
  border-color: var(--accent);
}
.master-card__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
}
.master-card__avatar--gold {
  background: linear-gradient(135deg, var(--accent), var(--gold));
  color: var(--white);
}
.master-card__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.master-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.master-card__spec {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.master-card__review {
  font-size: 0.8rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 100px 0;
  background: var(--white);
}
.reviews__rating {
  text-align: center;
  margin-bottom: 40px;
}
.reviews__rating-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.reviews__rating-stars {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}
.reviews__rating-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
.review-card {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.review-card__stars {
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.review-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
}
.review-card__author {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.reviews__more {
  text-align: center;
  margin-top: 32px;
}

/* ============================================
   CTA
   ============================================ */
.gallery {
  padding: 80px 0 60px;
  background: var(--bg-alt);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
}
.gallery__grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(168,107,107,.18);
}
.gallery__grid img:nth-child(3n+1) {
  aspect-ratio: 3/4;
}
.gallery__grid img:nth-child(5n+2) {
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery { padding: 60px 0 40px; }
}
.cta {
  padding: 100px 0;
  background: var(--bg-alt);
}
.cta__inner {
  text-align: center;
  padding: 64px 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 24px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.cta__inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta__title .accent { color: var(--accent-light); }
.cta__subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta .btn--primary {
  background: var(--white);
  color: var(--primary-dark);
}
.cta .btn--primary:hover {
  background: var(--bg);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.cta .btn--glass {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.cta .btn--glass:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ============================================
   CONTACTS
   ============================================ */
.contacts {
  padding: 100px 0;
  background: var(--white);
}
.contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contacts__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.contacts__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contacts__item-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contacts__item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.contacts__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contacts__item a {
  color: var(--primary-dark);
  font-weight: 500;
}
.contacts__item a:hover { color: var(--primary); }
.contacts__socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.contacts__social {
  display: inline-block;
  padding: 6px 14px;
  background: var(--bg);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}
.contacts__social:hover {
  background: var(--primary);
  color: var(--white);
}
.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-height: 400px;
}
.contacts__map iframe {
  display: block;
  width: 100%;
  height: 400px;
  max-height: 400px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
}
.footer__tagline {
  font-size: 0.9rem;
  margin-top: 4px;
}
.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__link {
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer__link:hover { color: var(--white); }
.footer__copy {
  font-size: 0.8rem;
  opacity: 0.6;
}
.footer__dev {
  margin-top: 4px;
}
.footer__dev a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer__dev a:hover { color: var(--white); }

/* ============================================
   FLOATING CTA
   ============================================ */
.floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}
.floating--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.floating__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(42, 171, 238, 0.4);
  transition: var(--transition);
}
.floating__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(42, 171, 238, 0.5);
}
.floating__btn--max {
  background: linear-gradient(135deg, #000000, #333333);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.floating__btn--max:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.4);
}
.floating__btn svg {
  width: 28px;
  height: 28px;
}
.floating__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(42, 171, 238, 0.4);
  animation: pulse 2s ease-out infinite;
}
.floating__btn--max .floating__pulse {
  border-color: rgba(0, 0, 0, 0.3);
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { max-width: 100%; }
  .contacts__grid { grid-template-columns: 1fr; }
  .price__table-master { display: none; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 100px 20px 60px; min-height: 500px; }
  .hero__title { font-size: clamp(1.8rem, 5vw, 2.6rem); }
  .hero__stats { gap: 24px; }
  .hero__scroll { display: none; }

  .services__cards { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .masters__grid { grid-template-columns: repeat(3, 1fr); }

  .price__table th:nth-child(3),
  .price__table td:nth-child(3) { display: none; }

  .cta__inner { padding: 40px 24px; }

  .floating { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { width: 100%; }
  .cta__buttons { flex-direction: column; }
  .cta__buttons .btn { width: 100%; }
  .masters__grid { grid-template-columns: repeat(2, 1fr); }
  .mobile-menu__ctas { flex-direction: column; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}
