/* =========================================
   REAL K-9 — Styles
   Theme system: light (default) / dark
   Gradient: Gold → Coral → Pink → Purple → Blue
   Primary accent shifts toward purple/blue end
   ========================================= */

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

:root {
  /* Brand gradient stops (from logo) */
  --gold: #f7a730;
  --coral: #f07b4a;
  --pink: #eb5d5d;
  --purple: #8c83f8;
  --blue: #3dbeef;

  /* Gradient — spans full width so right-side elements lean purple/blue */
  --gradient: linear-gradient(
    135deg,
    #f7a730 0%,
    #f07b4a 20%,
    #eb5d5d 35%,
    #c06fa7 50%,
    #8c83f8 65%,
    #5fa3f3 80%,
    #3dbeef 100%
  );
  --gradient-text: linear-gradient(90deg, #f07b4a 0%, #c06fa7 40%, #8c83f8 70%, #3dbeef 100%);

  /* Primary accent: shifted toward purple, not orange */
  --accent: #8c83f8;
  --accent-hover: #7b74e8;
  --accent-glow: rgba(140, 131, 248, 0.15);
  --accent-glow-strong: rgba(140, 131, 248, 0.3);
  --accent-warm: #c06fa7;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 132px;
  --container-max: 1200px;
  --section-pad: 140px;
  --section-pad-mobile: 88px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-xs: 6px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Light Theme (default) --- */
[data-theme='light'] {
  --bg-primary: #ffffff;
  --bg-secondary: #f7f7f8;
  --bg-card: #ffffff;
  --bg-input: #f7f7f8;
  --border: rgba(0, 0, 0, 0.08);
  --border-hover: rgba(0, 0, 0, 0.15);
  --text-primary: #1a1a2e;
  --text-secondary: #555566;
  --text-muted: #888899;
  --nav-bg: rgba(255, 255, 255, 0.92);
  --nav-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  --hero-diagonal: #f0f0f3;
  --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* --- Dark Theme --- */
[data-theme='dark'] {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #161620;
  --bg-input: #111118;
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --text-primary: #f5f5f5;
  --text-secondary: #aaaabc;
  --text-muted: #777788;
  --nav-bg: rgba(10, 10, 15, 0.92);
  --nav-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
  --hero-diagonal: #141420;
  --card-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
  --card-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.4);
}

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition:
    background 0.3s,
    color 0.3s;
}

a,
button,
.theme-toggle,
.nav__toggle,
a.hero__summary-item,
[role='button'] {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.text-accent {
  color: var(--accent);
}

.dot {
  color: var(--accent);
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) {
  transition-delay: 0.08s;
}
.reveal:nth-child(3) {
  transition-delay: 0.16s;
}
.reveal:nth-child(4) {
  transition-delay: 0.24s;
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  transition:
    background 0.8s ease,
    box-shadow 0.8s ease,
    transform 0.8s var(--ease-out);
}

/* Inner container aligns logo/CTA to same edges as section content */
.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: var(--nav-height);
  width: 100%;
}

.nav--hidden {
  transform: translateY(-100%);
}

.nav--scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--nav-shadow);
}

.nav__logo-link {
  display: flex;
  align-items: center;
  justify-self: start;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 56px;
  width: auto;
}

/* Logo visibility by theme */
.nav__logo-img--dark,
.footer__logo-img--dark {
  display: none;
}
.nav__logo-img--mobile {
  display: none;
}

[data-theme='dark'] .nav__logo-img--light,
[data-theme='dark'] .footer__logo-img--light {
  display: none;
}
[data-theme='dark'] .nav__logo-img--dark,
[data-theme='dark'] .footer__logo-img--dark {
  display: block;
}

.nav__center {
  display: flex;
  align-items: center;
  gap: 38px;
  justify-self: center;
}

.nav__right {
  display: flex;
  align-items: center;
  justify-self: end;
}

.nav__center a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav__center a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__center a:hover {
  color: var(--text-primary);
}

.nav__center a:hover::after {
  width: 100%;
}

