      /* ============================================================
         Kaycee Professional Services — Shared Subpage Styles
         Refined-blue design system matching the homepage
         ============================================================ */

      :root {
        /* Refined professional blue */
        --primary: #2563eb;
        --primary-hover: #1d4ed8;
        --primary-light: #3b82f6;
        --sky: #60a5fa;
        --dark: #0f172a;
        --darker: #020617;
        --light: #f8fafc;
        --lighter: #f1f5f9;
        --text: #334155;
        --text-muted: #64748b;
        --border: #e2e8f0;
        /* Gradients */
        --grad-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 50%, #60a5fa 100%);
        --grad-dark: linear-gradient(135deg, #020617 0%, #0f172a 60%, #1e293b 100%);
        /* Shadows */
        --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
        --shadow-md: 0 8px 28px rgba(15, 23, 42, 0.08);
        --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.12);
        --shadow-blue: 0 12px 32px rgba(37, 99, 235, 0.28);
        /* Motion */
        --ease: cubic-bezier(0.4, 0, 0.2, 1);
      }

      * {
        box-sizing: border-box;
      }

      body {
        font-family: "Inter", sans-serif;
        background: var(--light);
        color: var(--text);
        margin: 0;
        line-height: 1.6;
        overflow-x: hidden;
      }

      html {
        scroll-behavior: smooth;
      }

      a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s;
      }

      /* ---------- Layout ---------- */
      .container {
        max-width: 940px;
        margin: 0 auto;
        padding: 0 24px;
      }

      /* ---------- Header / Nav ---------- */
      header {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(14px) saturate(1.5);
        -webkit-backdrop-filter: blur(14px) saturate(1.5);
        border-bottom: 1px solid var(--border);
        padding: 16px 0;
        position: sticky;
        top: 0;
        z-index: 50;
      }

      .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
      }

      .brand h1 {
        margin: 0;
        font-size: 18px;
        color: var(--darker);
      }

      .brand p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--text-muted);
      }

      .back-link {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary);
        transition: transform 0.25s var(--ease), color 0.25s var(--ease);
        display: inline-block;
      }

      .back-link:hover {
        color: var(--primary-hover);
        transform: translateX(-4px);
      }

      /* ---------- Page hero ---------- */
      .page-hero {
        background: var(--grad-dark);
        color: white;
        padding: 72px 0 64px;
        position: relative;
        overflow: hidden;
      }

      .page-hero::before {
        content: "";
        position: absolute;
        top: -40%;
        right: -20%;
        width: 480px;
        height: 480px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 65%);
        pointer-events: none;
      }

      .page-hero::after {
        content: "";
        position: absolute;
        bottom: -120px;
        left: -80px;
        width: 360px;
        height: 360px;
        background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 65%);
        pointer-events: none;
      }

      .page-hero .container {
        position: relative;
        z-index: 1;
      }

      .page-hero img {
        width: 100%;
        max-height: 300px;
        object-fit: cover;
        border-radius: 18px;
        margin-top: 28px;
        box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
      }

      .eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 12px;
        font-weight: 700;
        color: var(--sky);
        margin-bottom: 12px;
      }

      .page-hero h1 {
        font-size: 2.6em;
        margin: 0 0 14px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.02em;
      }

      .page-hero .lead {
        font-size: 1.12em;
        color: #cbd5e1;
        max-width: 660px;
        margin: 0;
      }

      /* ---------- Main / sections ---------- */
      main {
        padding: 56px 0 72px;
      }

      .section-block {
        margin-bottom: 48px;
      }

      h2 {
        font-size: 1.45em;
        color: var(--darker);
        margin: 0 0 18px;
        font-weight: 700;
        letter-spacing: -0.01em;
      }

      .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
      }

      /* ---------- Info cards ---------- */
      .info-card {
        background: white;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 26px;
        box-shadow: var(--shadow-sm);
        transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
          border-color 0.4s var(--ease);
      }

      .info-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
        border-color: rgba(59, 130, 246, 0.3);
      }

      .info-card h3 {
        margin: 0 0 10px;
        font-size: 1.08em;
        color: var(--darker);
      }

      .info-card p {
        margin: 0;
        font-size: 0.96em;
      }

      /* ---------- Includes list ---------- */
      ul.includes {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      ul.includes li {
        background: white;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 14px 16px;
        font-size: 0.95em;
        font-weight: 500;
        transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
          border-color 0.3s var(--ease);
      }

      ul.includes li:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-sm);
        border-color: rgba(59, 130, 246, 0.3);
      }

      ul.includes li::before {
        content: "✓ ";
        color: var(--primary);
        font-weight: 700;
      }

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

      .step {
        background: white;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 24px;
        box-shadow: var(--shadow-sm);
        transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
      }

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

      .step-num {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 32px;
        height: 32px;
        background: var(--grad-primary);
        color: white;
        border-radius: 50%;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 12px;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
      }

      .step h3 {
        margin: 0 0 8px;
        font-size: 1.02em;
        color: var(--darker);
      }

      .step p {
        margin: 0;
        font-size: 0.9em;
      }

      /* ---------- Pricing ---------- */
      .pricing-box {
        background: white;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 28px;
        box-shadow: var(--shadow-sm);
      }

      .price-row {
        display: flex;
        justify-content: space-between;
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
        font-size: 0.97em;
        transition: background 0.25s, padding 0.25s;
      }

      .price-row:hover {
        background: rgba(241, 245, 249, 0.6);
        border-radius: 8px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: -10px;
        margin-right: -10px;
      }

      .price-row:last-child {
        border-bottom: none;
      }

      .price-row strong {
        color: var(--darker);
      }

      .pricing-note {
        margin-top: 14px;
        font-size: 0.9em;
        color: var(--text-muted);
      }

      .pricing-note a {
        color: var(--primary);
        font-weight: 500;
      }

      /* ---------- Notice ---------- */
      .notice {
        background: var(--grad-sheen, linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(96, 165, 250, 0.04)));
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.03));
        border-left: 4px solid var(--primary);
        border-radius: 0 12px 12px 0;
        padding: 18px 22px;
        font-size: 0.93em;
        color: var(--text);
      }

      /* ---------- Contact section ---------- */
      .contact-section {
        background: white;
        border: 1px solid var(--border);
        border-radius: 22px;
        padding: 36px;
        box-shadow: var(--shadow-md);
      }

      .contact-section h2 {
        margin-top: 0;
      }

      .contact-email {
        display: inline-block;
        margin: 0 0 22px;
        font-weight: 600;
        color: var(--primary);
      }

      .contact-email:hover {
        text-decoration: underline;
      }

      /* ---------- Forms ---------- */
      .form-group {
        margin-bottom: 18px;
      }

      label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: var(--darker);
      }

      input,
      textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1.5px solid var(--border);
        font-size: 1em;
        font-family: inherit;
        outline: none;
        background: var(--light);
        color: var(--darker);
        transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      }

      input:focus,
      textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
        background: white;
      }

      .submit-btn {
        background: var(--grad-primary);
        color: white;
        padding: 14px 24px;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        cursor: pointer;
        font-size: 1em;
        box-shadow: var(--shadow-blue);
        transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
      }

      .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(37, 99, 235, 0.42);
      }

      .submit-btn:disabled {
        cursor: not-allowed;
        opacity: 0.7;
      }

      .btn-spinner {
        display: inline-block;
        width: 18px;
        height: 18px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s linear infinite;
        vertical-align: middle;
        margin-left: 8px;
      }

      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      .form-status {
        margin-top: 16px;
        padding: 12px 14px;
        border-radius: 10px;
        font-size: 0.97em;
        font-weight: 500;
        animation: fadeUp 0.3s ease;
      }

      .form-status:not([style*="color"]) {
        /* default no styling until inline color is set by JS */
      }

      /* ---------- Footer ---------- */
      footer {
        text-align: center;
        padding: 28px;
        font-size: 14px;
        color: var(--text-muted);
        border-top: 1px solid var(--border);
        background: white;
      }

      footer a {
        color: var(--primary);
        font-weight: 600;
      }

      .footer-email {
        display: block;
        margin-top: 6px;
        color: var(--text-muted);
      }

      .footer-email a {
        color: var(--primary);
        font-weight: 500;
      }

      /* ============================================================
         Scroll-reveal animations (driven by IntersectionObserver)
         ============================================================ */
      .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
      }

      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }

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

      /* ============================================================
         Responsive — mobile, tablet, desktop
         ============================================================ */

      @media (max-width: 700px) {
        .grid2,
        ul.includes,
        .steps {
          grid-template-columns: 1fr;
        }

        .page-hero {
          padding: 52px 0 48px;
        }

        .page-hero h1 {
          font-size: 1.9em;
        }

        main {
          padding: 40px 0 56px;
        }

        .section-block {
          margin-bottom: 36px;
        }

        .contact-section {
          padding: 24px;
        }

        .info-card,
        .step,
        .pricing-box {
          padding: 20px;
        }

        .brand h1 {
          font-size: 16px;
        }
      }

      @media (max-width: 420px) {
        .page-hero h1 {
          font-size: 1.65em;
        }
      }

      /* Respect reduced-motion preferences */
      @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
          scroll-behavior: auto !important;
        }
      }
