/* ============================================================
   LandakMini.com — Cute & Playful Redesign
   Colors extracted from official logo:
   Teal #1AAB9B ("landak") + Orange #F06522 ("mini.com")
   Font: Plus Jakarta Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

img, video, svg {
  max-width: 100%;
  display: block;
}

ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── Design Tokens ─────────────────────────────────────── */
:root {
  /* Brand colors from logo */
  --teal:        #1AAB9B;
  --teal-dark:   #13857A;
  --teal-mid:    #2EC4B2;
  --teal-light:  #E3F7F5;
  --teal-pale:   #F0FAFA;

  --orange:      #F06522;
  --orange-dark: #C84F18;
  --orange-mid:  #FF8040;
  --orange-light:#FFF0E8;
  --orange-pale: #FFF8F4;

  /* Neutrals */
  --cream:       #FDFEFE;
  --text:        #1A3330;
  --text-muted:  #567370;
  --light:       #EEF8F7;
  --border:      rgba(26,171,155,0.15);
  --white:       #FFFFFF;
  --gray:        #7A9E9B;
  --gray-light:  #C8E0DE;

  /* Semantic */
  --success:     #1AAB9B;
  --danger:      #E84040;
  --wa:          #25D366;
  --wa-dark:     #1DA851;

  /* Shape */
  --radius-card: 20px;
  --radius-btn:  100px;
  --radius-sm:   10px;
  --radius-lg:   28px;

  /* Shadows — teal-tinted */
  --shadow:      0 2px 16px rgba(26,171,155,0.10);
  --shadow-md:   0 6px 28px rgba(26,171,155,0.16);
  --shadow-lg:   0 12px 48px rgba(26,171,155,0.22);
  --shadow-or:   0 6px 24px rgba(240,101,34,0.25);

  --transition:  0.25s ease;
  --font:        'Plus Jakarta Sans', sans-serif;
  --container:   1200px;
  --section-py:  72px;
}

/* ── Base ──────────────────────────────────────────────── */
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

/* ── Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1.5px solid var(--teal-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-dot { color: var(--orange); }

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-dark);
  background: var(--teal-light);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--teal);
  border-radius: 99px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 68px 0 0;
  background: var(--white);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.mobile-nav a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.mobile-nav-group {
  border-top: 1.5px solid var(--teal-light);
  padding-top: 8px;
  margin-top: 8px;
}

.mobile-nav-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  padding: 8px 16px 4px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--font);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border: 2.5px solid var(--teal);
}

.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,171,155,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 2.5px solid var(--teal);
}

.btn-secondary:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: 2.5px solid var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-or);
}

.btn-wa {
  background: var(--wa);
  color: var(--white);
  border: 2.5px solid var(--wa);
}

.btn-wa:hover {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}

.btn-sm  { padding: 7px 18px; font-size: 0.8rem; }
.btn-lg  { padding: 15px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 45%, var(--teal-mid) 75%, #68DDD2 100%);
  color: var(--white);
  padding: 84px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Decorative dots pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
}

/* Wavy bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 52px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.30);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.04em;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.85);
  color: var(--white);
}

/* ── Stats Bar ──────────────────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 22px 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1.5px;
  background: rgba(255,255,255,0.30);
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

/* ── Section Base ───────────────────────────────────────── */
.section { padding: var(--section-py) 0; }

.section-alt { background: var(--teal-pale); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 { margin-bottom: 12px; }

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

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 8px;
  background: var(--teal-light);
  padding: 4px 12px;
  border-radius: 100px;
}

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.card-body { padding: 24px; }

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--teal-light);
  position: relative;
  overflow: hidden;
}

/* ── Grid Layouts ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

/* ── Navigation Cards (homepage) ────────────────────────── */
.nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.nav-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 2.5px solid transparent;
  transition: all var(--transition);
  display: block;
}

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

.nav-card-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
}

.nav-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.nav-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.nav-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 12px;
}