.nav__cta {
  position: relative;
  background: var(--accent);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    background 0.3s,
    transform 0.3s var(--ease-spring) !important;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-xs) + 2px);
  background: var(--gradient);
  background-size: 300% 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav__cta:hover::before {
  opacity: 1;
  animation: gradientShift 8s linear infinite;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition:
    transform 0.3s,
    opacity 0.3s;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  position: relative;
  border-radius: var(--radius-xs);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gradient);
  background-size: 300% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}

.btn--primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 8px 40px var(--accent-glow-strong);
  transform: translateY(-2px);
}

.btn--primary:hover::before {
  opacity: 1;
  animation: gradientShift 8s linear infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
}

.btn--ghost:hover {
  border-color: var(--text-muted);
  background: var(--bg-secondary);
}

[data-theme='dark'] .btn--ghost {
  border-color: rgba(255, 255, 255, 0.15);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* =========================================
   Theme Toggle
   ========================================= */
.theme-toggle {
  position: fixed;
  bottom: 74px;
  right: 44px;
  z-index: 999;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 77px;
  height: 77px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background 0.3s,
    border-color 0.3s,
    transform 0.3s var(--ease-spring);
  box-shadow: var(--card-shadow);
}

.theme-toggle:hover {
  transform: scale(1.08);
  border-color: var(--accent);
}

.theme-toggle__icon {
  width: 35px;
  height: 35px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

/* Light mode: show moon (click to go dark) */
[data-theme='light'] .theme-toggle__icon--sun {
  display: none;
}
[data-theme='light'] .theme-toggle__icon--moon {
  display: block;
}

/* Dark mode: show sun (click to go light) */
[data-theme='dark'] .theme-toggle__icon--sun {
  display: block;
}
[data-theme='dark'] .theme-toggle__icon--moon {
  display: none;
}

/* =========================================
   Hero
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: visible;
  padding-top: calc(var(--nav-height) + 48px);
  padding-bottom: 120px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__diagonal {
  position: absolute;
  top: -10%;
  right: -8%;
  width: 47%;
  height: 120%;
  background: var(--hero-diagonal);
  transform: skewX(-8deg);
  transform-origin: top right;
  border-radius: 0 0 0 40px;
}

/* Gradient accent line on the diagonal divider */
.hero__diagonal::after {
  content: '';
  position: absolute;
  top: 0;
  left: -2px;
  width: 3px;
  height: 100%;
  background: var(--gradient);
  opacity: 0.6;
  border-radius: 2px;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* Prevent grid children from overflowing their track */
.hero__text,
.hero__visual {
  min-width: 0;
}

/* Badge carousel */
.hero__badge-carousel {
  height: 2rem;
  overflow: hidden;
  margin-bottom: 24px;
}

.hero__badge-track {
  display: flex;
  flex-direction: column; /* stack badges vertically for translateY carousel */
  gap: 12px; /* spacing between badges prevents adjacent items from touching */
  transition: transform 0.6s var(--ease-out);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  align-self: flex-start;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--badge-color, var(--accent));
  border: 1px solid var(--badge-color, var(--accent));
  padding: 6px 16px;
  border-radius: var(--radius-xs);
  white-space: nowrap;
  height: 2rem;
  box-sizing: border-box;
}

.hero__title {
  font-family: var(--font-display);
  line-height: 0.92;
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
  font-size: clamp(5rem, 11vw, 8.8rem);
  letter-spacing: 0.03em;
  color: var(--text-primary);
}

.hero__title-line--accent {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__keyword {
  font-weight: 600;
}
.hero__keyword--purple {
  color: var(--accent);
}
.hero__keyword--coral {
  color: var(--coral);
}
.hero__keyword--blue {
  color: var(--blue);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual / Service Summary */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: flex-start;
  padding-top: calc(2rem + 24px); /* aligns pills top with title top (skips badge + margin) */
}

/* Standalone dog photo — bottom of hero, behind wave divider */
.hero__dog {
  position: absolute;
  bottom: -60px;
  left: 60%;
  transform: translateX(-50%);
  z-index: 1;
  max-width: 650px;
  width: 45%;
  pointer-events: none;
}

.hero__dog-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(0, 0, 0, 0.15));
  will-change: transform;
}

.hero__dog-tooltip {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
  box-shadow: var(--card-shadow);
}

.hero__dog:hover .hero__dog-tooltip {
  opacity: 1;
  pointer-events: auto;
}

/* Service summary pills */
.hero__service-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.hero__summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--card-shadow);
  transition:
    border-color 0.3s,
    transform 0.2s var(--ease-out);
  white-space: nowrap;
}

