/* ===== CSS VARIABLES & RESET ===== */
:root {
  /* Brand Colors — pulled from logos */
  --sky:        #7fc8d5;   /* light blue from logo background */
  --sky-light:  #b8e2e9;
  --sky-dark:   #4da8b8;
  --navy:       #1e3a5f;   /* deep navy from "Your Dooty is our Duty" badge */
  --navy-mid:   #2a4f7c;
  --brown:      #8b4513;   /* warm brown from the cartoon dog */
  --brown-light:#c47030;
  --gold:       #f5a623;   /* gold stars from the badge */
  --cream:      #fdf8f2;
  --white:      #ffffff;
  --gray-light: #f4f7f9;
  --gray:       #6b7a8d;
  --text:       #2c3e50;
  --text-light: #5a6a7a;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  /* Spacing */
  --radius:     14px;
  --radius-lg:  22px;
  --shadow:     0 4px 24px rgba(30,58,95,0.10);
  --shadow-lg:  0 12px 40px rgba(30,58,95,0.15);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); }

.container {
  width: 91%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ===== HEADER / NAV ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(30,58,95,0.09);
  z-index: 200;
  overflow: visible;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  margin-top: -11px;
  margin-bottom: -11px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
}
.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}
.nav-list a {
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-list a:hover { color: var(--sky-dark); }
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sky-dark) !important; }
.hamburger { display: none; background: none; border: none; padding: 0.2rem; }
.hamburger span {
  display: block; width: 26px; height: 3px;
  background: var(--navy); margin: 5px 0; border-radius: 3px; transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 45%, #1a5672 100%);
  color: var(--white);
  padding: 4rem 0 4rem;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: stretch;
  gap: 0;
  min-height: 480px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  background: var(--sky);
}
.shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: -80px; left: -60px; background: var(--gold); }
.shape-3 { width: 180px; height: 180px; top: 60px; left: 30%; opacity: 0.05; }

.hero-content { position: relative; z-index: 2; padding-left: 0; align-self: center; }
.hero-badge {
  display: inline-block;
  background: rgba(127,200,213,0.2);
  border: 1px solid rgba(127,200,213,0.4);
  color: var(--sky-light);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky);
  display: block;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  max-width: 540px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.35rem;
  line-height: 1.6;
}
.hero-trust {
  display: flex;
  gap: 0.45rem 1.2rem;
  flex-wrap: wrap;
  font-size: 0.81rem;
  color: rgba(255,255,255,0.78);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-trust span::before {
  content: '✓ ';
  color: #7dd3d0;
}
.hero-buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

/* Right column: video on top, badge card on bottom */
.hero-right {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 1.5rem 2rem 1.5rem 1rem;
  gap: 1rem;
}

/* Video wrapper — fills available height, doesn't grow beyond column */
.hero-video-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: rgba(0,0,0,0.3);
  flex: 1;
  min-height: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  cursor: pointer;
}

/* Sound toggle button */
.video-sound-btn {
  position: absolute;
  bottom: 0.7rem;
  right: 0.7rem;
  z-index: 10;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
  pointer-events: all;
}
.video-sound-btn:hover { background: rgba(0,0,0,0.75); }
.sound-icon { font-size: 1rem; line-height: 1; }

/* Badge circle — fixed size, navy bg matches the badge logo border */
.hero-badge-card {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  align-self: center;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #1e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--sky-dark);
  color: var(--white);
  border-color: var(--sky-dark);
}
.btn-primary:hover {
  background: var(--sky);
  border-color: var(--sky);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(77,168,184,0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--sky-dark);
}
.btn-outline:hover {
  background: var(--sky-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 0.55rem 1.4rem; font-size: 0.87rem; }
.btn-full { width: 100%; text-align: center; font-size: 1.1rem; padding: 1.05rem 2rem; }

/* Submit row: button + price calculator side by side */
.submit-row {
  display: flex;
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.5rem;
}
.btn-submit-half {
  flex: 1;
  text-align: center;
  font-size: 1rem;
  padding: 1rem 1.2rem;
  white-space: nowrap;
}
.price-calculator {
  flex: 1;
  background: linear-gradient(135deg, var(--sky-dark) 0%, #1a7a6e 100%);
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  text-align: center;
  min-height: 64px;
}
.calc-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.15rem;
}
.calc-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.calc-breakdown {
  font-size: 0.67rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .submit-row { flex-direction: column; }
  .price-calculator { border-radius: 16px; padding: 1rem; }
}

/* ===== SECTIONS ===== */
.section { padding: 2.75rem 0; }
.section-alt { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 1.75rem; }
.section-badge {
  display: inline-block;
  background: #e8f5f4;
  color: #3da5a0;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.28em 0.8em;
  border-radius: 50px;
  margin-bottom: 0.8rem;
  border: none;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto;
}

/* ===== VALUE SECTION ===== */
.value-section { background: var(--cream); }
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--sky-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 1.5rem; margin-bottom: 0.4rem; display: block; text-align: center; }
.value-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-weight: 700;
  text-align: center;
}
.value-card p { color: var(--text-light); font-size: 0.78rem; text-align: center; line-height: 1.45; }

