/* صفحات عمومی سایت — درباره ما، تماس با ما */

.site-page-hero {
    position: relative;
    padding: 4.5rem 0 5rem;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #030852 0%, #051080 28%, #071bb0 58%, #4a7ef0 78%, #ff6b35 100%);
}

.site-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.7;
}

.site-page-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
    animation: siteOrbFloat 8s ease-in-out infinite;
}

.site-page-hero .orb-1 {
    width: 220px;
    height: 220px;
    background: #ff6b35;
    top: -40px;
    left: 10%;
}

.site-page-hero .orb-2 {
    width: 180px;
    height: 180px;
    background: #0A28D4;
    bottom: -30px;
    right: 8%;
    animation-delay: -3s;
}

@keyframes siteOrbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(18px) scale(1.05); }
}

.site-page-hero .container {
    position: relative;
    z-index: 1;
}

.site-page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(6px);
}

.site-page-hero h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.site-page-hero .lead {
    font-size: 1.1rem;
    opacity: 0.95;
    max-width: 42rem;
    margin: 0 auto 1.5rem;
}

.site-page-hero-logo {
    width: 96px;
    height: 96px;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.16);
    object-fit: contain;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
    margin-bottom: 1.25rem;
}

.site-page-section {
    padding: 3.5rem 0;
}

.site-page-section.alt {
    background: linear-gradient(180deg, #f8f5ff 0%, #fff 100%);
}

.site-page-section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.site-page-section-title h2 {
    font-weight: 800;
    color: #030852;
    margin-bottom: 0.5rem;
}

.site-page-section-title p {
    color: #6c757d;
    max-width: 36rem;
    margin: 0 auto;
}

.site-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.site-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: 0 12px 32px rgba(5, 16, 128, 0.1);
    border: 1px solid rgba(7, 27, 176, 0.1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s;
}

.site-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(7, 27, 176, 0.16);
}

.site-stat-card .num {
    font-size: 1.85rem;
    font-weight: 800;
    background: linear-gradient(135deg, #071bb0, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-stat-card .lbl {
    font-size: 0.82rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

.site-feature-card {
    height: 100%;
    border: 1px solid rgba(7, 27, 176, 0.12);
    border-radius: 18px;
    padding: 1.5rem;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(5, 16, 128, 0.06);
}

.site-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 16px 40px rgba(7, 27, 176, 0.14);
}

.site-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #071bb0, #ff6b35);
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    transition: transform 0.4s;
}

.site-feature-card:hover .site-feature-icon {
    transform: scale(1.08) rotate(-4deg);
}

.site-feature-card h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #030852;
    margin-bottom: 0.5rem;
}

.site-feature-card p {
    font-size: 0.9rem;
    color: #5c5c6f;
    margin: 0;
    line-height: 1.65;
}

.site-timeline {
    position: relative;
    padding-right: 2rem;
    max-width: 720px;
    margin: 0 auto;
}

.site-timeline::before {
    content: '';
    position: absolute;
    right: 0.55rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #071bb0, #ff6b35);
    border-radius: 3px;
}

.site-timeline-item {
    position: relative;
    padding: 0 2rem 2rem 0;
}

.site-timeline-item::before {
    content: '';
    position: absolute;
    right: -0.15rem;
    top: 0.35rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ff6b35;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(7, 27, 176, 0.25);
}

.site-timeline-item h4 {
    font-weight: 800;
    color: #071bb0;
    margin-bottom: 0.35rem;
}

.site-value-card {
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.site-value-card.purple {
    background: linear-gradient(145deg, #061894, #071bb0);
}

.site-value-card.orange {
    background: linear-gradient(145deg, #e55a2b, #ff6b35);
}

.site-value-card h3 {
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.site-audience-card {
    border-radius: 20px;
    border: 2px solid transparent;
    padding: 2rem;
    height: 100%;
    background: #fff;
    box-shadow: 0 10px 30px rgba(5, 16, 128, 0.08);
    transition: all 0.4s;
}

.site-audience-card:hover {
    border-color: rgba(7, 27, 176, 0.25);
    transform: translateY(-4px);
}

.site-audience-card ul {
    padding-right: 1.2rem;
    margin: 0;
}

.site-audience-card li {
    margin-bottom: 0.5rem;
    color: #444;
}

.site-step-card {
    text-align: center;
    padding: 1.5rem 1rem;
}

.site-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #071bb0, #ff6b35);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(7, 27, 176, 0.3);
}

.site-tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgba(7, 27, 176, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: #051080;
    margin: 0.25rem;
    transition: all 0.3s;
}

.site-tech-pill:hover {
    background: #071bb0;
    color: #fff;
    transform: translateY(-2px);
}

.site-cta-band {
    background: linear-gradient(135deg, #030852, #071bb0 55%, #ff6b35);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(5, 16, 128, 0.25);
}

.site-cta-band .btn-light {
    font-weight: 700;
    border-radius: 999px;
    padding: 0.75rem 2rem;
}

/* تماس */
.site-contact-hero-cards {
    margin-top: -2.5rem;
    position: relative;
    z-index: 2;
}

.site-contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.5rem;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(7, 27, 176, 0.1);
    box-shadow: 0 10px 28px rgba(5, 16, 128, 0.08);
    transition: all 0.35s;
}

.site-contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(7, 27, 176, 0.14);
}

.site-contact-card i {
    width: 52px;
    height: 52px;
    line-height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #071bb0, #ff6b35);
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.site-contact-card a {
    color: #030852;
    text-decoration: none;
    font-weight: 700;
}

.site-contact-card a:hover {
    color: #ff6b35;
}

.site-form-panel {
    background: #fff;
    border-radius: 22px;
    padding: 2rem;
    box-shadow: 0 16px 48px rgba(5, 16, 128, 0.1);
    border: 1px solid rgba(7, 27, 176, 0.1);
}

.site-faq-item {
    border: 1px solid rgba(7, 27, 176, 0.12);
    border-radius: 14px;
    margin-bottom: 0.65rem;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s;
}

.site-faq-item.open {
    box-shadow: 0 8px 24px rgba(7, 27, 176, 0.1);
}

.site-faq-btn {
    width: 100%;
    text-align: right;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    font-weight: 700;
    color: #030852;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-faq-btn i {
    transition: transform 0.35s;
    color: #ff6b35;
}

.site-faq-item.open .site-faq-btn i {
    transform: rotate(180deg);
}

.site-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.35s;
    padding: 0 1.25rem;
    color: #555;
    font-size: 0.92rem;
}

.site-faq-item.open .site-faq-body {
    max-height: 200px;
    padding-bottom: 1rem;
}

.site-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.site-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 12px;
    background: rgba(7, 27, 176, 0.08);
    color: #051080;
    font-weight: 600;
    font-size: 0.88rem;
}

.site-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.site-reveal-delay-1 { transition-delay: 0.1s; }
.site-reveal-delay-2 { transition-delay: 0.2s; }
.site-reveal-delay-3 { transition-delay: 0.3s; }
.site-reveal-delay-4 { transition-delay: 0.4s; }

@media (max-width: 768px) {
    .site-page-hero { padding: 3rem 0 3.5rem; }
    .site-stat-grid { margin-top: -2rem; }
}
