@font-face {
    font-family: Vazirmatn;
    src: url('IRANSansXFaNum-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Vazirmatn;
    src: url('IRANSansXFaNum-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Vazirmatn", sans-serif;
}

:root {
    --bg-1: #e3eefb;
    --primary: #0b63b7;
    --accent: #17a2b8;
    --muted: #6c7a89;
    --card: #fff;
}

[v-cloak] {
    display: none !important;
}

html,
body {
    height: 100%;
}

body {
    background: linear-gradient(180deg, var(--bg-1) 0%, #d3e6fa 100%);
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
    padding: 2rem 2rem 6rem;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.site-header {
    margin-bottom: 1.5rem;
}

.site-header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
}

.site-header__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.site-header__logo {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.site-header__slogan {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 0.75rem;
}

.site-header__image {
    width: 140px;
    height: auto;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.hero-card {
    background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(11, 99, 183, 0.08);
}

.hero-left h2 {
    font-size: 2rem;
    color: #11324d;
    margin-bottom: 0.6rem;
}

.hero-left p.lead {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-left {
    overflow: hidden;
}

.swiper.marquee-swiper {
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        white 10%,
        white 90%,
        transparent 100%
    );
}

.swiper-wrapper.marquee-swiper {
    transition-timing-function: linear;
    align-items: center;
}

.swiper-slide.marquee-swiper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-slide img {
    width: 60px;
    height: 60px;
}

.features {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.feature {
    flex: 1;
    min-width: 180px;
    background: transparent;
    padding: 0.5rem 0;
}

.feature h3 {
    font-size: 1rem;
    color: #11324d;
    margin-bottom: 0.25rem;
}

.feature p {
    color: var(--muted);
    font-size: 0.95rem;
}

.contact-form {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(16, 56, 101, 0.08);
    position: sticky;
    top: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
    color: #224054;
}

input,
select,
button {
    font-family: inherit;
}

input,
select {
    width: 100%;
    padding: 0.85rem;
    font-size: 1.05rem;
    border: 1px solid #e6eef8;
    border-radius: 8px;
    transition: box-shadow 0.18s, border-color 0.18s;
    background: linear-gradient(180deg, #fff, #fbfdff);
    color: #0d2840;
    text-align: right;
}

input::placeholder {
    color: #9fb1c9;
    text-align: right;
}

input:focus,
select:focus {
    outline: none;
    box-shadow: 0 6px 20px rgba(11, 99, 183, 0.08);
    border-color: var(--primary);
}

.radio-group {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    flex-wrap: wrap;
}

.radio-group label.option {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.9rem;
    border-radius: 8px;
    border: 1px solid #e6eef8;
    background: linear-gradient(180deg, #fff, #fbfdff);
    cursor: pointer;
    color: #0d2840;
    font-size: 1.03rem;
}

.radio-group input[type="radio"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
}

.radio-group label.option input[type="radio"]:checked + span {
    color: var(--primary);
    font-weight: 700;
}

.back-link {
    display: block;
    text-align: center;
    color: var(--muted);
    text-decoration: none;
    padding: 0.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.back-link:hover {
    color: var(--primary);
}

button {
    width: 100%;
    padding: 0.95rem;
    font-size: 1.15rem;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(11, 99, 183, 0.12);
    font-weight: 700;
}

button:hover {
    transform: translateY(-2px);
    filter: brightness(0.98);
}

.small-note {
    text-align: center;
    margin-top: 0.9rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.summary {
    background: linear-gradient(180deg, #fbfdff, #fff);
    border: 1px solid #e6eef8;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    color: #0d2840;
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    text-align: right;
}

.summary.editable {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.summary .pencil {
    margin-left: 0.6rem;
    font-size: 1.05rem;
    opacity: 0.92;
    user-select: none;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.summary .pencil svg {
    display: block;
    width: 1em;
    height: 1em;
}

.summary:focus {
    outline: 2px solid rgba(11,99,183,0.14);
}

footer {
    margin-top: 2rem;
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 980px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .logo {
        font-size: 3rem;
    }

    .hero-card {
        padding: 1.2rem;
    }
}