.how {
    margin: 100px auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.how h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.how-grid {
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items: center;
}

.how-card {
   width: 33%;
}

.how-card img {
  width: 100%;
}

.steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 72px;
}

.step {
    flex: 1;
    padding: 40px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102,168,243,0.2);
    border-color: rgba(102,168,243,0.5);
}

.step.hover-simulated {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102,168,243,0.2);
    border-color: rgba(102,168,243,0.5);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    background: #66A8F3;
    color: #000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step .icon {
    font-size: 32px;
    display: block;
    margin: 20px 0 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    opacity: 0.8;
}

/* =========================
   Examples
========================= */
.examples {
    margin: 100px auto;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.examples h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.demos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.demo-btn {
    padding: 14px 22px;
    border: none;
    border-radius: 30px;
    font-weight: 700;
    color: white;
    cursor: pointer;
    background: linear-gradient(90deg, #66A8F3, #0052D4);
    transition: all 0.3s ease;
}

.demo-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(102,168,243,0.6);
}

.section-header {
  text-align: center!important;
  margin-bottom: 40px;
}