/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: rgba(51, 51, 51, 1);
  background: #fff6fc;
  overflow-x: hidden;
}

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

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

/* Gradient Text Utility */
.gradient-text {
  background: linear-gradient(41deg, rgba(255,24,91,1) 0%, rgba(234,0,125,1) 44%, rgba(236,0,255,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 50px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 1);
  box-shadow: 0 2px 8px rgba(234, 0, 125, 0.15);
}

.logo-text {
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(41deg, rgba(255,24,91,1) 0%, rgba(234,0,125,1) 44%, rgba(236,0,255,1) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-size: 14px;
  color: rgba(51, 51, 51, 1);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: rgba(234, 0, 125, 1);
}

.nav-link.active {
  color: rgba(234, 0, 125, 1);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(41deg, rgba(255,24,91,1) 0%, rgba(234,0,125,1) 44%, rgba(236,0,255,1) 100%);
  border-radius: 1px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: #fff6fc;
}

.hero-bg-image {
  position: relative;
  width: 100%;
}

.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-top: 40px;
}

.hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 320px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  color: rgba(51, 51, 51, 1);
}

.hero-title .gradient-text {
  font-size: 42px;
  font-weight: 700;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
  padding: 50px 0;
  background: #fff6fc;
}

.experience-card {
  display: flex;
  align-items: center;
  gap: 36px;
  border: 1px solid rgba(255,188,230,1);
  border-radius: 35px;
  padding: 36px 40px;
  background: #ffffff;
  max-width: 960px;
  margin: 0 auto;
}

.experience-image {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 300px;
}

.experience-illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.experience-content {
  flex: 1;
}

.experience-content .section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
}

.experience-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(102, 102, 102, 1);
}

/* ===== WHAT WE OFFER SECTION ===== */
.offer {
  padding: 50px 0 60px;
}

.offer-inner {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 50px;
}

.offer-left {
  flex: 1;
  padding-top: 10px;
}

.offer-left .section-title {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 24px;
}

.offer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.offer-bullet {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(0deg, rgba(255,136,211,1) 0%, rgba(234,0,114,1) 100%);
  flex-shrink: 0;
}

.offer-item-title {
  font-size: 17px;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
}

.offer-item-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(102, 102, 102, 1);
  margin-bottom: 20px;
  padding-left: 27px;
}

.offer-right {
  position: relative;
  flex-shrink: 0;
  width: 420px;
}

.offer-phones {
  width: 100%;
}

.offer-deco-sphere {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 8, 156, 1);
  opacity: 0.62;
  filter: blur(15px);
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 30px 0 50px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px 36px;
  border-radius: 35px;
  background: linear-gradient(41deg, rgba(255,24,91,1) 0%, rgba(234,0,125,1) 44%, rgba(236,0,255,1) 100%);
  max-width: 960px;
  margin: 0 auto;
}

.contact-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

.contact-content {
  flex: 1;
}

.contact-title {
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 8px;
}

.contact-text {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 10px;
}

.contact-email {
  font-size: 14px;
  color: rgba(255, 255, 255, 1);
  text-decoration: underline;
  font-weight: 500;
}

.contact-email:hover {
  opacity: 0.8;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0 24px;
  background: #fff6fc;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 50px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  border: 4px solid rgba(255, 255, 255, 1);
  box-shadow: 0 4px 12px rgba(234, 0, 125, 0.12);
}

.footer-logo-text {
  height: 32px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 600;
}

.footer-center {
  display: flex;
  gap: 16px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border: 1px solid rgba(255,188,230,1);
  border-radius: 18px;
  font-size: 14px;
  color: rgba(51, 51, 51, 1);
  background: rgba(255, 255, 255, 1);
  transition: all 0.2s;
}

.footer-btn:hover {
  background: rgba(255, 240, 248, 1);
  border-color: rgba(234, 0, 125, 1);
  color: rgba(234, 0, 125, 1);
}

.footer-right {
  width: 180px;
  position: relative;
}

.footer-shield {
  width: 100%;
  margin-top: -40px;
}

.footer-copyright {
  text-align: center;
  padding-top: 16px;
  border-top: 1px solid rgba(240, 240, 240, 1);
  max-width: 960px;
  margin: 0 auto;
  padding-left: 50px;
  padding-right: 50px;
}

.footer-copyright p {
  font-size: 10px;
  color: rgba(153, 153, 153, 1);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    max-width: 100%;
  }

  .header {
    padding: 12px 20px;
  }

  .nav {
    gap: 12px;
  }

  .nav-link {
    font-size: 9px;
  }

  .hero {
    padding: 30px 20px 50px;
  }

  .hero-photo-left {
    width: 120px;
    height: 110px;
    top: 60px;
    left: 0;
  }

  .hero-photo-right {
    width: 130px;
    height: 120px;
  }

  .hero-logo {
    width: 180px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-deco-puzzle {
    width: 100px;
  }

  .experience {
    padding: 30px 20px;
  }

  .experience-card {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }

  .experience-image {
    width: 200px;
    height: 200px;
  }

  .offer {
    padding: 30px 20px;
  }

  .offer-inner {
    flex-direction: column;
  }

  .offer-right {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .contact {
    padding: 20px 20px 30px;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .footer {
    padding: 30px 20px 20px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer-center {
    flex-direction: column;
    gap: 10px;
  }
}
