*, *::before, *::after {
    margin: 0; padding: 0; box-sizing: border-box;
  }
  
  :root {
    --blue: #1a56ff;
    --blue-mid: #4f75ff;
    --blue-light: #e8edff;
    --cyan: #00d4ff;
    --dark: #111320;
    --muted: #6b7280;
    --white: #ffffff;
    --off: #f7f8fc;
    --border: #e2e6f0;
  }
  
  body {
    background: var(--white);
    color: var(--dark);
    font-family: 'Inter', system-ui, sans-serif;
  }
  
  /* =========================
     HERO
  ========================= */
  .first-section {
    background: linear-gradient(135deg, #0d1526 0%, #0f2044 50%, #0a1a3a 100%);
    position: relative;
    overflow: hidden;
  }
  
  .first-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }
  
  .first-section::after {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 600px; height: 600px;
    background: radial-gradient(ellipse, rgba(26,86,255,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  
  /* Back */
  .back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
    cursor: pointer;
    text-decoration: none !important;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
  }
  
  .back:hover { opacity: 0.75; transform: translateX(-3px); }
  
  .back .bi {
    color: rgba(255,255,255,0.6) !important;
    font-size: 1.1rem;
  }
  
  .back h3 {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.6) !important;
    letter-spacing: 0.3px;
    margin: 0;
  }
  
  /* Hero row */
  .all-rounder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 5vw, 5rem);
    max-width: 1300px;
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4rem) clamp(1.5rem, 5vw, 3rem) clamp(4rem, 7vw, 6rem);
    position: relative;
    z-index: 1;
  }
  
  /* Coming Soon badge */
  .agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.6) !important;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 1.25rem;
  }
  
  .soon-dot {
    width: 6px; height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 50%;
    display: inline-block;
  }
  
  .all-rounder .agent-content { flex: 1; max-width: 620px; }
  
  .all-rounder .agent-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  
  .all-rounder .agent-content h3 {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: var(--cyan) !important;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  
  .all-rounder .agent-content p {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.85;
    color: rgba(255,255,255,0.65) !important;
    font-weight: 300;
  }
  
  .all-rounder .agent-image { flex: 1; max-width: 560px; }
  
  .all-rounder .agent-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  
  /* =========================
     KEY FEATURES
  ========================= */
  .second-sector {
    background: var(--white);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  }
  
  .key {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  /* =========================
     BENEFITS
  ========================= */
  .third-sector {
    background: var(--off);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
  }
  
  .Benifites {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  
  /* Shared */
  .section-label {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue) !important;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
  }
  
  .key h1,
  .Benifites h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--dark) !important;
    letter-spacing: -1.5px;
    line-height: 1.1;
    margin-bottom: 2.5rem;
  }
  
  /* Items grid */
  .items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .item-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
  }
  
  .third-sector .item-card { background: var(--white); }
  
  .item-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    opacity: 0;
    transition: opacity 0.25s ease;
  }
  
  .item-card:hover {
    border-color: var(--blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(26,86,255,0.1);
  }
  
  .item-card:hover::before { opacity: 1; }
  
  .circle {
    font-size: 1.3rem;
    color: var(--blue) !important;
    flex-shrink: 0;
    margin-top: 2px;
    transition: color 0.25s ease;
  }
  
  .item-card:hover .circle { color: var(--blue-mid) !important; }
  
  .item-card div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
  
  .item-card strong {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 600;
    color: var(--dark) !important;
    line-height: 1.4;
  }
  
  .item-card span {
    font-size: clamp(12px, 1.1vw, 14px);
    color: var(--muted) !important;
    line-height: 1.7;
    font-weight: 300;
  }
  
  /* =========================
     CTA
  ========================= */
  .fourth-sector {
    background: linear-gradient(135deg, #0d1526 0%, #0f2044 60%, #061030 100%);
    padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
    position: relative;
    overflow: hidden;
  }
  
  .fourth-sector::before {
    content: '';
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: min(700px, 90vw); height: 500px;
    background: radial-gradient(ellipse, rgba(26,86,255,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  
  .Explore {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  .Explore h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff !important;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0;
  }
  
  .Explore p {
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 300;
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.75;
    max-width: 560px;
    margin: 0;
  }
  
  .card-link { text-decoration: none !important; }
  .card-link:hover { text-decoration: none !important; }
  
  .btn { margin-top: 0.5rem; }
  
  .btn .all {
    padding: 13px 36px;
    height: auto; width: auto;
    border: none;
    border-radius: 8px;
    background: var(--blue);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(26,86,255,0.35);
  }
  
  .btn .all:hover {
    background: var(--blue-mid);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(26,86,255,0.45);
    color: #fff !important;
  }
  
  /* =========================
     RESPONSIVE
  ========================= */
  @media (max-width: 768px) {
    .all-rounder { flex-direction: column; padding-bottom: 3rem; }
    .all-rounder .agent-content,
    .all-rounder .agent-image { max-width: 100%; }
    .items-grid { grid-template-columns: 1fr; }
    .all-rounder .agent-content h1 { letter-spacing: -1px; }
  }
  
  @media (max-width: 480px) {
    .Explore h1 { letter-spacing: -1px; }
    .btn .all { width: 100%; }
  }