/* faq.html  */





:root {
    /* رنگ‌های اصلی بر پایه persian-landing و مکمل طلایی */
    --faq-primary: var(--persian-landing);
    --faq-primary-dark: #1e0b4f;
    --faq-primary-light: #e9e2ff;
    --faq-primary-soft: #f5f2ff;
    --faq-accent: var(--gold);
    --faq-accent-soft: var(--gold-soft);

    /* پس‌زمینه و متن */
    --faq-bg-gradient-start: #f6f4ff;
    --faq-bg-gradient-mid: #faf9ff;
    --faq-bg-gradient-end: #ffffff;
    --faq-text-dark: var(--ink-900);
    --faq-text-muted: var(--ink-600);

    /* اجزای رابط */
    --faq-border: var(--border);
    --faq-shadow-sm: var(--shadow-sm);
    --faq-shadow-md: var(--shadow-md);
    --faq-shadow-lg: var(--shadow-lg);
    --faq-radius-md: var(--radius-md);
    --faq-radius-lg: var(--radius-lg);

    /* انیمیشن */
    --faq-transition-speed: 0.35s;
    --faq-transition-ease: cubic-bezier(0.4, 0, 0.2, 1);
}




.page-wrapper {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 20px 30px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}


.search-container {
    position: relative;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.search-container .search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--faq-text-muted);
    pointer-events: none;
    transition: color var(--faq-transition-speed) var(--faq-transition-ease);
}

.search-container:focus-within .search-icon {
    color: var(--faq-primary);
}

.search-input {
    width: 100%;
    padding: 14px 52px 14px 20px;
    font-family: inherit;
    font-size: var(--text-3xl);
    font-weight: 500;
    color: var(--faq-text-dark);
    background: var(--card);
    border: 1px solid var(--faq-border);
    border-radius: var(--faq-radius-lg);
    outline: none;
    transition: all var(--faq-transition-speed) var(--faq-transition-ease);
    box-shadow: var(--faq-shadow-sm);
    letter-spacing: 0.2px;
}

.search-input::placeholder {
    color: var(--faq-text-muted);
    font-weight: 400;
}

.search-input:hover {
    border-color: #cbd5e1;
    box-shadow: var(--faq-shadow-md);
}

.search-input:focus {
    border-color: var(--faq-primary);
    box-shadow: 0 0 0 4px rgba(50, 18, 122, 0.1), var(--faq-shadow-md);
}

.search-clear-btn {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--faq-text-muted);
    padding: 6px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
}

.search-clear-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.search-clear-btn:hover {
    color: var(--faq-text-dark);
    background: var(--faq-primary-soft);
}

.search-info {
    text-align: center;
    font-size: var(--text-2xl);
    color: var(--faq-text-muted);
    margin-bottom: 20px;
    min-height: 28px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.search-info .highlight-count {
    color: var(--faq-primary);
    font-weight: 700;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--card);
    border-radius: var(--sd-radius-md);
    border: 1px solid var(--faq-border);
    box-shadow: var(--faq-shadow-sm);
    overflow: hidden;
    transition: all var(--faq-transition-speed) var(--faq-transition-ease);
    position: relative;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: var(--faq-shadow-md);
    transform: translateY(-1px);
}

.faq-item.active {
    border-color: rgba(50, 18, 122, 0.25);
    box-shadow: var(--faq-shadow-lg), 0 0 0 1px rgba(50, 18, 122, 0.08);
    background: linear-gradient(180deg, #ffffff 0%, #fdfaff 100%);
}

.faq-item.hidden-item {
    display: none;
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 8px 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: right;
    color: var(--faq-text-dark);
    transition: all var(--faq-transition-speed) var(--faq-transition-ease);
    position: relative;
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.faq-question-btn:focus-visible {
    background: var(--faq-primary-soft);
    box-shadow: inset 0 0 0 2px var(--faq-primary);
    border-radius: var(--faq-radius-lg);
}

.faq-question-btn:hover {
    background: #f8fafc;
}

.faq-item.active .faq-question-btn {
    background: rgba(50, 18, 122, 0.03);
}

.faq-question-text {
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.1px;
    line-height: 1.6;
    flex: 1;
}

.faq-item.active .faq-question-text {
    color: var(--faq-primary-dark);
}

.faq-icon-wrapper {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--faq-primary-soft);
    color: var(--faq-primary);
    transition: all var(--faq-transition-speed) var(--faq-transition-ease);
}

.faq-item.active .faq-icon-wrapper {
    background: var(--faq-primary);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-icon-wrapper svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--faq-transition-ease),
        opacity 0.3s var(--faq-transition-ease),
        padding 0.3s var(--faq-transition-ease);
    opacity: 0;
    padding: 0 22px;
}

.faq-item.active .faq-answer-wrapper {
    max-height: 500px;
    opacity: 1;
    padding: 0 22px 20px;
}

