*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  color: #2d3436;
  line-height: 1.6;
  overflow-x: hidden;
  background: linear-gradient(135deg, #fff8f0, #fff0f6, #f0f4ff, #f0fff4, #fff8f0);
  background-size: 400% 400%;
  animation: bgShift 20s ease infinite;
}
@keyframes bgShift {
  0% { background-position: 0% 50%; }
  25% { background-position: 50% 0%; }
  50% { background-position: 100% 50%; }
  75% { background-position: 50% 100%; }
  100% { background-position: 0% 50%; }
}
::selection { background: var(--coral); color: white; }
::-moz-selection { background: var(--coral); color: white; }
:root {
  --coral: #ff6b6b;
  --coral-dark: #e55a5a;
  --yellow: #ffd93d;
  --yellow-dark: #f0c929;
  --teal: #4ecdc4;
  --teal-dark: #3dbdb5;
  --purple: #6c5ce7;
  --purple-dark: #5a4bd1;
  --pink: #ff8fab;
  --orange: #ff9f43;
  --bg-warm: #fff8f0;
  --text: #2d3436;
  --text-light: #636e72;
  --shadow: 0 6px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-lg: 24px;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Rainbow scroll progress */
.rainbow-bar {
  position: fixed; top: 0; left: 0; height: 4px; z-index: 9999;
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--yellow), var(--teal), var(--purple), var(--pink));
  background-size: 300% 100%;
  animation: rainbowMove 3s linear infinite;
  width: 0; transition: width 0.1s;
}
@keyframes rainbowMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 300% 0%; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--coral), var(--purple), var(--teal));
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--coral-dark), var(--purple-dark), var(--teal-dark)); }

