/* =========================================================
   VALUFLOW — MAIN STYLESHEET
   Enterprise Valuation Workflow Platform
   Table of contents:
     1. Design tokens
     2. Base / typography
     3. Layout helpers
     4. Navbar
     5. Buttons
     6. Hero
     7. Section headers / badges
     8. Cards (feature / icon / info)
     9. Illustration panels (CSS-based, no stock photos)
     10. Workflow / steps
     11. Stats strip
     12. CTA band
     13. Footer
     14. Inner / content pages (legal, contact)
     15. Utilities & animations
     16. Responsive overrides
   ========================================================= */

/* ---------------------------------------------------------
   1. Design tokens
   --------------------------------------------------------- */
:root {
  --primary: #19588F;
  --primary-dark: #083263;
  --secondary: #63A0CC;

  --accent: #5B9F24;
  --accent-dark: #276D22;

  --background: #FFFFFF;
  --surface: #F8FAFC;
  --border: #E5E7EB;

  --heading: #1E293B;
  --text: #475569;

  --font-heading: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(8, 50, 99, 0.06);
  --shadow-md: 0 10px 30px rgba(8, 50, 99, 0.10);
  --shadow-lg: 0 20px 50px rgba(8, 50, 99, 0.14);

  --transition-base: all 0.25s ease;
}

/* ---------------------------------------------------------
   2. Base / typography
   --------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--background);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--heading);
  font-weight: 600;
  line-height: 1.25;
}

h1 { font-weight: 700; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition-base);
}

a:hover {
  color: var(--primary-dark);
}

::selection {
  background: var(--secondary);
  color: #fff;
}

/* Consistent focus outline for keyboard accessibility */
a:focus-visible,
button:focus-visible,
.nav-link:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
}

/* ---------------------------------------------------------
   3. Layout helpers
   --------------------------------------------------------- */
.section {
  padding: 6rem 0;
}

.section-sm {
  padding: 4rem 0;
}

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

.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}

.text-primary-custom {
  color: var(--primary) !important;
}

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

.divider-line {
  width: 64px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 0 auto 1.5rem;
}

.divider-line--start {
  margin: 0 0 1.5rem;
}

/* ---------------------------------------------------------
   4. Navbar
   --------------------------------------------------------- */
.navbar-valuflow {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: saturate(180%) blur(6px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: var(--transition-base);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary-dark) !important;
}

.navbar-brand img {
  height: 42px;
  width: 42px;
  object-fit: contain;
}

.navbar-valuflow .nav-link {
  font-weight: 500;
  color: var(--heading);
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  position: relative;
}

.navbar-valuflow .nav-link:hover {
  color: var(--primary);
  background-color: var(--surface);
}

.navbar-valuflow .nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.navbar-valuflow .nav-link.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.3rem;
  height: 2px;
  background-color: var(--accent);
  border-radius: 2px;
}

.navbar-valuflow .btn-nav-cta {
  margin-left: 0.5rem;
}

/* ---------------------------------------------------------
   5. Buttons
   --------------------------------------------------------- */
.btn {
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.6rem;
  transition: var(--transition-base);
  letter-spacing: 0.01em;
}

.btn-primary-custom {
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
}

.btn-primary-custom:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-custom {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--heading);
}

.btn-outline-custom:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--surface);
  transform: translateY(-2px);
}

.btn-accent-custom {
  background-color: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
}

.btn-accent-custom:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light-custom {
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--primary-dark);
}