/* ===== HOW IT WORKS ===== */
.how-in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

/* Numbered steps */
.ca-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.85rem;
}
.ca-step-n {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--sky-dark);
  color: var(--white);
  font-weight: 900;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.ca-step h3 {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.22rem;
}
.ca-step p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Trust grid */
.trust-hd {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--sky-dark);
  margin-bottom: 0.9rem;
}
.t-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.t-tile {
  background: var(--white);
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}
.t-tile .ti {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.t-tile strong {
  display: block;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 0.12rem;
}
.t-tile p {
  font-size: 0.71rem;
  color: var(--text-light);
  line-height: 1.42;
  margin: 0;
}

.no-contracts-banner {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 2.5rem;
  justify-content: center;
}
.no-item {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sky-light);
  padding: 0.3rem 0;
}
.no-tagline {
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  transition: transform 0.2s;
}
.service-card:hover { transform: translateY(-4px); }
.primary-service { border: 2px solid var(--sky-dark); }
.service-icon { font-size: 3rem; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
}
.service-card p { color: var(--text-light); font-size: 0.97rem; flex: 1; }

/* ===== PRICING SECTION ===== */
.pricing-toggle {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.toggle-btn {
  padding: 0.65rem 1.8rem;
  border-radius: 50px;
  border: 2px solid var(--sky-dark);
  background: transparent;
  color: var(--navy);
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.toggle-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.pricing-note-top {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.pricing-section { transition: opacity 0.2s; }
.pricing-section.hidden { display: none; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.pricing-card {
  background: var(--white);
  padding: 2rem 1.6rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  background: var(--navy);
  color: var(--white);
  border: 3px solid var(--sky);
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}
.popular-badge {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 0.8rem;
  align-self: center;
}
.plan-freq {
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--sky-dark);
  margin-bottom: 0.5rem;
}
.featured .plan-freq { color: var(--sky-light); }
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.price span { font-size: 1rem; font-weight: 600; color: var(--text-light); }
.featured .price { color: var(--white); }
.featured .price span { color: var(--sky-light); }
.per-visit {
  font-size: 0.72rem;
  color: #9ca3af;
  margin-bottom: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.featured .per-visit { color: rgba(255,255,255,0.4); }

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  flex: 1;
}
.pricing-card ul li {
  padding: 0.35rem 0 0.35rem 1.6rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-light);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-card ul li::before {
  content: "✓";
  color: var(--sky-dark);
  position: absolute;
  left: 0;
  font-weight: 900;
}
.featured ul li { color: rgba(255,255,255,0.8); border-bottom-color: rgba(255,255,255,0.1); }
.featured ul li::before { color: var(--sky); }
.plan-note {
  font-size: 0.78rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 0.6rem;
}
.featured .plan-note { color: rgba(255,255,255,0.6); }

/* Extras Grid */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.extra-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.extra-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.extra-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--sky-dark);
  font-family: var(--font-display);
  margin-bottom: 0.5rem;
}
.highlight-card { border: 2px solid var(--sky-dark); }
.prepay-options { display: flex; flex-direction: column; gap: 1rem; margin-top: 0.5rem; }
.prepay-option strong { display: block; font-size: 0.95rem; color: var(--navy); }
.prepay-option p { font-size: 0.85rem; color: var(--text-light); margin: 0.2rem 0 0; }
.prepay-example { font-size: 0.8rem !important; color: var(--sky-dark) !important; font-weight: 700 !important; }
.save-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.save-badge.best { background: var(--sky-dark); color: var(--white); }
.addon-list { list-style: none; margin: 0.6rem 0; }
.addon-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 0.92rem;
  color: var(--text-light);
}
.addon-list li strong { color: var(--sky-dark); font-weight: 800; }
.addon-note { font-size: 0.8rem; color: var(--text-light); margin-top: 0.6rem; font-style: italic; }

