/*
Theme Name: GLP1 Guide v2
Theme URI: https://glp1guide.tips
Description: Custom affiliate theme for glp1guide.tips
Version: 2.0.0
Text Domain: glp1guide
*/

/* =============================================
   CUSTOMIZER CSS VARIABLES
   (overridden by wp_add_inline_style in functions.php)
   ============================================= */
:root {
  --color-primary:       #0E7490;
  --color-primary-dark:  #0C5F75;
  --color-primary-light: #ECFEFF;
  --color-accent:        #6366F1;
  --color-accent-light:  #EEF2FF;
  --color-text:          #0F172A;
  --color-text-secondary:#475569;
  --color-text-muted:    #94A3B8;
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F8FAFC;
  --color-bg-dark:       #0F172A;
  --color-border:        #E2E8F0;
  --color-success:       #10B981;
  --color-warning:       #F59E0B;
  --font-display:        'DM Sans', system-ui, sans-serif;
  --font-body:           'Inter', system-ui, sans-serif;
  --radius:              8px;
  --radius-lg:           14px;
  --radius-xl:           20px;
  --shadow:              0 1px 4px rgba(15,23,42,0.07);
  --shadow-md:           0 4px 16px rgba(15,23,42,0.09);
  --shadow-lg:           0 8px 32px rgba(15,23,42,0.12);
  --max-w:               1080px;
}

/* =============================================
   RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--color-primary-dark); }
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--color-text);
  font-weight: 700;
}
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.4rem; }
li { margin-bottom: 0.4rem; }

/* =============================================
   LAYOUT
   ============================================= */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.wrap-narrow {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section       { padding: 4.5rem 0; }
.section-sm    { padding: 2.5rem 0; }
.section-alt   { background: var(--color-bg-alt); }
.section-dark  { background: var(--color-bg-dark); color: #fff; }

/* =============================================
   TYPOGRAPHY UTILITIES
   ============================================= */
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.6rem;
}
.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title h2 { margin-bottom: 0.6rem; }
.section-title p {
  color: var(--color-text-secondary);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}
.text-muted { color: var(--color-text-muted); }
.text-center { text-align: center; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
}
.btn-white {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  border-color: var(--color-primary-light);
}
.btn-lg { padding: 0.9rem 1.8rem; font-size: 1rem; }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   BADGES
   ============================================= */
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge-cyan   { background: #CFFAFE; color: #164E63; }
.badge-indigo { background: var(--color-accent-light); color: #3730A3; }
.badge-green  { background: #D1FAE5; color: #065F46; }
.badge-amber  { background: #FEF3C7; color: #92400E; }
.badge-top {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--color-text);
  letter-spacing: -0.01em;
}
.logo-name span { color: var(--color-primary); }

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex: 1;
}
.primary-nav a {
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: all 0.15s;
  white-space: nowrap;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a {
  background: var(--color-primary-light);
  color: var(--color-primary);
}
.header-cta-wrap { margin-left: auto; flex-shrink: 0; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.4rem;
  margin-left: auto;
}
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid var(--color-border);
  padding: 1rem 1.5rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { margin-top: 1rem; width: 100%; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: linear-gradient(150deg, var(--color-primary-light) 0%, #fff 55%);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
  top: -100px;
  right: -80px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-primary-light);
  border: 1px solid #A5F3FC;
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.hero-kicker-dot {
  width: 6px;
  height: 6px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero h1 {
  margin-bottom: 1.1rem;
  letter-spacing: -0.025em;
}
.hero h1 em {
  font-style: normal;
  color: var(--color-primary);
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.75;
}
.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.proof-item svg { color: var(--color-success); }

/* Hero visual panel */
.hero-panel {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.panel-header {
  background: var(--color-primary);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.panel-header-dots { display: flex; gap: 5px; }
.panel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.panel-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  font-family: var(--font-display);
}
.panel-body { padding: 1.25rem; }
.panel-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.panel-stat {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
}
.panel-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.3rem;
}
.panel-stat-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.panel-stat-sub {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}
.panel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.82rem;
}
.panel-row:last-child { border-bottom: none; }
.panel-row-label { color: var(--color-text-secondary); font-weight: 500; }
.panel-row-val { font-weight: 700; color: var(--color-text); }
.panel-row-val.green { color: var(--color-success); }

/* =============================================
   CLINIC CARDS
   ============================================= */
.clinic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.clinic-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.clinic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}
.clinic-card.featured { border-color: var(--color-primary); border-width: 2px; }
.clinic-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.clinic-tag {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 1.1rem;
}
.clinic-price-wrap { margin-bottom: 1.1rem; }
.clinic-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}
.clinic-price-per {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--color-text-muted);
}
.clinic-price-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.2rem;
}
.clinic-med-badge { margin-bottom: 1.1rem; }
.clinic-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
  flex: 1;
}
.clinic-features li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--color-border);
  align-items: flex-start;
}
.clinic-features li:last-child { border-bottom: none; }
.clinic-features .ck { color: var(--color-success); font-weight: 700; flex-shrink: 0; }

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 1.5px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent));
  opacity: 0.3;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--color-primary);
}
.step-title { font-weight: 700; font-size: 0.95rem; margin-bottom: 0.4rem; }
.step-desc { font-size: 0.83rem; color: var(--color-text-secondary); line-height: 1.6; }