/* ── Trust Pillars ──────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trust-item { text-align: center; }

.trust-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-pale) 100%);
  border: 2.5px solid var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin: 0 auto 16px;
}

.trust-item h3 { margin-bottom: 8px; color: var(--teal-dark); }
.trust-item p  { color: var(--text-muted); font-size: 0.9rem; }

/* ── Blog Cards ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--teal-light) 0%, #B2EBE6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 8px;
  background: var(--teal-light);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.4;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-category-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin: 24px 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-card);
  border: 1.5px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  cursor: pointer;
  transition: background var(--transition);
}

.faq-question:hover { background: var(--teal-pale); }

.faq-question.active { color: var(--teal-dark); }

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition);
  font-weight: 700;
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  background: var(--orange);
  color: var(--white);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-answer.open {
  max-height: 600px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── CTA Strip ──────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

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

.cta-strip h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.80);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .site-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand .logo-img { height: 42px; }

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 14px;
  opacity: 0.75;
}

.footer-address {
  font-size: 0.82rem;
  line-height: 1.8;
  opacity: 0.65;
  font-style: normal;
  margin-bottom: 20px;
  border-left: 2px solid rgba(255,255,255,0.20);
  padding-left: 12px;
}

.footer-address strong {
  color: var(--white);
  opacity: 1;
  font-size: 0.85rem;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
}

.social-btn:hover { background: var(--orange); }

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

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

.footer-links a {
  font-size: 0.875rem;
  opacity: 0.70;
  transition: opacity var(--transition), color var(--transition);
}

.footer-links a:hover { opacity: 1; color: var(--teal-mid); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
  margin: 0;
}

/* ── WhatsApp Float Button ───────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1100;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 22px rgba(37,211,102,0.45);
  transition: all var(--transition);
}

.wa-float:hover {
  background: var(--wa-dark);
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb {
  background: var(--teal-pale);
  padding: 12px 0;
  border-bottom: 1.5px solid var(--teal-light);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}

.breadcrumb-list li a {
  color: var(--teal);
  font-weight: 600;
  transition: opacity var(--transition);
}

.breadcrumb-list li a:hover { opacity: 0.7; }

.breadcrumb-list li:last-child {
  color: var(--text-muted);
  font-weight: 500;
}

.breadcrumb-sep { color: var(--gray-light); }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(140deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  color: var(--white);
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 22px 22px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); margin-bottom: 12px; }

.page-hero p {
  opacity: 0.88;
  font-size: 1.05rem;
  max-width: 620px;
}

/* ── Article Layout ─────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: start;
}

.article-body h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2.5px solid var(--teal-light);
  color: var(--teal-dark);
}

.article-body h2:first-of-type {
  border-top: none;
  margin-top: 0;
}

.article-body h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--teal);
}

.article-body ul, .article-body ol {
  margin: 16px 0;
  padding-left: 20px;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.article-body a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sidebar TOC */
.toc-sidebar { position: sticky; top: 84px; }

.toc-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--teal);
}

.toc-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  margin-bottom: 12px;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-list a {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  display: block;
}

.toc-list a:hover {
  background: var(--teal-light);
  color: var(--teal-dark);
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  margin-top: 20px;
  text-align: center;
}

.sidebar-cta h4 {
  color: var(--white);
  margin-bottom: 10px;
  font-size: 1rem;
}

.sidebar-cta p {
  font-size: 0.8rem;
  opacity: 0.85;
  margin-bottom: 14px;
}

/* ── Tables ─────────────────────────────────────────────── */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  margin: 24px 0;
}

table { width: 100%; background: var(--white); }

thead th {
  background: var(--teal);
  color: var(--white);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

thead.green th { background: #1A9654; }
thead.red th   { background: #D93030; }
thead.orange th{ background: var(--orange); }

tbody tr:nth-child(even) { background: var(--teal-pale); }

tbody td {
  padding: 12px 16px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(26,171,155,0.07);
  vertical-align: top;
}

tbody tr:hover { background: var(--teal-light); }

tfoot td {
  padding: 12px 16px;
  font-weight: 700;
  background: var(--teal-light);
  font-size: 0.9rem;
  border-top: 2.5px solid var(--teal);
}

.price-highlight { color: var(--teal-dark); font-weight: 700; }

/* ── Info Boxes ─────────────────────────────────────────── */
.info-box {
  border-radius: var(--radius-card);
  padding: 20px 24px;
  margin: 24px 0;
  border-left: 4px solid var(--teal);
  background: var(--teal-pale);
}

.info-box.info-success {
  border-color: #1A9654;
  background: #F0FBF4;
}

.info-box.info-danger {
  border-color: #D93030;
  background: #FFF2F2;
}

.info-box.info-blue {
  border-color: #1565C0;
  background: #EEF4FF;
}

.info-box.info-orange {
  border-color: var(--orange);
  background: var(--orange-pale);
}

.info-box h4 { margin-bottom: 8px; color: var(--text); }

.info-box p, .info-box li {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.info-box ul { padding-left: 16px; list-style: disc; }

.info-box-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

/* ── Checklist ──────────────────────────────────────────── */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--teal-light);
}

.checklist-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-item p {
  font-size: 0.9rem;
  color: var(--text);
  margin: 0;
}

/* ── Tags / Badges ──────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tag-teal   { background: var(--teal-light); color: var(--teal-dark); }
.tag-orange { background: var(--orange-light); color: var(--orange-dark); }
.tag-amber  { background: var(--orange-light); color: var(--orange-dark); }
.tag-brown  { background: var(--teal-light); color: var(--teal-dark); }
.tag-green  { background: rgba(26,150,84,0.10); color: #1A9654; }
.tag-red    { background: rgba(217,48,48,0.10); color: #D93030; }
.tag-gray   { background: rgba(122,158,155,0.12); color: var(--gray); }

/* ── Filter Bar ─────────────────────────────────────────── */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
  border: 1.5px solid var(--border);
}

.filter-group { flex: 1; min-width: 160px; }

.filter-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal);
  margin-bottom: 6px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 9px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  background: var(--cream);
  cursor: pointer;
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231AAB9B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.filter-group input {
  background-image: none;
  padding-right: 14px;
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--teal);
}

