@import url('./fonts.css');

:root {
    --navy: #0A2149;
    --navy-dark: #021D3A;
    --orange: #FF7B00;
    --orange-dark: #E56900;
    --light: #F8F9FA;
    --muted: #6c757d;
}

body {
    font-family: 'Vazir', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "IranSans", "Vazirmatn", sans-serif;
    background-color: #ffffff;
    color: #1f2937;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 60%);
    color: #ffffff;
    padding: 4rem 0 3rem;
    overflow: hidden;
}

.hero .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(1px);
    opacity: 0.18;
    transform: scale(1.08);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.hero::after {
    content: "";
    position: absolute;
    left: -10%;
    bottom: -40%;
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse at center, rgba(255, 122, 0, 0.25) 0%, rgba(255, 122, 0, 0) 70%);
    transform: rotate(25deg);
    z-index: 1;
    pointer-events: none;
}

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

.hero-badge {
    background: rgba(255, 122, 0, 0.12);
    border: 1px solid rgba(255, 122, 0, 0.35);
    color: #fff;
    display: inline-block;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .9rem;
    margin-bottom: 1rem;
}

.btn-orange {
    background-color: var(--orange);
    color: #fff;
    border: none;
}

.btn-orange:hover {
    background-color: var(--orange-dark);
    color: #fff;
}

.btn-navy-outline {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.btn-navy-outline:hover {
    background-color: #ffffff;
    color: var(--navy);
}

.section-title {
    position: relative;
    padding-right: 0.75rem;
    margin-bottom: 1rem;
}

.section-title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 24px;
    background-color: var(--orange);
    border-radius: 4px;
}

.step {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.25rem;
    background-color: #fff;
    height: 100%;
    box-shadow: 0 4px 14px rgba(10, 33, 73, 0.06);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.12);
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-left: .5rem;
}

.feature {
    border-radius: 12px;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 4px 14px rgba(10, 33, 73, 0.06);
    height: 100%;
}

.feature .icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(10, 33, 73, 0.08);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-left: .5rem;
}

.cta-install {
    background: linear-gradient(135deg, rgba(10, 33, 73, 0.06), rgba(255, 122, 0, 0.06));
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 1.5rem;
}

.badge-soft {
    background-color: rgba(10, 33, 73, 0.08);
    color: var(--navy);
    border: 1px solid rgba(10, 33, 73, 0.15);
    border-radius: 999px;
    padding: .35rem .75rem;
    font-size: .85rem;
}

.faq .accordion-button {
    text-align: right;
}

.faq .accordion-button:not(.collapsed) {
    background-color: rgba(255, 122, 0, 0.08);
    color: #212529;
}

.faq .accordion-button:focus {
    box-shadow: 0 0 0 .1rem rgba(255, 122, 0, .25);
}


@media (max-width: 576px) {
    .hero {
        padding: 3rem 0 2.25rem;
    }
}