/* Referral Banner */
.referral-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  text-align: center;
  color: var(--white);
}
.referral-banner h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.referral-banner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; }
.referral-banner strong { color: var(--gold); }
.referral-fine { font-size: 0.82rem !important; color: rgba(255,255,255,0.55) !important; margin-top: 0.8rem; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 2.5rem;
  align-items: center;
}
.about-logo-side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

/* About section video */
.about-video-wrap {
  position: relative;
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.about-video {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Tagline below about video */
.about-tagline {
  font-size: 0.75rem;
  color: var(--gray);
  font-style: italic;
  text-align: center;
  margin-top: 0.45rem;
}
.about-h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
  text-align: left;
}
.about-text > p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 0.7rem;
  color: var(--text);
}
.about-text > p em {
  font-style: italic;
  color: var(--text);
}

/* Concept A pill chips for values */
.av-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.9rem 0;
}
.av {
  background: #e8f5f4;
  color: var(--sky-dark);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 0.24em 0.7em;
  border-radius: 50px;
}

/* Name note box */
.about-name-note {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 0.82rem 1rem;
  margin-top: 0.6rem;
}
.about-name-note strong { display: block; font-size: 0.83rem; color: var(--navy); margin-bottom: 0.18rem; }
.about-name-note p { font-size: 0.78rem; color: var(--gray); margin: 0; }