/* Header */
header {
  position: fixed; top: 4px; left: 0; right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  z-index: 1000;
  padding: 12px 0;
  transition: all 0.3s;
}
header.scrolled { padding: 6px 0; box-shadow: 0 4px 30px rgba(255,107,107,0.15); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Fredoka One', cursive;
  font-size: 20px; text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--coral), var(--pink));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
  box-shadow: 0 4px 12px rgba(255,107,107,0.3);
  flex-shrink: 0;
  animation: logoPulse 2s ease-in-out infinite;
}
@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
.logo-text { display: flex; flex-wrap: wrap; }
.logo-text span:nth-child(1) { color: var(--coral); }
.logo-text span:nth-child(2) { color: var(--purple); }
.logo-text span:nth-child(3) { color: var(--teal); }
.logo-text span:nth-child(4) { color: var(--orange); }
nav { display: flex; align-items: center; gap: 28px; }
nav a {
  text-decoration: none; color: var(--text);
  font-weight: 700; font-size: 15px;
  transition: all 0.3s;
  position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--purple), var(--teal));
  transition: width 0.3s;
}
nav a:hover { background: linear-gradient(135deg, var(--coral), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
nav a:hover::after { width: 100%; }
.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  -webkit-text-fill-color: white !important; color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,107,107,0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { -webkit-text-fill-color: white !important; transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 24px rgba(255,107,107,0.5); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span {
  width: 26px; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--purple));
  border-radius: 3px; transition: all 0.3s;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff8f0 0%, #fff3e0 20%, #fce4ec 40%, #e8f5e9 60%, #f3e5f5 80%, #fff8f0 100%);
  background-size: 200% 200%;
  animation: heroGradient 15s ease infinite;
}
@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-shapes {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: hidden;
}
.hero-shape {
  position: absolute; border-radius: 50%;
  animation: floating 8s ease-in-out infinite;
}
.hero-shape:nth-child(1) {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--coral), transparent 70%);
  opacity: 0.12;
  top: -80px; right: -60px;
}
.hero-shape:nth-child(2) {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--yellow), transparent 70%);
  opacity: 0.12;
  bottom: 40px; left: -40px;
  animation-delay: 1s;
}
.hero-shape:nth-child(3) {
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--teal), transparent 70%);
  opacity: 0.1;
  top: 50%; right: 10%;
  animation-delay: 0.5s;
}
.hero-shape:nth-child(4) {
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--purple), transparent 70%);
  opacity: 0.1;
  top: 15%; left: 10%;
  animation-delay: 2s;
}
.hero-shape:nth-child(5) {
  width: 100px; height: 100px;
  background: radial-gradient(circle, var(--pink), transparent 70%);
  opacity: 0.12;
  bottom: 20%; right: 5%;
  animation-delay: 3s;
}
@keyframes floating {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  50% { transform: translateY(-25px) rotate(5deg) scale(1.05); }
}
.hero .container { position: relative; z-index: 1; display: flex; align-items: center; gap: 50px; }
.hero-content { flex: 1; }
.hero-content .tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white; padding: 10px 22px;
  border-radius: 50px;
  font-size: 14px; font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(255,107,107,0.25);
  animation: bounceIn 0.8s ease;
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.hero-content h1 {
  font-family: 'Fredoka One', cursive;
  font-size: 48px; font-weight: 400;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease 0.1s both;
}
.hero-content h1 .rainbow span:nth-child(1) { color: var(--coral); }
.hero-content h1 .rainbow span:nth-child(2) { color: var(--orange); }
.hero-content h1 .rainbow span:nth-child(3) { color: var(--yellow-dark); }
.hero-content h1 .rainbow span:nth-child(4) { color: var(--teal); }
.hero-content h1 .rainbow span:nth-child(5) { color: var(--purple); }
.hero-content h1 .rainbow span:nth-child(6) { color: var(--pink); }
.hero-content h1 .rainbow span { display: inline-block; animation: rainbowDance 3s ease-in-out infinite; }
.hero-content h1 .rainbow span:nth-child(1) { animation-delay: 0s; }
.hero-content h1 .rainbow span:nth-child(2) { animation-delay: 0.1s; }
.hero-content h1 .rainbow span:nth-child(3) { animation-delay: 0.2s; }
.hero-content h1 .rainbow span:nth-child(4) { animation-delay: 0.3s; }
.hero-content h1 .rainbow span:nth-child(5) { animation-delay: 0.4s; }
.hero-content h1 .rainbow span:nth-child(6) { animation-delay: 0.5s; }
@keyframes rainbowDance {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.hero-content p {
  font-size: 17px; color: var(--text-light);
  margin-bottom: 28px; max-width: 520px;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.6s ease 0.3s both; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700; font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer; border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: white;
  box-shadow: 0 4px 16px rgba(255,107,107,0.3);
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 28px rgba(255,107,107,0.5); }
.btn-secondary {
  background: white; color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-secondary:hover { background: linear-gradient(135deg, var(--coral), var(--orange)); color: white; border-color: transparent; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,107,107,0.3); }
.hero-visual { flex: 1; display: flex; justify-content: center; }
.hero-card {
  background: white; padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(255,107,107,0.12);
  text-align: center;
  max-width: 340px; width: 100%;
  animation: fadeInUp 0.8s ease 0.3s both, cardGlow 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}
@keyframes cardGlow {
  0%, 100% { box-shadow: 0 12px 48px rgba(255,107,107,0.12); }
  50% { box-shadow: 0 12px 48px rgba(108,92,231,0.18); }
}
.hero-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--teal), var(--purple), var(--pink));
  background-size: 200% 100%;
  animation: rainbowBar 3s linear infinite;
}
@keyframes rainbowBar {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}
.hero-card .big-icon { font-size: 56px; margin-bottom: 12px; display: block; animation: bounce 2s ease-in-out infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-card h3 { font-size: 22px; color: var(--text); font-weight: 800; }
.hero-card p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.hero-card .features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; text-align: left; }
.hero-card .features span {
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
}
.hero-card .features span::before {
  content: '\2713';
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.hero-card .features span:nth-child(1)::before { background: var(--coral); color: white; }
.hero-card .features span:nth-child(2)::before { background: var(--yellow); color: var(--text); }
.hero-card .features span:nth-child(3)::before { background: var(--teal); color: white; }
.hero-card .features span:nth-child(4)::before { background: var(--purple); color: white; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section { padding: 90px 0; position: relative; }

/* Colorful section dividers */
section::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--yellow), var(--teal), var(--purple), var(--pink));
  opacity: 0.3;
}
#products::after { opacity: 0.5; }
#features::after { opacity: 0.4; }
#fun::after { opacity: 0.5; }
#contact::after { display: none; }

