/* ============================================================
   Vancouver Practical Guides — styles.css
   Mobile-first · Clean · Trustworthy · Local Vancouver feel
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand colours */
  --navy-dark:    #0f2640;
  --navy:         #1a3a5c;
  --navy-mid:     #234d7a;
  --navy-light:   #2d6098;
  --blue:         #2e6da4;
  --blue-mid:     #3d82bb;
  --blue-light:   #5a9fd4;
  --blue-pale:    #e8f1f9;
  --blue-pale2:   #d4e8f5;

  /* Neutrals */
  --white:        #ffffff;
  --grey-50:      #f8f9fb;
  --grey-100:     #f4f6f9;
  --grey-200:     #e8ecf2;
  --grey-300:     #d1d8e4;
  --grey-500:     #8898aa;
  --grey-600:     #64748b;
  --grey-700:     #4a5568;
  --grey-900:     #1a2332;

  /* Accent */
  --green:        #2e7d52;
  --green-light:  #e8f5ee;
  --green-check:  #27ae60;

  /* Typography */
  --font:         -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --text-body:    #374151;
  --text-dark:    #1a2332;
  --text-muted:   #64748b;

  /* Spacing & layout */
  --max-width:    1100px;
  --section-pad:  4rem;
  --radius-sm:    6px;
  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:    0 1px 4px rgba(0,0,0,0.09);
  --shadow-md:    0 4px 14px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 28px rgba(0,0,0,0.12);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Utilities ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 740px;
}

.text-center { text-align: center; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.75rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.45rem, 3.2vw, 2.1rem); }
h3 { font-size: 1.1rem; font-weight: 700; }
h4 { font-size: 0.85rem; font-weight: 700; }

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

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.625rem;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.15s ease;
  border: 2px solid transparent;
  text-decoration: none !important;
  white-space: nowrap;
  gap: 0.35rem;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-pale);
  color: var(--navy);
  border-color: var(--blue-pale);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---- Sections ---- */
.section {
  padding: var(--section-pad) 0;
}

.section-light {
  background: var(--grey-100);
}

.section-navy {
  background: var(--navy);
  color: var(--white);
}

.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy p {
  color: rgba(255, 255, 255, 0.82);
}

.section-cta {
  background: var(--blue-pale);
}

.section-title {
  text-align: center;
  margin-bottom: 0.625rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 1.0rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
  position: relative;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none !important;
  flex-shrink: 0;
}

.nav-logo-main {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 210;
  flex-shrink: 0;
}

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

/* Nav open state (toggled via JS) */
.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 1.25rem 1.25rem 1.5rem;
  gap: 0.125rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-open .nav-links {
  display: flex;
}

.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
  padding: 0.6rem 0.5rem;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
  text-decoration: none;
}

.nav-cta-item {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-cta-item .btn {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 4.5rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.88);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 1.125rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.1rem;
}

.hero-sub {
  color: rgba(255,255,255,0.84);
  font-size: 1.075rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.hero-trust {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.875rem;
  line-height: 2;
}

.trust-dot {
  color: #6fcf97;
  font-weight: 700;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Hero visual card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255,255,255,0.09);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  width: 100%;
  max-width: 320px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero-card-icon {
  font-size: 1.625rem;
}

.hero-card-title {
  font-weight: 700;
  color: var(--white);
  font-size: 0.975rem;
}

.hero-card-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.375rem;
}

.hero-checklist li {
  color: rgba(255,255,255,0.84);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hc-check {
  color: #6fcf97;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.hero-card-cta {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  text-decoration: none !important;
  transition: background 0.18s ease;
}

.hero-card-cta:hover {
  background: var(--blue-mid);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 1.125rem 1.25rem;
  box-shadow: var(--shadow-xs);
}

.problem-icon {
  font-size: 1.375rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.problem-card p {
  color: var(--text-body);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.625rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  flex-shrink: 0;
}

.step-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.step-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================================================
   CHECKLIST SECTION
   ============================================================ */
.checklist-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.checklist-text h2 {
  margin-bottom: 1rem;
}

.checklist-text p {
  color: var(--text-muted);
}

.checklist-note {
  font-size: 0.875rem !important;
  font-style: italic;
  color: var(--grey-600) !important;
  margin-bottom: 1.5rem !important;
}

.checklist-text .btn {
  margin-top: 0.5rem;
}

.checklist-box {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.checklist-items {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.93rem;
  color: var(--text-body);
  padding: 0.5rem 0.625rem;
  border-radius: var(--radius-sm);
  border-bottom: 1px solid var(--grey-200);
}

.checklist-item:last-child {
  border-bottom: none;
}

.ci-check {
  color: var(--green-check);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* ============================================================
   WHY DIFFERENT
   ============================================================ */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.diff-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}

.diff-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.diff-card h3 {
  margin-bottom: 0.5rem;
  color: var(--navy);
  font-size: 1.05rem;
}

.diff-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin: 0;
  line-height: 1.6;
}

.diff-note {
  background: var(--blue-pale);
  border: 1px solid var(--blue-pale2);
  border-left: 3px solid var(--blue);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  max-width: 760px;
  margin: 0 auto;
}

.diff-note p {
  font-size: 0.875rem;
  color: var(--grey-700);
  margin: 0;
}

/* ============================================================
   CONTRACTORS SECTION
   ============================================================ */
.contractor-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.contractor-badge {
  display: inline-block;
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.82);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 0.875rem;
}

.contractor-text h2 {
  margin-bottom: 1rem;
}

.contractor-note {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58) !important;
  font-style: italic;
  margin-top: 1rem;
  margin-bottom: 1.5rem !important;
}

