*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #f5fcff;
  --color-bg-alt: #eef9f5;
  --color-bg-soft: #e8f4fb;
  --color-text: #2a4d5e;
  --color-text-muted: #5a8090;
  --color-teal: #3dbfb4;
  --color-teal-dark: #2a9d93;
  --color-teal-light: #b8ebe6;
  --color-blue: #5aabde;
  --color-blue-dark: #3d8fc4;
  --color-blue-light: #c5e4f7;
  --color-mint: #7ed6a8;
  --color-mint-light: #d4f3e3;
  --color-lemon: #ffe566;
  --color-lemon-dark: #e6c800;
  --color-lemon-light: #fff8c4;
  --color-lemon-soft: #fefce8;
  --color-accent: var(--color-teal);
  --color-accent-dark: var(--color-teal-dark);
  --color-accent-light: var(--color-teal-light);
  --color-white: #ffffff;
  --color-border: #cce8e4;
  --shadow-sm: 0 3px 12px rgba(42, 77, 94, 0.08);
  --shadow-md: 0 8px 28px rgba(42, 77, 94, 0.12);
  --shadow-lg: 0 16px 40px rgba(42, 77, 94, 0.14);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-blob: 40% 60% 55% 45% / 55% 45% 55% 45%;
  --font-body: 'Nunito', system-ui, sans-serif;
  --font-display: 'Fredoka', 'Nunito', system-ui, sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

html:not(.site-unlocked) .site-content {
  display: none;
}

.site-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse at 20% 20%, var(--color-lemon-light) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, var(--color-blue-light) 0%, transparent 50%),
    linear-gradient(160deg, var(--color-lemon-soft) 0%, var(--color-bg) 50%, var(--color-bg-alt) 100%);
}

.site-gate[hidden] {
  display: none;
}

.site-gate-card {
  width: 100%;
  max-width: 380px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-teal-light);
}

.site-gate-brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  margin-bottom: 16px;
}

.site-gate-card h1 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  margin-bottom: 8px;
}

.site-gate-card > p {
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 24px;
}

.site-gate-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-gate-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-teal-light);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-bg);
  outline: none;
  transition: border-color var(--transition);
}

.site-gate-input:focus {
  border-color: var(--color-teal);
}

.site-gate-error {
  color: #e05a5a;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -120px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, var(--color-blue-light) 0%, transparent 70%);
  opacity: 0.6;
  pointer-events: none;
  z-index: 0;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.accent {
  color: var(--color-teal-dark);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 252, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--color-lemon-light);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--color-text);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-teal-dark);
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-lemon-dark);
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--color-mint);
  border-radius: 3px;
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--color-teal-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: var(--color-teal-light);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--color-teal-dark);
  border-radius: 3px;
  transition: var(--transition);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-teal) 0%, var(--color-blue) 55%, var(--color-lemon-dark) 100%);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(61, 191, 180, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 24px rgba(61, 191, 180, 0.45);
}

.btn-outline {
  background: var(--color-white);
  color: var(--color-teal-dark);
  border-color: var(--color-teal-light);
}

.btn-outline:hover {
  border-color: var(--color-teal);
  background: var(--color-teal-light);
  color: var(--color-teal-dark);
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  padding: 120px 0 90px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 8% 25%, var(--color-lemon-light) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 70%, var(--color-mint-light) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 100%, var(--color-blue-light) 0%, transparent 50%),
    linear-gradient(180deg, var(--color-lemon-soft) 0%, var(--color-bg) 40%, var(--color-bg-alt) 100%);
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: var(--radius-blob);
  pointer-events: none;
  opacity: 0.45;
}

.hero-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--color-lemon-light);
  top: 80px;
  left: -50px;
  animation: float 7s ease-in-out infinite;
}

.hero-blob-2 {
  width: 140px;
  height: 140px;
  background: var(--color-teal-light);
  bottom: 60px;
  right: 3%;
  animation: float 5.5s ease-in-out infinite reverse;
}

.hero-blob-3 {
  width: 70px;
  height: 70px;
  background: var(--color-mint);
  top: 35%;
  right: 12%;
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
  opacity: 0.4;
}

.hero-blob-4 {
  width: 100px;
  height: 100px;
  background: var(--color-blue-light);
  top: 15%;
  right: 35%;
  animation: float 6s ease-in-out infinite 1s;
  opacity: 0.35;
}

/* Детские игрушки — фоновые анимации */
.hero-toy {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 6px 12px rgba(42, 77, 94, 0.15));
  z-index: 1;
}

.toy-ball {
  border-radius: 50%;
}

.toy-ball-1 {
  top: 18%;
  left: 6%;
  animation: bounce-ball 3s ease-in-out infinite;
}

.toy-ball-2 {
  top: 55%;
  left: 3%;
  animation: bounce-ball 3.5s ease-in-out infinite 0.5s;
}