a.hero__summary-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.hero__summary-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.hero__scroll-indicator span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.3;
    transform: scaleY(0.6);
  }
}

/* =========================================
   Section Dividers (Wavy SVGs)
   ========================================= */
.section-divider {
  position: relative;
  line-height: 0;
  margin-top: -1px;
  z-index: 2;
  overflow: hidden;
}

.section-divider svg {
  display: block;
  width: 100%;
}

.section-divider--hero {
  margin-top: -122px; /* -2px extra closes seam where dog shows through */
}

.section-divider--hero svg {
  height: 120px;
}

.section-divider--wave svg {
  height: 80px;
}

@media (max-width: 768px) {
  .section-divider--hero {
    margin-top: -80px;
  }
  .section-divider--hero svg {
    height: 80px;
  }
  .section-divider--wave svg {
    height: 50px;
  }
}

/* =========================================
   Section Shared
   ========================================= */
.section-number {
  font-family: var(--font-display);
  font-size: 3rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* =========================================
   About Section
   ========================================= */
.about {
  position: relative;
  z-index: 3;
  padding: 77px 0 var(--section-pad);
  background: var(--bg-secondary);
}

.about__grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.about__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.4vw, 4.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 600px;
}

.about__stats {
  display: flex;
  gap: 56px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.stat {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s var(--ease-out),
    transform 0.8s var(--ease-out);
}

.stat--visible {
  opacity: 1;
  transform: translateY(0);
}

.stat__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

.stat__label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 4px;
  display: block;
}

/* =========================================
   Services Section
   ========================================= */
.services {
  position: relative;
  padding: 77px 0 var(--section-pad);
  background: var(--bg-primary);
}

.services__header {
  margin-bottom: 64px;
}

.services__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.4vw, 4.2rem);
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Service Card */
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.4s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  border-color: var(--border-hover);
}

.service-card--featured {
  border-color: var(--accent);
  background: linear-gradient(165deg, var(--bg-card) 0%, rgba(140, 131, 248, 0.06) 100%);
}

.service-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 10px;
  border-radius: 100px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.service-card__chevron-wrap {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.service-card__chevron-icon {
  color: var(--accent);
  transition: transform 0.3s var(--ease-out);
  animation: chevronPulse 4s ease-in-out infinite;
}

[aria-expanded='true'] .service-card__chevron-icon {
  transform: rotate(180deg);
  animation: none;
}

@keyframes chevronPulse {
  0%,
  90%,
  100% {
    transform: scale(1);
  }
  95% {
    transform: scale(1.15);
  }
}

.service-card__details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s var(--ease-out),
    opacity 0.3s;
}

.service-card__details.open {
  max-height: 300px;
  opacity: 1;
}

.service-card__bullets {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-card__bullets li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card__bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

.service-card__footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-card__link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease-out);
}

.service-card__link:hover {
  gap: 14px;
}

/* =========================================
   Results / Testimonials
   ========================================= */
.results {
  position: relative;
  padding: 77px 0 var(--section-pad);
  background: var(--bg-secondary);
}

.results__header {
  margin-bottom: 64px;
}

.results__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.4vw, 4.2rem);
  letter-spacing: 0.02em;
  margin-top: 12px;
  line-height: 1.1;
  text-transform: uppercase;
}

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

.results__cta {
  text-align: center;
  margin-top: 48px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition:
    transform 0.4s var(--ease-out),
    box-shadow 0.4s var(--ease-out),
    border-color 0.3s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(140, 131, 248, 0.25);
}

.testimonial__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial__quote {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  flex: 1;
  margin-bottom: 24px;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  background: var(--accent-glow);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.testimonial__name {
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial__detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* =========================================
   Contact Section
   ========================================= */
.contact {
  position: relative;
  padding: 77px 0 var(--section-pad);
  background: var(--bg-primary);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.85rem, 4.4vw, 4.2rem);
  letter-spacing: 0.02em;
  margin-top: 12px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.contact__text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.3s;
}

a.contact__detail:hover {
  color: var(--text-primary);
}

.contact__detail svg {
  color: var(--accent);
  flex-shrink: 0;
}

/* Form */
.contact__form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--card-shadow);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox */
.form-group--checkbox {
  margin-top: 8px;
}

