.poolys-about-section {
    position: relative;
    z-index: 1;
}

.landing-hero {
    padding: clamp(64px, 8vw, 120px) 24px;
    border-radius: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.02);
}

.landing-hero .button-primary,
.landing-hero .button-secondary {
    border-radius: 99px;
}

.landing-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
    color: var(--copy-primary);
}

.landing-subtitle {
    max-width: 720px;
    margin: 0 auto 32px auto;
    /* Kasih jarak bawah ke CTA */
    color: var(--copy-muted);
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 22px;
    border-radius: 50%;
    margin-right: 20px;
    flex-shrink: 0;
    background-color: var(--hover-bg);
    color: var(--copy-primary);
    border: 1px solid var(--border-light);
}

.bg-danger-light,
.bg-success-light {
    background-color: var(--hover-bg);
    color: var(--copy-primary);
}

.problem-card,
.solution-card,
.feature-card {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
}

.problem-card::before,
.solution-card::before,
.feature-card::before {
    display: none;
}

.problem-card:hover,
.solution-card:hover,
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: var(--border-strong);
}

.landing-features {
    padding-top: 48px;
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--bg-body);
    border-radius: 50%;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--copy-primary);
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    background: var(--hover-bg);
}

.landing-footer {
    background: var(--bg-card);
    color: var(--copy-primary);
    border: 1px solid var(--border-light);
    border-radius: 32px !important;
    padding: 64px 32px;
    position: relative;
    overflow: hidden;
    margin-top: 64px;
}

.landing-footer::after {
    display: none;
}

.landing-footer h3 {
    color: var(--copy-primary);
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.landing-footer p {
    color: var(--copy-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 32px auto;
}

.landing-footer .button-primary {
    background: var(--copy-primary);
    color: var(--bg-body);
    font-weight: 600;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    margin-top: 16px;
    border-radius: 99px;
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.landing-footer .button-primary:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    background: var(--copy-primary);
}

.about-problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.about-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

@media (min-width: 768px) {
    .about-problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .about-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .about-features-grid {
        gap: 40px;
    }

    .landing-hero {
        padding: 120px 48px;
    }
}