.toy-ball-3 {
  top: 12%;
  right: 8%;
  animation: bounce-ball 2.8s ease-in-out infinite 0.3s;
}

.toy-ball-4 {
  bottom: 22%;
  right: 4%;
  animation: bounce-ball 3.2s ease-in-out infinite 0.8s;
}

.toy-ball-5 {
  top: 42%;
  right: 22%;
  animation: bounce-ball 2.6s ease-in-out infinite 1.2s;
}

.toy-balance {
  bottom: 18%;
  left: 12%;
  animation: rock-balance 4s ease-in-out infinite;
  transform-origin: center bottom;
}

.toy-rope {
  top: 22%;
  right: 18%;
  animation: swing-rope 3s ease-in-out infinite;
  transform-origin: top center;
}

.hero-sparkle {
  position: absolute;
  color: var(--color-lemon);
  font-size: 1.5rem;
  opacity: 0.7;
  animation: twinkle 2.5s ease-in-out infinite;
}

.hero-sparkle-1 { top: 28%; left: 18%; animation-delay: 0s; }
.hero-sparkle-2 { bottom: 35%; right: 28%; font-size: 1.2rem; animation-delay: 0.8s; }
.hero-sparkle-3 { top: 65%; left: 25%; font-size: 1rem; color: var(--color-teal); animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(6deg); }
}

@keyframes bounce-ball {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-28px) scale(1.05); }
  60% { transform: translateY(-12px) scale(0.98); }
}

@keyframes rock-balance {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(8deg); }
}

@keyframes swing-rope {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(12deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--color-lemon-soft);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-teal-dark);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-lemon-light);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--color-text);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 16px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
  background: var(--color-white);
  padding: 16px 24px;
  border-radius: var(--radius);
  border: 2px solid var(--color-lemon-light);
  min-width: 90px;
}

.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-teal);
  line-height: 1;
}

.stat:nth-child(2) strong {
  color: var(--color-lemon-dark);
}

.stat span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.photo-frame {
  width: 300px;
  height: 400px;
  position: relative;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.photo-badge {
  position: absolute;
  bottom: 16px;
  left: -16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-white);
  padding: 14px 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-mint-light);
}

.photo-badge .badge-emoji {
  font-size: 1.75rem;
  line-height: 1;
}

.photo-badge strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-teal-dark);
}

.photo-badge small {
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Section common */
.section-header {
  margin-bottom: 48px;
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 560px;
}

.section-header.center p {
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-teal-dark);
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--color-lemon-light) 0%, var(--color-teal-light) 100%);
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid var(--color-lemon);
}

/* Reviews */
.reviews-hero {
  padding: 100px 0;
  background: var(--color-white);
  position: relative;
}

.reviews-hero::before {
  content: '★';
  position: absolute;
  top: 40px;
  left: 8%;
  font-size: 2rem;
  color: var(--color-mint);
  opacity: 0.4;
  transform: rotate(-15deg);
}

.reviews-hero::after {
  content: '♥';
  position: absolute;
  bottom: 60px;
  right: 10%;
  font-size: 2.5rem;
  color: var(--color-teal-light);
  opacity: 0.5;
}

.featured-review {
  background: linear-gradient(135deg, var(--color-lemon-soft) 0%, var(--color-teal-light) 50%, var(--color-blue-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  text-align: center;
  position: relative;
  border: 3px solid var(--color-lemon-light);
  box-shadow: var(--shadow-md);
}

.featured-review::before {
  content: '💬';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.5rem;
  background: var(--color-white);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.featured-stars {
  color: #f5c842;
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  margin-top: 12px;
}

.featured-review blockquote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 800px;
  margin: 0 auto 20px;
  font-weight: 600;
}

.featured-review cite {
  font-style: normal;
  font-weight: 700;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.reviews-track-wrapper {
  overflow: hidden;
  flex: 1;
}

.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--color-teal-light);
}

.review-stars {
  color: #f5c842;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.review-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--color-text);
  margin-bottom: 20px;
}

.review-author {
  border-top: 2px dashed var(--color-teal-light);
  padding-top: 16px;
}

.author-name {
  display: block;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--color-teal-dark);
}

.author-meta {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.carousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--color-teal-light);
  background: var(--color-white);
  font-size: 1.5rem;
  color: var(--color-teal);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.carousel-btn:hover {
  border-color: var(--color-teal);
  background: var(--color-teal);
  color: var(--color-white);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-teal-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-teal);
  width: 28px;
  border-radius: 5px;
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.summary-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-white) 100%);
  padding: 24px;
  border-radius: var(--radius);
  border: 2px solid var(--color-teal-light);
}

.summary-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.summary-item strong {
  display: block;
  font-size: 1rem;
  color: var(--color-teal-dark);
}