.faq-answer-content {
    border-top: 1px solid var(--faq-border);
    padding: 16px 0;
    color: var(--faq-text-muted);
    font-size: var(--text-xl);
    font-weight: 500;
    line-height: 1.9;
    letter-spacing: 0.1px;
}

.faq-answer-content p {
    margin-bottom: 10px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content strong {
    color: var(--faq-text-dark);
    font-weight: 700;
}

.faq-answer-content .tag {
    display: inline-block;
    background: var(--faq-primary-soft);
    color: var(--faq-primary-dark);
    font-size: var(--text-xl);
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 6px;
    margin: 2px 4px 2px 0;
}

.faq-answer-content ul {
    list-style: none;
    padding: 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.faq-answer-content ul li {
    background: #f8fafc;
    border: 1px solid var(--faq-border);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--faq-text-dark);
}

.no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--faq-text-muted);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.no-results.visible {
    display: flex;
}

.no-results .no-results-icon {
    width: 64px;
    height: 64px;
    background: var(--faq-primary-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--faq-primary);
}

.no-results h3 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--faq-text-dark);
}

.no-results p {
    font-size: var(--text-2xl);
    max-width: 360px;
}

.footer {
    text-align: center;
    padding: 28px 0 12px;
    border-top: 1px solid var(--faq-border);
    margin-top: 10px;
}

.footer p {
    font-size: var(--text-2xl);
    color: var(--faq-text-muted);
    font-weight: 500;
}

.footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 8px;
    flex-wrap: wrap;
}

.footer a {
    color: var(--faq-primary);
    text-decoration: none;
    font-size: var(--text-2xl);
    font-weight: 600;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer a:hover {
    color: var(--faq-primary-dark);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 640px) {
    .page-wrapper {
        padding: 24px 14px 20px;
    }

    .header h1 {
        font-size: var(--text-7xl);
        letter-spacing: -0.3px;
    }

    .header .subtitle {
        font-size: var(--text-2xl);
        padding: 0 10px;
    }

    .header-badge {
        font-size: var(--text-lg);
        padding: 6px 14px;
    }

    .faq-question-btn {
        padding: 8px 12px;
        gap: 12px;
    }

    .faq-question-text {
        font-size: var(--text-2xl);
    }

    .faq-answer-wrapper {
        padding: 0 16px;
    }

    .faq-item.active .faq-answer-wrapper {
        padding: 0 16px 16px;
    }

    .faq-answer-content {
        font-size: var(--text-2xl);
    }

    .search-input {
        padding: 14px 44px 14px 16px;
        font-size: var(--text-2xl);
    }

    .faq-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .faq-icon-wrapper svg {
        width: 15px;
        height: 15px;
    }

    .footer {
        padding: 20px 0 8px;
    }

    .footer p {
        font-size: var(--text-xl);
    }
}

@media (max-width: 380px) {
    .header h1 {
        font-size: var(--text-6xl);
    }

    .faq-question-text {
        font-size: var(--text-2xl);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.5s var(--faq-transition-ease) both;
}

.faq-item:nth-child(1) {
    animation-delay: 0.05s;
}

.faq-item:nth-child(2) {
    animation-delay: 0.1s;
}

.faq-item:nth-child(3) {
    animation-delay: 0.15s;
}

.faq-item:nth-child(4) {
    animation-delay: 0.2s;
}

.faq-item:nth-child(5) {
    animation-delay: 0.25s;
}

.faq-item:nth-child(6) {
    animation-delay: 0.3s;
}

.faq-item:nth-child(7) {
    animation-delay: 0.35s;
}

.faq-item:nth-child(8) {
    animation-delay: 0.4s;
}

.faq-item:nth-child(9) {
    animation-delay: 0.45s;
}

.faq-item:nth-child(10) {
    animation-delay: 0.5s;
}

.faq-item:nth-child(11) {
    animation-delay: 0.55s;
}

.faq-item:nth-child(12) {
    animation-delay: 0.6s;
}









/* ============================================================
   about.html  —  صفحه «درباره ما»
   بر پایهٔ توکن‌های common.css ساخته شده و کاملاً مستقل است.
   ============================================================ */

:root {
    --about-primary: var(--persian-landing);
    --about-primary-dark: #1e0b4f;
    --about-primary-soft: #f5f2ff;
    --about-accent: var(--gold);
    --about-accent-soft: var(--gold-soft);
    --about-text: var(--ink-900);
    --about-muted: var(--ink-600);
    --about-border: var(--border);
    --about-radius: var(--radius-lg);
    --about-radius-sm: var(--sd-radius-md);
    --about-shadow: var(--shadow-md);
    --about-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.about-page {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* ---------- Hero ---------- */
.about-hero {
    position: relative;
    text-align: center;
    padding: 64px 24px 56px;
    margin-bottom: 8px;
    border-radius: var(--about-radius);
    background: radial-gradient(120% 140% at 50% 0%, var(--about-primary-soft) 0%, #ffffff 62%);
    overflow: hidden;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--about-primary) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: 0.05;
    pointer-events: none;
}

.about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--about-primary-soft);
    color: var(--about-primary);
    font-size: var(--text-4xl);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.about-hero h1 {
    font-size: var(--text-7xl);
    line-height: 1.35;
    font-weight: 800;
    color: var(--about-text);
    max-width: 760px;
    margin: 0 auto 18px;
}

.about-hero h1 .accent {
    color: var(--about-primary);
}

.about-hero .lead {
    max-width: 620px;
    margin: 0 auto;
    font-size: var(--text-3xl);
    line-height: 2;
    color: var(--about-muted);
    font-weight: 500;
}

.about-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
    position: relative;
}

.about-stat {
    background: var(--card);
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 14px 22px;
    min-width: 140px;
}

.about-stat strong {
    display: block;
    font-size: var(--text-5xl);
    color: var(--about-primary);
    font-weight: 800;
}

.about-stat span {
    font-size: var(--text-xl);
    color: var(--about-muted);
    font-weight: 500;
}

/* ---------- Section shell ---------- */
.about-section {
    padding: 56px 4px;
}

.about-section.soft {
    background: var(--about-primary-soft);
    border-radius: var(--about-radius);
    padding: 48px 28px;
}

.about-section-head {
    max-width: 640px;
    margin: 0 auto 32px;
    text-align: center;
}

.about-section-head .kicker {
    display: block;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--about-accent);
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.about-section-head h2 {
    font-size: var(--text-6xl);
    font-weight: 800;
    color: var(--about-text);
    margin-bottom: 10px;
}

.about-section-head p {
    font-size: var(--text-2xl);
    color: var(--about-muted);
    line-height: 1.9;
}

/* ---------- Story ---------- */
.about-story {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-story p {
    font-size: var(--text-2xl);
    line-height: 2.05;
    color: var(--about-muted);
}

.about-story strong {
    color: var(--about-text);
}

/* ---------- Grid / Cards ---------- */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.about-grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.about-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.about-card {
    background: var(--card);
    border: 1px solid var(--about-border);
    border-radius: var(--about-radius-sm);
    box-shadow: var(--about-shadow);
    padding: 26px 22px;
    transition: transform .3s var(--about-ease), box-shadow .3s var(--about-ease);
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: var(--about-primary-soft);
    color: var(--about-primary);
    font-size: var(--text-4xl);
    font-weight: 800;
    margin-bottom: 14px;
}

.about-card h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--about-text);
    margin-bottom: 8px;
}

.about-card p {
    font-size: var(--text-xl);
    line-height: 1.9;
    color: var(--about-muted);
}

/* ---------- Team ---------- */
.about-team-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--about-primary), #5a34b1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-5xl);
    margin-bottom: 14px;
}

