/* ============================================
   FinNova – Global Stylesheet
   Designed for BITV 2.0 / WCAG 2.1 AA compliance
   ============================================ */

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

:root {
  --color-primary: #0a1f44;
  --color-primary-mid: #1b3a6b;
  --color-accent: #0055cc;
  --color-accent-light: #1a7fff;
  --color-teal: #00c9a7;
  --color-teal-dark: #00a88a;
  --color-white: #ffffff;
  --color-light: #f4f7fc;
  --color-light-mid: #e8eef7;
  --color-text: #1a2332;
  --color-text-mid: #3d5068;
  --color-text-light: #6b7f99;
  --color-border: #d0daea;
  --color-success: #17b26a;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(10,31,68,0.08);
  --shadow-md: 0 4px 16px rgba(10,31,68,0.12);
  --shadow-lg: 0 8px 32px rgba(10,31,68,0.16);
  --transition: 0.22s ease;
  --header-h: 72px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--color-text); background: var(--color-white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 3px; border-radius: 3px; }
ul { list-style: none; }

/* ---- ACCESSIBILITY ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--color-teal); outline-offset: 3px; }

/* ---- CONTAINER ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- HEADER & NAV ---- */
.header { position: sticky; top: 0; z-index: 100; background: var(--color-primary); border-bottom: 1px solid var(--color-primary-mid); box-shadow: var(--shadow-md); height: var(--header-h); }
.nav { display: flex; align-items: center; height: 100%; gap: 32px; }
.nav__logo { color: var(--color-white); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.3px; display: flex; align-items: center; gap: 8px; }
.logo-icon { color: var(--color-teal); font-size: 1.2rem; }
.nav__list { display: flex; gap: 4px; align-items: center; flex: 1; flex-wrap: wrap; }
.nav__link { color: rgba(255,255,255,0.82); font-size: 0.875rem; font-weight: 500; padding: 6px 10px; border-radius: var(--radius-sm); transition: var(--transition); }
.nav__link:hover, .nav__link.active { color: var(--color-white); background: rgba(255,255,255,0.1); text-decoration: none; }
.nav__link--cta { background: var(--color-teal); color: var(--color-primary) !important; font-weight: 700; padding: 8px 16px; margin-left: 8px; }
.nav__link--cta:hover { background: var(--color-teal-dark); }
.nav__toggle { display: none; background: none; border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 12px; border-radius: var(--radius-sm); cursor: pointer; font-size: 1rem; margin-left: auto; }

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 0.938rem; font-weight: 600; cursor: pointer; transition: var(--transition); border: 2px solid transparent; white-space: nowrap; text-decoration: none; }
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); }
.btn--primary:hover { background: var(--color-accent-light); border-color: var(--color-accent-light); }
.btn--outline { background: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn--outline:hover { background: var(--color-accent); color: white; }
.btn--white { background: white; color: var(--color-primary); }
.btn--white:hover { background: var(--color-light); }
.btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.6); }
.btn--outline-white:hover { background: rgba(255,255,255,0.15); }
.btn--teal { background: var(--color-teal); color: var(--color-primary); border-color: var(--color-teal); }
.btn--teal:hover { background: var(--color-teal-dark); }
.btn--lg { padding: 16px 32px; font-size: 1rem; }
.btn--sm { padding: 8px 16px; font-size: 0.813rem; }

/* ---- BADGE ---- */
.badge { display: inline-block; background: rgba(0,201,167,0.15); color: var(--color-teal-dark); border: 1px solid rgba(0,201,167,0.3); border-radius: 100px; padding: 4px 14px; font-size: 0.813rem; font-weight: 600; margin-bottom: 16px; }
.badge--light { background: rgba(0,85,204,0.1); color: var(--color-accent); border-color: rgba(0,85,204,0.2); }

