/* =====================================================
   صفحه اول — پیشخوان کسب‌وکار پارس رسانه
   Persian Gold Business Identity — Landing Page
   Signature: animated gold grid + glass morphism
   ===================================================== */

/* === Navbar === */
.pub-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 clamp(20px, 4vw, 48px);
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s, backdrop-filter 0.35s;
}

.pub-nav.scrolled {
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(27,42,74,0.06), 0 8px 32px rgba(27,42,74,0.04);
}

.pub-nav .logo {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s;
}

.pub-nav.scrolled .logo { color: var(--ink); }

.pub-nav .logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(196,146,42,0.3);
    transition: transform 0.3s;
}

.pub-nav .logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }

.pub-nav .nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.pub-nav .nav-links a {
    color: rgba(255,255,255,0.7);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.pub-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
    border-radius: 1px;
}

.pub-nav .nav-links a:hover::after { width: 100%; }
.pub-nav.scrolled .nav-links a { color: var(--text-secondary); }
.pub-nav .nav-links a:hover { color: var(--gold); }

.pub-nav .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pub-nav .nav-actions .btn-login {
    color: rgba(255,255,255,0.8);
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.pub-nav.scrolled .nav-actions .btn-login { color: var(--text-primary); }
.pub-nav .nav-actions .btn-login:hover { background: rgba(255,255,255,0.08); }
.pub-nav.scrolled .nav-actions .btn-login:hover { background: var(--surface-alt); }

.pub-nav .nav-actions .btn-register {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(196,146,42,0.25);
}

.pub-nav .nav-actions .btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196,146,42,0.35);
    color: #fff;
}

.pub-nav .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    padding: 6px;
}

.pub-nav.scrolled .mobile-menu-btn { color: var(--text-primary); }

