/* ==========================================================================
   Pipeline Recovery Group — Production Stylesheet
   Brand System: Libre Baskerville / Inter / JetBrains Mono
   Version: 1.0.0 | 2026-02-22
   ========================================================================== */

/* ---------- CSS Custom Properties (Brand System) ---------- */
:root {
  /* Colors */
  --headline-navy: #111E33;
  --deep-navy: #1B2A4A;
  --steel-blue: #4A6FA5;
  --steel: #4A6FA5;
  --slate: #5A7A99;
  --light-gray: #F5F6F8;
  --light-bg: #F5F6F8;
  --white: #FFFFFF;
  --text-dark: #1E2D3D;
  --border: #E0E6F0;
  --border-light: #E0E6F0;
  --border-gray: #E0E6F0;

  /* Typography */
  --font-serif: 'Libre Baskerville', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  --mono: var(--font-mono);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Layout */
  --max-width: 1140px;
  --border-radius: 8px;
  --nav-height: 72px;
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

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

a {
  color: var(--steel-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--deep-navy);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-serif);
  color: var(--headline-navy);
  line-height: 1.3;
}

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

h3 {
  font-size: 1.15rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--slate);
  line-height: 1.7;
}

p:last-child {
  margin-bottom: 0;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 4rem 2rem;
}

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

/* Ensure sections without .container still center content */
.section > h2,
.section > p {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--headline-navy);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ---------- Navigation ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--headline-navy);
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--headline-navy);
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-menu li a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-menu li a:hover {
  color: var(--headline-navy);
  background-color: var(--light-gray);
}

.nav-menu li a.active {
  color: var(--headline-navy);
  font-weight: 600;
}

.nav-menu li a.cta-button,
a.cta-button {
  background-color: var(--deep-navy);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.nav-menu li a.cta-button:hover,
a.cta-button:hover {
  background-color: var(--headline-navy);
  transform: translateY(-1px);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--headline-navy);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(160deg, #F7F9FB 0%, var(--white) 60%, #F5F7FA 100%);
  text-align: center;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero .container {
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  max-width: 800px;
  margin: 0 auto 1.25rem;
}

.hero .subtitle,
.hero .hero-subtitle {
  font-size: 1rem;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.eyebrow,
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--steel-blue);
  margin-bottom: 1rem;
}

.hero .cta-group {
  margin-top: 2rem;
}

/* ---------- Buttons ---------- */
.btn,
button.btn,
a.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary,
button.btn-primary,
a.btn-primary {
  background-color: var(--deep-navy);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--headline-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.25);
  color: var(--white);
}

.btn-secondary,
button.btn-secondary,
a.btn-secondary {
  background-color: var(--white);
  color: var(--deep-navy);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--steel-blue);
  color: var(--steel-blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 111, 165, 0.12);
}

.cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ---------- Cards ---------- */
.card-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 2rem auto 0;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  border-color: var(--steel-blue);
  box-shadow: 0 2px 8px rgba(74, 111, 165, 0.08);
}

.info-card h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
}

.info-card a {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  font-size: 0.9rem;
}

/* Info list inside cards */
.info-list {
  padding-left: 0;
  list-style: none;
}

.info-list li {
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.6;
}

.info-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  color: var(--steel-blue);
  font-weight: 600;
}

.note-card {
  background: #f5f9fc;
  border-color: var(--steel-blue);
  border-left: 3px solid var(--steel-blue);
}

/* ---------- Evaluation / Cross-sell Cards ---------- */
.evaluation-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2rem auto 0;
}

.evaluation-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.evaluation-card:hover {
  border-color: var(--steel-blue);
  box-shadow: 0 2px 8px rgba(74, 111, 165, 0.08);
}

.evaluation-card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 0.75rem;
}

.evaluation-card p {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.evaluation-card a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Pricing ---------- */
.pricing-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 3rem;
  max-width: 520px;
  margin: 2rem auto 0;
  text-align: center;
}

.pricing-amount,
.pricing-box .price {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 0.5rem;
}

