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

    :root {
      --navy: #0D1B2A;
      --blue-deep: #1A3A5C;
      --blue-mid: #2563EB;
      --blue-light: #3B82F6;
      --accent: #F59E0B;
      --accent-light: #FEF3C7;
      --bg: #F8FAFC;
      --surface: #FFFFFF;
      --border: #E2E8F0;
      --text-primary: #0F172A;
      --text-secondary: #475569;
      --text-muted: #94A3B8;
      --green: #10B981;
      --radius: 12px;
      --shadow: 0 4px 24px rgba(13,27,42,0.08);
      --shadow-lg: 0 12px 48px rgba(13,27,42,0.14);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text-primary);
      line-height: 1.75;
      font-size: 16px;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb {
      background: var(--navy);
      padding: 12px 24px;
      margin-top: 75px;
    }
    .breadcrumb nav {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      gap: 8px;
      align-items: center;
      font-size: 13px;
      color: var(--text-muted);
      flex-wrap: wrap;
    }
    .breadcrumb a { color: #93C5FD; text-decoration: none; }
    .breadcrumb a:hover { color: #fff; }
    .breadcrumb span { color: #64748B; }

    .breadcrumb-schema {
      background: var(--navy);
      padding: 5px 24px;
      margin-top: 75px;
      text-align: center;
      padding-bottom: 0;
    }
    .breadcrumb-schema nav {
      max-width: 1100px;
      margin: 0 auto;
      margin-bottom: -10px;
      display: inline-flex;
      gap: 8px;
      align-items: center;
      font-size: 12px;
      color: #fff;
      flex-wrap: wrap;}
      .breadcrumb-schema span {color: #fff;}
    .breadcrumb-schema ol li {display: inline;}
    .breadcrumb-schema a span { color: #93C5FD; text-decoration: none; }
    .breadcrumb-schema a:hover { color: #fff; }
    .breadcrumb-schema span { color: #64748B; }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 60%, #1E3A5F 100%);
      padding: 72px 24px 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-badge {
      display: inline-block;
      background: rgba(245,158,11,0.18);
      color: var(--accent);
      border: 1px solid rgba(245,158,11,0.35);
      padding: 6px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.04em;
      margin-bottom: 22px;
      text-transform: uppercase;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.18;
      max-width: 880px;
      margin: 0 auto 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--accent);
    }
    .hero-sub {
      color: #CBD5E1;
      font-size: 1.1rem;
      max-width: 680px;
      margin: 0 auto 36px;
    }
    .hero-ctas {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--accent);
      color: #0D1B2A;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      display: inline-block;
    }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,158,11,0.4); }
    .btn-outline {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255,255,255,0.35);
      font-weight: 600;
      font-size: 15px;
      padding: 14px 30px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
      display: inline-block;
    }
    .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

    .hero-stats {
      display: flex;
      gap: 40px;
      justify-content: center;
      margin-top: 52px;
      flex-wrap: wrap;
    }
    .hero-stat { text-align: center; }
    .hero-stat .num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--accent);
      display: block;
    }
    .hero-stat .lbl { color: #94A3B8; font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; }

    /* ── LAYOUT ── */
    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

    /* ── SECTIONS ── */
    .section { padding: 72px 0; }
    .section-alt { background: var(--surface); }

    .section-label {
      display: inline-block;
      color: var(--blue-mid);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 12px;
      background: #EFF6FF;
      padding: 4px 14px;
      border-radius: 100px;
    }

    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.6rem, 3.5vw, 2.4rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.25;
      margin-bottom: 18px;
    }
    h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
      line-height: 1.3;
    }
    p { color: var(--text-secondary); margin-bottom: 18px; }
    p:last-child { margin-bottom: 0; }

    /* ── FEATURE IMAGE ── */
    .feature-img {
      width: 100%;
      border-radius: var(--radius);
      object-fit: cover;
      display: block;
      box-shadow: var(--shadow-lg);
    }
    .img-caption {
      text-align: center;
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 10px;
      font-style: italic;
    }

    /* ── TWO COL ── */
    .two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: center;
    }
    .features .tab-pane h3:after {position: relative; margin: auto; bottom: -15px;}
    .price-cut {font-size: 24px; color: red;}
    
    

    /* ── CARDS ── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 24px;
      margin-top: 40px;
    }
    .card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      box-shadow: var(--shadow);
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .card-icon {
      width: 48px;
      height: 48px;
      background: #EFF6FF;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 22px;
    }

    /* ── PROCESS STEPS ── */
    .process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 24px; margin-top: 40px; }
    .step {
      background: var(--surface);
      border-radius: var(--radius);
      padding: 28px 24px;
      border: 1px solid var(--border);
      position: relative;
    }
    .step-num {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      font-weight: 800;
      color: #EFF6FF;
      position: absolute;
      top: 12px;
      right: 18px;
      line-height: 1;
    }
    .step h3 {padding-right: 40px;}

    /* ── CTA BAND ── */
    .cta-band {
      background: linear-gradient(135deg, var(--blue-mid), var(--blue-deep));
      border-radius: 16px;
      padding: 56px 40px;
      text-align: center;
      margin: 64px 0;
    }
    .cta-band h2 { color: #fff; margin-bottom: 14px; }
    .cta-band p { color: #BFDBFE; margin-bottom: 30px; max-width: 580px; margin-left: auto; margin-right: auto; }

    /* ── WHY TABLE ── */
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 32px;
      font-size: 15px;
    }
    .compare-table th {
      background: var(--navy);
      color: #fff;
      padding: 14px 20px;
      text-align: left;
      font-weight: 600;
    }
    .compare-table td {
      padding: 14px 20px;
      border-bottom: 1px solid var(--border);
      color: var(--text-secondary);
      vertical-align: top;
    }
    .compare-table tr:nth-child(even) td { background: #F8FAFC; }
    .check { color: var(--green); font-weight: 700; font-size: 17px; }
    .cross { color: #EF4444; font-size: 17px; }

    /* ── SERVICES LIST ── */
    .services-list { list-style: none; margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    
    .services-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 15px;
      color: var(--text-secondary);
    }
    .services-list li .dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: #DBEAFE;
      color: var(--blue-mid);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── TESTIMONIAL ── */
    .testimonial-card {
      background: var(--navy);
      color: #fff;
      border-radius: 16px;
      padding: 40px;
      margin-top: 48px;
      position: relative;
    }
    .testimonial-card::before {
      content: '"';
      font-family: 'Playfair Display', serif;
      font-size: 8rem;
      color: rgba(255,255,255,0.06);
      position: absolute;
      top: -10px;
      left: 24px;
      line-height: 1;
    }
    .testimonial-card p { color: #CBD5E1; font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
    .testimonial-meta { font-size: 14px; color: var(--accent); font-weight: 600; }

    /* ── PRICING ── */
    .pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
    .pricing-card {
      background: var(--surface);
      border: 2px solid var(--border);
      border-radius: var(--radius);
      padding: 36px 28px;
      text-align: center;
      transition: transform 0.2s;
    }
    .pricing-card.featured {
      border-color: var(--blue-mid);
      background: linear-gradient(160deg, #EFF6FF, #fff);
      transform: scale(1.03);
      box-shadow: var(--shadow-lg);
    }
    .pricing-card .price {
      font-family: 'Playfair Display', serif;
      font-size: 2.6rem;
      font-weight: 800;
      color: var(--navy);
      margin: 12px 0 4px;
    }
    .pricing-card .price span { font-size: 1rem; color: var(--text-muted); font-family: 'Inter', sans-serif; font-weight: 400; }
    .pricing-card .plan-name { font-weight: 700; font-size: 1.1rem; color: var(--blue-mid); text-transform: uppercase; letter-spacing: 0.06em; }
    .pricing-card ul { list-style: none; text-align: left; margin: 22px 0 28px; display: flex; flex-direction: column; gap: 10px; }
    .pricing-card ul li { font-size: 14px; color: var(--text-secondary); padding-left: 26px; position: relative; }
    .pricing-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

    /* ── FAQ ── */
    .faq-list { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 0;
      overflow: hidden;
    }
    .faq-q {
      padding: 20px 24px;
      font-weight: 600;
      font-size: 15.5px;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      user-select: none;
    }
    .faq-q::after { content: '+'; font-size: 20px; color: var(--blue-mid); font-weight: 400; flex-shrink: 0; }
    .faq-item.open .faq-q::after { content: '−'; }
    .faq-a {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.75;
    }
    .faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

    /* ── CONTACT ── */
    .contact-strip {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      margin-top: 36px;
    }
    .contact-box {
      flex: 1;
      min-width: 200px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .contact-icon { font-size: 28px; }
    .contact-box a { color: var(--blue-mid); text-decoration: none; font-weight: 600; font-size: 15px; }
    .contact-box .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }

    /* ── IMAGE GRID ── */
    .img-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 36px; }
    
    .img-grid img { border-radius: var(--radius); width: 100%; object-fit: cover; height: 220px; box-shadow: var(--shadow); }

    /* ── HIGHLIGHT BOX ── */
    .highlight-box {
      background: var(--accent-light);
      border-left: 4px solid var(--accent);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 20px 24px;
      margin: 28px 0;
      color: #78350F;
      font-size: 15px;
      font-weight: 500;
    }

    /* ── FOOTER STRIP ── */
    .footer-strip {
      background: var(--navy);
      padding: 36px 24px;
      text-align: center;
      color: #64748B;
      font-size: 13px;
    }
    .footer-strip a { color: #93C5FD; text-decoration: none; }
    td:first-child { color: var(--text-muted);}
    ul li { color: var(--text-secondary);}
    ol li { color: var(--text-secondary);}

    @media (max-width: 768px) {
      .section { padding: 52px 0; }
      .cta-band { padding: 40px 24px; }
      .hero { padding: 52px 24px 60px; }
      .hero-stats { gap: 24px; }
      .two-col { grid-template-columns: 1fr; gap: 36px; }
      .breadcrumb {margin-top: 50px;}
      .breadcrumb-schema  {margin-top: 50px;}
      .process-steps { grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));}
    }

    @media (max-width: 600px) {
       .services-list { grid-template-columns: 1fr; }
       .img-grid { grid-template-columns: 1fr;
      }
    }
    