/* ===== FAQ — 2 COLUMNS ===== */
.faq-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border, #e2e8f0);
}
.faq-col .faq-item:first-child,
.faq-item:first-child {
  border-top: 1px solid var(--border, #e2e8f0);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-item.open .faq-q { color: var(--sky-dark); }
.faq-ic {
  font-size: 1.2rem;
  color: var(--sky-dark);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
  font-weight: 300;
}
.faq-item.open .faq-ic { transform: rotate(45deg); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-a p {
  font-size: 0.84rem;
  color: var(--gray);
  line-height: 1.64;
  padding-bottom: 0.95rem;
  margin: 0;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a a { color: var(--sky-dark); font-weight: 700; }

@media (max-width: 768px) {
  .faq-cols { grid-template-columns: 1fr; gap: 0; }
  .faq-col .faq-item:first-child { border-top: none; }
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: var(--sky-dark);
  padding: 2rem 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.feature {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  user-select: none;
}
.feature-header span:first-child {
  min-width: 0;
}
.feature:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.25);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.feature[data-expanded="true"],
.feature.feature-open {
  background: rgba(255,255,255,0.28);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.feature-caret {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s;
  opacity: 0.85;
  flex-shrink: 0;
}
.feature[data-expanded="true"] .feature-caret,
.feature.feature-open .feature-caret {
  transform: rotate(180deg);
}
.feature-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  opacity: 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.55;
  text-align: left;
  margin-top: 0;
  border-top: 1px solid transparent;
}
.feature[data-expanded="true"] .feature-body,
.feature.feature-open .feature-body {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top-color: rgba(255,255,255,0.25);
}
/* Dooty Report badge has an image so needs more height */
.feature.feature-open .feature-body img,
.feature[data-expanded="true"] .feature-body img {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
}
.feature:nth-child(3).feature-open .feature-body,
.feature:nth-child(3)[data-expanded="true"] .feature-body {
  max-height: 600px;
}



/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 2.5rem 4rem;
  align-items: start;
}
/* On desktop: form spans both rows on left; next + sidebar stack on right */
.contact-form {
  grid-column: 1;
  grid-row: 1 / 3;
}
.contact-next {
  grid-column: 2;
  grid-row: 1;
}
.contact-sidebar {
  grid-column: 2;
  grid-row: 2;
}
.contact-block { margin-bottom: 2rem; }
.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.8rem;
}
.contact-block p { margin: 0.4rem 0; color: var(--text-light); }
.contact-block a { color: var(--sky-dark); font-weight: 700; }
.contact-block a:hover { text-decoration: underline; }
.next-steps {
  list-style: none;
  counter-reset: steps;
  padding: 0;
}
.next-steps li {
  counter-increment: steps;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.5rem 0;
  color: var(--text-light);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.next-steps li::before {
  content: counter(steps);
  background: var(--sky-dark);
  color: var(--white);
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  flex-shrink: 0;
}

/* Social icons */
.social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.1rem;
  flex-wrap: wrap;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.18s, opacity 0.18s;
  flex-shrink: 0;
}
.social-icon svg {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
/* These icons have hardcoded internal colors — don't invert them */
.social-reddit svg,
.social-youtube svg,
.social-yelp svg,
.social-yelp img,
.social-google svg {
  filter: none;
}
/* Higher specificity to ensure Google G colors are never inverted on any browser */
.social-icon.social-google svg { filter: none; }
.social-reddit svg { width: 22px; height: 22px; }
.social-youtube svg { width: 22px; height: 22px; }
.social-yelp { background: none !important; padding: 0; overflow: visible; }
.social-yelp img { width: 38px; height: 38px; border-radius: 50%; pointer-events: none; display: block; }
.social-icon:hover { transform: translateY(-2px); opacity: 0.88; }
.social-facebook  { background: #1877f2; }
.social-google    { background-color: #ffffff; border: 2px solid #dadce0; box-shadow: 0 0 0 1px rgba(0,0,0,0.08); }
.social-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%); }
.social-youtube   { background: #ff0000; }
.social-x         { background: #000; }
.social-nextdoor  { background: #00b246; }
.social-reddit    { background: #ff4500; }
.social-linkedin  { background: #0a66c2; }

/* Social icon tooltip */
.social-icon {
  position: relative;
}
.social-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20,30,48,0.92);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-body);
  white-space: nowrap;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 100;
}
.social-icon::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(20,30,48,0.92);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 100;
}
.social-icon:hover::after,
.social-icon:hover::before { opacity: 1; }

/* Footer variant — slightly smaller, softer on dark bg */
.social-icons-footer .social-icon {
  width: 34px;
  height: 34px;
  opacity: 0.9;
}
.social-icons-footer .social-icon svg {
  width: 16px;
  height: 16px;
}
.social-icons-footer .social-yelp img { width: 34px; height: 34px; }
.social-icons-footer .social-icon:hover { opacity: 1; }
.contact-video-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
  margin-top: 1.5rem;
}
.contact-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form-group { margin-bottom: 0.9rem; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--navy);
  margin-bottom: 0.28rem;
  text-transform: none;
  letter-spacing: 0;
}
.label-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.74rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.65rem 0.95rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.87rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a0aec0;
  font-size: 0.84rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky-dark);
  box-shadow: 0 0 0 3px rgba(77,168,184,0.15);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
/* SMS Consent Checkbox */
.sms-consent-group {
  margin-top: -0.25rem;
  margin-bottom: 1.25rem;
}
.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  cursor: pointer;
}
.sms-consent-label input[type="checkbox"].sms-check {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  border-radius: 3px !important;
  border: 1.5px solid #b0bec8 !important;
  background: var(--white) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  position: relative !important;
  vertical-align: middle !important;
  transition: background 0.15s, border-color 0.15s;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin-top: 0px !important;
}
.sms-consent-label input[type="checkbox"].sms-check:checked {
  background: var(--sky-dark) !important;
  border-color: var(--sky-dark) !important;
}
.sms-consent-label input[type="checkbox"].sms-check:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 7px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.sms-consent-text {
  font-size: 0.75rem;
  color: #666;
  line-height: 1.55;
  font-weight: 400;
}
/* SMS Consent Checkbox */
.sms-consent-group {
  margin-bottom: 1.2rem;
}
.sms-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}
.sms-consent-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 0px;
  flex-shrink: 0;
  accent-color: var(--sky-dark);
  cursor: pointer;
  border-radius: 3px;
  position: relative;
  top: 2px;
}
.sms-consent-text {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.5;
  font-weight: 400;
}
/* Side-by-side radio row — align items to top so labels line up */
.form-row-radio {
  align-items: start;
}
.radio-group {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 0.3rem;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: var(--text) !important;
}
/* Hide native radio, replace with filled custom circle */
.radio-label input[type="radio"] {
  all: unset !important;
  display: inline-block !important;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  max-width: 24px !important;
  min-height: 24px !important;
  max-height: 24px !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border-radius: 50% !important;
  border: 2px solid var(--sky-dark) !important;
  background: var(--white) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
}
.radio-label input[type="radio"]:checked {
  background: var(--sky-dark) !important;
  border-color: var(--sky-dark) !important;
  box-shadow: inset 0 0 0 4px var(--white) !important;
}
/* Custom addon checkbox dropdown */
.addon-dropdown {
  position: relative;
  width: 100%;
}
.addon-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1.5px solid #d0dae6;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s;
}
.addon-trigger:hover,
.addon-trigger.open { border-color: var(--sky-dark); outline: none; }
.addon-trigger-disabled,
.addon-trigger:disabled {
  opacity: 0.5;
  cursor: not-allowed !important;
  background: #f0f0f0 !important;
}
.addon-chevron {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: transform 0.2s;
  margin-left: 0.5rem;
  flex-shrink: 0;
}
.addon-trigger.open .addon-chevron { transform: rotate(180deg); }
.addon-panel {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1.5px solid var(--sky-dark);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  z-index: 50;
  padding: 0.4rem 0;
  max-height: 320px;
  overflow-y: auto;
}
.addon-panel.open { display: block; }
.addon-section { padding: 0.3rem 0; }
.addon-section + .addon-section { border-top: 1px solid #eef1f5; }
.addon-section-label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  padding: 0.5rem 1rem 0.25rem;
}
.addon-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 1rem;
  font-size: 0.93rem;
  line-height: 1.3;
  font-weight: 500 !important;
  color: var(--text) !important;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  transition: background 0.12s;
}
.addon-item:hover { background: #f0f7fa; }
.addon-panel .addon-item input.addon-check {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  display: inline-block !important;
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  max-width: 14px !important;
  min-height: 14px !important;
  max-height: 14px !important;
  border-radius: 3px !important;
  border: 1.5px solid #b0bec8 !important;
  background: var(--white) !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  position: relative !important;
  vertical-align: middle !important;
  transition: background 0.15s, border-color 0.15s;
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
}
.addon-panel .addon-item input.addon-check:checked {
  background: var(--sky-dark) !important;
  border-color: var(--sky-dark) !important;
}
.addon-panel .addon-item input.addon-check:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 4px;
  height: 7px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.addon-price {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sky-dark);
  white-space: nowrap;
}
.referral-field { border-top: 1px dashed #d0d8e0; padding-top: 1.2rem; }
.field-hint { font-size: 0.8rem; color: var(--text-light); margin-top: 0.4rem; font-style: italic; }
.label-optional { font-weight: 400; color: var(--text-light); font-size: 0.8rem; text-transform: none; letter-spacing: 0; }

/* Validation error styles */
.field-error {
  display: block;
  font-size: 0.78rem;
  color: #c0392b;
  font-weight: 600;
  margin-top: 0.3rem;
  min-height: 1.1em;
}
.input-error {
  border-color: #c0392b !important;
  background: #fff8f8 !important;
}
.input-error:focus {
  outline-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.15) !important;
}