/* ---- HERO ---- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg-image { position: absolute; inset: 0; }
.hero__bg-img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,31,68,0.93) 0%, rgba(27,58,107,0.78) 50%, rgba(10,31,68,0.6) 100%); }
.hero__content { position: relative; z-index: 2; padding: 80px 24px; }
.hero__text { max-width: 680px; }
.hero__title { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.5px; }
.text-accent { color: var(--color-teal); }
.hero__subtitle { font-size: 1.125rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 520px; line-height: 1.7; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__number { font-size: 1.75rem; font-weight: 800; color: var(--color-teal); }
.stat__label { font-size: 0.813rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- TRUST BAR ---- */
.trust-bar { background: var(--color-light); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: 16px 0; }
.trust-bar__inner { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.trust-bar__label { font-size: 0.813rem; font-weight: 700; color: var(--color-text-mid); text-transform: uppercase; letter-spacing: 0.5px; }
.trust-bar__logos { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.trust-item { font-size: 0.875rem; font-weight: 600; color: var(--color-primary); padding: 4px 12px; background: white; border: 1px solid var(--color-border); border-radius: 100px; }

/* ---- SECTIONS ---- */
.section { padding: 80px 0; }
.section--dark { background: var(--color-primary); color: white; }
.section--dark h2 { color: white; }
.section--dark p { color: rgba(255,255,255,0.8); }
.section--light { background: var(--color-light); }
.section__header { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.section__title { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; color: var(--color-primary); margin-bottom: 16px; letter-spacing: -0.3px; }
.section__subtitle { font-size: 1.063rem; color: var(--color-text-mid); line-height: 1.7; }

/* ---- GRID ---- */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---- CARDS ---- */
.card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; }
.card--hover { transition: var(--transition); }
.card--hover:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--color-accent-light); }
.card__icon { font-size: 2rem; margin-bottom: 16px; }
.card__title { font-size: 1.063rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; }
.card__text { font-size: 0.938rem; color: var(--color-text-mid); line-height: 1.65; margin-bottom: 16px; }
.card__link { font-size: 0.875rem; font-weight: 600; color: var(--color-accent); }
.card__link:hover { color: var(--color-accent-light); }
.card--dark { background: var(--color-primary-mid); border-color: rgba(255,255,255,0.1); }
.card--dark .card__title { color: white; }
.card--dark .card__text { color: rgba(255,255,255,0.75); }
.card--accent { border-top: 3px solid var(--color-teal); }

/* ---- TWO COLUMN LAYOUT ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col--reverse .two-col__text { order: 2; }
.two-col--reverse .two-col__image { order: 1; }
.two-col__text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.two-col__text p { font-size: 1rem; line-height: 1.75; margin-bottom: 24px; color: var(--color-text-mid); }
.section--dark .two-col__text p { color: rgba(255,255,255,0.8); }
.two-col__image img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; max-height: 420px; }

/* ---- CHECK LIST ---- */
.check-list { list-style: none; margin-bottom: 28px; }
.check-list li { padding: 6px 0 6px 28px; position: relative; font-size: 0.938rem; color: var(--color-text-mid); }
.section--dark .check-list li { color: rgba(255,255,255,0.8); }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--color-teal); font-weight: 700; }

/* ---- STATS SECTION ---- */
.stats-section { background: var(--color-primary); }
.stats-grid .stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; }
.stat-card__number { display: block; font-size: 2.5rem; font-weight: 900; color: var(--color-teal); margin-bottom: 8px; }
.stat-card__label { font-size: 0.875rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.5px; }