.section-tag {
  display: inline-block;
  padding: 8px 22px; border-radius: 50px;
  font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: 42px; font-weight: 400;
  margin-bottom: 14px; line-height: 1.2;
}
.section-sub {
  font-size: 17px; color: var(--text-light);
  max-width: 600px; margin-bottom: 44px; line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Product Grid */
#products {
  background: radial-gradient(ellipse at top left, #fff5f5, transparent 60%), radial-gradient(ellipse at top right, #f5f0ff, transparent 60%), radial-gradient(ellipse at bottom, #f0fff4, transparent 60%), white;
}
#products .section-tag { background: linear-gradient(135deg, var(--purple), var(--pink)); color: white; }
#products .section-title {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  border: 2px solid transparent;
  position: relative;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.product-card::before {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--coral), var(--orange), var(--yellow), var(--teal), var(--purple), var(--pink));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
}
.product-card:hover::before { opacity: 1; }
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(255,107,107,0.15), 0 0 40px rgba(108,92,231,0.08);
}
.product-card .icon-wrap {
  width: 100%; padding: 40px 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 60px;
  transition: all 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.product-card:nth-child(1) .icon-wrap { background: linear-gradient(135deg, #ffe0e0, #ffb8b8); }
.product-card:nth-child(2) .icon-wrap { background: linear-gradient(135deg, #fff3d6, #ffe4a8); }
.product-card:nth-child(3) .icon-wrap { background: linear-gradient(135deg, #d4f5f0, #a8ebe0); }
.product-card:nth-child(4) .icon-wrap { background: linear-gradient(135deg, #e0d6ff, #c4b8ff); }
.product-card:nth-child(5) .icon-wrap { background: linear-gradient(135deg, #ffe0ec, #ffb8d0); }
.product-card:nth-child(6) .icon-wrap { background: linear-gradient(135deg, #d4edff, #a8d8ff); }
.product-card:nth-child(7) .icon-wrap { background: linear-gradient(135deg, #fff3d6, #ffe4a8); }
.product-card:nth-child(8) .icon-wrap { background: linear-gradient(135deg, #d4f5f0, #a8ebe0); }
.product-card:hover .icon-wrap {
  transform: scale(1.15);
  border-radius: 0 0 40% 40%;
}
.product-card .icon-wrap .icon-emoji {
  display: inline-block;
  animation: iconBounce 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
  transition: transform 0.3s;
}
.product-card:hover .icon-wrap .icon-emoji {
  animation: iconBounce 1s ease-in-out infinite;
  transform: scale(1.1);
}
.product-card:nth-child(1) .icon-wrap .icon-emoji { animation-delay: 0s; }
.product-card:nth-child(2) .icon-wrap .icon-emoji { animation-delay: 0.15s; }
.product-card:nth-child(3) .icon-wrap .icon-emoji { animation-delay: 0.3s; }
.product-card:nth-child(4) .icon-wrap .icon-emoji { animation-delay: 0.45s; }
.product-card:nth-child(5) .icon-wrap .icon-emoji { animation-delay: 0.6s; }
.product-card:nth-child(6) .icon-wrap .icon-emoji { animation-delay: 0.75s; }
.product-card:nth-child(7) .icon-wrap .icon-emoji { animation-delay: 0.9s; }
.product-card:nth-child(8) .icon-wrap .icon-emoji { animation-delay: 1.05s; }
@keyframes iconBounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(6deg); }
}
.product-card .body {
  padding: 22px 20px 28px;
  position: relative; z-index: 1;
}
.product-card .body h3 {
  font-size: 18px; font-weight: 800;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.product-card:nth-child(1):hover .body h3 { color: var(--coral); }
.product-card:nth-child(2):hover .body h3 { color: var(--orange); }
.product-card:nth-child(3):hover .body h3 { color: var(--teal-dark); }
.product-card:nth-child(4):hover .body h3 { color: var(--purple); }
.product-card:nth-child(5):hover .body h3 { color: var(--pink); }
.product-card:nth-child(6):hover .body h3 { color: var(--yellow-dark); }
.product-card:nth-child(7):hover .body h3 { color: var(--coral); }
.product-card:nth-child(8):hover .body h3 { color: var(--teal-dark); }
.product-card .body .desc {
  font-size: 14px; color: var(--text-light);
  line-height: 1.6;
}

/* Features */
#features {
  background: radial-gradient(ellipse at top left, #fef9ef, transparent 60%), radial-gradient(ellipse at top right, #fce4ec, transparent 60%), radial-gradient(ellipse at bottom, #e8f5e9, transparent 60%), linear-gradient(160deg, #fef9ef, #fff3e0, #fce4ec);
}
#features .section-tag { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); color: white; }
#features .section-title {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.4s;
  border-bottom: 5px solid transparent;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, transparent, rgba(255,255,255,0.6) 60%, transparent);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:nth-child(1) { border-bottom-color: var(--coral); }
.feature-card:nth-child(2) { border-bottom-color: var(--yellow); }
.feature-card:nth-child(3) { border-bottom-color: var(--teal); }
.feature-card:nth-child(4) { border-bottom-color: var(--purple); }
.feature-card:nth-child(5) { border-bottom-color: var(--pink); }
.feature-card:nth-child(6) { border-bottom-color: var(--orange); }
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(0,0,0,0.12);
}
.feature-card .icon {
  font-size: 44px; margin-bottom: 16px; display: block;
  transition: transform 0.4s;
}
.feature-card:hover .icon { transform: scale(1.2) rotate(-10deg); }
.feature-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Gallery */
#fun {
  background: radial-gradient(ellipse at top left, #fff0f6, transparent 50%), radial-gradient(ellipse at top right, #f0f4ff, transparent 50%), radial-gradient(ellipse at bottom, #fff8f0, transparent 50%), white;
}
#fun .section-tag { background: linear-gradient(135deg, var(--orange), var(--coral)); color: white; }
#fun .section-title {
  background: linear-gradient(135deg, var(--coral), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.fun-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.fun-icon {
  width: 110px; height: 110px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  transition: all 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  cursor: default;
  animation: funFloat 4s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.fun-icon:nth-child(1) { background: linear-gradient(135deg, #ffe0e0, #ffb8b8); animation-delay: 0s; }
.fun-icon:nth-child(2) { background: linear-gradient(135deg, #fff3d6, #ffe4a8); animation-delay: 0.2s; }
.fun-icon:nth-child(3) { background: linear-gradient(135deg, #d4f5f0, #a8ebe0); animation-delay: 0.4s; }
.fun-icon:nth-child(4) { background: linear-gradient(135deg, #e0d6ff, #c4b8ff); animation-delay: 0.6s; }
.fun-icon:nth-child(5) { background: linear-gradient(135deg, #ffe0ec, #ffb8d0); animation-delay: 0.8s; }
.fun-icon:nth-child(6) { background: linear-gradient(135deg, #d4edff, #a8d8ff); animation-delay: 1s; }
.fun-icon:nth-child(7) { background: linear-gradient(135deg, #fff3d6, #ffe4a8); animation-delay: 1.2s; }
.fun-icon:nth-child(8) { background: linear-gradient(135deg, #d4f5f0, #a8ebe0); animation-delay: 1.4s; }
@keyframes funFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.fun-icon:hover {
  transform: scale(1.25) rotate(20deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  animation: none;
}

/* Contact */
#contact {
  background: linear-gradient(135deg, #1a1a2e, #2d3436, #16213e);
  background-size: 200% 200%;
  animation: contactBg 15s ease infinite;
}
@keyframes contactBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
#contact .section-tag { background: linear-gradient(135deg, var(--yellow), var(--orange)); color: var(--text); }
#contact .section-title { color: var(--yellow); }
#contact .section-sub { color: rgba(255,255,255,0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,0.06);
  padding: 18px 22px;
  border-radius: var(--radius);
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}
.contact-item:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.contact-item .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-item:nth-child(1) .icon { background: linear-gradient(135deg, var(--coral), var(--pink)); }
.contact-item:nth-child(2) .icon { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.contact-item:nth-child(3) .icon { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.contact-item:nth-child(4) .icon { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.contact-item .label { font-size: 13px; opacity: 0.6; }
.contact-item .value { font-size: 16px; font-weight: 700; }
.contact-item .value a { color: var(--yellow); text-decoration: none; }
.contact-item .value a:hover { text-decoration: underline; }
.contact-form {
  background: white; padding: 36px;
  border-radius: var(--radius-lg);
  color: var(--text);
  box-shadow: 0 12px 48px rgba(0,0,0,0.2);
  position: relative; overflow: hidden;
}
.contact-form::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--teal), var(--purple), var(--pink));
}
.contact-form h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 24px; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.form-group { margin-bottom: 16px; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #eee;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  outline: none;
  background: #fafafa;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 4px rgba(255,107,107,0.1), 0 0 0 2px var(--coral);
  background: white;
}
.form-group textarea { height: 100px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; }
.map-wrap { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; }
.map-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #2d3436, #16213e);
  padding: 40px; text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.map-placeholder::before {
  content: ''; position: absolute; top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--coral), var(--yellow), var(--teal), var(--purple), var(--pink));
  z-index: -1;
  opacity: 0.3;
}
.map-placeholder .big { font-size: 40px; margin-bottom: 8px; }

/* Footer */
footer {
  background: linear-gradient(135deg, #0a0a14, #1a1a2e, #0a0a14);
  background-size: 200% 200%;
  animation: footerBg 10s ease infinite;
  color: rgba(255,255,255,0.5);
  padding: 40px 0 30px;
  text-align: center;
  font-size: 14px;
  position: relative;
}
@keyframes footerBg {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--orange), var(--yellow), var(--teal), var(--purple), var(--pink));
}
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { text-decoration: underline; }
footer .social { display: flex; justify-content: center; gap: 12px; margin-bottom: 16px; }
footer .social a {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: all 0.3s;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
footer .social a:hover {
  background: linear-gradient(135deg, var(--coral), var(--purple));
  color: white; transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(255,107,107,0.3);
}
.footer-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 20px; margin-bottom: 6px;
}
.footer-logo span:nth-child(1) { color: var(--coral); }
.footer-logo span:nth-child(2) { color: var(--yellow); }
.footer-logo span:nth-child(3) { color: var(--teal); }

/* Mobile */
.mobile-menu {
  display: none;
  position: fixed; top: 66px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
  flex-direction: column; gap: 16px;
  z-index: 999;
  border-top: 1px solid #f0f0f0;
  opacity: 0; transform: translateY(-10px);
  transition: all 0.3s;
}
.mobile-menu.open { display: flex; opacity: 1; transform: translateY(0); }
.mobile-menu a {
  text-decoration: none;
  font-weight: 700; font-size: 17px;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
  transition: all 0.3s;
}
.mobile-menu a:nth-child(1) { color: var(--coral); }
.mobile-menu a:nth-child(2) { color: var(--purple); }
.mobile-menu a:nth-child(3) { color: var(--teal); }
.mobile-menu a:nth-child(4) { color: var(--orange); }
.mobile-menu a:hover { padding-left: 8px; opacity: 0.8; }
.mobile-menu .nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--pink));
  color: white !important;
  text-align: center; border-bottom: none; margin-top: 8px;
  border-radius: 50px; padding: 12px;
}
.mobile-menu .nav-cta:hover { padding-left: 12px; }

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: all 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: all 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: all 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Responsive */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .hero .container { flex-direction: column; text-align: center; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .section-title { font-size: 30px; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 26px; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-content .tag { font-size: 12px; padding: 8px 16px; }
}
