   :root {
      --grad-start: #a52a2a;
      --grad-mid1: #64311a;
      --grad-mid2: #a52a2a;
      --grad-end: #000000;
      --accent: #6a1424;
      --accent-blue: #a52a2a;
      --bg: #fffdfd;
      --surface: #ffffff;
      --surface-2: #f0f2fa;
      --border: #e2e4f0;
      --text-primary: #0d0d1a;
      --text-body: #2e2e42;
      --text-muted: #6b6b88;
      --shadow-sm: 0 2px 12px rgba(0,36,187,0.07);
      --shadow-md: 0 8px 32px rgba(0,36,187,0.11);
      --shadow-lg: 0 24px 64px rgba(122,22,131,0.13);
    }
 

 
    body {
      
      background: var(--bg);
      color: var(--text-body);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }
 
   
    /* ─── HERO ─── */
    .hero {
      padding: 50px;
      max-width: 1200px;
      margin: 0 auto;
      gap: 64px;
      align-items: center;
    }
 
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, rgba(0,36,187,0.08), rgba(122,22,131,0.08));
      border: 1px solid rgba(122,22,131,0.18);
      border-radius: 100px;
      padding: 6px 16px;
      font-size: 12px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.8px;
      text-transform: uppercase;
      margin-bottom: 24px;
    }
 
    .hero-badge span {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2s infinite;
    }
 
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.5; transform: scale(1.4); }
    }
 
    .hero h1 {
      
      font-size: 44px;
      font-weight: 800;
      line-height: 1.13;
      letter-spacing: -1.5px;
      background: -webkit-linear-gradient(135deg, var(--grad-start), var(--grad-mid2), var(--grad-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
    }
 
    .hero-desc {
      font-size: 17px;
      color: var(--text-body);
      line-height: 1.75;
    }
 
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--grad-start), var(--grad-mid2));
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 4px 24px rgba(0,36,187,0.25);
      transition: transform 0.2s, box-shadow 0.2s;
      letter-spacing: 0.2px;
    }
 
    .hero-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,36,187,0.32);
    } 
 
    /* ─── SECTION WRAPPER ─── */
    .section {
      padding: 96px 48px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    .section-label {
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
 
    .section-title {
      
      font-size: 38px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.8px;
      background: -webkit-linear-gradient(135deg, var(--grad-start), var(--grad-mid2), var(--grad-end));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 16px;
    }
 
    .section-intro {
      font-size: 16px;
      color: var(--text-body);   
      line-height: 1.75;
      margin-bottom: 56px;
    }
 
    /* ─── DIVIDER ─── */
    .divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--border), transparent);
      margin: 0 48px;
    }
 
    /* ─── PUBLICATION INSIGHTS ─── */
    .insights-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
      margin-bottom: 48px;
    }
 
    .insight-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      position: relative;
      overflow: hidden;
    }
 
    .insight-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--grad-start), var(--grad-mid2));
      opacity: 0;
      transition: opacity 0.25s;
    }
 
    .insight-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(122,22,131,0.2);
    }
 
    .insight-card:hover::before {
      opacity: 1;
    }
 
    .insight-number {
      
      font-size: 14px;
      font-weight: 700;
      color: var(--accent);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
 
    .insight-text {
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.7;
    }
 
    .insight-text strong {
      color: var(--text-primary);
      font-weight: 600;
    }
 
    .outro-text {
      font-size: 16px;
      color: var(--text-body);
      line-height: 1.75;
      max-width: 720px;
    }
 
    /* ─── PROCESS STEPS ─── */
    .process-bg {
      background: var(--surface-2);
    }
 
    .steps-timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 0;
    }
 
    .steps-timeline::before {
      content: '';
      position: absolute;
      left: 27px;
      top: 28px;
      bottom: 28px;
      width: 2px;
      background: linear-gradient(180deg, var(--grad-start), var(--grad-mid2), var(--grad-end));
      border-radius: 2px;
    }
 
    .step-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 24px;
      align-items: flex-start;
      padding: 20px 0;
      position: relative;
    }
 
    .step-dot {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: var(--surface);
      border: 2px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
      transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
      box-shadow: var(--shadow-sm);
    }
 
    .step-item:hover .step-dot {
      border-color: var(--accent);
      background: linear-gradient(135deg, rgba(0,36,187,0.06), rgba(122,22,131,0.06));
      box-shadow: 0 0 0 6px rgba(122,22,131,0.07), var(--shadow-sm);
    }
 
    .step-num {
      
      font-size: 17px;
      font-weight: 700;
      background: -webkit-linear-gradient(135deg, var(--grad-start), var(--grad-mid2));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
 
    .step-content {
      padding: 14px 0 14px 0;
    }
 
    .step-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 6px;
      letter-spacing: -0.2px;
    }
 
    .step-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }
 
    .steps-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 80px;
    }
 
    /* ─── SERVICES ─── */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
    }
 
    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 32px 28px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
 
    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
    }
 
    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(0,36,187,0.09), rgba(122,22,131,0.09));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }
 
    .service-name {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-primary);
      letter-spacing: -0.2px;
    }
 
    .service-desc {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.65;
    }
 
    .services-outro {
      margin-top: 40px;
      font-size: 16px;
      color: var(--text-body);
      max-width: 680px;
      line-height: 1.75;
    }
 
    /* ─── CONTACT STRIP ─── */
    .contact-strip {
          background: linear-gradient(135deg, #a52a2a 0%, #4f4234 50%, #000000 100%);
      padding: 0;
      position: relative;
      overflow: hidden;
       border-radius: 20px;
       margin: 30px;
    }
 
    .contact-strip::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");
    }
 
    .contact-inner {
      max-width: 1200px;
      margin: 0px auto;
      padding: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      position: relative;
     
    }
 
    .contact-left h3 {
      
      font-size: 28px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 8px;
    }
 
    .contact-left p {
      font-size: 15px;
      color: rgba(255,255,255,0.72);
    }
 
    .contact-right {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
 
    .contact-item {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 18px 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      backdrop-filter: blur(8px);
      transition: background 0.25s;
    }
 
    .contact-item:hover {
      background: rgba(255,255,255,0.16);
    }
 
    .contact-icon {
      font-size: 20px;
    }
 
    .contact-type {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 3px;
    }
 
    .contact-value {
      font-size: 15px;
      font-weight: 600;
      color: #ffffff;
    }