.summary-item small {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

/* About */
.about {
  padding: 100px 0;
  background: var(--color-bg-alt);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.about-highlights {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-white);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--color-teal-light);
  transition: transform var(--transition);
}

.about-highlights li:hover {
  transform: translateX(6px);
}

.highlight-icon {
  font-size: 1.75rem;
  line-height: 1;
}

.about-highlights strong {
  display: block;
  margin-bottom: 2px;
  color: var(--color-teal-dark);
}

.about-highlights span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.about-rating-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: sticky;
  top: 96px;
  border: 3px solid var(--color-teal-light);
}

.rating-score {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 600;
  color: var(--color-teal);
  line-height: 1;
}

.rating-stars {
  color: #f5c842;
  font-size: 1.25rem;
  letter-spacing: 4px;
  margin: 8px 0 12px;
}

.rating-label {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.rating-breakdown {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.rating-breakdown li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.rating-breakdown li span:first-child {
  width: 110px;
  flex-shrink: 0;
  color: var(--color-text-muted);
  font-weight: 600;
}

.bar {
  flex: 1;
  height: 10px;
  background: var(--color-teal-light);
  border-radius: 10px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
  border-radius: 10px;
}

.rating-recommend {
  font-weight: 800;
  color: var(--color-teal-dark);
  font-size: 0.95rem;
  background: var(--color-mint-light);
  padding: 10px 16px;
  border-radius: 50px;
}

/* Services */
.services {
  padding: 100px 0;
  background: var(--color-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--color-teal-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-teal-dark);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 600;
}

.services-note {
  background: linear-gradient(135deg, var(--color-lemon-light) 0%, var(--color-mint-light) 100%);
  border-radius: var(--radius);
  padding: 28px 32px;
  text-align: center;
  border: 2px dashed var(--color-lemon-dark);
  margin-top: 24px;
}

.pricing-block {
  background: var(--color-bg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-teal-dark);
  text-align: center;
  margin-bottom: 28px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-name {
  font-weight: 700;
  color: var(--color-text);
  flex-shrink: 0;
  max-width: 70%;
}

.pricing-dots {
  flex: 1;
  border-bottom: 2px dotted var(--color-teal-light);
  min-width: 24px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-teal);
  white-space: nowrap;
  flex-shrink: 0;
}

.services-note p {
  color: var(--color-text);
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto;
  font-weight: 600;
}

/* Contact */
.contact {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--color-mint-light) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 50%, var(--color-blue-light) 0%, transparent 50%),
    var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-white);
  padding: 20px 22px;
  border-radius: var(--radius);
  border: 2px solid var(--color-teal-light);
}

.contact-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  line-height: 1;
}

.contact-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--color-teal-dark);
}

.contact-list span,
.contact-list a {
  display: block;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--color-teal);
}

.contact-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--color-teal-light);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-teal-dark);
}

.contact-card > p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-card .btn {
  margin-bottom: 12px;
}

.contact-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  margin-bottom: 0 !important;
  font-weight: 700;
}

/* Footer */
.footer {
  padding: 32px 0;
  background: linear-gradient(135deg, #2a6b7a 0%, #3d8a9e 100%);
  color: rgba(255, 255, 255, 0.85);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-note {
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 24px;
    gap: 16px;
    border-bottom: 2px solid var(--color-teal-light);
    box-shadow: var(--shadow-md);
  }

  .nav.open .nav-cta {
    display: inline-flex;
    position: absolute;
    top: 76px;
    right: 24px;
    margin-top: 200px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-photo {
    order: -1;
  }

  .photo-frame {
    width: 240px;
    height: 320px;
  }

  .photo-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
  }

  .toy-ball-1, .toy-ball-5, .hero-sparkle-2 {
    display: none;
  }

  .toy-ball-2 { top: 8%; left: 2%; transform: scale(0.7); }
  .toy-ball-3 { top: 6%; right: 4%; transform: scale(0.65); }
  .toy-ball-4 { bottom: 12%; right: 2%; transform: scale(0.6); }
  .toy-balance { bottom: 10%; left: 4%; transform: scale(0.75); }
  .toy-rope { top: 14%; right: 6%; transform: scale(0.7); }

  .logo-text {
    font-size: 0.9rem;
  }

  .featured-review {
    padding: 40px 24px 32px;
  }

  .featured-review blockquote {
    font-size: 1.05rem;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .reviews-summary {
    grid-template-columns: 1fr;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-rating-card {
    position: static;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-block {
    padding: 28px 24px;
  }

  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
  }

  .pricing-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .pricing-name {
    max-width: 100%;
  }

  .pricing-dots {
    display: none;
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    gap: 12px;
  }

  .stat {
    padding: 12px 16px;
    min-width: 80px;
  }

  .stat strong {
    font-size: 1.4rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .carousel-btn {
    display: none;
  }

  .logo-text {
    font-size: 1rem;
  }
}