/* ---- TESTIMONIALS ---- */
.testimonial { background: var(--color-light); border-radius: var(--radius-md); padding: 28px; border-left: 4px solid var(--color-teal); }
.testimonial__stars { color: #f59e0b; font-size: 1rem; margin-bottom: 12px; }
.testimonial__text { font-size: 0.938rem; color: var(--color-text); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.testimonial__author { font-size: 0.875rem; font-weight: 600; color: var(--color-text-mid); }

/* ---- CTA BANNER ---- */
.cta-banner { background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary-mid) 100%); padding: 72px 0; }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-banner__text h2 { color: white; font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 8px; }
.cta-banner__text p { color: rgba(255,255,255,0.85); font-size: 1rem; }
.cta-banner__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-mid) 100%); padding: 72px 0 56px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; right: -80px; top: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,201,167,0.12), transparent 70%); border-radius: 50%; }
.page-hero__content { position: relative; z-index: 2; }
.page-hero__eyebrow { font-size: 0.813rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--color-teal); margin-bottom: 12px; }
.page-hero__title { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.page-hero__subtitle { font-size: 1.063rem; color: rgba(255,255,255,0.8); max-width: 600px; line-height: 1.7; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem; color: var(--color-primary); background: none; border: none; width: 100%; text-align: left; }
.faq-question:hover { color: var(--color-accent); }
.faq-question .faq-icon { font-size: 1.2rem; transition: var(--transition); flex-shrink: 0; }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 20px; font-size: 0.938rem; color: var(--color-text-mid); line-height: 1.75; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 400px; }

/* ---- PRICING PLANS ---- */
.pricing-card { border: 2px solid var(--color-border); border-radius: var(--radius-lg); padding: 36px; text-align: center; transition: var(--transition); background: white; }
.pricing-card:hover, .pricing-card--featured { border-color: var(--color-accent); box-shadow: var(--shadow-lg); }
.pricing-card--featured { background: var(--color-primary); color: white; position: relative; }
.pricing-card--featured .pricing-price { color: var(--color-teal); }
.pricing-card--featured .pricing-feature { color: rgba(255,255,255,0.85); }
.pricing-card--featured .pricing-name { color: white; }
.pricing-badge { background: var(--color-teal); color: var(--color-primary); font-size: 0.75rem; font-weight: 700; padding: 3px 12px; border-radius: 100px; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); white-space: nowrap; }
.pricing-name { font-size: 1.125rem; font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.pricing-price { font-size: 2.5rem; font-weight: 900; color: var(--color-accent); margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--color-text-light); }
.pricing-features { list-style: none; margin: 24px 0; text-align: left; }
.pricing-feature { padding: 8px 0; border-bottom: 1px solid var(--color-light-mid); font-size: 0.875rem; display: flex; gap: 8px; }
.pricing-card--featured .pricing-feature { border-color: rgba(255,255,255,0.1); }
.pricing-feature::before { content: '✓'; color: var(--color-teal); font-weight: 700; flex-shrink: 0; }

/* ---- FORMS ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--color-border); border-radius: var(--radius-sm); font-size: 0.938rem; font-family: var(--font-sans); color: var(--color-text); background: white; transition: var(--transition); }
.form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(0,85,204,0.12); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.813rem; color: var(--color-text-light); margin-top: 4px; }

/* ---- TEAM CARDS ---- */
.team-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.team-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.team-card__img { width: 100%; height: 220px; object-fit: cover; }
.team-card__body { padding: 20px; }
.team-card__name { font-weight: 700; font-size: 1rem; color: var(--color-primary); margin-bottom: 4px; }
.team-card__role { font-size: 0.875rem; color: var(--color-teal-dark); font-weight: 600; margin-bottom: 10px; }
.team-card__bio { font-size: 0.875rem; color: var(--color-text-mid); line-height: 1.6; }

/* ---- BLOG CARDS ---- */
.blog-card { background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card__img { width: 100%; height: 200px; object-fit: cover; }
.blog-card__body { padding: 22px; }
.blog-card__meta { font-size: 0.8rem; color: var(--color-text-light); margin-bottom: 8px; }
.blog-card__category { background: rgba(0,85,204,0.1); color: var(--color-accent); padding: 3px 10px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-right: 8px; }
.blog-card__title { font-size: 1rem; font-weight: 700; color: var(--color-primary); margin-bottom: 10px; line-height: 1.4; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--color-text-mid); line-height: 1.65; margin-bottom: 16px; }

/* ---- TABLE ---- */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.938rem; }
th { background: var(--color-primary); color: white; padding: 14px 16px; text-align: left; font-weight: 600; font-size: 0.875rem; }
td { padding: 14px 16px; border-bottom: 1px solid var(--color-border); color: var(--color-text); }
tr:hover td { background: var(--color-light); }

