/* ============================================================
   PYNK PEST CONTROL — shared stylesheet
   Used by every page generated from templates/base.html.
   Legacy hand-built pages still carry inline CSS; they migrate
   to this file as they are rebuilt through build.js.
   ============================================================ */

:root {
  --pink: #F33873; --pink-dark: #D81B5D; --pink-light: #FDE3EC;
  --blue: #1EAAFD; --blue-light: #E2F3FE;
  --navy: #05132C; --navy-light: #14294D;
  --white: #FFFFFF; --gray-bg: #FBF9F7;
  --gray: #6B7280; --gray-dark: #374151;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(26,35,64,0.10);
  --shadow-lg: 0 8px 40px rgba(26,35,64,0.15);
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--navy); background: var(--white); line-height: 1.65; font-size: 16px; }
h1,h2,h3,h4,h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--gray-bg); }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 50px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s ease; white-space: nowrap; }
.btn-primary { background: var(--pink); color: var(--white); border-color: var(--pink); }
.btn-primary:hover { background: var(--pink-dark); border-color: var(--pink-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(233,30,140,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline-dark:hover { background: var(--pink); color: var(--white); }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.section-label { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; color: var(--pink); margin-bottom: 12px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.text-center { text-align: center; }

/* PROMO STRIP */
.promo-strip { background: linear-gradient(90deg, var(--pink), #b0136a); color: var(--white); padding: 10px 24px; text-align: center; position: relative; z-index: 1001; }
.promo-strip-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.promo-strip-emoji { font-size: 16px; }
.promo-strip-text { font-size: 14px; font-weight: 500; }
.promo-strip-text strong { font-family: 'Poppins', sans-serif; font-weight: 700; }
.promo-strip-btn { background: rgba(255,255,255,0.2); border: 1.5px solid rgba(255,255,255,0.6); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; padding: 5px 16px; border-radius: 50px; transition: all 0.2s; white-space: nowrap; text-decoration: none; }
.promo-strip-btn:hover { background: var(--white); color: var(--pink); }

/* NAV */
.nav { position: sticky; top: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid rgba(26,35,64,0.08); padding: 0 24px; }
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--navy); transition: color 0.2s; }
.nav-links a:hover { color: var(--pink); }
.nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.nav-phone { font-size: 14px; font-weight: 600; color: var(--navy); display: flex; align-items: center; gap: 6px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }
.mobile-menu { display: none; position: fixed; top: 80px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.1); padding: 20px 24px 30px; z-index: 999; box-shadow: var(--shadow-lg); }
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
.mobile-menu ul a { display: block; padding: 14px 0; font-size: 16px; font-weight: 500; border-bottom: 1px solid var(--gray-bg); color: var(--navy); }
.mobile-menu-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #0f1629 100%); color: var(--white); padding: 90px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, transparent 70%); pointer-events: none; }
.page-hero::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(56,178,245,0.12) 0%, transparent 70%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 1140px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.page-hero-inner.single { grid-template-columns: 1fr; max-width: 860px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(233,30,140,0.18); border: 1px solid rgba(233,30,140,0.35); color: #f9a8d4; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 50px; margin-bottom: 24px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; margin-bottom: 20px; }
.page-hero h1 span { color: var(--pink); }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.78); margin-bottom: 36px; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
.hero-trust-item::before { content: '✓'; color: var(--pink); font-weight: 700; }
.hero-right-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 28px; backdrop-filter: blur(10px); }
.hero-right-card h3 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.hero-services-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hero-services-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: rgba(255,255,255,0.82); }
.hero-services-list li::before { content: '✓'; color: var(--pink); font-weight: 700; flex-shrink: 0; }
.hero-guarantee-note { margin-top: 18px; background: rgba(233,30,140,0.15); border: 1px solid rgba(233,30,140,0.3); border-radius: var(--radius); padding: 14px 16px; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.byline { display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 13.5px; color: rgba(255,255,255,0.65); margin-top: 22px; }

/* BREADCRUMBS */
.breadcrumbs { background: var(--gray-bg); border-bottom: 1px solid rgba(26,35,64,0.06); padding: 11px 0; font-size: 13px; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.breadcrumbs li { color: var(--gray); }
.breadcrumbs li + li::before { content: '›'; margin-right: 6px; color: var(--gray); }
.breadcrumbs a { color: var(--gray-dark); font-weight: 500; }
.breadcrumbs a:hover { color: var(--pink); }

/* TRUST STRIP */
.trust-strip { background: var(--white); border-bottom: 1px solid rgba(26,35,64,0.08); padding: 24px 0; }
.trust-strip-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 140px; justify-content: center; }
.trust-icon { width: 36px; height: 36px; background: var(--pink-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.trust-text strong { display: block; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; color: var(--navy); }
.trust-text span { font-size: 12px; color: var(--gray); }

/* CITY / INFO BOXES (city hubs) */
.city-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.city-pest-box { background: var(--white); border-radius: 16px; padding: 28px; border: 1px solid rgba(26,35,64,0.08); box-shadow: var(--shadow); }
.city-pest-box h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.city-pest-box p { font-size: 15px; color: var(--gray-dark); line-height: 1.75; }

/* SERVICE / WHY GRIDS */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 24px 20px; border: 1px solid rgba(26,35,64,0.08); box-shadow: var(--shadow); text-align: center; transition: all 0.2s; }
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--pink); }
.service-icon { width: 56px; height: 56px; background: var(--pink-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 24px; }
.service-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--navy); }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 46px; height: 46px; background: var(--blue-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.why-item h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.why-item p { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* GUARANTEE */
.guarantee-box { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, var(--navy), #14294D); border-radius: 20px; padding: 48px; text-align: center; position: relative; overflow: hidden; }
.guarantee-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: radial-gradient(circle, rgba(233,30,140,0.25) 0%, transparent 70%); }
.guarantee-icon { font-size: 48px; margin-bottom: 16px; position: relative; z-index: 1; }
.guarantee-box h2 { color: var(--white); font-size: 28px; font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.guarantee-box p { color: rgba(255,255,255,0.82); font-size: 17px; line-height: 1.8; position: relative; z-index: 1; }

/* ============ LONG-FORM ARTICLE COMPONENTS ============ */
.article-body { max-width: 800px; margin: 0 auto; padding: 56px 24px 24px; }
.article-body h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--navy); margin: 52px 0 18px; scroll-margin-top: 100px; }
.article-body h2:first-child { margin-top: 0; }
.article-body h3 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 30px 0 12px; }
.article-body p { font-size: 16.5px; color: var(--gray-dark); line-height: 1.85; margin-bottom: 18px; }
.article-body ul, .article-body ol:not(.steps) { margin: 0 0 20px 22px; color: var(--gray-dark); }
.article-body li { margin-bottom: 9px; line-height: 1.75; font-size: 16px; }
.article-body a:not(.btn):not(.related-card) { color: var(--pink-dark); font-weight: 600; }
.article-body a:not(.btn):not(.related-card):hover { text-decoration: underline; }
.article-body img { border-radius: 14px; margin: 8px 0 20px; }
.article-body figure { margin: 24px 0; }
.article-body figcaption { font-size: 13.5px; color: var(--gray); margin-top: 8px; }
.lead { font-size: 19px; line-height: 1.8; color: var(--gray-dark); }