@media (max-width: 900px) {
    .pub-nav .nav-links { display: none; }
    .pub-nav .mobile-menu-btn { display: block; }
    .pub-nav .nav-actions .btn-login { display: inline-flex !important; padding: 6px 12px !important; font-size: 12px !important; }
    .pub-nav .nav-actions .btn-register { display: inline-flex !important; padding: 6px 12px !important; font-size: 12px !important; }
    .pub-nav .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 68px;
        right: 0;
        left: 0;
        background: var(--bg-card);
        box-shadow: var(--shadow-lg);
        padding: 24px;
        gap: 0;
        z-index: 999;
        animation: slideDown 0.3s cubic-bezier(0.4,0,0.2,1);
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }
    .pub-nav .nav-links.open a {
        color: var(--text-primary) !important;
        padding: 14px 0;
        border-bottom: 1px solid var(--border-subtle);
        width: 100%;
        font-size: 15px;
    }
    .pub-nav .nav-links.open a:last-child { border-bottom: none; }
    .pub-nav .nav-links.open .mobile-login-btn {
        display: block !important;
        margin-top: 16px;
        text-align: center;
        padding: 12px;
        background: linear-gradient(135deg, var(--gold), var(--gold-dark));
        color: #fff;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* صفحات داخلی (غیر از صفحه اصلی) — منوی سفید ثابت */
body.page-inner .pub-nav {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 3px rgba(27,42,74,0.06), 0 8px 32px rgba(27,42,74,0.04);
}
body.page-inner .pub-nav .logo { color: var(--ink); }
body.page-inner .pub-nav .nav-links a { color: var(--text-secondary); }
body.page-inner .pub-nav .nav-links a.active,
body.page-inner .pub-nav .nav-links a:hover {
    color: var(--gold) !important;
}
body.page-inner .pub-nav .nav-actions .btn-login { color: var(--text-primary); }
body.page-inner .pub-nav .nav-actions .btn-register {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
}

/* === Hero Slider === */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #0D1520;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: none;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Slides transition classes */
.hero-slide.exit-left {
    animation: slideExitLeft var(--transition-dur, 600ms) forwards;
}
.hero-slide.exit-right {
    animation: slideExitRight var(--transition-dur, 600ms) forwards;
}
.hero-slide.enter-left {
    animation: slideEnterLeft var(--transition-dur, 600ms) forwards;
}
.hero-slide.enter-right {
    animation: slideEnterRight var(--transition-dur, 600ms) forwards;
}
.hero-slide.zoom-in {
    animation: zoomIn var(--transition-dur, 600ms) forwards;
}
.hero-slide.zoom-out {
    animation: zoomOut var(--transition-dur, 600ms) forwards;
}

@keyframes slideExitLeft {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(-60px) scale(0.96); }
}
@keyframes slideExitRight {
    from { opacity: 1; transform: translateX(0) scale(1); }
    to { opacity: 0; transform: translateX(60px) scale(0.96); }
}
@keyframes slideEnterLeft {
    from { opacity: 0; transform: translateX(-60px) scale(0.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes slideEnterRight {
    from { opacity: 0; transform: translateX(60px) scale(0.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
@keyframes zoomIn {
    from { opacity: 0; transform: scale(1.15); }
    to { opacity: 1; transform: scale(1); }
}
@keyframes zoomOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.85); }
}

/* Slide background image */
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

/* Dark overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,21,32,0.95) 0%, rgba(27,42,74,0.85) 50%, rgba(13,21,32,0.9) 100%);
    z-index: 1;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 720px;
    padding: 120px 24px 100px;
}

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 12px rgba(196,146,42,0.5);
}

.hero-dot:hover {
    border-color: var(--gold-light);
    background: rgba(196,146,42,0.3);
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: rgba(196,146,42,0.2);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow-prev { right: 24px; }
.hero-arrow-next { left: 24px; }

/* Counter */
.hero-counter {
    position: absolute;
    bottom: 32px;
    right: 32px;
    z-index: 10;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.hero-counter #hero-current-num {
    color: var(--gold);
    font-weight: 700;
    font-size: 16px;
}

/* Fallback gradient when no image */
.hero-slide:not([style*="background-image"]) .hero-slide-overlay {
    background: linear-gradient(160deg, #0D1520 0%, var(--ink) 40%, #1a2d4d 100%);
}

@media (max-width: 768px) {
    .hero-slider .hero-content { padding: 100px 16px 80px; }
    .hero-arrow { width: 40px; height: 40px; font-size: 14px; }
    .hero-arrow-prev { right: 12px; }
    .hero-arrow-next { left: 12px; }
    .hero-dots { bottom: 20px; }
    .hero-dot { width: 10px; height: 10px; }
    .hero-counter { bottom: 20px; right: 16px; font-size: 12px; }
}

/* Animated gold grid */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(0deg, transparent 49.5%, rgba(196,146,42,0.05) 49.5%, rgba(196,146,42,0.05) 50.5%, transparent 50.5%),
        linear-gradient(90deg, transparent 49.5%, rgba(196,146,42,0.05) 49.5%, rgba(196,146,42,0.05) 50.5%, transparent 50.5%);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 20%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Gold corner marks */
.hero-section::after {
    content: '';
    position: absolute;
    top: 80px;
    right: clamp(24px, 5vw, 80px);
    width: 120px;
    height: 120px;
    border-right: 2px solid rgba(196,146,42,0.2);
    border-top: 2px solid rgba(196,146,42,0.2);
    pointer-events: none;
    animation: cornerFade 2s ease-out forwards;
}

@keyframes cornerFade {
    from { opacity: 0; transform: translate(20px, -20px); }
    to { opacity: 1; transform: translate(0, 0); }
}

/* Floating gold orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(196,146,42,0.12), transparent 70%);
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(45,139,111,0.08), transparent 70%);
    bottom: 10%;
    right: -5%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196,146,42,0.1), transparent 70%);
    top: 50%;
    left: 60%;
    animation-delay: -8s;
    animation-duration: 18s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(196,146,42,0.08);
    border: 1px solid rgba(196,146,42,0.15);
    border-radius: 24px;
    padding: 6px 18px;
    margin-bottom: 28px;
    font-size: 12.5px;
    color: var(--gold-light);
    font-weight: 500;
    letter-spacing: 0.01em;
    animation: fadeUp 0.8s ease-out;
    backdrop-filter: blur(8px);
}

.hero-badge i { font-size: 12px; animation: spin 4s linear infinite; }

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    animation: fadeUp 0.8s ease-out 0.1s both;
}

.hero-title .gold-text {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.9;
    max-width: 560px;
    margin: 0 auto 36px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s ease-out 0.3s both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-actions .btn-hero-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(196,146,42,0.3);
    position: relative;
    overflow: hidden;
}

.hero-actions .btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity 0.25s;
}

.hero-actions .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196,146,42,0.4);
    color: #fff;
}

.hero-actions .btn-hero-primary:hover::before { opacity: 1; }

.hero-actions .btn-hero-primary i {
    transition: transform 0.25s;
}

.hero-actions .btn-hero-primary:hover i {
    transform: translateX(-4px);
}

.hero-actions .btn-hero-secondary {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    padding: 15px 36px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color 0.25s, color 0.25s, background 0.25s, transform 0.25s;
    backdrop-filter: blur(8px);
}

.hero-actions .btn-hero-secondary:hover {
    border-color: rgba(196,146,42,0.4);
    color: var(--gold-light);
    background: rgba(196,146,42,0.06);
    transform: translateY(-2px);
}

/* === Counters === */
.counters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 840px;
    margin: -44px auto 0;
    position: relative;
    z-index: 3;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(196,146,42,0.06);
    overflow: hidden;
}

.counter-cell {
    text-align: center;
    padding: 30px 16px;
    position: relative;
    transition: background 0.3s;
}

.counter-cell:hover {
    background: rgba(196,146,42,0.03);
}

.counter-cell:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-color);
}

.counter-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.counter-label {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .counters-row { grid-template-columns: repeat(2, 1fr); margin-top: -30px; }
    .counter-cell:nth-child(2)::after { display: none; }
    .counter-number { font-size: 26px; }
}

/* === Section Common === */
.pub-section {
    padding: 48px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.pub-section-wide {
    padding: 48px 24px;
}

/* === Global public page text alignment === */
/* Body paragraphs: justify (RTL) — exclude subtitles, hero, nav, footer */
body .lead,
body .body-text,
body .sp-desc,
body .detail-text,
body .about-content p,
body .about-content li,
body .contact-page p,
body .help-content p,
body .knowledge-content p,
body .education-content p,
body .financing-content p,
body .accordion-body-inner p,
body .faq-answer,
body .privacy-content p,
body .terms-content p,
body .guide-content p,
body .sp-card p,
body .philosophy-box p {
    text-align: right;
    text-align: justify;
    line-height: 1.9;
}

/* === Section titles center-aligned === */
.section-title,
.page-title,
.detail-title,
.about-section h2,
.about-section h3,
.conclusion-box h3,
.sp-hero h1,
.guide-hero h1,
.contact-page .section-header h1,
.education-page h1,
.knowledge-page h1,
.consultants-page h1,
.services-page h1,
.financing-page h1,
.products-page h1,
h1.section-title {
    text-align: center !important;
}

/* === Section subtitles & descriptions center-aligned === */
.section-subtitle,
.section-desc,
.page-desc,
.subtitle,
.edu-empty p,
.consultant-empty p,
.knowledge-empty p,
.sp-hero p,
.guide-hero p,
.contact-page .section-header p,
.contact-page .section-subtitle,
.education-page .section-header p,
.knowledge-page .section-header p,
.consultants-page .section-header p,
.services-page .section-header p,
.financing-page .section-header p,
.products-page .section-header p {
    text-align: center;
}

/* Section headers are always centered */
.section-header { text-align: center; }
.page-desc {
    text-align: center;
}

/* Override admin panel .section-header from main.css — ALL public pages */
.section-header,
.pub-section .section-header,
.pub-section-wide .section-header,
.cta-section .section-header,
.testimonials-section .section-header {
    display: block !important;
    padding: 0 !important;
    border-bottom: none !important;
    text-align: center;
    margin-bottom: 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 20px;
    height: 1.5px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.section-eyebrow::after {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title {
    font-size: clamp(24px, 3.5vw, 30px);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    text-align: center;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: center;
}

/* === Services Grid === */
.services-section {
    background: var(--bg-body);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.service-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px 18px;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: right;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(27,42,74,0.08), 0 0 0 1px rgba(196,146,42,0.1);
    border-color: rgba(196,146,42,0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.service-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px;
    color: var(--gold);
    transition: transform 0.3s, background 0.3s;
}

.service-card:hover .icon-wrap {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold-muted), rgba(196,146,42,0.18));
}

.service-card h3 {
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s;
}

.service-card:hover h3 { color: var(--gold-dark); }

/* === How It Works === */
.how-it-works {
    background: linear-gradient(180deg, var(--surface-alt), var(--bg-body));
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(196,146,42,0.04), transparent 70%);
    pointer-events: none;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    right: calc(12.5% + 30px);
    left: calc(12.5% + 30px);
    height: 2px;
    background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-muted));
    border-radius: 1px;
}