/* ---------- Values strip ---------- */
.about-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.about-values .tag {
    font-size: var(--text-xl);
    padding: 8px 16px;
}

/* ---------- CTA ---------- */
.about-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--about-primary) 0%, var(--about-primary-dark) 100%);
    color: #fff;
    border-radius: var(--about-radius);
    padding: 52px 24px;
    margin-top: 12px;
}

.about-cta h2 {
    font-size: var(--text-6xl);
    font-weight: 800;
    margin-bottom: 12px;
}

.about-cta p {
    font-size: var(--text-2xl);
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin: 0 auto 26px;
    line-height: 1.9;
}

.about-cta .btn-gold {
    background: var(--about-accent);
    color: var(--about-primary-dark);
    border-color: var(--about-accent);
    font-weight: 700;
}

.about-cta .btn-gold:hover {
    filter: brightness(1.05);
}


/* ===== استایل جدید برای صفحه درباره ما ===== */

/* بلوک کال‌اوت در Hero */
.about-callout {
    max-width: 620px;
    margin: 32px auto 0;
    padding: 16px 20px;
    background-color: var(--about-primary-soft);
    border-right: 4px solid var(--about-primary);
    border-radius: var(--about-radius-sm);
    text-align: center;
}

.about-callout p {
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--about-primary);
    line-height: 1.8;
    margin: 0;
}

/* لیست اهداف در بخش هدف ما */
.about-goals-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-goals-list li {
    position: relative;
    padding-right: 28px;
    font-size: var(--text-xl);
    line-height: 1.8;
    color: var(--about-muted);
}

.about-goals-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    top: 2px;
    color: var(--about-accent);
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 780px) {

    .about-grid.cols-2,
    .about-grid.cols-3 {
        grid-template-columns: 1fr 1fr;
    }

    .about-eyebrow {
            font-size: var(--text-4xl);
    }
}