.btn-light-custom:hover {
  background-color: var(--surface);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   6. Hero
   --------------------------------------------------------- */
.hero {
  position: relative;
  padding: 7.5rem 0 6rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(99, 160, 204, 0.16), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(91, 159, 36, 0.10), transparent 40%),
    linear-gradient(180deg, var(--surface) 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(25, 88, 143, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.25rem;
}

.hero .lead {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-trust {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.hero-trust p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.hero-trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-trust li i {
  color: var(--accent);
}

/* Decorative hero visual (CSS-built, no stock photography) */
.hero-visual {
  position: relative;
  background: linear-gradient(155deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual .mock-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 360px;
}

.hero-visual .mock-card + .mock-card {
  margin-top: 1rem;
}

.hero-visual .mock-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border);
}

.hero-visual .mock-row:last-child {
  border-bottom: none;
}

.hero-visual .mock-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(25, 88, 143, 0.1);
  color: var(--primary);
  flex-shrink: 0;
}

.hero-visual .mock-icon.accent {
  background: rgba(91, 159, 36, 0.12);
  color: var(--accent);
}

.hero-visual .mock-text {
  flex: 1;
}

.hero-visual .mock-line {
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 6px;
}

.hero-visual .mock-line.w-70 { width: 70%; }
.hero-visual .mock-line.w-45 { width: 45%; }
.hero-visual .mock-line.w-90 { width: 90%; }

.hero-visual .mock-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(91, 159, 36, 0.14);
  color: var(--accent-dark);
}

.hero-visual .floating-chip {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--heading);
}

.hero-visual .floating-chip i {
  color: var(--accent);
  font-size: 1.1rem;
}

.hero-visual .floating-chip--top {
  top: -18px;
  right: 20px;
}

.hero-visual .floating-chip--bottom {
  bottom: -18px;
  left: 20px;
}

/* ---------------------------------------------------------
   7. Section headers / badges
   --------------------------------------------------------- */
.section-header {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.section-header.text-start {
  margin: 0 0 3rem;
}

.section-badge {
  display: inline-block;
  color: var(--accent-dark);
  background-color: rgba(91, 159, 36, 0.1);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text);
}

/* ---------------------------------------------------------
   8. Cards
   --------------------------------------------------------- */
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: var(--transition-base);
}

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

.feature-card .icon-tile {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(25, 88, 143, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card .icon-tile.accent {
  background: rgba(91, 159, 36, 0.1);
  color: var(--accent);
}

.feature-card h3,
.feature-card h5 {
  font-size: 1.15rem;
  margin-bottom: 0.65rem;
}

.feature-card p {
  color: var(--text);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* Compact list-style info card (used for role/access, audit, etc.) */
.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  height: 100%;
}

.info-card .icon-tile {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  background: rgba(25, 88, 143, 0.08);
  color: var(--primary);
}

.info-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
}

.info-card ul li i {
  color: var(--accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Checklist used inside feature grids */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.55rem 0;
  color: var(--text);
}

.check-list li i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

/* ---------------------------------------------------------
   9. Illustration panels (CSS-based, no stock photos)
   --------------------------------------------------------- */
.illustration-panel {
  position: relative;
  background: linear-gradient(160deg, var(--surface), #EEF3F8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.illustration-panel .glyph-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 340px;
}

.illustration-panel .glyph {
  aspect-ratio: 1;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  transition: var(--transition-base);
}

.illustration-panel .glyph:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-md);
  color: var(--accent);
}

.illustration-panel .glyph.is-accent {
  color: var(--accent);
}

.illustration-panel .glyph.is-large {
  grid-column: span 2;
  grid-row: span 2;
  font-size: 2.75rem;
  background: linear-gradient(155deg, var(--primary), var(--primary-dark));
  color: #fff;
}

/* Phone mockup used for the Android field agent section */
.phone-mockup {
  width: 230px;
  margin: 0 auto;
  background: var(--primary-dark);
  border-radius: 34px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
}

.phone-mockup .phone-screen {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  padding: 1.1rem 1rem 1.5rem;
}

.phone-mockup .phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  margin: 0 auto 0.9rem;
}

.phone-mockup .phone-app-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.phone-mockup .phone-app-bar i {
  color: var(--accent);
}

.phone-mockup .phone-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.65rem;
  border: 1px solid var(--border);
}

.phone-mockup .phone-card .mock-line {
  height: 7px;
  border-radius: 4px;
  background: var(--border);
  margin-bottom: 5px;
}