.step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 4px 16px rgba(196,146,42,0.1);
}

.step-card:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(196,146,42,0.2);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #fff;
    border-color: transparent;
}

.step-card h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .steps-grid::before { display: none; }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr; }
}

/* === Features === */
.features-section {
    background: var(--bg-card);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    padding: 30px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    transform-origin: left;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(27,42,74,0.06);
    border-color: rgba(196,146,42,0.15);
}

.feature-card:hover::after { transform: scaleX(1); }

.feature-card .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 16px;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold-muted), rgba(196,146,42,0.2));
}

.feature-card h3 {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
}

/* === Testimonials === */
.testimonials-section {
    background: linear-gradient(160deg, #0D1520, var(--ink) 50%, #1a2d4d);
    color: #fff;
    position: relative;
    overflow: visible;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(196,146,42,0.06), transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45,139,111,0.04), transparent 50%);
    pointer-events: none;
}

.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.45); }
.testimonials-section .section-eyebrow { color: var(--gold-light); }
.testimonials-section .section-eyebrow::before,
.testimonials-section .section-eyebrow::after { background: linear-gradient(90deg, transparent, var(--gold-light)); }
.testimonials-section .section-eyebrow::after { background: linear-gradient(90deg, var(--gold-light), transparent); }

.testimonials-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 8px;
    scroll-padding: 0 24px;
    position: relative;
}
.testimonials-grid::-webkit-scrollbar { display: none; }
.testimonial-card {
    flex: 0 0 calc(33.333% - 12px);
    min-width: 280px;
    scroll-snap-align: start;
}