/* On-this-page box */
.toc { background: var(--gray-bg); border: 1px solid rgba(26,35,64,0.06); border-radius: var(--radius); padding: 22px 26px; margin: 30px 0; }
.toc strong { font-family: 'Poppins', sans-serif; font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gray); display: block; margin-bottom: 10px; }
.toc ul { list-style: none; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.toc a { font-size: 14.5px; color: var(--gray-dark) !important; font-weight: 500 !important; }
.toc a:hover { color: var(--pink) !important; }

/* Callouts */
.callout { border-left: 4px solid var(--blue); background: var(--blue-light); border-radius: 0 var(--radius) var(--radius) 0; padding: 18px 22px; margin: 26px 0; }
.callout.pink { border-color: var(--pink); background: var(--pink-light); }
.callout p { margin-bottom: 10px; font-size: 15.5px; }
.callout p:last-child { margin-bottom: 0; }
.callout strong { color: var(--navy); }

/* Numbered method steps */
.steps { list-style: none; counter-reset: step; margin: 26px 0; }
.steps li { counter-increment: step; position: relative; padding-left: 58px; margin-bottom: 26px; font-size: 16px; }
.steps li::before { content: counter(step); position: absolute; left: 0; top: 2px; width: 40px; height: 40px; border-radius: 50%; background: var(--pink); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; }
.steps li strong { display: block; font-family: 'Poppins', sans-serif; font-size: 17px; color: var(--navy); margin-bottom: 6px; }

/* Species / info cards */
.species-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 26px 0; }
.species-card { background: var(--white); border: 1px solid rgba(26,35,64,0.08); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.species-card h3 { margin: 0 0 10px !important; font-size: 17px !important; }
.species-card p { font-size: 14.5px; margin-bottom: 0; line-height: 1.7; }
.risk { display: inline-block; font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 11px; border-radius: 50px; margin-bottom: 10px; }
.risk-low { background: var(--blue-light); color: #0b6aa2; }
.risk-med { background: #FEF3C7; color: #92400E; }
.risk-high { background: var(--pink-light); color: var(--pink-dark); }

/* Case study box */
.case-box { background: linear-gradient(135deg, var(--navy), #14294D); border-radius: 18px; padding: 34px; margin: 30px 0; position: relative; overflow: hidden; }
.case-box::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(233,30,140,0.22) 0%, transparent 70%); }
.case-box .case-label { font-family: 'Poppins', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--pink); margin-bottom: 12px; position: relative; z-index: 1; }
.case-box p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; font-size: 15.5px; }
.case-box p:last-child { margin-bottom: 0; }

/* FAQ accordions */
.faq-list { margin: 26px 0; }
.faq-item { background: var(--white); border: 1px solid rgba(26,35,64,0.08); border-radius: var(--radius); margin-bottom: 12px; box-shadow: var(--shadow); }
.faq-item summary { cursor: pointer; padding: 18px 22px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--pink); font-weight: 700; font-size: 22px; flex-shrink: 0; }
.faq-item[open] summary::after { content: '×'; }
.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 15.5px; margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }

