:root {
    --primary: #0d6efd;
    --primary-dark: #0b5ed7;
    --success: #198754;
    --success-dark: #157347;
    --warning: #ffc107;
    --danger: #dc3545;
    --dark: #1f2937;
    --muted: #6b7280;
    --light-bg: #f8fafc;
    --card-border: #e5e7eb;
    --soft-blue: #eef6ff;
    --soft-green: #ecfdf5;
    --soft-yellow: #fffbeb;
    --soft-red: #fef2f2;
    --radius-lg: 22px;
    --radius-md: 16px;
}

body {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #eef6ff 100%);
    color: var(--dark);
}

.landing-wrap {
    overflow: hidden;
}

.hero-section {
    position: relative;
    padding: 70px 0 45px;
}

.hero-bg-shape {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.13), rgba(13, 110, 253, 0));
    top: -120px;
    right: -120px;
    z-index: 0;
}

.hero-bg-shape-2 {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(25, 135, 84, 0.13), rgba(25, 135, 84, 0));
    bottom: -120px;
    left: -120px;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-soft {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    border: 1px solid #dbeafe;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: #0f172a;
}

.hero-title span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: var(--muted);
    line-height: 1.8;
    max-width: 720px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.hero-card-header {
    background: linear-gradient(135deg, #0d6efd, #0dcaf0);
    color: #ffffff;
    padding: 22px;
}

.hero-card-body {
    padding: 24px;
}

.quick-action {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--dark);
    background: #ffffff;
    transition: all 0.18s ease;
    height: 100%;
}

.quick-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.10);
    color: var(--primary);
    border-color: #bfdbfe;
}

.quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    flex: 0 0 auto;
}

.quick-icon.blue {
    background: var(--soft-blue);
}

.quick-icon.green {
    background: var(--soft-green);
}

.quick-icon.yellow {
    background: var(--soft-yellow);
}

.quick-icon.red {
    background: var(--soft-red);
}

.quick-title {
    font-weight: 800;
    margin-bottom: 2px;
}

.quick-desc {
    font-size: 0.9rem;
    color: var(--muted);
    margin: 0;
}

.section-title {
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
}

.section-desc {
    color: var(--muted);
    line-height: 1.8;
}

.feature-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.05);
    transition: all 0.18s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.feature-blue {
    background: var(--soft-blue);
}

.feature-green {
    background: var(--soft-green);
}

.feature-yellow {
    background: var(--soft-yellow);
}

.feature-red {
    background: var(--soft-red);
}

.feature-title {
    font-weight: 850;
    color: #111827;
    margin-bottom: 8px;
}

.feature-text {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.verify-box {
    background: linear-gradient(135deg, #0f172a, #1e40af);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.verify-box::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    right: -90px;
    top: -90px;
}

.verify-box-content {
    position: relative;
    z-index: 2;
}

.verify-desc,
.cta-desc {
    line-height: 1.8;
}

.verify-input {
    border-radius: 14px;
    border: none;
    padding: 14px 16px;
    min-height: 52px;
}

.verify-input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.stat-card {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 18px;
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-label {
    color: var(--muted);
    font-size: 0.95rem;
}

.cta-section {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
    padding: 32px;
}

.btn-hero {
    border-radius: 14px;
    padding: 13px 22px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(13, 110, 253, 0.18);
}

.btn-outline-hero {
    border-radius: 14px;
    padding: 13px 22px;
    font-weight: 800;
    background: #ffffff;
}

.link-muted {
    color: var(--muted);
    text-decoration: none;
}

.link-muted:hover {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 45px 0 30px;
    }

    .hero-card {
        margin-top: 28px;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        padding-top: 30px;
    }

    .hero-card-body,
    .hero-card-header,
    .verify-box,
    .cta-section {
        padding: 22px;
    }

    .quick-action {
        padding: 14px;
    }

    .quick-icon {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .btn-hero,
    .btn-outline-hero {
        width: 100%;
        margin-bottom: 8px;
    }
}