/* ========== Reset & Base ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Cairo", sans-serif;
  background: linear-gradient(180deg, #fff7fb 0%, #f6fbff 60%, #ffffff 100%);
  color: #1b1b1b;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }

/* ========== Background Shapes ========== */
.bg-shapes .shape{
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  z-index: -1;
}
.s1{ width: 260px; height: 260px; top: -60px; right: -60px; background: #ffd0f2; }
.s2{ width: 300px; height: 300px; bottom: -80px; left: -80px; background: #cfe7ff; }
.s3{ width: 220px; height: 220px; top: 35%; left: -60px; background: #fff0b8; }
.s4{ width: 240px; height: 240px; top: 55%; right: -70px; background: #d8ffd8; }

/* ========== Navbar ========== */
.navbar{
  max-width: 1200px;
  margin: 16px auto;
  padding: 12px 18px;
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border: 1px solid #eee;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: sticky;
  top: 12px;
  z-index: 10;
}
.logo{
  display: flex; align-items: center; gap: 10px;
}
.logo-mark{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #7b5cff, #00d2ff);
  color: #fff; font-weight: 800;
  border-radius: 14px;
  box-shadow: 0 10px 20px #00000012;
}
.logo-text h1{ font-size: 20px; font-weight: 800; }
.logo-text p{ font-size: 12px; opacity: 0.7; margin-top: -4px; }

.nav-links{
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.nav-links a{
  font-weight: 600; font-size: 14px;
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.2s;
}
.nav-links a:hover{
  background: #f3f6ff;
}

/* ========== Buttons ========== */
.btn{
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ff7ad9, #7b5cff);
  color: white; font-weight: 800;
  padding: 12px 18px; border-radius: 12px;
  box-shadow: 0 12px 22px #7b5cff33;
  transition: transform .15s ease, opacity .15s ease;
  border: none; cursor: pointer;
}
.btn:hover{ transform: translateY(-2px); opacity: 0.95; }
.btn.small{ padding: 8px 12px; font-size: 13px; }
.btn.outline{
  background: transparent; color: #6b4eff;
  border: 2px dashed #a99cff;
  box-shadow: none;
}

/* ========== Hero ========== */
.hero{
  max-width: 1200px;
  margin: 30px auto 10px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  align-items: center;
}
.hero-content{
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 12px 30px #0000000a;
}
.badge{
  display: inline-block;
  background: #f4f0ff;
  color: #5b3fff;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}
.hero h2{
  font-size: 34px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.highlight{
  background: linear-gradient(90deg, #ff52c1, #7b5cff);
  -webkit-background-clip: text;
  color: transparent;
}
.hero p{
  font-size: 16px; opacity: 0.9; line-height: 1.8;
}
.hero-actions{ display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

.trust{
  display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap;
}
.trust-item{
  font-size: 13px; font-weight: 700;
  background: #fafafa; border: 1px solid #eee;
  padding: 6px 10px; border-radius: 10px;
}

.hero-art{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.toy-card{
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #eee;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 20px #0000000a;
  transition: transform .15s ease;
}
.toy-card:hover{ transform: translateY(-4px); }
.toy-card.big{ grid-column: span 2; }
.toy-face{ font-size: 44px; }
.toy-card h3{ font-size: 18px; margin-top: 6px; }
.toy-card p{ font-size: 13px; opacity: 0.8; margin-top: 4px; }

/* ========== Sections ========== */
.section{
  max-width: 1200px; margin: 35px auto; padding: 18px;
}
.section-title{
  font-size: 26px; font-weight: 800; text-align: center;
}
.section-sub{
  text-align: center; opacity: .8; margin-top: 6px;
}

/* ========== Steps ========== */
.steps{
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px;
}
.step{
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 20px #00000008;
}
.step-icon{ font-size: 36px; }
.step h3{ font-size: 18px; margin-top: 8px; }
.step p{ font-size: 14px; opacity: 0.9; margin-top: 6px; line-height: 1.7; }

/* ========== Gallery ========== */
.gallery-grid{
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.gallery-item{
  position: relative;
  min-height: 190px;
  border-radius: 18px;
  padding: 16px;
  color: #111;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  box-shadow: 0 12px 22px #0000000a;
  border: 1px solid #ffffff70;
}
.gallery-item .tag{
  position: absolute; top: 10px; right: 10px;
  font-size: 12px; font-weight: 800;
  background: #ffffffc9; padding: 4px 8px; border-radius: 999px;
}
.gallery-item .emoji{ font-size: 48px; }
.gallery-item h3{ margin-top: 8px; font-size: 17px; }
.gallery-item p{ margin-top: 4px; font-size: 13px; opacity: .85; }

.g1{ background: linear-gradient(135deg,#fff3b0,#ffd6f5); }
.g2{ background: linear-gradient(135deg,#d7f8ff,#c9ffd8); }
.g3{ background: linear-gradient(135deg,#f3d1ff,#d4e5ff); }
.g4{ background: linear-gradient(135deg,#ffe1c7,#fff2f2); }

/* ========== Features ========== */
.features-grid{
  margin-top: 18px;
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.feature{
  background: #ffffff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 10px 20px #00000008;
}
.feature-icon{ font-size: 32px; }
.feature h3{ font-size: 17px; margin-top: 6px; }
.feature p{ font-size: 14px; opacity: .9; margin-top: 6px; line-height: 1.7; }

/* ========== CTA ========== */
.cta{
  max-width: 1200px; margin: 40px auto; padding: 18px;
}
.cta-box{
  background: linear-gradient(135deg,#7b5cff,#ff7ad9);
  color: white;
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  box-shadow: 0 18px 30px #7b5cff40;
}
.cta-box h2{ font-size: 28px; }
.cta-box p{ margin-top: 6px; opacity: 0.95; line-height: 1.8; }

.cta-form{
  margin-top: 14px;
  display: grid; gap: 8px;
  max-width: 520px; margin-inline: auto;
}
.cta-form input,
.cta-form textarea{
  width: 100%;
  border: none; outline: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 15px;
}
.cta-form textarea{ resize: vertical; min-height: 110px; }

.note{
  margin-top: 8px;
  font-size: 12px;
  opacity: 0.9;
}

/* ========== Footer ========== */
.footer{
  padding: 22px 18px 40px;
}
.footer-inner{
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.footer-brand{
  display: flex; align-items: center; gap: 10px;
}
.footer-brand h3{ font-size: 18px; }
.footer-brand p{ font-size: 13px; opacity: .8; }

.footer-links{
  display: flex; gap: 10px; flex-wrap: wrap; font-weight: 700; font-size: 14px;
}
.footer-links a{
  padding: 6px 8px; border-radius: 8px;
}
.footer-links a:hover{ background: #f4f6ff; }

.footer-copy{
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  opacity: .7;
  margin-top: 6px;
}

/* ========== Responsive ========== */
@media (max-width: 1000px){
  .hero{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .features-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 520px){
  .nav-links{ display:none; }
  .gallery-grid{ grid-template-columns: 1fr; }
  .features-grid{ grid-template-columns: 1fr; }
  .hero h2{ font-size: 28px; }
}