/* Google Places autocomplete dropdown styling */
.pac-container {
  border-radius: var(--radius);
  border: 1.5px solid var(--sky-dark);
  box-shadow: 0 8px 24px rgba(30,58,95,0.12);
  font-family: var(--font-body);
  margin-top: 2px;
}
.pac-item {
  padding: 0.5rem 0.9rem;
  font-size: 0.92rem;
  cursor: pointer;
}
.pac-item:hover { background: #f0f7fa; }
.pac-item-selected { background: #e8f4f8; }
.pac-matched { font-weight: 700; color: var(--sky-dark); }
.form-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 0.8rem;
  line-height: 1.5;
}
.square-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1rem;
  padding: 0.65rem 1.2rem;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.square-logo {
  height: 22px;
  width: auto;
  flex-shrink: 0;
}
.square-badge-text {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1.4;
}

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: var(--white); padding: 4rem 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo { width: 80px; margin-bottom: 0.8rem; border-radius: var(--radius); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--sky);
  margin-bottom: 0.4rem;
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links h4,
.footer-contact h4 {
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--sky-light);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin: 0.5rem 0; }
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--sky); }
.footer-contact p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  margin: 0.4rem 0;
}
.footer-contact a { color: var(--sky); font-weight: 700; }
.footer-referral {
  margin-top: 1.2rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
}
.footer-referral strong {
  display: block;
  color: var(--gold);
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}
.footer-referral p { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.footer-square-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  opacity: 0.5;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}
.footer-square-logo {
  height: 16px;
  width: auto;
  filter: invert(1) brightness(2);
}

