    :root {
      --navy: #0D1B2A;
      --navy-mid: #1A2E45;
      --steel: #2C4A6E;
      --accent: #1847f5;
      --accent-light: #4e94f8;
      --gold: #a6cbff;
      --white: #FFFFFF;
      --off-white: #F7F8FA;
      --gray-100: #EEF0F4;
      --gray-300: #C4C9D4;
      --gray-500: #7A8499;
      --gray-700: #3D4456;
      --text: #1C2333;
      --radius: 8px;
      --shadow: 0 4px 24px rgba(13,27,42,0.12);
      --shadow-lg: 0 12px 48px rgba(13,27,42,0.18);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Georgia', 'Times New Roman', serif;
      font-size: 17px;
      line-height: 1.75;
      color: var(--text);
      background: var(--white);
    }

    /* Typography system */
    h1, h2, h3, h4, h5 {
      font-family: 'Arial Black', 'Helvetica Neue', Arial, sans-serif;
      line-height: 1.2;
      font-weight: 900;
      letter-spacing: -0.02em;
    }

    h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
    h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
    h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
    h4 { font-size: 1.1rem; font-weight: 700; font-family: Arial, sans-serif; }

    p { margin-bottom: 1.2em; color: var(--gray-700); }
    a { color: var(--accent); text-decoration: none; }
    a:hover { text-decoration: underline; }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
    .container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      background: var(--navy);
      padding: 2px 0 0 0;
      font-family: Arial, sans-serif;
      font-size: 13px;
      margin-top: 40px;
    }
    .breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-bottom: 2px; }
    .breadcrumb li { color: var(--gray-300); }
    .breadcrumb li + li::before { content: '›'; margin-right: 6px; color: var(--gray-500); }
    .breadcrumb a { color: var(--gray-300); }
    .breadcrumb li:last-child { color: var(--gold); font-weight: 600; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, var(--steel) 100%);
      position: relative;
      overflow: hidden;
      padding: 100px 0 80px;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1467269204594-9661b134dd2b?w=1400&q=80') center/cover no-repeat;
      opacity: 0.08;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(108, 48, 248, 0.2);
      border: 1px solid var(--accent);
      color: var(--accent-light);
      font-family: Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }
    .hero h1 { color: var(--white); margin-bottom: 22px; }
    .hero h1 span { color: var(--gold); }
    .hero-lead {
      font-size: 1.15rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 36px;
      font-family: Arial, sans-serif;
      font-weight: 400;
      line-height: 1.65;
    }
    .hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 15px 32px;
      border-radius: var(--radius);
      font-family: Arial, sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.2s;
      text-decoration: none;
    }
    .btn--primary { background: var(--accent); color: var(--white); }
    .btn--primary:hover { background: var(--accent-light); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
    .btn--outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
    .btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); text-decoration: none; }
    .btn--accent-outline { background: transparent; color: var(--accent); border: 2px solid var(--accent); }
    .btn--accent-outline:hover { background: var(--accent); color: var(--white); text-decoration: none; }

    .hero-image-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .hero-image-card img { width: 100%; height: 340px; object-fit: cover; display: block; }
    .hero-stat-row {
      display: flex;
      justify-content: space-around;
      padding: 20px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }
    .hero-stat { text-align: center; }
    .hero-stat strong { display: block; color: var(--gold); font-family: Arial Black, sans-serif; font-size: 1.6rem; }
    .hero-stat span { color: rgba(255,255,255,0.65); font-family: Arial, sans-serif; font-size: 12px; }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--gray-100); border-bottom: 1px solid var(--gray-300); padding: 18px 0; }
    .trust-bar-inner { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: center; }
    .trust-item { display: flex; align-items: center; gap: 8px; font-family: Arial, sans-serif; font-size: 13px; font-weight: 600; color: var(--gray-700); }
    .trust-item svg { color: var(--accent); flex-shrink: 0; }

    /* ── SECTION BASICS ── */
    .section { padding: 80px 0; }
    .section--alt { background: var(--off-white); }
    .section--dark { background: var(--navy); color: var(--white); }
    .section--dark p { color: rgba(255,255,255,0.75); }
    .section--dark h2, .section--dark h3 { color: var(--white); }

    .eyebrow {
      font-family: Arial, sans-serif;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--accent);
      margin-bottom: 12px;
    }
    .section-intro { max-width: 640px; color: var(--gray-500); font-family: Arial, sans-serif; font-size: 1.05rem; line-height: 1.7; margin-bottom: 56px; }

    /* ── SERVICE CARDS ── */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-100);
      border-radius: 12px;
      padding: 32px 28px;
      transition: all 0.25s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    .service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
    .service-card:hover::before { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px;
      background: rgba(232,83,26,0.1);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
      font-size: 22px;
    }
    .service-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--navy); }
    .service-card p { font-size: 0.93rem; margin: 0; line-height: 1.65; }
    .card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 16px; }
    .tag { font-size: 11px; font-weight: 600; background: var(--bg-alt); color: var(--ink-soft); border-radius: 100px; padding: 3px 10px; }

    /* ── Platforms ── */
    .platforms__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
    .platform { background: var(--white); border-radius: var(--radius-lg); padding: 40px; border: 1.5px solid #e8ecf4; box-shadow: var(--shadow-sm); }
    .platform__header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
    .platform__logo { width: 56px; height: 56px; border-radius: var(--radius); overflow: hidden; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 26px; }
    .platform__name { font-size: 1.4rem; font-weight: 800; }
    .platform__name span { display: block; font-size: 13px; font-weight: 500; color: var(--ink-light); margin-top: 2px; }
    .platform ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .platform ul li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-soft); }
    .platform ul li::before { content: '→'; color: var(--accent); font-weight: 700; flex-shrink: 0; }


    /* ── WHY SECTION ── */
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .why-image { border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); }
    .why-image img { width: 100%; height: 420px; object-fit: cover; display: block; }
    .why-points { list-style: none; margin: 28px 0 36px; }
    .why-points li {
      display: flex; gap: 16px; align-items: flex-start;
      padding: 14px 0; border-bottom: 1px solid var(--gray-100);
    }
    .why-points li:last-child { border-bottom: none; }
    .why-check {
      width: 28px; height: 28px; background: var(--accent); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 2px;
      color: white; font-size: 13px; font-weight: 700;
    }
    .why-points strong { display: block; font-family: Arial, sans-serif; color: var(--navy); font-size: 0.95rem; }
    .why-points span { font-size: 0.88rem; color: var(--gray-500); }

    /* ── PROCESS ── */
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; }
    .step { padding: 36px 28px; position: relative; }
    .step:not(:last-child)::after {
      content: '→';
      position: absolute; right: -12px; top: 50%;
      transform: translateY(-50%);
      color: var(--accent); font-size: 1.4rem; z-index: 1;
    }
    .step-num {
      font-family: Arial Black, sans-serif;
      font-size: 3rem;
      font-weight: 900;
      color: rgba(232,83,26,0.12);
      line-height: 1;
      margin-bottom: 12px;
    }
    .step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; }
    .step p { font-size: 0.88rem; margin: 0; }

    /* ── CONTENT ARTICLE ── */
    .article-body h2 { color: var(--navy); margin: 48px 0 16px; padding-top: 8px; border-top: 3px solid var(--accent); display: inline-block; }
    .article-body h3 { color: var(--navy-mid); margin: 32px 0 12px; }
    .article-body p { color: var(--gray-700); }
    .article-body ul { margin: 0 0 1.2em 1.5em; }
    .article-body ul li { margin-bottom: 8px; color: var(--gray-700); font-size: 0.95rem; }
    .article-body strong { color: var(--navy); }

    .article-image {
      width: 100%; border-radius: 12px; overflow: hidden;
      margin: 36px 0; box-shadow: var(--shadow);
    }
    .article-image img { width: 100%; max-height: 420px; object-fit: cover; display: block; }
    .article-image figcaption {
      background: var(--gray-100); padding: 10px 18px;
      font-family: Arial, sans-serif; font-size: 13px; color: var(--gray-500);
    }

    /* ── PRICING TABLE ── */
    .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .pricing-card {
      background: var(--white);
      border: 2px solid var(--gray-100);
      border-radius: 16px;
      padding: 36px 28px;
      text-align: center;
      position: relative;
      transition: all 0.25s;
    }
    .pricing-card.featured {
      border-color: var(--accent);
      transform: scale(1.04);
      box-shadow: var(--shadow-lg);
    }
    .pricing-card.featured::before {
      content: 'Most Popular';
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: var(--accent); color: white;
      font-family: Arial, sans-serif; font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 4px 16px; border-radius: 100px;
    }
    .pricing-card h3 { color: var(--navy); margin-bottom: 8px; }
    .pricing-price { font-family: Arial Black, sans-serif; font-size: 2.4rem; color: var(--accent); font-weight: 900; margin: 16px 0 4px; }
    .pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
    .pricing-desc { font-family: Arial, sans-serif; font-size: 13px; color: var(--gray-500); margin-bottom: 24px; }
    .pricing-features { list-style: none; text-align: left; margin-bottom: 28px; }
    .pricing-features li { padding: 8px 0; border-bottom: 1px solid var(--gray-100); font-family: Arial, sans-serif; font-size: 14px; color: var(--gray-700); display: flex; gap: 8px; align-items: center; }
    .pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

    /* ── TESTIMONIALS ── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 12px;
      padding: 28px 24px;
    }
    .stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
    .testimonial-card blockquote { color: rgba(255,255,255,0.8); font-size: 0.93rem; margin: 0 0 20px; line-height: 1.7; }
    .reviewer { display: flex; align-items: center; gap: 12px; }
    .reviewer-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--steel); display: flex; align-items: center; justify-content: center;
      font-family: Arial Black, sans-serif; font-weight: 900; font-size: 1rem; color: var(--gold);
    }
    .reviewer-name { font-family: Arial, sans-serif; font-size: 14px; font-weight: 700; color: var(--white); }
    .reviewer-title { font-family: Arial, sans-serif; font-size: 12px; color: rgba(255,255,255,0.5); }

    /* ── FAQ ── */
    .faq-list { display: flex; flex-direction: column; gap: 0; }
    .faq-item { border-bottom: 1px solid var(--gray-100); }
    .faq-question {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      padding: 22px 0; text-align: left;
      font-family: Arial, sans-serif; font-size: 1rem; font-weight: 700;
      color: var(--navy);
    }
    .faq-question:hover { color: var(--accent); }
    .faq-icon { font-size: 1.4rem; color: var(--accent); flex-shrink: 0; line-height: 1; transition: transform 0.2s; }
    .faq-answer {
      font-size: 0.93rem; color: var(--gray-700);
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
      font-family: Arial, sans-serif; line-height: 1.7;
    }
    .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    /* ── CTA SECTION ── */
    .cta-section {
      background: linear-gradient(135deg, var(--accent) 0%, #C0410E 100%);
      padding: 80px 0;
      text-align: center;
    }
    .cta-section h2 { color: var(--white); margin-bottom: 16px; }
    .cta-section p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; font-family: Arial, sans-serif; }
    .btn--white { background: var(--white); color: var(--accent); }
    .btn--white:hover { background: var(--off-white); text-decoration: none; transform: translateY(-1px); }
    .btn--white-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.6); }
    .btn--white-outline:hover { border-color: white; background: rgba(255,255,255,0.1); text-decoration: none; }

    /* ── FOOTER NAV ── */
    .page-footer { background: var(--navy); padding: 36px 0; border-top: 1px solid rgba(255,255,255,0.08); }
    .footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
    .footer-inner p { color: rgba(255,255,255,0.45); font-family: Arial, sans-serif; font-size: 13px; margin: 0; }
    .footer-links { gap: 20px; }
    .footer-links a { color: rgba(255,255,255,0.5); font-family: Arial, sans-serif; font-size: 13px; }
    .footer-links a:hover { color: var(--white); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
      .step:not(:last-child)::after { display: none; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }
      .testimonials-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .breadcrumb {
      margin-top: 30px;
    }
      .hero { padding: 60px 0 50px; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr; }
      .section { padding: 56px 0; }
      .hero-stat-row { flex-direction: column; gap: 12px; }
    }