/* Your IT Peeps - consolidated site stylesheet.
   Shared base extracted from per-page inline <style> blocks (lossless consolidation). */

#yip-cookie-banner {
      position: fixed;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 999999;
      max-width: 980px;
      margin: 0 auto;
      background: #062238;
      color: #ffffff;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 18px;
      box-shadow: 0 16px 38px rgba(6,34,56,0.32);
      padding: 18px;
      display: none;
      gap: 16px;
      align-items: center;
      justify-content: space-between;
      font-family: Arial, Helvetica, sans-serif;
    }

#yip-cookie-banner p {
      margin: 0;
      line-height: 1.45;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.92);
    }

.yip-cookie-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end;
      flex-shrink: 0;
    }

.yip-cookie-button {
      border: 0;
      border-radius: 999px;
      padding: 10px 15px;
      font-weight: 900;
      cursor: pointer;
      font-size: 0.92rem;
    }

#yip-cookie-decline {
      background: #ffffff;
      color: #062238;
    }

#yip-cookie-accept {
      background: linear-gradient(135deg, #16a9d6, #1478b8);
      color: #ffffff;
    }

@media (max-width: 720px) {
      #yip-cookie-banner {
        flex-direction: column;
        align-items: stretch;
      }

      .yip-cookie-actions {
        justify-content: stretch;
      }

      .yip-cookie-button {
        width: 100%;
      }
    }

/* YIP FINAL Mobile Navigation Fix START */
.mobile-menu-button {
  display: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #ffffff;
  font-weight: 900;
  padding: 10px 16px;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
}

@media (max-width: 920px) {
  .top-bar .wrap {
    justify-content: center;
    text-align: center;
    font-size: 0.88rem;
    padding: 7px 14px;
  }

  .nav-wrap {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 16px !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .logo-img {
    width: 52px !important;
    height: 52px !important;
  }

  .logo {
    font-size: 1rem;
  }

  .veteran-badge {
    display: none !important;
  }

  .mobile-menu-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    display: none !important;
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding-top: 10px !important;
  }

  .nav-links.mobile-open {
    display: flex !important;
  }

  .nav-links a {
    display: block !important;
    width: 100% !important;
    padding: 11px 13px !important;
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    color: var(--text) !important;
  }

  .nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--brand)) !important;
    color: #ffffff !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  .hero {
    padding: 38px 0 38px !important;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.75rem) !important;
  }

  .lead {
    font-size: 1.06rem !important;
  }
}

/* YIP FINAL Mobile Navigation Fix END */


:root {
  --bg: #eef6fb;
  --surface: #ffffff;
  --surface-alt: #e3f0f8;
  --surface-soft: #d4e8f5;
  --text: #102234;
  --muted: #4f6476;
  --brand: #1478b8;
  --brand-2: #062238;
  --accent: #16a9d6;
  --accent-2: #e3f7fd;
  --gold: #f5cf37;
  --border: #c9ddea;
  --success: #1f8a55;
  --warning: #a76800;
  --shadow: 0 14px 38px rgba(6, 34, 56, 0.13);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(22, 169, 214, 0.16), transparent 35%),
    radial-gradient(circle at 88% 8%, rgba(20, 120, 184, 0.12), transparent 30%),
    linear-gradient(180deg, #eef6fb 0%, #f8fbfe 45%, #eef6fb 100%);
  line-height: 1.6;
}

a {
  color: var(--brand);
  text-decoration: none;
}

a:hover {
  color: #0a5f93;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

.top-bar {
  background: #062238;
  color: #f4fbff;
  font-size: 0.94rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.top-bar .wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar a {
  color: #ffffff;
  font-weight: 700;
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--brand-2);
}

.logo-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: inline-block;
  filter: drop-shadow(0 7px 12px rgba(20, 120, 184, 0.16));
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 17px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--brand);
  text-decoration: none;
}

.nav-cta {
  padding: 10px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(20, 120, 184, 0.22);
}

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

.hero {
  background:
    radial-gradient(circle at top right, rgba(22, 169, 214, 0.16), transparent 35%),
    linear-gradient(135deg, #f9fdff 0%, #dceef8 100%);
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #075878;
  border: 1px solid #b8e6f4;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

h1, h2, h3 {
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--brand-2);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 16px;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 760px;
}

.hero-actions,
.actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 26px 0 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border-radius: 999px;
  font-weight: 900;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(20, 120, 184, 0.23);
}

.btn-secondary {
  background: #ffffff;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-light {
  background: #ffffff;
  color: var(--brand-2);
}

.external-booking-link::after {
  content: "↗";
  margin-left: 6px;
  font-size: 0.86em;
  line-height: 1;
}

.microcopy {
  color: #5d7081;
  font-size: 0.96rem;
}