.testimonial-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform 0.3s, border-color 0.3s, background 0.3s;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(196,146,42,0.15);
    font-family: 'Vazir', sans-serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(196,146,42,0.2);
    background: rgba(255,255,255,0.05);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: var(--gold);
    font-size: 13px;
}

.testimonial-text {
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(255,255,255,0.7);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196,146,42,0.15), rgba(196,146,42,0.05));
    border: 1.5px solid rgba(196,146,42,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--gold-light);
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
}

.testimonial-role {
    font-size: 11.5px;
    color: rgba(255,255,255,0.35);
    margin-top: 2px;
}

/* === Testimonials Carousel === */
.testimonials-carousel {
    position: relative;
    overflow: visible;
    padding: 0 48px;
}

.testimonials-carousel .testimonials-grid {
    scroll-behavior: smooth;
}

.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.testi-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}

.testi-prev { right: 4px; }
.testi-next { left: 4px; }

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.2);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testi-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .testi-arrow { display: none; }
}

/* === CTA === */
.cta-section {
    padding: 60px 24px 80px;
    background: linear-gradient(160deg, #0D1520 0%, #1B2A4A 40%, #1a2d4d 70%, #0D1520 100%);
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,146,42,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ctaGlow 4s ease-in-out infinite alternate;
}

@keyframes ctaGlow {
    0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    100% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

.cta-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-particle {
    position: absolute;
    border-radius: 50%;
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-p1 { width: 8px; height: 8px; background: rgba(196,146,42,0.4); top: 20%; left: 10%; animation-delay: 0s; }
.cta-p2 { width: 6px; height: 6px; background: rgba(45,139,111,0.4); top: 60%; left: 15%; animation-delay: 1s; }
.cta-p3 { width: 10px; height: 10px; background: rgba(196,146,42,0.3); top: 30%; right: 12%; animation-delay: 2s; }
.cta-p4 { width: 5px; height: 5px; background: rgba(99,102,241,0.4); top: 70%; right: 20%; animation-delay: 3s; }
.cta-p5 { width: 7px; height: 7px; background: rgba(196,146,42,0.35); top: 50%; left: 50%; animation-delay: 4s; }

@keyframes ctaFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.3); }
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 56px 48px 48px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(16px);
    position: relative;
    z-index: 2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 64px rgba(0,0,0,0.3), 0 0 80px rgba(196,146,42,0.08);
}