/* Inline CTA band */
.cta-band { background: var(--pink-light); border: 1px solid rgba(243,56,115,0.2); border-radius: 16px; padding: 26px 30px; margin: 38px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.cta-band p { margin: 0 !important; font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--navy); font-size: 17px; }

/* Pest activity calendar table */
.table-scroll { overflow-x: auto; margin: 26px 0; }
.pest-cal { width: 100%; min-width: 640px; border-collapse: separate; border-spacing: 3px; }
.pest-cal th { font-family: 'Poppins', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); padding: 4px 2px; text-align: center; }
.pest-cal .pest-name { text-align: left; font-size: 13.5px; font-weight: 600; color: var(--navy); white-space: nowrap; padding-right: 10px; }
.pest-cal td { height: 28px; min-width: 30px; border-radius: 6px; background: var(--gray-bg); }
.pest-cal td.on { background: var(--blue-light); }
.pest-cal td.peak { background: var(--pink); }
.cal-legend { display: flex; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: var(--gray-dark); margin: 12px 0 26px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 7px; }
.cal-legend i { display: inline-block; width: 16px; height: 16px; border-radius: 5px; }
.cal-legend .swatch-on { background: var(--blue-light); }
.cal-legend .swatch-peak { background: var(--pink); }
.cal-legend .swatch-off { background: var(--gray-bg); border: 1px solid rgba(26,35,64,0.08); }

/* Comparison / data tables (Batch 6) */
.table-scroll table:not(.pest-cal) { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14.5px; background: var(--white); }
.table-scroll table:not(.pest-cal) th, .table-scroll table:not(.pest-cal) td { border: 1px solid rgba(26,35,64,0.10); padding: 10px 12px; text-align: left; vertical-align: top; line-height: 1.5; }
.table-scroll table:not(.pest-cal) tr:first-child th { background: var(--navy); color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.4px; }
.table-scroll table:not(.pest-cal) tbody tr:nth-child(even) td { background: var(--gray-bg); }
.table-scroll table:not(.pest-cal) tbody th { background: #eef1f6; font-weight: 700; color: var(--navy); text-align: left; }

/* Related-page cards */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 26px 0; }
.related-card { display: block; background: var(--white); border: 1px solid rgba(26,35,64,0.08); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); transition: all 0.2s; }
.related-card:hover { transform: translateY(-3px); border-color: var(--pink); box-shadow: var(--shadow-lg); }
.related-card strong { font-family: 'Poppins', sans-serif; display: block; margin-bottom: 6px; color: var(--navy); font-size: 15.5px; }
.related-card span { font-size: 13.5px; color: var(--gray); line-height: 1.55; }

/* FINAL CTA */
.final-cta { background: linear-gradient(135deg, var(--navy) 0%, #14294D 100%); color: var(--white); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 60%); }
.final-cta h2 { font-size: clamp(26px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; position: relative; z-index: 1; }
.final-cta p { font-size: 18px; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; }
.final-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; position: relative; z-index: 1; margin-bottom: 28px; }
.final-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; position: relative; z-index: 1; }
.final-trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); font-weight: 500; }
.final-trust-item::before { content: '✓'; color: var(--pink); font-weight: 700; }

/* FOOTER */
footer { background: #0f1629; color: rgba(255,255,255,0.7); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.footer-brand h3 span { color: var(--pink); }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin: 12px 0 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 10px; transition: color 0.2s; }
.footer-contact a:hover { color: var(--pink); }
.footer-col h4 { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; max-width: 1140px; margin: 0 auto; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* MOBILE STICKY CTA */
.mobile-cta-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 8998; background: var(--white); border-top: 2px solid rgba(26,35,64,0.1); padding: 10px 16px; gap: 10px; box-shadow: 0 -4px 20px rgba(26,35,64,0.12); }
.mobile-cta-call { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--navy); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; padding: 14px 16px; border-radius: 10px; text-decoration: none; }
.mobile-cta-quote { flex: 1.5; display: flex; align-items: center; justify-content: center; background: var(--pink); color: var(--white); font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 700; padding: 14px 16px; border-radius: 10px; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-right-card { display: none; }
  .city-info-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; flex-shrink: 0; }
  .nav { padding: 0 16px; }
  .nav-inner { gap: 12px; }
  .nav-logo img { height: 44px !important; }
  .nav-right .btn { padding: 12px 18px; font-size: 14px; }
  .btn { max-width: 100%; white-space: normal; }
  .btn-lg { padding: 15px 24px; font-size: 16px; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }
}
@media (max-width: 700px) {
  .species-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .page-hero { padding: 64px 0 52px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .guarantee-box { padding: 36px 24px; }
  .article-body { padding-top: 40px; }
  .case-box { padding: 26px 22px; }
}
@media (max-width: 374px) {
  .nav-logo img { height: 38px !important; }
  .nav-right .btn { padding: 10px 13px; font-size: 13px; }
  .nav-inner { gap: 8px; }
}