@media (max-width: 620px) {
    .about-hero {
        padding: 46px 18px 40px;
    }

    .about-hero h1 {
        font-size: var(--text-6xl);
    }

    .about-hero .lead {
        font-size: var(--text-xl);
    }

    .about-grid.cols-2,
    .about-grid.cols-3 {
        grid-template-columns: 1fr;
    }

    .about-section-head h2 {
        font-size: var(--text-5xl);
    }

    .about-cta h2 {
        font-size: var(--text-5xl);
    }
}










/* ============================================================
   privacy.html  —  صفحه «حریم خصوصی»
   بر پایهٔ توکن‌های common.css
   ============================================================ */

:root {
    --priv-primary: var(--persian-landing);
    --priv-primary-soft: #f5f2ff;
    --priv-accent: var(--gold);
    --priv-text: var(--ink-900);
    --priv-muted: var(--ink-600);
    --priv-border: var(--border);
    --priv-radius: var(--radius-lg);
    --priv-radius-sm: var(--sd-radius-md);
}

.priv-page {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ---------- Header ---------- */
.priv-header {
    text-align: center;
    margin-bottom: 30px;
}

.priv-icon-lg {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: var(--priv-primary-soft);
    color: var(--priv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.priv-icon-lg svg {
    width: 30px;
    height: 30px;
}

.priv-header h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    color: var(--priv-text);
    margin-bottom: 10px;
}

.priv-header .priv-subtitle {
    font-size: var(--text-3xl);
    color: var(--priv-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.9;
}

.priv-updated {
    display: inline-block;
    margin-top: 16px;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--priv-primary);
    background: var(--priv-primary-soft);
    padding: 6px 14px;
    border-radius: 999px;
}

/* ---------- Layout: TOC + content ---------- */
.priv-layout {
    display: grid;
    grid-template-columns: 1fr 240px;
    gap: 28px;
    align-items: start;
    margin-top: 36px;
}

.priv-toc {
    position: sticky;
    top: 20px;
    background: var(--card);
    border: 1px solid var(--priv-border);
    border-radius: var(--priv-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 18px;
}

.priv-toc-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--priv-muted);
    margin-bottom: 10px;
}

.priv-toc a {
    display: block;
    padding: 7px 10px;
    border-radius: 8px;
    font-size: var(--text-xl);
    font-weight: 500;
    color: var(--priv-muted);
    text-decoration: none;
    transition: all .2s ease;
}

.priv-toc a:hover {
    background: var(--priv-primary-soft);
    color: var(--priv-primary);
}

/* ---------- Sections ---------- */
.priv-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.priv-section {
    background: var(--card);
    border: 1px solid var(--priv-border);
    border-radius: var(--priv-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 26px 26px;
    scroll-margin-top: 90px;
}

.priv-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.priv-num {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-radius: 10px;
    background: var(--priv-primary-soft);
    color: var(--priv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-2xl);
}

.priv-section h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--priv-text);
}

.priv-section p {
    font-size: var(--text-xl);
    line-height: 2;
    color: var(--priv-muted);
    margin-bottom: 10px;
}

.priv-section p:last-child {
    margin-bottom: 0;
}

.priv-section strong {
    color: var(--priv-text);
}

.priv-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 8px 0 12px;
}

.priv-section ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-xl);
    line-height: 1.9;
    color: var(--priv-muted);
}

.priv-section ul li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--green);
}

.priv-table-wrap {
    overflow-x: auto;
    margin: 10px 0;
}

.priv-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--text-lg);
}

.priv-table th,
.priv-table td {
    text-align: right;
    padding: 10px 12px;
    border: 1px solid var(--priv-border);
}

.priv-table th {
    background: var(--priv-primary-soft);
    color: var(--priv-text);
    font-weight: 700;
}

.priv-table td {
    color: var(--priv-muted);
}

.priv-note {
    display: flex;
    gap: 12px;
    background: var(--priv-primary-soft);
    border-radius: var(--priv-radius-sm);
    padding: 16px 18px;
    margin-top: 8px;
}

.priv-note svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--priv-primary);
    margin-top: 2px;
}

.priv-note p {
    color: var(--priv-text);
    margin: 0;
}

.priv-contact-box {
    text-align: center;
    background: linear-gradient(135deg, var(--priv-primary) 0%, #1e0b4f 100%);
    color: #fff;
    border-radius: var(--priv-radius);
    padding: 34px 24px;
    margin-top: 8px;
}

.priv-contact-box h3 {
    font-size: var(--text-5xl);
    margin-bottom: 8px;
}

.priv-contact-box p {
    color: rgba(255, 255, 255, .85);
    margin-bottom: 18px;
}

.priv-contact-box a.btn {
    background: var(--priv-accent);
    color: #1e0b4f;
    border-color: var(--priv-accent);
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .priv-layout {
        grid-template-columns: 1fr;
    }

    .priv-toc {
        position: static;
    }
}

@media (max-width: 560px) {
    .priv-header h1 {
        font-size: var(--text-6xl);
    }

    .priv-section {
        padding: 20px 18px;
    }
}










/* ============================================================
   services.html  —  صفحه «خدمات»
   بر پایهٔ توکن‌های common.css
   ============================================================ */

:root {
    --serv-primary: var(--persian-landing);
    --serv-primary-soft: #f5f2ff;
    --serv-accent: var(--gold);
    --serv-accent-soft: var(--gold-soft);
    --serv-text: var(--ink-900);
    --serv-muted: var(--ink-600);
    --serv-border: var(--border);
    --serv-radius: var(--radius-lg);
    --serv-radius-sm: var(--sd-radius-md);
}

.serv-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ---------- Header ---------- */
.serv-header {
    text-align: center;
    margin-bottom: 44px;
}

.serv-header h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    color: var(--serv-text);
    margin-bottom: 12px;
}

