/* TITLE */
.about-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* TEXT */
.about-text {
    font-size: 1.12rem;
    color: #4b5563;
    line-height: 1.9;
}

/* PRODUCT CARD */
.product-card {
    position: relative;
    perspective: 1200px;
}

.product-inner {
    background: linear-gradient(180deg, #f8fafc, #eef6ff);
    border-radius: 26px;
    padding: 22px;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.12),
        inset 0 1px rgba(255, 255, 255, 0.6);
    transition: transform .2s ease;
}

/* IMAGE */
.about-image {
    border-radius: 18px;
    width: 100%;
    display: block;
}

/* QUOTE */
.quote-card {
    padding: 26px 28px;
    border-radius: 20px;
    background: linear-gradient(135deg, #2564eb44, #06b5d44d);
    color: rgb(19, 19, 19);
    font-size: 1.1rem;
    line-height: 1.7;
    box-shadow: 0 20px 50px rgba(37, 99, 235, .25);
}

/* LIGHT BLOBS */
.bg-light-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    filter: blur(120px);
    opacity: .25;
}

.blob1 {
    background: #60a5fa;
    top: -120px;
    left: -120px;
}

.blob2 {
    background: #22d3ee;
    bottom: -120px;
    right: -120px;
}

/* reveal base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
}