.hero-card,
.card,
.form-box,
.booking-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 26px;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-card li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  color: var(--text);
}

.hero-card li:last-child {
  border-bottom: 0;
}

.check::before {
  content: "\2713";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 999px;
  background: #e6f7ee;
  color: var(--success);
  font-weight: 900;
}

.trust-bar {
  background: linear-gradient(90deg, #062238, #0f6594, #062238);
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust-item {
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: rgba(227, 240, 248, 0.76);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 820px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
}

.card strong {
  color: var(--brand-2);
}

.card-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(20, 120, 184, 0.22);
  border-radius: 999px;
  font-weight: 900;
  color: var(--brand);
}

.card-link:hover {
  background: var(--accent-2);
  text-decoration: none;
}

.problem-card {
  border-top: 5px solid var(--accent);
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-2);
  color: #075878;
  border: 1px solid #b8e6f4;
  font-weight: 900;
  font-size: 0.84rem;
  margin-bottom: 12px;
}

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

.feature-list {
  margin: 0;
  padding-left: 20px;
}

.feature-list li {
  margin: 9px 0;
}

.steps {
  counter-reset: step;
}

.step-card {
  position: relative;
  padding-left: 78px;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 24px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #ffffff;
  font-weight: 900;
}

.cta-band {
  background:
    radial-gradient(circle at top right, rgba(22, 169, 214, 0.24), transparent 34%),
    linear-gradient(135deg, #062238, #0e5f8b);
  color: #fff;
  border-radius: 26px;
  padding: 42px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.cta-band h2,
.cta-band h3 {
  color: #fff;
}

.cta-band p {
  color: rgba(255,255,255,0.86);
}

.form-box {
  padding: 24px;
}

label {
  display: block;
  font-weight: 800;
  margin-bottom: 7px;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #b7cfde;
  border-radius: 12px;
  font: inherit;
  background: #ffffff;
  color: var(--text);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.form-row {
  margin-bottom: 15px;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 12px;
}

.faq details {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(6, 34, 56, 0.07);
}

.faq summary {
  font-weight: 900;
  cursor: pointer;
  color: var(--brand-2);
}

.service-area {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #062238;
  color: #eaf7ff;
  padding: 48px 0 26px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 28px;
}

.site-footer a {
  color: #aee7ff;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.14);
  margin-top: 30px;
  padding-top: 18px;
  color: rgba(235,250,255,0.72);
  font-size: 0.9rem;
}

.notice {
  background: #fff7d7;
  color: #473200;
  border: 1px solid #f3db86;
  border-radius: 14px;
  padding: 14px 16px;
}

.kicker {
  font-weight: 900;
  color: #087fa6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  margin-bottom: 9px;
}

.booking-card {
  padding: 28px;
}

.booking-card .calendar-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--accent-2);
  color: var(--brand);
  border: 1px solid #b8e6f4;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.booking-card ul {
  margin-top: 14px;
  margin-bottom: 18px;
  padding-left: 20px;
}

.booking-card li {
  margin: 8px 0;
}

.booking-note {
  color: var(--muted);
  font-size: 0.96rem;
  margin-top: 12px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .hero {
    padding: 46px 0 42px;
  }

  .section {
    padding: 52px 0;
  }

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

  .cta-band {
    padding: 28px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}

.pricing-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}

.price-card{position:relative;overflow:hidden}

.price-card.featured{border:2px solid var(--accent);box-shadow:0 18px 42px rgba(20,120,184,.22)}

.price{font-size:2rem;font-weight:900;color:var(--brand-2);margin:8px 0 4px}

.price small{font-size:.95rem;color:var(--muted);font-weight:700;margin-left:4px}

.best-for{background:var(--accent-2);border:1px solid #b8e6f4;color:#075878;border-radius:14px;padding:12px 14px;font-weight:800;margin:16px 0}

.ribbon{position:absolute;top:16px;right:-38px;transform:rotate(35deg);background:linear-gradient(135deg,var(--accent),var(--brand));color:#fff;font-weight:900;font-size:.78rem;padding:6px 44px}

.conversion-strip{background:#062238;color:#fff;border-radius:22px;padding:28px;display:grid;grid-template-columns:1fr auto;align-items:center;gap:22px;box-shadow:var(--shadow)}

.conversion-strip h2,.conversion-strip h3{color:#fff}

.conversion-strip p{color:rgba(255,255,255,.84)}

.service-list-columns{columns:2;column-gap:38px}

.service-list-columns li{break-inside:avoid;margin:8px 0}

@media(max-width:1060px){.pricing-grid{grid-template-columns:repeat(2,1fr)}.conversion-strip{grid-template-columns:1fr}}

@media(max-width:640px){.pricing-grid{grid-template-columns:1fr}.service-list-columns{columns:1}}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--accent-2);
  border: 1px solid #b8e6f4;
  color: #075878;
  font-weight: 900;
  font-size: 0.84rem;
  white-space: nowrap;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.lead-magnet-box {
  background: linear-gradient(135deg, #ffffff, #e9f7fc);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}

.case-card {
  border-left: 6px solid var(--accent);
}

.case-card .case-label {
  font-weight: 900;
  color: #087fa6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.client-support-box {
  background: #fff7d7;
  border: 1px solid #f3db86;
  color: #473200;
  border-radius: 16px;
  padding: 18px;
  margin-top: 18px;
}

.client-support-box a {
  font-weight: 900;
}

.compact-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-index-card {
  min-height: 100%;
}

.service-index-card h3 {
  margin-bottom: 8px;
}

.mini-price {
  font-weight: 900;
  color: var(--brand);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 15px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.pricing-table th {
  background: var(--surface-alt);
  color: var(--brand-2);
  font-weight: 900;
}

.pricing-table tr:last-child td {
  border-bottom: 0;
}

.callout-blue {
  background: linear-gradient(135deg, #ffffff, #e8f7fc);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.service-directory {
  columns: 3;
  column-gap: 34px;
}

.service-directory li {
  break-inside: avoid;
  margin: 7px 0;
}

@media (max-width: 1060px) {
  .compact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-directory {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .compact-grid {
    grid-template-columns: 1fr;
  }
  .service-directory {
    columns: 1;
  }
}

.domain-security-card {
  border-left: 6px solid var(--brand);
}

.service-highlight {
  background: linear-gradient(135deg, #ffffff, #e8f7fc);
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.cta-mini {
  background: #062238;
  color: #fff;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}

.cta-mini h2,
.cta-mini h3 {
  color: #fff;
}

.cta-mini p {
  color: rgba(255,255,255,0.86);
}

.audit-list {
  columns: 2;
  column-gap: 34px;
}

.audit-list li {
  break-inside: avoid;
  margin: 8px 0;
}

@media (max-width: 720px) {
  .audit-list {
    columns: 1;
  }
}

.founder-story{background:linear-gradient(135deg,#fff,#eaf7fc);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);padding:30px}

.founder-story p{margin-bottom:18px}

.founder-credentials{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin-top:18px}

.credential-pill{background:var(--accent-2);border:1px solid #b8e6f4;border-radius:14px;padding:13px 15px;font-weight:900;color:#075878}

.founder-timeline{display:grid;gap:14px}

.timeline-item{background:rgba(255,255,255,.94);border:1px solid var(--border);border-left:5px solid var(--accent);border-radius:14px;padding:16px;box-shadow:0 8px 24px rgba(6,34,56,.08)}

.timeline-item strong{color:var(--brand-2)}

.founder-quote{background:#062238;color:#fff;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow)}

.founder-quote h2,.founder-quote h3{color:#fff}

.founder-quote p{color:rgba(255,255,255,.88)}

@media(max-width:720px){.founder-credentials{grid-template-columns:1fr}}

.response-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.response-table th,
.response-table td {
  padding: 14px 15px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.response-table th {
  background: var(--surface-alt);
  color: var(--brand-2);
  font-weight: 900;
}

.response-table tr:last-child td {
  border-bottom: 0;
}

.scope-note {
  background: #fff7d7;
  border: 1px solid #f3db86;
  color: #473200;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(6,34,56,.08);
}

.email-auth-pill {
  background: var(--accent-2);
  border: 1px solid #b8e6f4;
  color: #075878;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  margin: 12px 0;
}

.terms-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media(max-width: 920px) {
  .terms-grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing alignment fix */
.price-card .price-label {
  display: block;
  margin: 12px 0 2px;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price-card .price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-2);
  margin: 0 0 16px;
}

.price-card .price-amount {
  display: inline-block;
  line-height: 1;
}

.price-card .price-term {
  display: inline-block;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
}

.price-card .mini-price {
  margin-top: 0;
}

/* ============================================================
   Interaction & accessibility enhancements (added in audit).
   Smooth transitions on hover/active/focus, visible keyboard
   focus rings, and 48px minimum touch targets per UX checklist.
   ============================================================ */
a,
.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.nav-cta,
button,
.card-link,
.service-index-card,
summary,
input,
textarea,
select {
  transition: color 0.2s ease-in-out,
              background-color 0.2s ease-in-out,
              border-color 0.2s ease-in-out,
              box-shadow 0.2s ease-in-out,
              transform 0.2s ease-in-out,
              opacity 0.2s ease-in-out;
}

/* Visible focus indicator for keyboard navigation (a11y). */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-cta:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent, #1478b8);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Minimum 48x48 touch targets for primary interactive controls. */
.btn,
.btn-primary,
.btn-secondary,
.btn-light,
.nav-cta,
button {
  min-height: 48px;
}