.serv-header p {
    font-size: var(--text-3xl);
    color: var(--serv-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ---------- Flow / how it works ---------- */
.serv-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 40px 0 56px;
}

.serv-flow-step {
    background: var(--card);
    border: 1px solid var(--serv-border);
    border-radius: var(--serv-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 22px 18px;
    position: relative;
}

.serv-flow-step .num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--serv-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-xl);
    margin-bottom: 12px;
}

.serv-flow-step h4 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--serv-text);
    margin-bottom: 6px;
}

.serv-flow-step p {
    font-size: var(--text-lg);
    color: var(--serv-muted);
    line-height: 1.8;
}

.serv-flow-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 34px;
    left: -14px;
    width: 14px;
    height: 2px;
    background: var(--serv-border);
}

/* ---------- Service cards ---------- */
.serv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.serv-card {
    background: var(--card);
    border: 1px solid var(--serv-border);
    border-radius: var(--serv-radius);
    box-shadow: var(--shadow-sm);
    padding: 28px 24px;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}

.serv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.serv-card .serv-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--serv-primary-soft);
    color: var(--serv-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-5xl);
    margin-bottom: 16px;
}

.serv-card h3 {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--serv-text);
    margin-bottom: 8px;
}

.serv-card p {
    font-size: var(--text-xl);
    color: var(--serv-muted);
    line-height: 1.9;
    margin-bottom: 14px;
}

.serv-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: auto;
}

.serv-card ul li {
    font-size: var(--text-lg);
    color: var(--serv-text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.serv-card ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--serv-accent);
    flex-shrink: 0;
}

.serv-card.featured {
    border-color: var(--serv-primary);
    background: linear-gradient(180deg, #fff 0%, var(--serv-primary-soft) 130%);
}

/* ---------- Goals strip ---------- */
.serv-section {
    margin: 60px 0;
}

.serv-section-head {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 30px;
}

.serv-section-head span.kicker {
    color: var(--serv-accent);
    font-weight: 700;
    font-size: var(--text-xl);
}

.serv-section-head h2 {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--serv-text);
    margin: 6px 0 10px;
}

.serv-section-head p {
    color: var(--serv-muted);
    font-size: var(--text-xl);
    line-height: 1.9;
}

.serv-goals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.serv-goal {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--serv-border);
    border-radius: var(--serv-radius-sm);
    padding: 22px 14px;
    box-shadow: var(--shadow-sm);
}

.serv-goal .emoji {
    font-size: var(--text-6xl);
    margin-bottom: 10px;
}

.serv-goal h4 {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--serv-text);
}

/* ---------- Disciplines ---------- */
.serv-disciplines {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.serv-disciplines .tag {
    font-size: var(--text-xl);
    padding: 10px 18px;
}

/* ---------- CTA ---------- */
.serv-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--serv-primary) 0%, #1e0b4f 100%);
    color: #fff;
    border-radius: var(--serv-radius);
    padding: 50px 24px;
}

.serv-cta h2 {
    font-size: var(--text-6xl);
    font-weight: 800;
    margin-bottom: 10px;
}

.serv-cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 520px;
    margin: 0 auto 24px;
    line-height: 1.9;
    font-size: var(--text-2xl);
}

.serv-cta .btn-gold {
    background: var(--serv-accent);
    color: #1e0b4f;
    border-color: var(--serv-accent);
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .serv-flow {
        grid-template-columns: repeat(2, 1fr);
    }

    .serv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .serv-goals {
        grid-template-columns: repeat(2, 1fr);
    }

    .serv-flow-step:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 560px) {

    .serv-flow,
    .serv-grid,
    .serv-goals {
        grid-template-columns: 1fr;
    }

    .serv-header h1 {
        font-size: var(--text-6xl);
    }

    .serv-cta h2 {
        font-size: var(--text-5xl);
    }
}













/* ============================================================
   support.css  —  صفحه درخواست مشاوره
   بر پایهٔ توکن‌های common.css
   ============================================================ */

