/* =======================================================
   2. HOME - FEATURES & PRODUCT INFO
   ======================================================= */
/* --- BENTO GRID SECTION --- */
.bento-section {
    padding: 120px 5%;
    background-color: #f8fafc;
    scroll-margin-top: 100px;
}
.bento-header {
    text-align: center;
    margin-bottom: 60px;
}
.bento-header h2 {
    font-size: 46px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1.5px;
    margin-bottom: 15px;
}
.bento-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(320px, auto);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.bento-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 120px;
}
.bento-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 132, 255, 0.15);
    border-color: #bae6fd;
}
.bento-large {
    grid-column: span 2;
}
.bento-tall {
    grid-row: span 2;
}
.bento-icon {
    width: 65px;
    height: 65px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 30px;
}
.bg-blue {
    background: #e0f2fe;
    color: #0284c7;
}
.bg-amber {
    background: #fef3c7;
    color: #d97706;
}
.bg-emerald {
    background: #d1fae5;
    color: #059669;
}
.bento-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.bento-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}
.bento-mockup {
    margin-top: auto;
    padding-top: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.mockup-inner {
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- STEPS SECTION --- */
.steps-section {
    padding: 120px 5%;
    text-align: center;
    background: #ffffff;
}
.steps-section h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 60px;
    letter-spacing: -1px;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
@media (min-width: 992px) {
    .steps-grid::before {
        content: "";
        position: absolute;
        top: 40px;
        left: 15%;
        right: 15%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        z-index: 0;
    }
}
.step-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.1);
    border-color: #bae6fd;
}
.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00d2ff 0%, var(--kaching-blue) 100%);
    color: #fff;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    margin: 0 auto 25px;
    box-shadow: 0 15px 30px rgba(0, 132, 255, 0.3);
    transform: rotate(-5deg);
    transition: 0.3s ease;
}
.step-card:hover .step-number {
    transform: rotate(0deg) scale(1.1);
}
.step-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}
.step-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

/* --- USECASE SECTION --- */
.usecase-section {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}
.usecase-header h2 {
    font-size: 38px;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 15px;
    letter-spacing: -1px;
}
.usecase-header p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.usecase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.usecase-card {
    padding: 40px 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
.usecase-card:hover {
    transform: translateY(-10px);
    background: #fff;
    box-shadow: 0 20px 40px rgba(0, 132, 255, 0.08);
    border-color: #bae6fd;
}
.usecase-icon {
    font-size: 50px;
    margin-bottom: 20px;
    display: inline-block;
    transition: 0.3s;
}
.usecase-card:hover .usecase-icon {
    transform: scale(1.15) rotate(5deg);
}
.usecase-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}
.usecase-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* --- COMPARE SECTION --- */
.compare-section {
    padding: 100px 5%;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.compare-header {
    text-align: center;
    margin-bottom: 60px;
}
.compare-header h2 {
    font-size: 42px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -1px;
    margin-bottom: 15px;
}
.compare-header p {
    font-size: 18px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.compare-container {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    gap: 30px;
}
@media (min-width: 768px) {
    .compare-container {
        flex-direction: row;
        align-items: stretch;
    }
}
.compare-box {
    flex: 1;
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
}
.compare-old {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #64748b;
    margin-top: 20px;
    margin-bottom: 20px;
}
.compare-new {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
    z-index: 2;
    border: 1px solid #334155;
}
.compare-old h3 {
    font-size: 24px;
    font-weight: 800;
    color: #475569;
    margin-bottom: 30px;
    text-align: center;
}
.compare-new h3 {
    font-size: 24px;
    font-weight: 900;
    color: #38bdf8;
    margin-bottom: 30px;
    text-align: center;
}
.compare-new .badge-win {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #fbc116;
    color: #000;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(251, 193, 22, 0.3);
}
.compare-list {
    list-style: none;
    padding: 0;
}
.compare-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
    font-size: 16px;
    line-height: 1.5;
}
.compare-old .compare-list li {
    color: #64748b;
    font-weight: 500;
}
.compare-new .compare-list li {
    color: #e2e8f0;
    font-weight: 600;
}
.c-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    font-size: 12px;
    margin-top: 2px;
}
.c-cross {
    background: #fee2e2;
    color: #ef4444;
}
.c-check {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