/* ── Stock Listing Cards ─────────────────────────────────── */
.stock-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stock-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
  border: 2px solid transparent;
}

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

.stock-card.hidden { display: none; }

.stock-img-placeholder {
  height: 170px;
  background: linear-gradient(135deg, var(--teal-light) 0%, #B2EBE6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
}

.stock-img-placeholder .stock-sex {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
}

.stock-sex.jantan {
  background: rgba(21,101,192,0.15);
  color: #1565C0;
}

.stock-sex.betina {
  background: rgba(240,101,34,0.15);
  color: var(--orange-dark);
}

.stock-card-body { padding: 16px; }

.stock-morph {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
  background: var(--teal-light);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 100px;
}

.stock-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.stock-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--gray);
  margin-bottom: 12px;
}

.stock-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── Morph Cards ────────────────────────────────────────── */
.morph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.morph-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.morph-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.morph-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.morph-img.salt-pepper { background: linear-gradient(135deg, #E8F5F4 0%, #C5E8E5 100%); }
.morph-img.albino      { background: linear-gradient(135deg, #FFF5F5 0%, #FFE4E4 100%); }
.morph-img.pinto       { background: linear-gradient(135deg, #F0FAFA 0%, #D0EEF0 100%); }
.morph-img.cinnamon    { background: linear-gradient(135deg, #FFF0E8 0%, #FFD5B8 100%); }
.morph-img.chocolate   { background: linear-gradient(135deg, #FFF0E8 0%, #F4C09A 100%); }
.morph-img.apricot     { background: linear-gradient(135deg, #FFFBE8 0%, #FFE8A8 100%); }

.morph-card-body { padding: 20px; }

.morph-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.morph-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.morph-price-range {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

/* ── Breeder Cards ──────────────────────────────────────── */
.breeder-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.breeder-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition);
  border: 1.5px solid transparent;
}

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

.breeder-avatar {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.breeder-info { flex: 1; }

.breeder-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.breeder-location {
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.breeder-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }

.breeder-stars {
  color: var(--orange);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.breeder-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

/* ── City Cards ─────────────────────────────────────────── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.city-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: all var(--transition);
  display: block;
  border-bottom: 4px solid transparent;
}

.city-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--teal);
}

.city-icon { font-size: 2.5rem; margin-bottom: 12px; }

.city-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--teal-dark); }

.city-card .breeder-count { font-size: 0.8rem; color: var(--gray); margin-bottom: 8px; }

.availability-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
}

.availability-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
}

.availability-dot.low::before { background: var(--orange); }

/* ── Product Cards ──────────────────────────────────────── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.product-icon { font-size: 3rem; margin-bottom: 16px; }

.product-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.product-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 12px;
}

/* ── Calculator ─────────────────────────────────────────── */
.calc-wrap { max-width: 720px; margin: 0 auto; }

.calc-form {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  border: 1.5px solid var(--border);
}

.calc-form h2 { margin-bottom: 24px; font-size: 1.25rem; color: var(--teal-dark); }

.calc-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group select,
.form-group input {
  padding: 10px 14px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231AAB9B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 30px;
}

.form-group input {
  background-image: none;
  padding-right: 14px;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--teal);
}

.calc-results {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow);
  display: none;
  border: 1.5px solid var(--teal-light);
}

.calc-results.visible { display: block; }

.calc-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.calc-result-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-card);
}

.calc-result-item.setup   { background: var(--teal-pale); }
.calc-result-item.monthly { background: var(--orange-pale); }
.calc-result-item.yearly  { background: var(--teal-light); }

.calc-result-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray);
  margin-bottom: 8px;
}

.calc-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.calc-result-item.monthly .calc-result-value { color: var(--orange); }

/* ── Blog category filter ────────────────────────────────── */
.category-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-btn {
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--gray-light);
  color: var(--gray);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}

.cat-btn:hover,
.cat-btn.active {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white);
}

.blog-card.hidden { display: none; }

/* ── Pros/Cons ──────────────────────────────────────────── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pros-box, .cons-box {
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

.pros-box {
  background: rgba(26,150,84,0.05);
  border: 2px solid rgba(26,150,84,0.20);
}

.cons-box {
  background: rgba(240,101,34,0.05);
  border: 2px solid rgba(240,101,34,0.18);
}

.pros-box h3 { color: #1A9654; margin-bottom: 14px; }
.cons-box h3 { color: var(--orange-dark); margin-bottom: 14px; }

.pros-box ul, .cons-box ul { padding-left: 18px; list-style: disc; }

.pros-box li, .cons-box li {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-muted);
}

/* ── Stars Rating ───────────────────────────────────────── */
.stars { color: var(--orange); letter-spacing: 2px; }

/* ── Img Placeholder ────────────────────────────────────── */
.img-placeholder {
  background: linear-gradient(135deg, var(--teal-light) 0%, #B2EBE6 100%);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

/* ── Utilities ──────────────────────────────────────────── */
.text-center   { text-align: center; }
.text-teal     { color: var(--teal); }
.text-orange   { color: var(--orange); }
.text-brown    { color: var(--teal-dark); }
.text-amber    { color: var(--orange); }
.text-muted    { color: var(--text-muted); }
.text-sm       { font-size: 0.875rem; }
.text-xs       { font-size: 0.75rem; }
.fw-bold       { font-weight: 700; }
.fw-800        { font-weight: 800; }
.mt-0  { margin-top: 0; }    .mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; } .mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; } .mb-48 { margin-bottom: 48px; }
.gap-8 { gap: 8px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.hidden { display: none; }
.visible { display: block; }

/* ── Related Articles ───────────────────────────────────── */
.related-articles {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2.5px solid var(--teal-light);
}

.related-articles h3 { margin-bottom: 16px; color: var(--teal-dark); }

.related-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--teal-dark);
  padding: 10px 14px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.related-list a:hover { background: var(--teal-light); }

/* ── Team Cards ─────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 4px solid var(--teal);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 16px;
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; }

.team-role {
  font-size: 0.72rem;
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 12px;
  background: var(--teal-light);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
}

.team-card p { font-size: 0.875rem; color: var(--text-muted); }

/* ── Featured Blog Post ─────────────────────────────────── */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  margin-bottom: 40px;
}

.featured-post-img {
  height: 280px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.featured-post-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.featured-post-body h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.coming-soon-card {
  background: var(--teal-pale);
  border-radius: var(--radius-card);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  border: 2px dashed var(--gray-light);
}

.coming-soon-card p { color: var(--gray); font-size: 0.875rem; }

/* ── Verification / Criteria Boxes ──────────────────────── */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.criteria-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--teal);
  text-align: center;
}

.criteria-icon { font-size: 2.5rem; margin-bottom: 14px; }

.criteria-box h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.criteria-box p { font-size: 0.85rem; color: var(--text-muted); }

/* ── Comparison Table ───────────────────────────────────── */
.comparison-table thead th:first-child { background: var(--teal-dark); }
.comparison-value.yes { color: #1A9654; font-weight: 700; }
.comparison-value.no  { color: #D93030; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .breeder-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr 240px; }
  .calc-fields { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 48px; }

  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: flex; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .nav-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .stock-grid { grid-template-columns: 1fr; }
  .morph-grid { grid-template-columns: 1fr; }
  .breeder-grid { grid-template-columns: 1fr; }
  .city-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .criteria-grid { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }

  .article-layout { grid-template-columns: 1fr; gap: 24px; }
  .toc-sidebar { position: static; order: -1; }

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

  .featured-post { grid-template-columns: 1fr; }
  .featured-post-img { height: 200px; }

  .filter-bar { flex-direction: column; }
  .filter-group { min-width: 100%; }

  .calc-result-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .breadcrumb-list { font-size: 0.75rem; }
  .table-wrap { margin: 16px -24px; border-radius: 0; }
}

@media (max-width: 480px) {
  .city-grid { grid-template-columns: 1fr 1fr; }
  .grid-6 { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
}
