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

    /* ─── Outer wrapper ─── */
    .eaeve-wrapper {
      width: 100%;
      padding: 40px 80px;
      overflow: hidden;
      display: flex;
      justify-content: center;
    }

    /* ─── Card wrapper ─── */
    .eaeve-card {
      display: grid;
      grid-template-columns: 260px 1fr;
      border-radius: 20px;
      overflow: hidden;
      border: 0.5px solid #e2e0f0;
      background: #fff;
      max-width: 860px;
      width: 100%;
      box-shadow: 0 8px 40px rgba(95, 86, 200, 0.08);
    }

    /* ─── Left panel ─── */
    .eaeve-left {
      background: #f0effc;
      padding: 24px 20px;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .eaeve-dots {
      position: absolute;
      top: 0; left: 0;
      width: 160px; height: 160px;
      background-image: radial-gradient(circle, #c5c2e8 1px, transparent 1px);
      background-size: 14px 14px;
      opacity: 0.6;
    }

    .eaeve-menu {
      position: absolute;
      top: 18px; right: 16px;
      display: flex; gap: 3px; align-items: center;
      cursor: pointer;
    }
    .eaeve-menu span {
      width: 4px; height: 4px;
      border-radius: 50%;
      background: #a09cc8;
    }

    /* ─── Logo area — rasm kattalashtirildi ─── */
    .eaeve-logo-area {
      flex: 1;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 12px;
      padding: 1.5rem 0;
      z-index: 1;
    }

    .eaeve-logo-box {
      width: 130px; height: 130px;   /* 80→130 kattalashtirildi */
      background: #e2dff7;
      border-radius: 20px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    /* ikonka uchun */
    .eaeve-logo-box i { font-size: 60px; color: #8b86cc; }
    /* rasm uchun */
    .eaeve-logo-box img {
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 10px;
    }

    .eaeve-logo-label {
      font-size: 12px;
      color: #9b97cc;
    }

    .eaeve-acc-btn {
      display: flex; align-items: center; gap: 8px;
      background: #5f56c8;
      color: #fff;
      border: none;
      border-radius: 100px;
      padding: 10px 18px;
      font-family: 'Inter', sans-serif;
      font-size: 12px; font-weight: 500;
      cursor: pointer;
      width: 100%;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: background 0.2s;
    }
    .eaeve-acc-btn:hover { background: #4e47b3; }
    .eaeve-acc-btn i { font-size: 15px; }

    .eaeve-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 4px;
    }
    .eaeve-stat { text-align: center; padding: 8px 4px; }
    .eaeve-stat-num {
      font-size: 20px; font-weight: 700;
      color: #3d38a0;
      line-height: 1.1;
      margin-bottom: 4px;
    }
    .eaeve-stat-desc {
      font-size: 10px;
      color: #8885bb;
      line-height: 1.3;
    }

    /* ─── Right panel ─── */
    .eaeve-right {
      background: #fff;
      padding: 2.25rem 2.5rem;
      display: flex; flex-direction: column;
      gap: 1.25rem;
    }

    .eaeve-eyebrow {
      display: flex; align-items: center; gap: 10px;
      font-size: 11px; font-weight: 500;
      color: #9e9ab8;
      letter-spacing: 1px;
      text-transform: uppercase;
    }
    .eaeve-eyebrow::before {
      content: '';
      display: block;
      width: 28px; height: 1.5px;
      background: #9e9ab8;
    }

    .eaeve-title {
      font-size: 26px; font-weight: 700;
      color: #1a1730;
      line-height: 1.25;
    }
    .eaeve-title .accent { color: #5f56c8; }

    .eaeve-divider {
      width: 36px; height: 2.5px;
      background: #5f56c8;
      border-radius: 2px;
    }

    .eaeve-desc {
      font-size: 13.5px;
      color: #5a5672;
      line-height: 1.75;
    }
    .eaeve-desc strong { color: #1a1730; font-weight: 600; }

    /* ─── Features ─── */
    .eaeve-features { display: flex; flex-direction: column; gap: 14px; }

    .eaeve-feature {
      display: flex; align-items: flex-start; gap: 14px;
    }
    .eaeve-feat-icon {
      width: 36px; height: 36px; flex-shrink: 0;
      background: #f0effc;
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
    }
    .eaeve-feat-icon i { font-size: 18px; color: #5f56c8; }

    .eaeve-feat-title {
      font-size: 13px; font-weight: 600;
      color: #1a1730;
      margin-bottom: 2px;
    }
    .eaeve-feat-sub {
      font-size: 11.5px;
      color: #9491b4;
    }

    /* ─── Buttons ─── */
    .eaeve-btns { display: flex; gap: 12px; align-items: center; }

    .eaeve-btn-primary {
      display: inline-flex; align-items: center; gap: 8px;
      background: #5f56c8; color: #fff;
      border: none; border-radius: 10px;
      padding: 11px 22px;
      font-family: 'Inter', sans-serif;
      font-size: 13px; font-weight: 500;
      cursor: pointer; text-decoration: none;
      transition: background 0.2s;
    }
    .eaeve-btn-primary:hover { background: #4e47b3; }
    .eaeve-btn-primary i { font-size: 14px; }

    .eaeve-btn-outline {
      display: inline-flex; align-items: center; gap: 8px;
      background: #fff; color: #5f56c8;
      border: 1.5px solid #d5d2f0;
      border-radius: 10px;
      padding: 10px 20px;
      font-family: 'Inter', sans-serif;
      font-size: 13px; font-weight: 500;
      cursor: pointer; text-decoration: none;
      transition: all 0.2s;
    }
    .eaeve-btn-outline:hover { background: #f0effc; border-color: #5f56c8; }
    .eaeve-btn-outline i { font-size: 14px; }

    /* ─── Animations ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(14px);
      animation: fadeUp 0.5s ease forwards;
    }
    .fade-up:nth-child(1) { animation-delay: 0.08s; }
    .fade-up:nth-child(2) { animation-delay: 0.16s; }
    .fade-up:nth-child(3) { animation-delay: 0.24s; }
    .fade-up:nth-child(4) { animation-delay: 0.32s; }
    .fade-up:nth-child(5) { animation-delay: 0.40s; }
    .fade-up:nth-child(6) { animation-delay: 0.48s; }

    @keyframes fadeUp {
      to { opacity: 1; transform: none; }
    }

    .fade-left {
      opacity: 0;
      transform: translateX(-10px);
      animation: fadeLeft 0.5s ease 0.1s forwards;
    }
    @keyframes fadeLeft {
      to { opacity: 1; transform: none; }
    }

    /* ─── Responsive ─── */
    @media (max-width: 768px) {
      .eaeve-wrapper { padding: 20px; }
      .eaeve-card { grid-template-columns: 1fr; }
      .eaeve-left { min-height: 280px; }
      .eaeve-right { padding: 1.5rem; }
      .eaeve-title { font-size: 20px; }
    }