:root {
    /* Primary brand colors (from Click Candor guidelines) */
    --brand-blue: #1F4396;
    --brand-blue-light: #27C3F3;
  
    /* Accent colors */
    --accent-orange: #EF5224;
    --accent-orange-light: #FF9433;
    --accent-green: #64D848;
    --accent-purple: #5B2AC6;
  
    /* Background system */
    --bg: #F5F7FB;
    --bg-alt: #FFFFFF;
    --bg-soft: #EEF2FF;
  
    /* Text system */
    --text-main: #0F172A;
    --text-muted: #6B7280;
  
    /* Borders & radius */
    --border-subtle: #E2E8F0;
    --radius-lg: 16px;
    --radius-pill: 999px;
  
    /* Shadows */
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.12);
  
    /* Typography */
    --font-primary: "Radio Canada", system-ui, -apple-system, BlinkMacSystemFont,
      "Segoe UI", sans-serif;
  }
  
  /* Reset-ish */
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html,
  body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    color: var(--text-main);
    background: radial-gradient(circle at top, #E3EDFF 0, var(--bg) 45%, #FFFFFF 100%);
    scroll-behavior: smooth;
  }
  
  body {
    min-height: 100vh;
  }
  
  /* Layout */
  .container {
    width: min(1120px, 100% - 3rem);
    margin-inline: auto;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .section.alt {
    background: var(--bg-alt);
    border-block: 1px solid var(--border-subtle);
  }
  
  .section-header {
    max-width: 620px;
    margin-bottom: 2.4rem;
  }
  
  .section-header h2 {
    margin-bottom: 0.4rem;
    color: var(--brand-blue);
  }
  
  /* Header */
  
  .site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(248, 250, 252, 0.96);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  }
  
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.40 rem 0;
  }
  
  .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-img {
    height: 100px;
    width: auto;
    display: block;
  }
  
  /* Nav */
  
  .site-nav {
    display: flex;
    gap: 1.4rem;
    align-items: center;
    font-size: 0.9rem;
    margin-top: -2px;
  }
  
  .site-nav a {
    text-decoration: none;
    color: var(--text-muted);
    position: relative;
    transition: color 150ms ease-out;
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    height: 2px;
    border-radius: 999px;
    background: var(--brand-blue-light);
    transform: scaleX(0);
    opacity: 0;
    transition: transform 160ms ease-out, opacity 160ms ease-out;
  }
  
  .site-nav a:hover {
    color: var(--text-main);
  }
  
  .site-nav a:hover::after {
    transform: scaleX(1);
    opacity: 1;
  }
  
  .nav-cta {
    padding: 0.45rem 0.9rem;
    border-radius: var(--radius-pill);
    background: var(--accent-green);
    border: 1px solid var(--accent-green);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(100, 216, 72, 0.28);
    transition: background 0.2s ease, box-shadow 0.2s ease;
  }
  
  .nav-cta:hover {
    background: #5ac73f;
    box-shadow: 0 6px 16px rgba(100, 216, 72, 0.36);
  }
  
  
  
  /* Mobile nav */
  
  .nav-toggle {
    display: none;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 1.1rem;
    height: 2px;
    border-radius: 999px;
    background: #111827;
    transition: transform 150ms ease-out, opacity 150ms ease-out;
  }
  
  @media (max-width: 640px) {
    .logo-img {
      height: 70px;
    }
    
    .site-nav {
      position: absolute;
      right: 1.5rem;
      top: 3.1rem;
      flex-direction: column;
      align-items: flex-start;
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid var(--border-subtle);
      padding: 0.75rem 0.9rem;
      box-shadow: var(--shadow-soft);
      transform-origin: top right;
      transform: scale(0.9);
      opacity: 0;
      pointer-events: none;
    }
  
    .site-nav.is-open {
      transform: scale(1);
      opacity: 1;
      pointer-events: auto;
    }
  
    .nav-toggle {
      display: inline-flex;
    }
  
    .nav-toggle.is-open span:nth-child(1) {
      transform: translateY(4px) rotate(45deg);
    }
    .nav-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.is-open span:nth-child(3) {
      transform: translateY(-4px) rotate(-45deg);
    }
  }
  
  /* Hero */
  
  .hero {
    padding-top: 4rem;
    background: linear-gradient(
      180deg,
      rgba(39, 195, 243, 0.16),
      rgba(255, 255, 255, 1)
    );
  }
  
  .hero-inner {
    display: grid;
    gap: 3rem;
  }
  
  @media (min-width: 900px) {
    .hero-inner {
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      align-items: center;
    }
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--brand-blue-light);
    margin-bottom: 0.8rem;
  }
  
  .hero h1 {
    font-size: clamp(2.1rem, 3.1vw, 2.8rem);
    margin-bottom: 0.6rem;
    line-height: 1.12;
    color: var(--brand-blue);
  }
  
  .hero-subtitle {
    font-size: 0.98rem;
    color: var(--text-muted);
    max-width: 32rem;
    margin-bottom: 1.4rem;
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.1rem;
  }
  
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  
  .hero-trust span {
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-pill);
    background: #ffffff;
    border: 1px solid var(--border-subtle);
  }
  
  /* Hero side card */
  
  .hero-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.2rem 1.25rem 1.35rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }
  
  .hero-metric {
    padding: 0.85rem 1rem;
    border-radius: 14px;
    background: linear-gradient(
      135deg,
      rgba(239, 82, 36, 0.06),
      rgba(255, 148, 51, 0.16)
    );
    margin-bottom: 0.9rem;
  }
  
  .metric-label {
    font-size: 0.78rem;
    color: var(--brand-blue);
    margin: 0 0 0.15rem;
  }
  
  .metric-value {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.1rem;
    color: var(--accent-orange);
  }
  
  .metric-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
  }
  
  .hero-list {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .hero-list li + li {
    margin-top: 0.3rem;
  }
  
  /* Buttons */
  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 140ms ease-out,
      box-shadow 140ms ease-out,
      background 140ms ease-out,
      border-color 140ms ease-out,
      color 140ms ease-out;
  }
  
  .btn.primary {
    background: linear-gradient(135deg, var(--accent-green), #7CF05E);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(100, 216, 72, 0.35);
  }
  
  .btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 38px rgba(100, 216, 72, 0.45);
  }
  
  
  
  .btn.ghost {
    background: #ffffff;
    border-color: var(--border-subtle);
    color: var(--brand-blue);
  }
  
  .btn.ghost:hover {
    border-color: var(--brand-blue-light);
    color: var(--text-main);
    background: #f9fafb;
  }
  
  /* Split layout */
  
  .split {
    display: grid;
    gap: 2.5rem;
  }
  
  @media (min-width: 800px) {
    .split {
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.05fr);
      align-items: start;
    }
  }
  
  /* Pills & cards */
  
  .pill-grid {
    display: grid;
    gap: 1rem;
  }
  
  .pill {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1rem 1.1rem;
    box-shadow: 0 10px 26px rgba(148, 163, 184, 0.18);
  }
  
  .pill h3 {
    margin: 0 0 0.3rem;
    font-size: 0.98rem;
    color: var(--brand-blue);
  }
  
  .pill p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .card-grid {
    display: grid;
    gap: 1.2rem;
  }
  
  @media (min-width: 900px) {
    .card-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
  
  .card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem 1.2rem 1.35rem;
    box-shadow: var(--shadow-soft);
  }
  
  .card h3 {
    margin-top: 0;
    margin-bottom: 0.4rem;
    color: var(--brand-blue);
  }
  
  .card p {
    margin: 0 0 0.85rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.86rem;
    color: var(--text-muted);
  }
  
  .card li + li {
    margin-top: 0.25rem;
  }
  
  /* Blog cards */
  
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  
  .blog-card h3 {
    margin-bottom: 0.35rem;
  }
  
  /* Steps */
  
  .steps {
    margin: 0;
    padding-left: 1.2rem;
    display: grid;
    gap: 1rem;
  }
  
  .steps li {
    margin-left: 0.4rem;
  }
  
  .steps h3 {
    margin: 0 0 0.2rem;
    font-size: 0.98rem;
    color: var(--brand-blue);
  }
  
  .steps p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  /* Contact */
  
  .contact-split {
    align-items: start;
  }
  
  .contact-notes {
    margin: 1rem 0 0;
    padding-left: 1.1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
  }
  
  .contact-notes li + li {
    margin-top: 0.25rem;
  }
  
  .contact-form {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.2rem 1.1rem 1.4rem;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
  }
  
  .field {
    display: grid;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
  }
  
  label {
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  input,
  select,
  textarea {
    border-radius: 10px;
    border: 1px solid var(--border-subtle);
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    background: #f9fafb;
    transition:
      border-color 150ms ease-out,
      box-shadow 150ms ease-out,
      background 150ms ease-out;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: var(--brand-blue-light);
    box-shadow: 0 0 0 1px rgba(39, 195, 243, 0.3);
    background: #ffffff;
  }
  
  textarea {
    resize: vertical;
  }
  
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    font-size: 0.82rem;
  }
  
  .chips label {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border-subtle);
    background: #f9fafb;
    cursor: pointer;
  }
  
  .chips input {
    width: auto;
  }
  
  .form-hint {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
  }
  
  /* Footer */
  
  .site-footer {
    border-top: 1px solid var(--border-subtle);
    background: rgba(248, 250, 252, 0.96);
    padding: 1.4rem 0;
  }
  
  .footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
  }
  
  .footer-note {
    white-space: nowrap;
  }
  
  @media (max-width: 640px) {
    .footer-inner {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  