/* ═══════════════════════════════════════════════
   POCKETZOO LANDING — styles.css
   ═══════════════════════════════════════════════ */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Baloo 2', 'Nunito', sans-serif;
  color: #1C1C2E;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CSS Variables ── */
:root {
  --pink:        #F472B6;
  --pink-deep:   #EC4899;
  --pink-light:  #FBCFE8;
  --pink-bg:     #FFF0F7;
  --mint:        #6EE7B7;
  --mint-light:  #D1FAE5;
  --mint-bg:     #F0FDF6;
  --lavender:    #C4B5FD;
  --lav-light:   #EDE9FE;
  --lav-bg:      #F5F3FF;
  --yellow:      #FCD34D;
  --yellow-light:#FEF3C7;
  --yellow-bg:   #FFFBEB;
  --blue-light:  #BAE6FD;
  --dark:        #1C1C2E;
  --gray:        #6B7280;
  --gray-light:  #F3F4F6;
  --white:       #FFFFFF;
  --radius-sm:   12px;
  --radius-md:   20px;
  --radius-lg:   28px;
  --radius-xl:   40px;
  --shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:   0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.14);
}

/* ── Typography helpers ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
  text-align: center;
}

.section-title-left {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 56px;
}

.accent-pink {
  color: var(--pink-deep);
}

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

/* ══════════════════════════════════
   BUTTONS
══════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(135deg, #F472B6, #EC4899);
  color: #fff;
  box-shadow: 0 4px 18px rgba(236,72,153,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,72,153,0.45);
}

.btn-link {
  color: var(--dark);
  font-weight: 600;
  padding: 14px 8px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.btn-link:hover { color: var(--pink-deep); }

.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-xl { padding: 18px 34px; font-size: 1.1rem; }
.btn-full { width: 100%; }

.btn-outline-pink {
  background: transparent;
  border: 2px solid var(--pink);
  color: var(--pink-deep);
  border-radius: var(--radius-xl);
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline-pink:hover {
  background: var(--pink-bg);
}

.btn-outline-dark {
  background: #fff;
  border: 2px solid rgba(28,28,46,0.2);
  color: var(--dark);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-outline-dark:hover {
  border-color: var(--dark);
  background: var(--gray-light);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-full        { height: 120px; width: auto; }
.logo-full-footer { height: 96px; width: auto; }

/* Nav links */
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--pink-deep); }

.nav-cta { margin-left: 8px; padding: 10px 22px; font-size: 0.95rem; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
}

/* ══════════════════════════════════
   HERO
══════════════════════════════════ */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg,
    #F2C4DA 0%,
    #F7D6E8 18%,
    #FAE8F0 32%,
    #FDF5F8 50%,
    #EAF4F0 68%,
    #D8EEF2 82%,
    #C8E8F0 100%
  );
}

/* Bokeh hearts overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 30px 26px at 8% 15%, rgba(255,255,255,0.55) 60%, transparent 100%),
    radial-gradient(ellipse 20px 18px at 12% 12%, rgba(255,255,255,0.55) 60%, transparent 100%),
    radial-gradient(circle 22px at 92% 20%, rgba(255,255,255,0.45) 60%, transparent 100%),
    radial-gradient(circle 14px at 88% 25%, rgba(255,255,255,0.45) 60%, transparent 100%),
    radial-gradient(circle 28px at 5% 70%, rgba(255,255,255,0.4) 60%, transparent 100%),
    radial-gradient(circle 18px at 95% 65%, rgba(255,255,255,0.4) 60%, transparent 100%),
    radial-gradient(circle 16px at 50% 90%, rgba(255,255,255,0.35) 60%, transparent 100%),
    radial-gradient(circle 12px at 30% 80%, rgba(255,255,255,0.3) 60%, transparent 100%),
    radial-gradient(circle 20px at 75% 85%, rgba(255,255,255,0.3) 60%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

/* Decorative dots/stars */
.hero-deco {
  position: absolute;
  font-size: 1.1rem;
  color: var(--pink-light);
  pointer-events: none;
  font-weight: 700;
  opacity: 0.6;
}
.deco-1 { top: 18%; left: 6%; font-size: 1.4rem; }
.deco-2 { top: 60%; left: 3%; font-size: 0.9rem; }
.deco-3 { top: 25%; right: 4%; color: var(--mint); }
.deco-4 { bottom: 20%; right: 8%; color: var(--mint); font-size: 0.8rem; }

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

/* Hero left */
.hero-content { max-width: 560px; }

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.75);
  border: 1.5px solid rgba(244,114,182,0.3);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-family: 'Cherry Bomb One', cursive;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
}

.hero-accent {
  color: var(--pink-deep);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.hero-accent::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-light));
  border-radius: 2px;
}

.hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #4B5563;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* Avatar stack + social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatar-stack {
  display: flex;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.av-pink     { background: linear-gradient(135deg, #FBCFE8, #F9A8D4); }
.av-mint     { background: linear-gradient(135deg, #A7F3D0, #6EE7B7); }
.av-lavender { background: linear-gradient(135deg, #DDD6FE, #C4B5FD); }
.av-yellow   { background: linear-gradient(135deg, #FDE68A, #FCD34D); }

.hero-social-proof strong { font-size: 0.95rem; }
.social-sub { font-size: 0.82rem; color: var(--gray); }

/* ── Hero visual grid ── */
.hero-visual { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 10px;
}

/* Main large image: spans col 1-2, row 1-2 */
.hg-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
}
.hg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Side top: col 3, row 1 */
.hg-side-top {
  grid-column: 3;
  grid-row: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
}

/* Cards row 2 */
.hg-card {
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 12px;
  font-size: 0.85rem;
  font-weight: 700;
  min-height: 90px;
}

.hg-card-white {
  grid-column: 1;
  grid-row: 3;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.06);
}
.mini-egg svg { width: 36px; height: 36px; }

.hg-card-pink {
  grid-column: 2;
  grid-row: 3;
  background: var(--pink-deep);
  color: #fff;
}
.mystery-q {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

/* Side bottom: col 3, row 2-3 */
.hg-side-bottom {
  grid-column: 3;
  grid-row: 2 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
}

/* Fait main pill: row 4 */
.hg-card-blue {
  grid-column: 1 / 3;
  grid-row: 4;
  background: #E0F2FE;
  color: var(--dark);
  flex-direction: row;
  border-radius: 999px;
  padding: 14px 24px;
  gap: 10px;
}

/* Image placeholders (replace with real photos) */
.hg-img { width: 100%; height: 100%; }
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
}
.img-ponies {
  background: linear-gradient(135deg, #FFD6E7 0%, #FFC2D1 40%, #FFD6CC 80%, #FFE4C4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  min-height: 240px;
}
.img-ponies::after { content: '🦄🐉🦎'; letter-spacing: 4px; }

.img-plush {
  background: linear-gradient(135deg, #D4E8FF 0%, #C8F0E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  min-height: 140px;
}
.img-plush::after { content: '🐰🐱'; }

.img-cushion {
  background: linear-gradient(180deg, #E8D8F5 0%, #D4C9F0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  min-height: 180px;
}
.img-cushion::after { content: '🥚'; }

/* ══════════════════════════════════
   HOW IT WORKS
══════════════════════════════════ */
.how-it-works {
  padding: 96px 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.step-card {
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-size: 0.8rem;
  font-weight: 800;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.step-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}
.step-icon svg { width: 100%; height: 100%; }

.step-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #374151;
}

.step-pink     { background: #FFCBD9; }
.step-mint     { background: #B7EDD4; }
.step-lavender { background: #D4CAED; }

/* ══════════════════════════════════
   COLLECTION
══════════════════════════════════ */
.collection {
  padding: 96px 0;
  background: var(--pink-bg);
}

.collection-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

.collection-desc {
  max-width: 380px;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray);
  flex-shrink: 0;
  padding-top: 8px;
}

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

.animal-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.animal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.animal-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 4px;
}

.animal-silhouette {
  font-size: 2.4rem;
  filter: brightness(0) opacity(0.25);
}

.q-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bubble-pink     { background: #FBCFE8; }
.bubble-blue     { background: #BAE6FD; }
.bubble-yellow   { background: var(--yellow-light); }
.bubble-mint     { background: var(--mint-light); }
.bubble-lavender { background: var(--lav-light); }

.animal-card strong {
  font-size: 0.95rem;
  font-weight: 700;
}
.animal-card span {
  font-size: 0.78rem;
  color: var(--gray);
}

.collection-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* ══════════════════════════════════
   PRICING
══════════════════════════════════ */
.pricing {
  padding: 96px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 16px;
}

.pricing-card {
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}

.pc-yellow   { background: var(--yellow-light); border: 2px solid #FDE68A; }
.pc-pink     { background: #FBCFE8; border: 2px solid var(--pink-light); }
.pc-mint     { background: var(--mint-light); border: 2px solid #A7F3D0; }

.pc-featured {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.pc-badge {
  display: inline-block;
  background: linear-gradient(135deg, #F472B6, #EC4899);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(236,72,153,0.35);
}

.pc-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.pc-header p {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 16px;
}
.pc-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
}

.pc-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.pc-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
}
.check {
  color: var(--pink-deep);
  font-weight: 800;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ══════════════════════════════════
   ADOPTION FORM
══════════════════════════════════ */
.adopt-section {
  padding: 96px 0;
}
.adopt-bg {
  background: linear-gradient(135deg, #FFE4F0 0%, #FFF0F7 35%, #F0F8FF 70%, #E8F8F0 100%);
}
.adopt-bg > .container {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 48px;
}
.adopt-bg > .container .section-title {
  margin-bottom: 0;
}

.adopt-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px 80px;
  position: relative;
}

.adopt-sticker {
  position: absolute;
  top: -24px;
  right: 16px;
  z-index: 2;
}
.sticker-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F9A8D4, #EC4899);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-md);
  transform: rotate(12deg);
}
.sticker-circle span { font-size: 1.1rem; }

.adopt-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 40px 36px;
  box-shadow: var(--shadow-lg);
}

.form-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.pack-selector {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.pack-btn {
  flex: 1;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(0,0,0,0.12);
  background: #fff;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--dark);
  transition: all 0.2s;
  cursor: pointer;
}
.pack-btn:hover { border-color: var(--pink); }
.pack-active {
  background: linear-gradient(135deg, #F472B6, #EC4899);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(236,72,153,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }
.form-row .form-group { margin-bottom: 0; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
}
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: var(--radius-md);
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  background: #FAFAFA;
}
.form-group input:focus { border-color: var(--pink); background: #fff; }
.form-group input::placeholder { color: #9CA3AF; }

#adopt-submit {
  margin-top: 24px;
  margin-bottom: 12px;
  width: 100%;
}

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
}

.required { color: var(--pink-deep); font-size: 0.75rem; }

.form-group input.input-error {
  border-color: #EF4444;
  background: #FEF2F2;
}

.form-error {
  background: #FEE2E2;
  color: #B91C1C;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials {
  padding: 96px 0;
  background: var(--pink-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}
.testi-card::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 28px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
}

.testi-pink     { background: #FFCBD9; }
.testi-pink::after { border-top: 16px solid #FFCBD9; }

.testi-lavender { background: #D4CAED; }
.testi-lavender::after { border-top: 16px solid #D4CAED; }

.testi-mint     { background: #B7EDD4; }
.testi-mint::after { border-top: 16px solid #B7EDD4; }

.testi-stars {
  color: var(--pink-deep);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testi-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #374151;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-author strong { font-size: 0.9rem; font-weight: 700; }
.testi-author span   { font-size: 0.78rem; color: #6B7280; }

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq {
  padding: 96px 0;
  background: #fff;
}
.faq .section-title { margin-bottom: 48px; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--pink-bg);
  border: 1.5px solid rgba(244,114,182,0.15);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--dark);
  text-align: left;
  cursor: pointer;
  gap: 12px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink-deep); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gray);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 4px;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #4B5563;
}

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  position: relative;
}

.footer-wave {
  line-height: 0;
}
.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

.footer-body {
  background: #2D2D2D;
  padding: 0 0 40px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .logo-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.logo-text-footer {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.logo-zoo-footer { color: var(--pink-light); }

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #9CA3AF;
  max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--pink);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #9CA3AF;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #9CA3AF;
}
.footer-contact svg { flex-shrink: 0; }
.footer-contact a {
  color: #9CA3AF;
  transition: color 0.2s;
}
.footer-contact a:hover { color: #fff; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid #404040;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #6B7280;
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 56px;
    padding-top: 24px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-visual { order: -1; }
  .hero-grid {
    max-width: 540px;
    margin: 0 auto;
  }

  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { display: flex; flex-direction: row; align-items: flex-start; gap: 20px; padding: 24px; }
  .step-num { flex-shrink: 0; margin-bottom: 0; }
  .step-icon { width: 48px; height: 48px; flex-shrink: 0; margin-bottom: 0; }

  .animals-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-header { flex-direction: column; gap: 16px; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 16px auto 0; }
  .pc-featured { transform: none; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin: 48px auto 0; }

  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
}

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

  .hero { padding-top: 80px; }

  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hg-main { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 16/9; }
  .hg-side-top { grid-column: 1; grid-row: 2; aspect-ratio: 1; }
  .hg-card-white { grid-column: 2; grid-row: 2; }
  .hg-card-pink { grid-column: 1; grid-row: 3; }
  .hg-side-bottom { grid-column: 2; grid-row: 3; }
  .hg-card-blue { grid-column: 1 / 3; grid-row: 4; }

  .form-row { grid-template-columns: 1fr; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }

  .adopt-card { padding: 28px 20px; }
  .pack-selector { flex-direction: column; }

  .animals-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-title { font-size: 1.8rem; }
  .animals-grid { grid-template-columns: repeat(2, 1fr); }
  .adopt-wrapper { padding-left: 16px; padding-right: 16px; }
}