:root {
    --consult-primary: var(--persian-landing);
    --consult-primary-dark: #1e0b4f;
    --consult-primary-soft: #f5f2ff;
    --consult-accent: var(--gold);
    --consult-accent-soft: var(--gold-soft);
    --consult-text: var(--ink-900);
    --consult-muted: var(--ink-600);
    --consult-border: var(--border);
    --consult-radius: var(--radius-lg);
    --consult-radius-sm: var(--sd-radius-md);
}

.page-consult {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--gap-lgg);
    display: flex;
    flex-direction: column;
    gap: var(--gap-lg);
}

/* ---------- Header ---------- */
.consult-header-row {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    margin-bottom: var(--gap);
}

.consult-title {
    font-size: var(--text-5xl);
    font-weight: 800;
    color: var(--consult-text);
    margin: 0;
}

.consult-subtitle {
    font-size: var(--text-2xl);
    color: var(--consult-muted);
    margin: 4px 0 0;
    font-weight: 500;
}

/* ---------- Alerts (پیام‌ها) ---------- */
.consult-alerts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: var(--gap-sm);
}

.consult-alerts .alert {
    background: var(--primary-soft);
    color: var(--primary-ink);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: var(--text-xl);
    font-weight: 500;
}

/* ---------- Layout اصلی ---------- */
.consult-wrap {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--gap-lg);
    align-items: start;
}

/* ---------- پنل اطلاعاتی ---------- */
.consult-info {
    background: var(--card);
    border: 1px solid var(--consult-border);
    border-radius: var(--consult-radius);
    box-shadow: var(--shadow-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 20px;
}

.consult-info-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: var(--consult-primary-soft);
    color: var(--consult-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.consult-info-icon svg {
    width: 28px;
    height: 28px;
}

.consult-info h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--consult-text);
    margin: 0;
}

.consult-info-text {
    font-size: var(--text-xl);
    line-height: 1.9;
    color: var(--consult-muted);
    margin: 0;
}

.consult-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.consult-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-lg);
    line-height: 1.7;
    color: var(--consult-muted);
}

.consult-info-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--green);
}

.consult-info-list li b {
    color: var(--consult-text);
    font-weight: 700;
}

.consult-contact {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--consult-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.consult-contact-title {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--consult-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.consult-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--consult-text);
    font-size: var(--text-xl);
    font-weight: 500;
    transition: color 0.2s ease;
}

.consult-contact-link:hover {
    color: var(--consult-primary);
}

.consult-contact-link svg {
    width: 18px;
    height: 18px;
    color: var(--consult-primary);
}

.consult-contact-hours {
    font-size: var(--text-base);
    color: var(--consult-muted);
}

/* ---------- کارت فرم ---------- */
.consult-card {
    background: var(--card);
    border: 1px solid var(--consult-border);
    border-radius: var(--consult-radius);
    box-shadow: var(--shadow-md);
    padding: 28px;
}

/* ---------- فرم ---------- */
.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--consult-text);
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group select,
.form-control,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: inherit;
    font-size: var(--text-xl);
    color: var(--consult-text);
    background: var(--card-soft-2);
    border: 1px solid var(--consult-border);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--consult-primary);
    box-shadow: 0 0 0 4px rgba(50, 18, 122, 0.08);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--ink-400);
    font-weight: 400;
}

/* پیام خطا */
.form-group .error {
    color: var(--red);
    font-size: var(--text-base);
    font-weight: 500;
}

/* انتخاب زمان تماس */
.calltime-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.calltime-option {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--card-soft);
    border: 1px solid var(--consult-border);
    border-radius: 999px;
    padding: 6px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--consult-muted);
    user-select: none;
}

.calltime-option:hover {
    border-color: var(--consult-primary);
    color: var(--consult-primary);
}

.calltime-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid var(--ink-400);
    border-radius: 50%;
    margin: 0;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.calltime-option input[type="radio"]:checked {
    border-color: var(--consult-primary);
}

.calltime-option input[type="radio"]:checked::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--consult-primary);
    border-radius: 50%;
}

.calltime-option:has(input:checked) {
    background: var(--consult-primary-soft);
    border-color: var(--consult-primary);
    color: var(--consult-primary);
}

/* گروه زمان ترجیحی */
#preferred-time-group {
    display: none;
}

#preferred-time-group.is-visible {
    display: flex;
}