/* ---- BREADCRUMB ---- */
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.813rem; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: white; }

/* ---- ICON BOX ---- */
.icon-box { display: flex; gap: 20px; align-items: flex-start; padding: 24px; background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md); transition: var(--transition); }
.icon-box:hover { box-shadow: var(--shadow-md); border-color: var(--color-accent-light); }
.icon-box__icon { font-size: 2rem; flex-shrink: 0; width: 52px; height: 52px; background: var(--color-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; }
.icon-box__title { font-weight: 700; font-size: 1rem; color: var(--color-primary); margin-bottom: 6px; }
.icon-box__text { font-size: 0.875rem; color: var(--color-text-mid); line-height: 1.65; }

/* ---- STEPS ---- */
.steps { counter-reset: step; }
.step { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
.step__num { counter-increment: step; background: var(--color-accent); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1rem; flex-shrink: 0; margin-top: 3px; }
.step__title { font-weight: 700; font-size: 1.063rem; color: var(--color-primary); margin-bottom: 6px; }
.step__text { font-size: 0.938rem; color: var(--color-text-mid); line-height: 1.65; }

/* ---- FOOTER ---- */
.footer { background: var(--color-primary); padding: 72px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__logo { color: white; font-size: 1.4rem; font-weight: 700; display: block; margin-bottom: 16px; }
.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 20px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { background: rgba(255,255,255,0.1); color: white; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.875rem; transition: var(--transition); }
.footer__social a:hover { background: var(--color-teal); color: var(--color-primary); text-decoration: none; }
.footer__nav h3 { color: white; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; font-weight: 700; }
.footer__nav ul li { margin-bottom: 10px; }
.footer__nav a { color: rgba(255,255,255,0.65); font-size: 0.875rem; transition: var(--transition); }
.footer__nav a:hover { color: white; text-decoration: none; }
.footer__bottom { padding: 20px 0; background: rgba(0,0,0,0.2); }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 0.813rem; color: rgba(255,255,255,0.55); }
.footer__compliance { font-size: 0.75rem !important; }

/* ---- PROCESS ---- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process-step { padding: 32px 24px; text-align: center; position: relative; }
.process-step:not(:last-child)::after { content: '→'; position: absolute; right: -12px; top: 32px; font-size: 1.5rem; color: var(--color-teal); z-index: 1; }
.process-num { background: var(--color-accent); color: white; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem; margin: 0 auto 16px; }
.process-title { font-weight: 700; color: var(--color-primary); margin-bottom: 8px; }
.process-text { font-size: 0.875rem; color: var(--color-text-mid); line-height: 1.65; }

/* ---- ALERT / NOTICE ---- */
.alert { padding: 16px 20px; border-radius: var(--radius-sm); border-left: 4px solid; margin-bottom: 20px; font-size: 0.938rem; }
.alert--info { background: #eef4ff; border-color: var(--color-accent); color: #1e3a6b; }
.alert--success { background: #ecfdf5; border-color: var(--color-success); color: #065f46; }
.alert--warning { background: #fffbeb; border-color: var(--color-warning); color: #92400e; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }
  .process-step:nth-child(4)::after { display: none; }
}
@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .nav__list { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--color-primary); padding: 16px; border-top: 1px solid rgba(255,255,255,0.1); gap: 4px; }
  .nav__list--open { display: flex; }
  .nav__toggle { display: block; }
  .hero { min-height: 70vh; }
  .section { padding: 56px 0; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col--reverse .two-col__text { order: 1; }
  .two-col--reverse .two-col__image { order: 2; }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__inner { flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .trust-bar__inner { gap: 16px; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__title { font-size: 1.8rem; }
  .btn--lg { padding: 14px 22px; font-size: 0.938rem; }
  .hero__actions { flex-direction: column; }
}
@media print {
  .header, .footer, .cta-banner, .nav__toggle { display: none; }
  body { color: black; background: white; }
}