.cta-title {
    font-size: clamp(24px, 3.5vw, 34px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 36px;
    line-height: 1.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary {
    background: linear-gradient(135deg, #C4922A 0%, #D4A84A 50%, #C4922A 100%);
    background-size: 200% 100%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(196,146,42,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
}

.cta-btn-primary:hover {
    background-position: 100% 0;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(196,146,42,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    color: #fff;
}

.cta-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 13px;
}

.cta-btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}

.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.cta-btn i {
    transition: transform 0.25s;
}

.cta-btn:hover .cta-btn-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.cta-btn-secondary:hover i {
    transform: translateX(-4px);
}

/* Trust pills — elegant inline row */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cta-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.cta-trust-pill:hover {
    color: rgba(255,255,255,0.7);
}

.cta-trust-pill i {
    font-size: 14px;
    color: var(--gold-light);
    opacity: 0.7;
}

.cta-trust-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* === Footer === */
.pub-footer {
    background: #0A0E14;
    color: rgba(255,255,255,0.7);
    padding: 40px 24px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 28px;
}

.footer-brand .footer-logo {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    text-decoration: none;
}

.footer-brand .footer-logo .logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.footer-brand p {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255,255,255,0.35);
    max-width: 300px;
    margin-bottom: 14px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-col {
    text-align: right;
    direction: rtl;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 6px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
}

/* Footer Licenses — 2 rows × 3 columns */
.footer-licenses {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.footer-license-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: transform 0.2s;
    padding: 8px 4px;
    border-radius: 8px;
}

.footer-license-item:hover { transform: translateY(-2px); background: rgba(255,255,255,0.04); }

.footer-license-item img {
    width: 56px;
    height: 56px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-license-item span {
    font-size: 10px;
    color: rgba(255,255,255,0.4);
    text-align: center;
    line-height: 1.3;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 20px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.25);
}

.footer-bottom p strong { color: var(--gold); }

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-licenses { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .footer-license-item img { width: 48px; height: 48px; }
    .pub-nav { padding: 0 16px; }
    .hero-slider .hero-title { font-size: 26px !important; line-height: 1.3 !important; }
    .hero-slider .hero-subtitle { font-size: 14px !important; }
    .section-title { font-size: 20px !important; }
    .section-header { padding: 12px 0 !important; }
    .cta-card { padding: 36px 24px 32px !important; }
    .cta-title { font-size: 22px !important; }
    .cta-text { font-size: 14px !important; margin-bottom: 28px !important; }
    .cta-title { font-size: 20px !important; }
    .cta-actions { flex-direction: column; align-items: center; gap: 12px !important; }
    .cta-btn { width: 100% !important; justify-content: center; max-width: 300px; padding: 14px 28px !important; }
    .cta-trust { flex-wrap: wrap; gap: 4px !important; }
    .cta-trust-pill { padding: 6px 12px !important; font-size: 11px !important; }
    .cta-trust-divider { height: 12px !important; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .pub-section { padding: 40px 16px !important; }
    .pub-nav .nav-links { gap: 12px !important; }
    .pub-nav .nav-actions { gap: 8px !important; }
    .btn-login, .btn-register { padding: 6px 12px !important; font-size: 12px !important; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .service-card { margin-bottom: 0; }
    .service-image { height: 160px !important; }
    .service-image-placeholder { height: 160px !important; }
    .counters-row { gap: 16px !important; }
    .counter-cell { padding: 16px 8px !important; }
    .counter-number { font-size: 24px !important; }
    .counter-label { font-size: 11px !important; }
    /* نظرات — اسکرول افقی ۲ تایی در موبایل */
    .testimonial-card { flex: 0 0 calc(33.333% - 8px); min-width: 220px; }
    .testimonials-grid { gap: 12px; }
    /* صفحات داخلی — تماس، درباره ما و غیره */
    body.page-inner > div[style*="padding:100px"] { padding: 80px 16px 40px !important; }
    body.page-inner .form-row { grid-template-columns: 1fr !important; }
    body.page-inner .card { padding: 20px !important; }
    body.page-inner .section-title { font-size: 20px !important; }
    /* گرید اطلاعات تماس — ۳ ستونه به ۱ ستونه */
    body.page-inner [style*="grid-template-columns:repeat(3,1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 16px; }
    .footer-licenses { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .footer-license-item img { width: 44px; height: 44px; }
    .hero-slider .hero-title { font-size: 22px !important; }
    .hero-slider .hero-subtitle { font-size: 13px !important; }
    .hero-slider .hero-content { padding: 90px 12px 70px; }
    .section-title { font-size: 18px !important; }
    .pub-section { padding: 30px 12px !important; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .service-card { padding: 20px 12px; }
    .service-card .icon-wrap { width: 44px; height: 44px; font-size: 18px; }
    .counters-row { grid-template-columns: 1fr 1fr !important; }
    .counter-number { font-size: 20px !important; }
    .btn-login, .btn-register { padding: 5px 10px !important; font-size: 11px !important; }
    /* نظرات — ۱ تایی در موبایل کوچک */
    .testimonial-card { flex: 0 0 calc(50% - 6px); min-width: 200px; }
    /* صفحات داخلی — خیلی کوچک */
    body.page-inner > div[style*="padding:100px"] { padding: 70px 12px 30px !important; }
    body.page-inner .card { padding: 16px !important; }
    body.page-inner .section-title { font-size: 17px !important; }
    /* CTA موبایل کوچک */
    .cta-card { padding: 28px 16px 24px !important; }
    .cta-title { font-size: 19px !important; }
    .cta-text { font-size: 13px !important; margin-bottom: 24px !important; }
    .cta-title { font-size: 18px !important; }
    .cta-text { font-size: 13px !important; }
    .cta-btn { padding: 14px 24px !important; font-size: 13px !important; }
    .cta-btn-icon { width: 24px !important; height: 24px !important; font-size: 11px !important; }
    .cta-trust { gap: 2px !important; margin-top: 28px !important; }
    .cta-trust-pill { padding: 4px 8px !important; font-size: 10px !important; }
    .cta-trust-pill i { font-size: 11px !important; }
}

/* === Scroll Reveal === */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* === Dark mode === */
[data-theme="dark"] .pub-nav.scrolled { background: rgba(14,18,25,0.88); }
[data-theme="dark"] .pub-nav.scrolled .nav-links a { color: rgba(255,255,255,0.5); }
[data-theme="dark"] .pub-nav.scrolled .logo { color: #fff; }

/* === Partners === */
.partners-section {
    background: var(--bg-alt);
}
.partners-section .section-title { color: var(--text-primary); }

/* === Team === */
.team-section {
    background: var(--bg-card);
}
.team-section .section-title { color: var(--text-primary); }

/* === FAQ Accordion === */
.faq-section {
    background: var(--bg-alt);
}
.faq-section .section-title { color: var(--text-primary); }

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    border-color: rgba(196,146,42,0.2);
}

.faq-item.active {
    border-color: var(--gold, #f59e0b);
    box-shadow: 0 4px 16px rgba(245,158,11,0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255,255,255,0.02);
}

.faq-question span {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
}

.faq-question i {
    color: var(--text-muted);
    font-size: 12px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 12px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--gold, #f59e0b);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.9;
    margin: 0;
}

/* === Responsive: Partners, Team, FAQ === */
@media (max-width: 768px) {
    .partners-section > div > div:last-child { gap: 16px !important; }
    .team-section > div > div:last-child { gap: 16px !important; }
}

/* === Reduced motion === */
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .hero-section::before { animation: none; }
    .hero-orb { animation: none; }
    .hero-badge { animation: none; }
    .hero-title, .hero-subtitle, .hero-actions { animation: none; }
    .hero-section::after { animation: none; }
}