/* آپلود فایل */
.file-drop {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: var(--card-soft);
    border: 1.5px dashed var(--consult-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: var(--text-xl);
    color: var(--consult-muted);
    font-weight: 500;
}

.file-drop:hover {
    border-color: var(--consult-primary);
    background: var(--consult-primary-soft);
    color: var(--consult-primary);
}

.file-drop svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-group input[type="file"] {
    display: none;
}

/* دکمه ارسال */
.btn-full {
    width: 100%;
    justify-content: center;
}














.form-control:not([type="file"]),
.form-select {
    width: 100%;
    padding: 10px 14px;
    color: var(--ink-900);
    background: var(--card-soft-2);
    border: 1.5px solid var(--sp-border, var(--border));
    border-radius: var(--sp-radius-sm, var(--radius));
    font: inherit;
    font-size: var(--text-xl);
    line-height: 1.8;
    transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

input[type="datetime-local"].form-control {
    direction: ltr;
    text-align: right;
}

.form-control:not([type="file"]):hover,
.form-select:hover {
    border-color: var(--ink-200);
}

.form-control:not([type="file"]):focus,
.form-select:focus {
    background: var(--card);
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px var(--primary-softer);
}

.form-control::placeholder {
    color: var(--ink-400);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c6170' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
    background-repeat: no-repeat;
    background-position: left 12px center;
    background-size: 16px;
    padding-left: 34px;
    cursor: pointer;
}

/* مخفی کردن اینپوت اصلی فایل (چون از لیبل به‌عنوان دکمه استفاده می‌کنیم) */
.form-control[type="file"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}



/* ---------- Responsive ---------- */
@media (max-width: 900px) {
    .consult-wrap {
        grid-template-columns: 1fr;
    }

    .consult-info {
        position: static;
        order: 2;
    }

    .consult-card {
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .consult-title {
        font-size: var(--text-5xl);
    }

    .consult-card {
        padding: 20px 16px;
    }

    .consult-info {
        padding: 20px 16px;
    }

    .calltime-option {
        padding: 5px 10px;
        font-size: var(--text-base);
    }
}








/* ============================================================
   terms.css  —  صفحه قوانین و مقررات (محتوای آریوس)
   بر پایهٔ توکن‌های common.css
   ============================================================ */

:root {
    --terms-primary: var(--persian-landing);
    --terms-primary-dark: #1e0b4f;
    --terms-primary-soft: #f5f2ff;
    --terms-accent: var(--gold);
    --terms-accent-soft: var(--gold-soft);
    --terms-text: var(--ink-900);
    --terms-muted: var(--ink-600);
    --terms-border: var(--border);
    --terms-radius: var(--radius-lg);
    --terms-radius-sm: var(--sd-radius-md);
}

.terms-page {
    max-width: 960px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ---------- Header ---------- */
.terms-header {
    text-align: center;
    margin-bottom: 40px;
}

.terms-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: var(--terms-primary-soft);
    color: var(--terms-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.terms-icon svg {
    width: 30px;
    height: 30px;
}

.terms-header h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    color: var(--terms-text);
    margin-bottom: 10px;
}

.terms-header .terms-subtitle {
    font-size: var(--text-3xl);
    color: var(--terms-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.9;
}

.terms-updated {
    display: inline-block;
    margin-top: 16px;
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--terms-primary);
    background: var(--terms-primary-soft);
    padding: 6px 14px;
    border-radius: 999px;
}

/* ---------- محتوا ---------- */
.terms-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terms-section {
    background: var(--card);
    border: 1px solid var(--terms-border);
    border-radius: var(--terms-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    transition: box-shadow 0.3s ease;
}

.terms-section:hover {
    box-shadow: var(--shadow-md);
}

.terms-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.terms-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--terms-primary-soft);
    color: var(--terms-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--text-3xl);
}

.terms-section h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--terms-text);
    margin: 0;
}

.terms-section p {
    font-size: var(--text-xl);
    line-height: 2;
    color: var(--terms-muted);
    margin-bottom: 12px;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-section strong {
    color: var(--terms-text);
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-xl);
    line-height: 1.9;
    color: var(--terms-muted);
}

.terms-list li svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    color: var(--green);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 8px;
}

.terms-card {
    background: var(--card-soft);
    border: 1px solid var(--terms-border);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.terms-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--terms-text);
    margin-bottom: 6px;
}

.terms-card p {
    font-size: var(--text-lg);
    color: var(--terms-muted);
    margin: 0;
    line-height: 1.8;
}

.terms-note {
    display: flex;
    gap: 12px;
    background: var(--terms-primary-soft);
    border-radius: var(--terms-radius-sm);
    padding: 16px 18px;
    margin-top: 8px;
}

.terms-note svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--terms-primary);
    margin-top: 2px;
}

.terms-note p {
    color: var(--terms-text);
    margin: 0;
}

.terms-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--terms-primary) 0%, #1e0b4f 100%);
    color: #fff;
    border-radius: var(--terms-radius);
    padding: 48px 24px;
    margin-top: 8px;
}

.terms-cta h2 {
    font-size: var(--text-6xl);
    font-weight: 800;
    margin-bottom: 12px;
}