/* Litter box locked state (on dog plans before cat service chosen) */
.addon-boxes-locked {
  pointer-events: none;
  opacity: 0.35;
}
.addon-box-locked-note {
  font-size: 0.75rem;
  color: var(--sky-dark);
  font-style: italic;
  padding: 0.3rem 0.5rem 0.6rem;
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: scale(1); }
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 0 2.5rem;
    min-height: 0;
  }
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1.5rem 2rem;
    gap: 1rem;
  }
  .hero-video-wrap {
    max-width: 300px;
    width: 100%;
  }
  .hero-badge-card { display: none; }
  .hero-content { text-align: center; padding: 2rem 1.5rem 1.5rem; }
  .hero-sub { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-trust { justify-content: center; }
  .how-in { grid-template-columns: 1fr; gap: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 1.5rem; }
  .contact-form { grid-column: 1; grid-row: auto; order: 2; }
  .contact-next { grid-column: 1; grid-row: auto; order: 1; }
  .contact-sidebar { grid-column: 1; grid-row: auto; order: 3; }
  .contact-video-wrap { max-width: 320px; margin-left: auto; margin-right: auto; }
  .contact-next .contact-block { text-align: center; margin-bottom: 0; }
  .contact-next .contact-block h3 { text-align: center; }
  .contact-next .next-steps { max-width: 360px; margin: 0 auto; text-align: left; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature { font-size: 0.95rem; padding: 1rem; }
  .feature-body { font-size: 0.82rem; }
}

/* About: stack at 600px, cap mobile video height */
@media (max-width: 600px) {
  .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .about-h2 { text-align: center; font-size: 1.5rem; }
  .about-video-wrap { max-height: 380px; }
  .about-video { max-height: 380px; object-fit: cover; object-position: center 50%; }
  .about-tagline { text-align: center; }
  .av-chips { justify-content: center; }
  .about-text { text-align: center; }
  .about-text > p { text-align: left; }
  .about-name-note { text-align: left; }
}

/* ===== TABLET: prevent CTA button squishing 769px–1024px ===== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-list { gap: 1rem; }
  .nav-list a { font-size: 0.82rem; }
  .nav-cta {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    white-space: nowrap;
  }
  .logo-text { font-size: 1.3rem; }
  .logo-img { width: 88px; height: 88px; margin-top: -14px; margin-bottom: -14px; }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 1rem 0 1.5rem;
    z-index: 300;
  }
  .nav-list.active { display: flex; }
  .nav-list li { padding: 0; }
  .nav-list a {
    display: block;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 0;
  }
  .nav-cta {
    margin: 0.5rem 1.5rem 0;
    text-align: center;
    border-radius: 50px !important;
    display: block;
  }
  .hamburger { display: block; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); max-width: 100%; margin: 0 0 2rem; gap: 0.75rem; }
  .pricing-card { padding: 1.25rem 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-row.form-row-radio { grid-template-columns: 1fr 1fr; }
  .no-contracts-banner { flex-direction: column; gap: 0.3rem; text-align: center; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.6rem; }
  .contact-form { padding: 1.5rem; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature { font-size: 0.88rem; padding: 0.85rem 0.75rem; }
  .t-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }
  .t-tile { padding: 0.7rem 0.75rem; }
  .t-tile strong { font-size: 0.72rem; }
  .t-tile p { font-size: 0.66rem; }
  .pricing-card { padding: 1rem 0.85rem; }
  .pricing-grid { gap: 0.6rem; }
  .price { font-size: 2.1rem; }
  .price span { font-size: 0.82rem; }
  .plan-freq { font-size: 0.72rem; letter-spacing: 0.03em; }
  .per-visit { font-size: 0.64rem; margin-bottom: 0.9rem; }
  .pricing-card ul { margin-bottom: 1rem; }
  .pricing-card ul li { font-size: 0.75rem; padding: 0.25rem 0 0.25rem 1.3rem; }
  .popular-badge { font-size: 0.65rem; padding: 0.22rem 0.6rem; }
  .plan-note { font-size: 0.68rem; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content { animation: fadeUp 0.7s ease both; }
.hero-right { animation: fadeUp 0.7s 0.2s ease both; }