.phone-mockup .phone-card .mock-line.w-60 { width: 60%; }
.phone-mockup .phone-card .mock-line.w-85 { width: 85%; }

.phone-mockup .phone-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: rgba(91, 159, 36, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

/* ---------------------------------------------------------
   10. Workflow / steps
   --------------------------------------------------------- */
.workflow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: workflow;
}

.workflow-step {
  position: relative;
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
  counter-increment: workflow;
}

.workflow-step:last-child {
  padding-bottom: 0;
}

.workflow-step::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.workflow-step:last-child::before {
  display: none;
}

.workflow-step .step-number {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.workflow-step .step-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.workflow-step .step-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ---------------------------------------------------------
   11. Stats strip
   --------------------------------------------------------- */
.stats-strip {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: #fff;
}

.stats-strip .stat-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 0.35rem;
}

.stats-strip .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.78);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ---------------------------------------------------------
   12. CTA band
   --------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--secondary) 130%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0%, rgba(91, 159, 36, 0.25), transparent 55%);
  pointer-events: none;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
}

/* ---------------------------------------------------------
   13. Footer
   --------------------------------------------------------- */
.site-footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4.5rem 0 0;
}

.site-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.site-footer .footer-brand img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

.site-footer h6 {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.25rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer ul li {
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: #fff;
}

.site-footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.site-footer .footer-contact li i {
  color: var(--secondary);
  margin-top: 0.2rem;
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 3rem;
  padding: 1.75rem 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
}

.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition-base);
}

.footer-socials a:hover {
  background: var(--accent);
  transform: translateY(-3px);
}

/* ---------------------------------------------------------
   14. Inner / content pages (legal, contact)
   --------------------------------------------------------- */
.page-header {
  background: linear-gradient(180deg, var(--surface) 0%, #FFFFFF 100%);
  padding: 6.5rem 0 3.5rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
}

.page-header .updated-badge {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  background: rgba(25, 88, 143, 0.08);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 1.75rem;
  margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
  color: var(--text);
  padding-left: 1.35rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--text);
}

.legal-callout {
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.legal-callout p {
  margin-bottom: 0;
}

.legal-toc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.legal-toc h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: none;
  margin: 0 0 1rem;
  padding-bottom: 0;
}

.legal-toc ol {
  columns: 2;
  margin-bottom: 0;
}

.legal-toc a {
  color: var(--text);
  font-size: 0.92rem;
}

.legal-toc a:hover {
  color: var(--primary);
}

/* Contact page */
.contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  height: 100%;
  transition: var(--transition-base);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-card .icon-tile {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(25, 88, 143, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.contact-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.contact-card p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact-card a {
  font-weight: 600;
}

.contact-note {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
}

/* ---------------------------------------------------------
   15. Utilities & animations
   --------------------------------------------------------- */
.fade-up {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rounded-lg-custom {
  border-radius: var(--radius-lg) !important;
}

.shadow-custom {
  box-shadow: var(--shadow-md) !important;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------------------------------------------------------
   16. Responsive overrides
   --------------------------------------------------------- */
@media (max-width: 991.98px) {
  .navbar-valuflow .navbar-nav {
    padding-top: 1rem;
  }

  .navbar-valuflow .nav-link.active::after {
    display: none;
  }

  .hero {
    padding: 6.5rem 0 3.5rem;
    text-align: center;
  }

  .hero .lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust ul {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 3rem;
  }

  .cta-band {
    padding: 2.5rem 1.75rem;
    text-align: center;
  }

  .legal-toc ol {
    columns: 1;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 4rem 0;
  }

  .section-sm {
    padding: 3rem 0;
  }

  .stats-strip,
  .cta-band {
    padding: 2.25rem 1.5rem;
  }

  .workflow-step {
    gap: 1rem;
  }

  .workflow-step::before {
    left: 20px;
  }

  .workflow-step .step-number {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .site-footer .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
    width: 100%;
  }
}