.terms-cta p {
    font-size: var(--text-2xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
    margin: 0 auto 26px;
    line-height: 1.9;
}

.terms-cta .btn-gold {
    background: var(--terms-accent);
    color: #1e0b4f;
    border-color: var(--terms-accent);
    font-weight: 700;
}

.terms-cta .btn-gold:hover {
    filter: brightness(1.05);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .terms-header h1 {
        font-size: var(--text-6xl);
    }

    .terms-section {
        padding: 20px 18px;
    }

    .terms-section h2 {
        font-size: var(--text-3xl);
    }

    .terms-cta h2 {
        font-size: var(--text-5xl);
    }
}









/* ============================================================
   contact.css  —  صفحه تماس با ما (آریوس)
   بر پایهٔ توکن‌های common.css
   ============================================================ */

:root {
    --contact-primary: var(--persian-landing);
    --contact-primary-dark: #1e0b4f;
    --contact-primary-soft: #f5f2ff;
    --contact-accent: var(--gold);
    --contact-accent-soft: var(--gold-soft);
    --contact-text: var(--ink-900);
    --contact-muted: var(--ink-600);
    --contact-border: var(--border);
    --contact-radius: var(--radius-lg);
    --contact-radius-sm: var(--sd-radius-md);
}

.contact-page {
    max-width: 1040px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

/* ---------- Header ---------- */
.contact-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 18px;
    background: var(--contact-primary-soft);
    color: var(--contact-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 30px;
    height: 30px;
}

.contact-header h1 {
    font-size: var(--text-7xl);
    font-weight: 800;
    color: var(--contact-text);
    margin-bottom: 10px;
}

.contact-header .contact-subtitle {
    font-size: var(--text-3xl);
    color: var(--contact-muted);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.9;
}

/* ---------- Quick contact grid ---------- */
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 32px;
}

.contact-quick-card {
    display: -webkit-inline-box;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: var(--card);
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

a.contact-quick-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--contact-primary);
    transform: translateY(-2px);
}

.contact-quick-span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-right: 5px;
}

.contact-quick-static {
    cursor: default;
}

.contact-quick-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--contact-primary-soft);
    color: var(--contact-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-quick-icon svg {
    width: 20px;
    height: 20px;
}

.contact-quick-label {
    font-size: var(--text-base);
    color: var(--contact-muted);
    font-weight: 500;
}

.contact-quick-value {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--contact-text);
    word-break: break-word;
}

/* ---------- Main: address + legal ---------- */
.contact-main {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-section {
    background: var(--card);
    border: 1px solid var(--contact-border);
    border-radius: var(--contact-radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 28px;
    transition: box-shadow 0.3s ease;
}

.contact-section:hover {
    box-shadow: var(--shadow-md);
}

.contact-section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-section-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 12px;
    background: var(--contact-primary-soft);
    color: var(--contact-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section-icon svg {
    width: 20px;
    height: 20px;
}

.contact-section h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--contact-text);
    margin: 0;
}

.contact-address-text {
    font-size: var(--text-xl);
    line-height: 2;
    color: var(--contact-muted);
    margin-bottom: 18px;
}

.contact-postal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--card-soft);
    border: 1px solid var(--contact-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
}

.contact-postal span {
    font-size: var(--text-lg);
    color: var(--contact-muted);
    font-weight: 500;
}

.contact-postal strong {
    font-size: var(--text-xl);
    color: var(--contact-text);
    font-weight: 700;
}

.contact-legal-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-legal-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--contact-border);
}

.contact-legal-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-legal-row:first-child {
    padding-top: 0;
}

.contact-legal-row dt {
    font-size: var(--text-lg);
    color: var(--contact-muted);
    font-weight: 500;
}

.contact-legal-row dd {
    font-size: var(--text-xl);
    color: var(--contact-text);
    font-weight: 700;
    margin: 0;
    text-align: left;
}

/* ---------- CTA ---------- */
.contact-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, var(--contact-primary) 0%, var(--contact-primary-dark) 100%);
    color: #fff;
    border-radius: var(--contact-radius);
    padding: 40px 36px;
    margin-top: 12px;
}

.contact-cta-text h2 {
    font-size: var(--text-5xl);
    font-weight: 800;
    margin-bottom: 8px;
}

.contact-cta-text p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 420px;
    line-height: 1.9;
    margin: 0;
}

.contact-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.contact-cta .btn-gold {
    background: var(--contact-accent);
    color: #1e0b4f;
    border-color: var(--contact-accent);
    font-weight: 700;
}

.contact-cta .btn-gold:hover {
    filter: brightness(1.05);
}

.contact-cta-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
}

.contact-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .contact-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .contact-header h1 {
        font-size: var(--text-6xl);
    }

    .contact-quick-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .contact-section {
        padding: 20px 18px;
    }

    .contact-section h2 {
        font-size: var(--text-3xl);
    }

    .contact-cta {
        padding: 28px 22px;
        justify-content: center;
        text-align: center;
    }

    .contact-cta-text p {
        max-width: none;
    }

    .contact-cta-actions {
        justify-content: center;
        width: 100%;
    }

    .contact-legal-row dd {
        text-align: right;
    }
}