.form-group .form-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-checkbox input[type='checkbox'] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-checkbox__mark {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--bg-input);
  transition:
    background 0.2s,
    border-color 0.2s;
  position: relative;
}

.form-checkbox__mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s;
}

.form-checkbox input:checked + .form-checkbox__mark {
  background: var(--accent);
  border-color: var(--accent);
}

.form-checkbox input:checked + .form-checkbox__mark::after {
  opacity: 1;
}

.form-checkbox input:focus-visible + .form-checkbox__mark {
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-checkbox__label {
  line-height: 1.4;
}

/* =========================================
   Footer
   ========================================= */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.footer__logo-img {
  height: 28px;
  width: auto;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__sep {
  color: var(--text-muted);
  font-size: 1.2rem;
}

.footer__tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.footer__links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--text-primary);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  color: var(--text-muted);
  transition:
    color 0.3s,
    transform 0.3s var(--ease-spring);
}

.footer__social a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.footer__bottom {
  text-align: center;
  padding-top: 24px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1200px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .results__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet: larger dog photo */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero__dog {
    max-width: 550px;
    width: 50%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: var(--section-pad-mobile);
    --nav-height: 80px;
  }

  .nav {
    padding: 0;
  }

  .nav__inner {
    display: flex;
    align-items: center;
    padding: 0 20px;
    height: var(--nav-height);
    max-width: none;
    margin: 0;
  }

  .nav__center {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 24px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1000;
  }

  .nav__center a {
    font-size: 1.2rem;
  }

  .nav__center .nav__cta {
    padding: 18px 40px;
  }

  .nav__center.open {
    transform: translateX(0);
  }

  .nav__right {
    display: none;
  }

  .nav__logo-link {
    z-index: 1001;
  }

  .nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-left: auto;
  }

  .nav__toggle span {
    width: 36px;
    height: 3px;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* Mobile logo swap */
  .nav__logo-img--light,
  .nav__logo-img--dark {
    display: none !important;
  }
  .nav__logo-img--mobile {
    display: block !important;
  }

  .hero {
    flex-direction: column;
    padding-top: calc(var(--nav-height) + 20px);
  }

  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
    gap: 40px;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__visual {
    order: unset;
    padding-top: 0;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__dog {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    max-width: 320px;
    width: 65%;
    margin: 20px auto 0;
    z-index: 1;
  }

  /* Scroll indicator stays visible on mobile (z-index: 10 prevents overlap) */

  .hero__diagonal {
    width: 100%;
    opacity: 0.3;
    transform: skewX(-4deg);
  }

  .hero__service-summary {
    justify-content: center;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .results__grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__form-wrapper {
    padding: 24px;
  }

  .about__title,
  .services__title,
  .results__title,
  .contact__title {
    font-size: clamp(3.1rem, 6vw, 4.2rem);
  }

  .about__stats {
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
  }

  .stat {
    text-align: center;
  }

  .footer__grid {
    flex-direction: column;
    text-align: center;
  }

  .footer__brand {
    flex-direction: column;
    align-items: center;
  }

  .footer__sep {
    display: none;
  }

  .theme-toggle {
    width: 64px;
    height: 64px;
    bottom: 50px;
    right: 20px;
  }

  .theme-toggle__icon {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .hero__title-line {
    font-size: 3.5rem;
  }

  .btn {
    padding: 12px 22px;
    font-size: 0.78rem;
  }

  .hero__service-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .hero__summary-item {
    font-size: 0.75rem;
    padding: 8px 12px;
    gap: 6px;
    justify-content: center;
    text-align: center;
  }

  .hero__badge {
    font-size: 0.65rem;
    padding: 5px 12px;
  }
}

/* =========================================
   Responsive additions (Round 5)
   ========================================= */

/* Container breathing room at mid-size viewports */
@media (max-width: 1280px) {
  .container {
    padding: 0 48px;
  }
}

/* Roll back container padding at mobile — prevents overflow at 320px */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* Footer: brand above links at 800px */
@media (max-width: 800px) {
  .footer__grid {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__brand {
    order: -1;
    flex-direction: column;
    align-items: center;
  }

  .footer__sep {
    display: none;
  }
}

/* Hero pills: right-align at ≥1280px */
@media (min-width: 1280px) {
  .hero__visual {
    justify-content: flex-end;
  }
}

/* Hero pills: no top offset on smaller desktop (769–1279px) */
@media (max-width: 1279px) and (min-width: 769px) {
  .hero__visual {
    padding-top: 0;
  }
}

/* Badge: center at mobile */
@media (max-width: 768px) {
  .hero__badge {
    align-self: center;
  }

  .hero__badge-carousel {
    display: flex;
    justify-content: center;
  }
}

/* 320px support */
@media (max-width: 360px) {
  .hero__title-line {
    font-size: clamp(2.6rem, 9vw, 3.5rem);
  }

  .btn {
    font-size: 0.72rem;
    padding: 10px 16px;
  }

  .about__stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ===== SERVICES HUB ===== */

.services-hub__hero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: var(--bg-secondary);
}

.services-hub__h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--text-primary);
  margin: 0.5rem 0 1rem;
}

.services-hub__subhead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 1.5rem;
}

.services-hub__badge {
  display: flex;
  gap: 0.5rem;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.services-hub__programs {
  padding: 80px 0;
  background: var(--bg-primary);
}

.services-hub__cta-strip {
  padding: 80px 0;
  background: var(--bg-secondary);
  text-align: center;
}

.services-hub__cta-text {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Campaign card variant on services hub */
.service-card--campaign {
  border-top: 3px solid var(--rr-amber);
  background: var(--bg-card);
}

.service-card__badge--accepting {
  background: var(--rr-amber) !important;
  color: #fff !important;
}

.service-card__price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rr-amber);
  margin-top: 0.75rem;
}

.service-card__link--campaign {
  color: var(--rr-amber) !important;
}

.nav__link--active {
  color: var(--accent);
  font-weight: 700;
}

/* ===== REACTIVITY RESET CAMPAIGN ===== */

:root {
  --rr-amber: #e8a045;
  --rr-amber-hover: #d4903a;
  --rr-amber-glow: rgba(232, 160, 69, 0.18);
  --rr-amber-glow-strong: rgba(232, 160, 69, 0.35);
  --rr-dark: #0d0d12;
  --rr-dark-card: #16161f;
  --rr-dark-border: rgba(255, 255, 255, 0.08);
}

/* Hero */
.rr-hero {
  position: relative;
  background: var(--rr-dark);
  padding: calc(var(--nav-height) + 100px) 0 120px;
  overflow: hidden;
}

.rr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232, 160, 69, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.rr-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.rr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(232, 160, 69, 0.4);
  color: var(--rr-amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.rr-hero__eyebrow span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rr-amber);
}

