    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy: var(--nav-bg); --navy-mid: var(--border); --navy-light: var(--bg-elevated);
      --green: var(--accent); --green-dark: var(--accent-hover); --green-light: var(--accent-muted);
      --shadow-sm: 0 1px 4px rgba(15,34,64,0.08);
      --radius: 8px; --radius-lg: 16px; --max-width: 1100px;
      --font-sans: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body { font-family: var(--font-sans); font-size: 1rem; line-height: 1.65; color: var(--text-primary); background: var(--bg); -webkit-font-smoothing: antialiased; }
    h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--text-primary); }
    h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
    h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
    h3 { font-size: clamp(1.125rem, 2.5vw, 1.375rem); }
    p { margin-bottom: 1em; } p:last-child { margin-bottom: 0; }
    a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
    a:hover { color: var(--accent-hover); }
    a:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 2px; }
    .container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
    .nav { position: sticky; top: 0; z-index: 100; background: #0A1020; border-bottom: 1px solid #1A2540; padding: 1rem 0; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
    .nav-links { display: flex; align-items: center; gap: 1.5rem; }
    .nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; font-weight: 500; }
    .nav-links a:hover { color: #fff; }
    .nav-cta { background: #2E75B6; color: #fff !important; padding: 0.55rem 1.25rem; border-radius: var(--radius); font-weight: 600; white-space: nowrap; transition: background 0.2s; }
    .nav-cta:hover { background: #1F3A5F !important; }
    .content-section { padding: 4rem 0; }
    .content-section:nth-child(even) { background: var(--bg-elevated); }

    /* Hero */
    .page-hero { background: linear-gradient(135deg, #0F1729 0%, #14213D 60%, #1F3A5F 100%); color: #fff; padding: 4rem 0 3.5rem; position: relative; overflow: hidden; }
    .page-hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(30,64,175,0.1) 0%, transparent 60%); pointer-events: none; }
    .page-hero h1 { color: #fff; margin-bottom: 0.75rem; position: relative; }
    .page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 700px; position: relative; }
    .breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; position: relative; }
    .breadcrumb a { color: rgba(255,255,255,0.65); text-decoration: none; }
    .hero-cta-group { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 2rem; position: relative; }

    /* Tier cards */
    .tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem; }
    .tier-card { background: var(--bg-surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 1.75rem 1.5rem; position: relative; }
    .tier-card.featured { border-color: var(--accent); }
    .tier-card-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-secondary); margin-bottom: 0.35rem; }
    .tier-card.featured .tier-card-label { color: var(--accent); }
    .tier-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
    .tier-price { font-size: 2rem; font-weight: 800; color: var(--accent); line-height: 1.1; }
    .tier-price-note { font-size: 0.8rem; color: var(--text-secondary); margin-top: 0.2rem; margin-bottom: 1.25rem; }
    .tier-desc { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 1.25rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
    .tier-includes { list-style: none; }
    .tier-includes li { font-size: 0.88rem; color: var(--text-primary); padding: 0.4rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.55rem; }
    .tier-includes li:last-child { border-bottom: none; }
    .tier-includes li::before { content: ""; display: inline-block; width: 14px; height: 14px; background: var(--accent-muted); border: 2px solid var(--accent); border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
    .rec-badge { display: inline-block; background: var(--accent); color: #fff; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 0.2rem 0.55rem; border-radius: 999px; margin-left: 0.4rem; vertical-align: middle; }

    /* Pricing table (two-column: without M365 / with M365) */
    .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 1.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
    .pricing-table { width: 100%; border-collapse: collapse; font-family: var(--font-sans); font-size: 0.9rem; min-width: 520px; }
    .pricing-table th { background: #1F3A5F; color: #fff; padding: 0.85rem 1rem; text-align: left; font-weight: 700; font-size: 0.85rem; }
    .pricing-table th.col-tier { text-align: center; }
    .pricing-table th.col-tier-rec { background: #2E75B6; text-align: center; }
    .pricing-table td { padding: 0.7rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; background: var(--bg-surface); color: var(--text-primary); }
    .pricing-table td.col-tier { text-align: center; }
    .pricing-table tbody tr:last-child td { border-bottom: none; }
    .pricing-table tbody tr:nth-child(even) td { background: var(--bg-elevated); }
    .pricing-table td.price-cell { font-size: 1.1rem; font-weight: 800; color: var(--accent); text-align: center; }

    /* How it works callout */
    .callout-box { background: var(--accent-muted); border: 1px solid var(--border); border-left: 4px solid var(--accent); border-radius: var(--radius); padding: 1.25rem 1.5rem; margin: 1.5rem 0; max-width: 720px; }
    .callout-box p { color: var(--text-primary); font-size: 0.95rem; margin: 0; }
    .setup-box { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem 1.25rem; margin-top: 1.5rem; max-width: 720px; font-size: 0.88rem; color: var(--text-secondary); }

    /* Why Wolds differentiation grid */
    .diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem; }
    .diff-card { background: var(--bg-surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; }
    .diff-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .diff-card p { font-size: 0.92rem; color: var(--text-secondary); margin: 0; }

    /* FAQ */
    .faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
    .faq-item p { color: var(--text-secondary); margin: 0; font-size: 0.95rem; }

    /* CTA band */
    .cta-section { background: #0A1020; color: #fff; padding: 4rem 0; text-align: center; }
    .cta-section h2 { color: #fff; margin-bottom: 1rem; }
    .cta-section p { color: rgba(255,255,255,0.78); max-width: 600px; margin: 0 auto 2rem; }
    .cta-contact-details { margin-top: 1.5rem; color: rgba(255,255,255,0.65); font-size: 0.95rem; }
    .cta-contact-details a { color: rgba(255,255,255,0.85); text-decoration: underline; }

    /* Buttons */
    .btn-primary { display: inline-block; background: #2E75B6; color: #fff; text-decoration: none; font-weight: 700; font-size: 1.05rem; padding: 0.85rem 2rem; border-radius: var(--radius); transition: background 0.2s, transform 0.15s; }
    .btn-primary:hover { background: #1F3A5F; color: #fff; transform: translateY(-1px); }
    .btn-ghost { display: inline-block; color: rgba(255,255,255,0.85); text-decoration: underline; font-weight: 600; font-size: 0.95rem; padding: 0.85rem 0; }
    .btn-ghost:hover { color: #fff; }

    /* Nav / mobile (kept in sync with partials) */
    .hamburger { display: none; align-items: center; justify-content: center; background: none; border: none; color: rgba(255,255,255,0.85); cursor: pointer; padding: 0.35rem; border-radius: 6px; }
    .hamburger svg { width: 22px; height: 22px; }
    .theme-toggle { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; padding: 0.35rem; display: flex; align-items: center; border-radius: 6px; }
    .theme-toggle svg { width: 18px; height: 18px; }
    .icon-sun { display: none; }
    [data-theme="dark"] .icon-moon { display: none; }
    [data-theme="dark"] .icon-sun { display: block; }
    .mobile-nav { display: none; flex-direction: column; background: #0A1020; border-top: 1px solid #1A2540; padding: 1rem 1.5rem; }
    .mobile-nav.open { display: flex; }
    .mobile-nav-link { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; font-weight: 500; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .mobile-nav-cta { display: inline-block; background: #2E75B6; color: #fff; text-align: center; text-decoration: none; font-weight: 600; font-size: 0.9rem; padding: 0.75rem 1.5rem; border-radius: 0.5rem; margin-top: 0.75rem; }

    /* Skip link */
    .skip-link { position: absolute; left: -9999px; top: 0; padding: 0.5rem 1rem; background: #2E75B6; color: #fff; font-weight: 700; text-decoration: none; border-radius: 0 0 var(--radius) 0; z-index: 9999; }
    .skip-link:focus { left: 0; }

    @media (max-width: 900px) {
      .tier-grid { grid-template-columns: 1fr; }
      .diff-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 760px) {
      .hamburger { display: flex; }
      .nav-links { display: none; }
      .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 1rem; }
    }
    @media (max-width: 560px) {
      .page-hero, .content-section { padding: 2.5rem 0; }
    }
  