/* =============================================
   POST / BLOG CARDS
   ============================================= */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.post-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.post-thumb {
  height: 175px;
  background: var(--color-primary-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.post-cat {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 0.4rem;
}
.post-body h3 { font-size: 0.95rem; margin-bottom: 0.5rem; line-height: 1.4; }
.post-body h3 a { color: var(--color-text); }
.post-body h3 a:hover { color: var(--color-primary); }
.post-excerpt { font-size: 0.83rem; color: var(--color-text-secondary); line-height: 1.6; flex: 1; margin-bottom: 0.75rem; }
.post-meta { font-size: 0.72rem; color: var(--color-text-muted); display: flex; gap: 0.6rem; }

/* =============================================
   DISCLAIMER / NOTICE BOXES
   ============================================= */
.box-disclaimer {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-left: 3px solid var(--color-warning);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.8rem;
  color: #78350F;
  line-height: 1.6;
  margin: 1.25rem 0;
}
.box-affiliate {
  background: var(--color-primary-light);
  border: 1px solid #A5F3FC;
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.78rem;
  color: #164E63;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.box-info {
  background: var(--color-accent-light);
  border: 1px solid #C7D2FE;
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: #3730A3;
  margin: 1.25rem 0;
  line-height: 1.6;
}

/* =============================================
   SIDEBAR
   ============================================= */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-widget-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-clinic {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.85rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s;
}
.sidebar-clinic:last-child { margin-bottom: 0; }
.sidebar-clinic:hover { border-color: var(--color-primary); }
.sc-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.2rem; }
.sc-price { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 0.65rem; }

/* =============================================
   POST CONTENT (single.php)
   ============================================= */
.post-header { background: var(--color-bg-alt); padding: 3.5rem 0 2.5rem; border-bottom: 1px solid var(--color-border); }
.post-content { font-size: 1rem; line-height: 1.8; }
.post-content h2 { margin: 2.25rem 0 0.9rem; font-size: 1.45rem; }
.post-content h3 { margin: 1.75rem 0 0.7rem; font-size: 1.15rem; }
.post-content p  { margin-bottom: 1.25rem; }
.post-content ul,
.post-content ol { margin-bottom: 1.25rem; }
.post-content a  { text-decoration: underline; text-underline-offset: 3px; }
.post-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.post-content .in-content-cta {
  background: var(--color-primary-light);
  border: 1px solid #A5F3FC;
  border-left: 3px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 2rem 0;
}
.post-content .in-content-cta h4 { color: var(--color-primary); margin-bottom: 0.4rem; font-size: 1rem; }
.post-content .in-content-cta p { font-size: 0.875rem; margin-bottom: 0.85rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-name span { color: #67E8F9; }
.footer-tagline {
  font-size: 0.83rem;
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 210px;
  color: rgba(255,255,255,0.5);
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 0;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}

/* =============================================
   PAGE TEMPLATE
   ============================================= */
.page-header { background: var(--color-bg-alt); padding: 3rem 0 2rem; border-bottom: 1px solid var(--color-border); }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .lead { font-size: 1.05rem; color: var(--color-text-secondary); }
.page-content { padding: 3rem 0; }
.page-content h2 { margin: 2rem 0 0.75rem; }
.page-content h3 { margin: 1.5rem 0 0.6rem; }
.page-content p  { margin-bottom: 1.1rem; }
.page-content ul,
.page-content ol { margin-bottom: 1.1rem; }

/* =============================================
   COMPARE TABLE
   ============================================= */
.compare-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--color-border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th {
  background: var(--color-bg-alt);
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  font-size: 0.8rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}
.compare-table th.hl { background: var(--color-primary-light); color: var(--color-primary); }
.compare-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td.hl { background: rgba(14,116,144,0.03); }
.compare-table .yes { color: var(--color-success); font-weight: 700; }
.compare-table .no  { color: #CBD5E1; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  transition: all 0.15s;
}
.pagination a:hover { background: var(--color-primary-light); border-color: var(--color-primary); color: var(--color-primary); }
.pagination .current { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .clinic-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .content-with-sidebar { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero { padding: 3rem 0 2.5rem; }
  .clinic-grid { grid-template-columns: 1fr; }
  .post-grid { grid-template-columns: 1fr; }
  .primary-nav { display: none; }
  .header-cta-wrap { display: none; }
  .mobile-toggle { display: block; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  h1 { font-size: 1.7rem; }
}

/* =============================================
   UTILITIES
   ============================================= */
.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2rem}
.mb-1{margin-bottom:.5rem}.mb-2{margin-bottom:1rem}.mb-3{margin-bottom:1.5rem}
.flex{display:flex}.flex-center{display:flex;align-items:center}
.gap-1{gap:.5rem}.gap-2{gap:1rem}.gap-3{gap:1.5rem}
.sr-only{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0)}