.rr-hero__h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.93;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 1.25rem;
}

.rr-hero__h1 .rr-accent {
  color: var(--rr-amber);
}

.rr-hero__subhead {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  line-height: 1.55;
  margin-bottom: 2rem;
}

.rr-hero__stats {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.rr-hero__stat {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

/* CTA buttons */
.btn--rr {
  background: var(--rr-amber);
  color: #fff;
  border-color: var(--rr-amber);
  animation: rr-cta-pulse 2.8s ease-in-out infinite;
}

.btn--rr:hover,
.btn--rr:focus {
  background: var(--rr-amber-hover);
  border-color: var(--rr-amber-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--rr-amber-glow-strong);
  animation: none;
}

@keyframes rr-cta-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--rr-amber-glow); }
  50% { box-shadow: 0 0 0 10px transparent; }
}

@media (prefers-reduced-motion: reduce) {
  .btn--rr { animation: none; }
}

/* Dark section base */
.rr-section {
  background: var(--rr-dark);
  padding: 100px 0;
  color: #fff;
}

.rr-section--alt {
  background: var(--rr-dark-card);
}

.rr-section__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.rr-section__num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--rr-amber);
  opacity: 0.7;
}

.rr-section__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.rr-section__h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 2rem;
}

.rr-accent-text { color: var(--rr-amber); }