.pricing-label,
.pricing-box .price-label {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-list,
.pricing-box .price-features {
  text-align: left;
  margin: 1.5rem 0;
  padding: 0;
}

.pricing-list li,
.pricing-box .price-features li {
  list-style: none;
  color: var(--slate);
  font-size: 0.93rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.pricing-list li:last-child,
.pricing-box .price-features li:last-child {
  border-bottom: none;
}

.pricing-list li::before,
.pricing-box .price-features li::before {
  content: "\2713";
  color: var(--steel-blue);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-timeline,
.pricing-box .timeline {
  background-color: var(--light-gray);
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  margin: 1.25rem 0;
  text-align: center;
  color: var(--slate);
  font-size: 0.9rem;
}

.pricing-cta-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.pricing-box .btn,
.pricing-box .btn-primary,
.pricing-box .cta-button,
.pricing-box button {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  background-color: var(--deep-navy);
  color: var(--white);
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.pricing-box .btn:hover,
.pricing-box .btn-primary:hover,
.pricing-box .cta-button:hover,
.pricing-box button:hover {
  background-color: var(--headline-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.25);
}

/* ---------- Commitment / Callout Boxes ---------- */
.commitment-section,
.commitment-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-section h3,
.commitment-box h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 1rem;
}

.commitment-section p,
.commitment-box p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Recovery intro (bundle page) */
.recovery-intro {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.recovery-intro p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Sample Report Section ---------- */
.sample-report-section {
  background-color: var(--light-gray);
}

.sample-report-container {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.sample-report-container h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--headline-navy);
  margin-bottom: 1rem;
}

.sample-report-subhead {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.sample-report-body {
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.sample-download-btn {
  display: inline-block;
  background-color: var(--deep-navy);
  color: var(--white) !important;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  margin: 0.5rem 0;
}

.sample-download-btn:hover {
  background-color: var(--headline-navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(27, 42, 74, 0.25);
}

.sample-microcopy {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 0.75rem;
  letter-spacing: 0.3px;
}

.sample-institutional-footer {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Sample report contents table */
.sample-contents-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  text-align: left;
}

.sample-contents-table th {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--slate);
  padding: 0.75rem 1rem;
  border-bottom: 2px solid var(--border);
}

.sample-contents-table td {
  font-size: 0.93rem;
  color: var(--text-dark);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
}

.sample-contents-table .bundle-row td {
  font-weight: 600;
  color: var(--headline-navy);
  background: rgba(74, 111, 165, 0.04);
}

.sample-callout {
  background: #f5f9fc;
  border: 1px solid var(--border);
  border-left: 4px solid var(--steel-blue);
  border-radius: var(--border-radius);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate);
  line-height: 1.7;
  text-align: left;
}

/* ---------- Contact Form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.contact-form-column h2 {
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
}

.contact-form {
  max-width: 100%;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--headline-navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--steel-blue);
  box-shadow: 0 0 0 3px rgba(74, 111, 165, 0.12);
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235A7A99' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-column .info-card {
  padding: 1.5rem;
}

.contact-info-column .info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-column .info-card p {
  font-size: 0.9rem;
}

/* ---------- CTA Section ---------- */
.section-cta {
  background: linear-gradient(135deg, var(--deep-navy) 0%, var(--headline-navy) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.section-cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-cta .btn-primary {
  background: var(--white);
  color: var(--deep-navy);
  font-weight: 700;
}

.section-cta .btn-primary:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
}

/* ---------- Footer ---------- */
.footer {
  background-color: var(--deep-navy);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 2rem 0;
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.footer-section h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.25rem 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
  margin: 0;
}

/* ---------- Bridge Content (diagnostic -> bundle) ---------- */
.bridge-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.bridge-content h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--headline-navy);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.bridge-content p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* ---------- Utility Classes ---------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }

.bg-light {
  background-color: var(--light-gray);
}

/* ---------- Accordion / Details Chevrons ---------- */
details summary {
  position: relative;
  padding-right: 2.5rem !important;
}

details summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--steel-blue);
  border-bottom: 2px solid var(--steel-blue);
  transform-origin: center;
  transition: transform 0.2s ease;
  transform: translateY(-65%) rotate(45deg);
}

details[open] summary::after {
  transform: translateY(-35%) rotate(-135deg);
}

details summary::-webkit-details-marker {
  display: none;
}

details summary {
  list-style: none;
}

/* ---------- Sticky CTA Bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: -60px;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--deep-navy);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: bottom 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 -2px 12px rgba(17, 30, 51, 0.15);
}

.sticky-cta.visible {
  bottom: 0;
  opacity: 1;
  transform: translateY(0);
}

.sticky-cta-text {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.sticky-cta .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  background: var(--white);
  color: var(--deep-navy);
  font-weight: 700;
  border-radius: 5px;
  white-space: nowrap;
}

.sticky-cta .btn:hover {
  background: var(--light-gray);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sticky-cta {
    padding: 0.6rem 1rem;
    gap: 0.75rem;
  }

  .sticky-cta-text {
    font-size: 0.8rem;
    display: none;
  }

  .sticky-cta .btn {
    flex: 1;
    text-align: center;
  }
}

/* ---------- Responsive: Tablet ---------- */
@media (max-width: 1024px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 4rem 1.5rem 3rem;
  }

  .section {
    padding: 3rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ---------- Responsive: Mobile ---------- */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.35rem; }

  .hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .hero .subtitle,
  .hero .hero-subtitle {
    font-size: 0.93rem;
  }

  .section {
    padding: 2.5rem 1.25rem;
  }

  /* Mobile nav */
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--nav-height));
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.25rem;
    border-left: 1px solid var(--border);
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.08);
    align-items: stretch;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    border-radius: 6px;
  }

  .nav-menu li a.cta-button {
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Cards stack */
  .card-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .evaluation-cards {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing-box {
    padding: 2rem;
  }

  .pricing-box .price,
  .pricing-amount {
    font-size: 2.2rem;
  }

  /* CTA group stack */
  .cta-group {
    flex-direction: column;
    align-items: center;
  }

  .cta-group .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer stacks */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    margin: 0 auto 1rem;
  }

  .footer-section h4 {
    margin-bottom: 0.75rem;
  }

  /* Contact form stacks */
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-column h2 {
    text-align: center;
  }
}

/* ---------- Responsive: Small Mobile ---------- */
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 2.5rem 1rem 2rem;
  }

  .nav-logo span {
    font-size: 0.88rem;
  }

  .pricing-box {
    padding: 1.5rem;
  }
}
