.btn-primary {
    background: #2F5BFF;
    color: var(--white);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 25px rgba(47, 91, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-dark);
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-nav {
    background: var(--brand-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-light {
    background: var(--white);
    color: var(--primary-dark);
    padding: 12px 26px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-outline-light {
    color: var(--white);
    padding: 12px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.btn-block {
    width: 100%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #E8F0FF;
    color: #2F5BFF;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #E6F0FF;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.icon-badge img {
    width: 24px;
    height: 24px;
}

.feature-card,
.step-card,
.testimonial-card,
.pricing-card,
.assurance-card,
.contact-card {
    background: #F8FAFF;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid #EEF2F7;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.feature-card h3,
.step-card h3,
.pricing-card h3,
.assurance-card h3 {
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-card p,
.step-card p,
.assurance-card p {
    color: var(--text-muted);
}

.feature-card:hover {
    transform: translateY(-6px);
    background: var(--white);
    border-color: #E3E8F5;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.feature-card,
.testimonial-card,
.pricing-card,
.assurance-card,
.faq-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card:hover,
.pricing-card:hover,
.assurance-card:hover,
.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 26px rgba(15, 23, 42, 0.12);
}

.step-card {
    position: relative;
    padding: 32px 28px 30px;
    border: 1px solid #E6ECF5;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.step-number {
    position: absolute;
    top: -14px;
    right: 18px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #2F5BFF;
    color: var(--white);
    font-weight: 600;
    display: grid;
    place-items: center;
    font-size: 0.85rem;
    box-shadow: 0 8px 14px rgba(47, 91, 255, 0.3);
}

.step-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2F5BFF 0%, #4C7BFF 100%);
    display: grid;
    place-items: center;
    margin-bottom: 16px;
}

.step-icon img {
    width: 26px;
    height: 26px;
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: #BFD2FF;
    box-shadow: 0 18px 30px rgba(15, 23, 42, 0.12);
}

.step-card:hover .step-icon {
    transform: rotate(16deg);
    box-shadow: 0 14px 24px rgba(47, 91, 255, 0.35);
}

.step-icon {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.checklist {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.checklist li {
    position: relative;
    padding-left: 36px;
    color: var(--text-muted);
    font-size: 1rem;
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 20px;
    height: 20px;
    border-radius: 999px;
    border: 2px solid #2F5BFF;
    background: #FFFFFF;
    box-shadow: 0 6px 10px rgba(47, 91, 255, 0.12);
}

.checklist li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 6px;
    width: 5px;
    height: 9px;
    border-right: 2px solid #2F5BFF;
    border-bottom: 2px solid #2F5BFF;
    transform: rotate(45deg);
}

.testimonial-card {\n    display: grid;\n    gap: 12px;\n    border: 1px solid #EEF2F7;\n    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);\n}

.testimonial-header {\n    display: flex;\n    align-items: center;\n    gap: 12px;\n    justify-content: flex-start;\n}

.testimonial-header span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

\n.avatar {\n    width: 40px;\n    height: 40px;\n    border-radius: 999px;\n    background: #E8F0FF;\n    color: #2F5BFF;\n    display: grid;\n    place-items: center;\n    font-weight: 700;\n    font-size: 0.9rem;\n}\n\n.quote-mark {\n    width: 20px;\n    height: 20px;\n    margin-left: auto;\n    opacity: 0.6;\n}\n\n.testimonial-link {\n    color: #2F5BFF;\n    font-size: 0.85rem;\n    font-weight: 600;\n}\n\n.stars {
    color: #F59E0B;
    font-size: 0.9rem;
}

.pricing-card {\n    border: 1px solid #E6ECF5;\n    position: relative;\n    background: var(--white);\n    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);\n}

.pricing-card.is-popular {\n    border: 2px solid #2F5BFF;\n    transform: translateY(-6px);\n    box-shadow: 0 18px 30px rgba(47, 91, 255, 0.18);\n}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 20px;
    background: #2F5BFF;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 12px 0 20px;
}

.price span {
    font-size: 2rem;
}

.plan-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    color: var(--text-muted);
}

.plan-list li {
    position: relative;
    padding-left: 18px;
}

.plan-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2F5BFF;
    font-weight: 700;
}

.assurance-card {\n    border: 1px solid #EEF2F7;\n    background: var(--white);\n    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.05);\n    display: flex;\n    gap: 14px;\n    align-items: flex-start;\n}

\n\n.assurance-card img {\n    width: 32px;\n    height: 32px;\n}\n.faq-item {\n    background: var(--white);\n    border-radius: var(--radius-md);\n    border: 1px solid #EEF2F7;\n    padding: 16px 20px;\n    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);\n}

.faq-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 22px;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    color: #2F5BFF;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    margin-top: 12px;
    color: var(--text-muted);
}

.contact-card h4 {
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-muted);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
}

.contact-form-grid .form-row {
    gap: 8px;
}

.contact-form-grid .form-row.full {
    grid-column: 1 / -1;
}

.contact-form-grid label {
    font-size: 0.85rem;
    font-weight: 600;
}

.contact-form-grid input,
.contact-form-grid textarea {
    background: #F2F4F8;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #1A2550;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
    outline: none;
    border-color: #BFD2FF;
    box-shadow: 0 0 0 3px rgba(47, 91, 255, 0.12);
}

.btn-gradient {
    background: linear-gradient(90deg, #1C5CFF 0%, #5B44F6 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    cursor: pointer;
}

.btn-gradient img {
    width: 16px;
    height: 16px;
}

.form-note {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: -6px;
}

.pricing-note {
    text-align: center;
    margin-top: 24px;
    color: var(--text-muted);
}

.avatar-img {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.testimonial-card h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-caption {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.price small {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 4px;
}

.plan-list li::before {
    content: '✓';
    color: #2F5BFF;
    font-weight: 700;
}

.btn-plan-dark {
    background: #0B1225;
    color: var(--white);
    padding: 12px 26px;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

.pricing-card .btn-primary {
    border-radius: 10px;
}

.pricing-card {
    text-align: center;
}

.plan-list {
    text-align: left;
    margin: 20px auto 24px;
    max-width: 230px;
}

.popular-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    left: 50%;
    transform: translateX(-50%);
}