/* Who it's for / What you get — bullet lists */
.rr-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 680px;
}

.rr-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.rr-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rr-amber);
  margin-top: 0.55em;
}

/* How it works — timeline */
.rr-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
}

.rr-timeline__item {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--rr-dark-border);
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}

.rr-timeline__item.rr-slide-in {
  opacity: 1;
  transform: translateX(0);
}

.rr-timeline__item:nth-child(even) {
  transform: translateX(40px);
}

.rr-timeline__item:nth-child(even).rr-slide-in {
  transform: translateX(0);
}

.rr-timeline__week {
  flex-shrink: 0;
  width: 80px;
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  color: var(--rr-amber);
  opacity: 0.6;
}

.rr-timeline__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
}

.rr-timeline__content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .rr-timeline__item {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Testimonials — horizontal scroll carousel on mobile */
.rr-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.rr-testimonial {
  background: var(--rr-dark-card);
  border: 1px solid var(--rr-dark-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rr-testimonial__stars {
  color: var(--rr-amber);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.rr-testimonial__quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  flex: 1;
}

.rr-testimonial__author {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.rr-testimonial__dog {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .rr-testimonials {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
  }
  .rr-testimonials::-webkit-scrollbar { height: 4px; }
  .rr-testimonials::-webkit-scrollbar-track { background: transparent; }
  .rr-testimonials::-webkit-scrollbar-thumb { background: var(--rr-amber); border-radius: 2px; }
  .rr-testimonial {
    flex-shrink: 0;
    width: 280px;
    scroll-snap-align: start;
  }
}

/* Pricing section */
.rr-pricing__price {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--rr-amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.rr-pricing__note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

/* Not a fit callout */
.rr-not-fit {
  background: var(--rr-dark-card);
  border-left: 4px solid var(--rr-amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem 2.5rem;
  max-width: 680px;
  margin-top: 3rem;
}

.rr-not-fit__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rr-amber);
  margin-bottom: 0.75rem;
  opacity: 0.7;
}

.rr-not-fit__text {
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* FAQ */
.rr-faq {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
}

.rr-faq__item {
  border: 1px solid var(--rr-dark-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.rr-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.rr-faq__q svg {
  flex-shrink: 0;
  transition: transform 0.25s var(--ease-out);
}

.rr-faq__item[data-open] .rr-faq__q svg {
  transform: rotate(180deg);
}

.rr-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}

.rr-faq__a-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* Assessment form */
.rr-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 580px;
}

.rr-form input,
.rr-form textarea,
.rr-form select {
  width: 100%;
  padding: 14px 16px;
  background: var(--rr-dark-card);
  border: 1px solid var(--rr-dark-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  transition: border-color 0.2s;
}

.rr-form input::placeholder,
.rr-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.rr-form input:focus,
.rr-form textarea:focus {
  outline: none;
  border-color: var(--rr-amber);
}

.rr-form textarea {
  min-height: 90px;
  resize: vertical;
}

.rr-form fieldset {
  border: 1px solid var(--rr-dark-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}

.rr-form legend {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 0 6px;
}

.rr-form .rr-radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.rr-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.rr-form input[type="radio"] {
  width: auto;
  padding: 0;
  accent-color: var(--rr-amber);
}

.rr-form__success,
.rr-form__error {
  display: none;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
}

.rr-form__success { background: rgba(232, 160, 69, 0.12); color: var(--rr-amber); border: 1px solid var(--rr-amber); }
.rr-form__error { background: rgba(235, 93, 93, 0.12); color: #eb5d5d; border: 1px solid #eb5d5d; }

/* Nav on dark campaign page */
.rr-body .nav {
  --nav-bg: rgba(13, 13, 18, 0.95);
}

.rr-body {
  background: var(--rr-dark);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .rr-hero { padding: calc(var(--nav-height) + 60px) 0 80px; }
  .rr-section { padding: 72px 0; }
  .rr-not-fit { padding: 1.5rem; }
  .services-hub__hero { padding: calc(var(--nav-height) + 48px) 0 60px; }
}