.contractor-details {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.contractor-details h3 {
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.contractor-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contractor-list li {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.4;
}

.contractor-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue-light);
  font-size: 0.85rem;
}

.contractor-learn {
  margin: 0 !important;
}

.contractor-learn a {
  color: var(--blue-light);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
}

.contractor-learn a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* ============================================================
   FREE TOOLS
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.18s ease, transform 0.15s ease;
}

.tool-card:hover:not(.tool-soon) {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.tool-card.tool-soon {
  opacity: 0.62;
}

.tool-icon {
  font-size: 1.875rem;
}

.tool-body {
  flex-grow: 1;
}

.tool-body h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.tool-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.tool-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-top: 0.75rem;
  border-top: 1px solid var(--grey-200);
}

.tool-badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-free {
  background: var(--green-light);
  color: var(--green);
}

.badge-paid {
  background: #fff3e0;
  color: #b45309;
}

.badge-soon {
  background: var(--grey-200);
  color: var(--grey-600);
}

.tool-link {
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
}

.tool-link:hover {
  text-decoration: underline;
}

.tools-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about .section-title {
  margin-bottom: 1.5rem;
}

#about p {
  color: var(--text-body);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.section-cta {
  text-align: center;
}

.section-cta h2 {
  margin-bottom: 0.75rem;
}

.cta-sub {
  color: var(--text-muted);
  margin-bottom: 1.875rem;
  font-size: 1rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* ============================================================
   DISCLAIMER BAR
   ============================================================ */
.disclaimer-bar {
  background: #f0f4f8;
  border-top: 1px solid var(--grey-300);
  padding: 1.25rem 0;
}

.disclaimer-bar p {
  font-size: 0.79rem;
  color: var(--grey-600);
  line-height: 1.75;
  text-align: center;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.25rem;
  margin-bottom: 2rem;
}

.footer-logo {
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 0.25rem;
}

.footer-focus {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.75rem;
}

.footer-email {
  color: var(--blue-light);
  font-size: 0.88rem;
  text-decoration: none;
  display: block;
}

.footer-email:hover {
  text-decoration: underline;
  color: var(--white);
}

.site-footer h4 {
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.75rem;
}

.footer-nav ul,
.footer-focus-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-nav ul li a,
.footer-focus-col ul li,
.footer-focus-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav ul li a:hover,
.footer-focus-col ul li a:hover {
  color: var(--white);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

.footer-bottom p {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.38);
  text-align: center;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   RESPONSIVE — Tablet 600px+
   ============================================================ */
@media (min-width: 600px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* ============================================================
   RESPONSIVE — Desktop 900px+
   ============================================================ */
@media (min-width: 900px) {

  /* Nav */
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    gap: 0.25rem;
    border: none;
    box-shadow: none;
    align-items: center;
  }

  .nav-links a {
    padding: 0.4rem 0.6rem;
    font-size: 0.875rem;
  }

  .nav-cta-item {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    margin-left: 0.5rem;
  }

  .nav-cta-item .btn {
    width: auto;
  }

  /* Hero */
  .hero {
    padding: 5rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .hero-visual {
    justify-content: flex-end;
  }

  .hero-card {
    max-width: 300px;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Checklist */
  .checklist-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  /* Contractors */
  .contractor-layout {
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1.25fr;
    gap: 3rem;
  }

}

/* ============================================================
   RESPONSIVE — Large 1100px+
   ============================================================ */
@media (min-width: 1100px) {
  :root {
    --section-pad: 5.5rem;
  }

  .hero {
    padding: 6rem 0;
  }

  .hero-card {
    max-width: 320px;
  }
}

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* Focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 3px;
  border-radius: 3px;
}
