@font-face{font-family:IRANYekanX;src:url('/assets/fonts/IRANYekanX-Regular.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'IRANYekanX', 'Segoe UI', Tahoma, sans-serif;
    background: #f8f9fc;
    color: #1a1a2e;
    line-height: 1.8;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: all 0.3s ease;
}

/* ===== Header ===== */
.header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    color: #4a4a6a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #4f46e5;
}

.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-login {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 14px;
}

.btn-login:hover {
    background: #f0f0ff;
}

.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

/* ===== Hero ===== */
.hero {
    background: linear-gradient(180deg, #f0f0ff 0%, #f8f9fc 100%);
    padding: 80px 24px 60px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: #e8e8ff;
    color: #4f46e5;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.hero p {
    font-size: 17px;
    color: #6b6b8a;
    margin-bottom: 32px;
    line-height: 2;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.45);
}

.btn-hero-secondary {
    background: #fff;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 14px;
    font-size: 16px;
    border: 2px solid #e0e0ff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-hero-secondary:hover {
    border-color: #4f46e5;
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 13px;
    color: #6b6b8a;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.2);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ===== Trusted By ===== */
.trusted {
    padding: 40px 24px;
    background: #fff;
    border-top: 1px solid #f0f0f5;
    border-bottom: 1px solid #f0f0f5;
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trusted-container p {
    font-size: 13px;
    color: #9999b0;
    margin-bottom: 20px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
    font-weight: 700;
    color: #4a4a6a;
    font-size: 16px;
}

/* ===== Stats ===== */
.stats {
    padding: 60px 24px;
    background: #fff;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #4f46e5;
}

.stat-label {
    font-size: 14px;
    color: #6b6b8a;
    margin-top: 4px;
}

/* ===== Common Section ===== */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #6b6b8a;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
}

/* ===== Features ===== */
.features {
    padding: 80px 24px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f5;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e8e8ff, #f0f0ff);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.feature-card p {
    font-size: 14px;
    color: #6b6b8a;
    line-height: 1.9;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 80px 24px;
    background: #fff;
}

.how-container {
    max-width: 1100px;
    margin: 0 auto;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 32px 20px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.step h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.step p {
    font-size: 14px;
    color: #6b6b8a;
    line-height: 1.9;
}

/* ===== Pricing ===== */
.pricing {
    padding: 80px 24px;
    background: #f8f9fc;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid #f0f0f5;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #e0e0ff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.pricing-card.popular {
    border-color: #4f46e5;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
    transform: scale(1.03);
}

.popular-badge {
    position: absolute;
    top: -14px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f5;
}

.price-amount {
    font-size: 40px;
    font-weight: 800;
    color: #4f46e5;
}

.price-unit {
    font-size: 13px;
    color: #6b6b8a;
    display: block;
    margin-top: 4px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: #4a4a6a;
}

.btn-pricing {
    display: block;
    text-align: center;
    background: #f0f0ff;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
}

.btn-pricing:hover {
    background: #e0e0ff;
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.btn-pricing.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

/* ===== Testimonials ===== */
.testimonials {
    padding: 80px 24px;
    background: #fff;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f9fc;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #f0f0f5;
}

.testimonial-stars {
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14px;
    color: #4a4a6a;
    line-height: 2;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    font-size: 14px;
    color: #1a1a2e;
}

.author-role {
    font-size: 12px;
    color: #6b6b8a;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 24px;
    background: #f8f9fc;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 16px;
    border: 1px solid #f0f0f5;
}

.faq-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 14px;
    color: #6b6b8a;
    line-height: 2;
}

/* ===== Blog ===== */
.blog {
    padding: 80px 24px;
    background: #fff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0f0f5;
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 24px;
}

.blog-tag {
    display: inline-block;
    background: #e8e8ff;
    color: #4f46e5;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a2e;
    line-height: 1.6;
}

.blog-card p {
    font-size: 13px;
    color: #6b6b8a;
    line-height: 1.9;
    margin-bottom: 16px;
}

.blog-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
}

.blog-link:hover {
    text-decoration: underline;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 24px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    text-align: center;
    color: #fff;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 17px;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 2;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    background: #fff;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 16px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 14px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-cta-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

/* ===== Footer ===== */
.footer {
    background: #1a1a2e;
    color: #a0a0c0;
    padding: 60px 24px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 2;
    margin-top: 16px;
    color: #8888a8;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2a2a4e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
}

.social-links a:hover {
    background: #4f46e5;
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #8888a8;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #2a2a4e;
    text-align: center;
    font-size: 13px;
    color: #6666aa;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 34px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.popular {
        transform: scale(1);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero p {
        font-size: 15px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        grid-template-columns: 1fr;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        text-align: center;
        justify-content: center;
    }
    .cta h2 {
        font-size: 26px;
    }
    .section-title {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .header-buttons .btn-login {
        display: none;
    }
    .hero h1 {
        font-size: 24px;
    }
    .hero-image img {
        height: 250px;
    }
}
/* ===== Login Options ===== */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a4a6a;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #4f46e5;
    cursor: pointer;
    margin: 0;
    padding: 0;
}

.forgot-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* ===== Divider ===== */
.divider {
    position: relative;
    text-align: center;
    margin: 28px 0;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8e8f0;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 16px;
    color: #9999b0;
    font-size: 13px;
}

/* ===== Social Login ===== */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.btn-social {
    background: #fff;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-social:hover {
    border-color: #4f46e5;
    background: #fafaff;
}

/* ===== Responsive for Social Login ===== */
@media (max-width: 480px) {
    .social-login {
        grid-template-columns: 1fr;
    }
    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
/* ===== Forms (Login/Signup) ===== */
.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.form-subtitle {
    text-align: center;
    color: #6b6b8a;
    font-size: 14px;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fafafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    background: #fff;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.4);
}

.form-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6b6b8a;
}

.form-footer a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* ===== Section (general) ===== */
.section {
    padding: 80px 24px;
}

.section.white {
    background: #fff;
}

.section.gray {
    background: #f8f9fc;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}
/* ===== Password Strength Indicator ===== */
.form-group input[type="password"]:focus {
    border-color: #4f46e5;
}

/* ===== Terms link in form options ===== */
.form-options .checkbox-label a {
    transition: opacity 0.3s;
}

.form-options .checkbox-label a:hover {
    opacity: 0.7;
}

/* ===== Form container for signup (bigger) ===== */
.form-container.signup {
    max-width: 540px;
}

@media (max-width: 480px) {
    .form-container {
        padding: 32px 20px;
    }
}
/* ===== Feature Blocks (Deep Dive) ===== */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-block.reverse {
    direction: ltr;
}

.feature-block.reverse > * {
    direction: rtl;
}

.feature-block-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
}

.feature-block-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-tag {
    display: inline-block;
    background: #e8e8ff;
    color: #4f46e5;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.feature-block-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.feature-block-content > p {
    font-size: 16px;
    color: #6b6b8a;
    line-height: 2;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    font-size: 15px;
    color: #4a4a6a;
    font-weight: 500;
}

/* ===== Comparison Table ===== */
.comparison-table-wrap {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 500px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 24px;
    text-align: right;
    border-bottom: 1px solid #f0f0f5;
    font-size: 14px;
}

.comparison-table thead {
    background: #f8f9fc;
}

.comparison-table th {
    font-weight: 800;
    color: #1a1a2e;
    font-size: 15px;
}

.comparison-table th.highlight {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
}

.comparison-table td {
    color: #4a4a6a;
}

.comparison-table td.highlight {
    background: #f0f0ff;
    color: #4f46e5;
    font-weight: 700;
    text-align: center;
}

.comparison-table tbody tr:hover {
    background: #fafafc;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* ===== Responsive for Feature Blocks & Table ===== */
@media (max-width: 992px) {
    .feature-block,
    .feature-block.reverse {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: rtl;
    }
    .feature-block.reverse > * {
        direction: rtl;
    }
    .feature-block-content h2 {
        font-size: 24px;
    }
    .feature-block-image img {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .comparison-table th,
    .comparison-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
    .feature-block-content h2 {
        font-size: 20px;
    }
}
/* ===== Billing Note ===== */
.billing-note {
    text-align: center;
    background: linear-gradient(135deg, #f0f0ff, #f8f9fc);
    padding: 60px 40px;
    border-radius: 24px;
    border: 2px solid #e8e8ff;
    max-width: 700px;
    margin: 0 auto;
}

.billing-note h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.billing-note p {
    font-size: 16px;
    color: #6b6b8a;
    line-height: 2;
}

@media (max-width: 480px) {
    .billing-note {
        padding: 40px 24px;
    }
    .billing-note h2 {
        font-size: 22px;
    }
}
/* ===== FAQ Search ===== */
.faq-search {
    max-width: 700px;
    margin: 0 auto;
}

.faq-search input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e8e8f0;
    border-radius: 16px;
    font-family: inherit;
    font-size: 15px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-search input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.15);
}

/* ===== FAQ Category ===== */
.faq-category {
    margin-bottom: 60px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 3px solid #4f46e5;
    display: inline-block;
}

.faq-category .faq-list {
    margin-top: 0;
}

.faq-item {
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

@media (max-width: 480px) {
    .faq-category-title {
        font-size: 20px;
    }
    .faq-search input {
        padding: 14px 18px;
        font-size: 14px;
    }
}
/* ===== Contact Cards ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 20px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.1);
    border-color: #4f46e5;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 26px;
    margin: 0 auto 16px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 15px;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 6px;
    direction: ltr;
}

.contact-card span {
    font-size: 13px;
    color: #8a8aa0;
}

/* ===== Contact Wrapper ===== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 32px;
    align-items: start;
}

/* ===== Info Side ===== */
.contact-info {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-info h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.contact-info-desc {
    font-size: 14px;
    color: #8a8aa0;
    line-height: 1.9;
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f7;
}

.contact-info-item:last-of-type {
    border-bottom: none;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.contact-info-item span {
    font-size: 13px;
    color: #8a8aa0;
    direction: ltr;
    display: inline-block;
}

/* ===== Form Card ===== */
.contact-form-card {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-form-card h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-form-desc {
    font-size: 14px;
    color: #8a8aa0;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-card .form-group {
    margin-bottom: 18px;
}

.contact-form-card .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select,
.contact-form-card .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    color: #1a1a2e;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form-card .form-group input:focus,
.contact-form-card .form-group select:focus,
.contact-form-card .form-group textarea:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.contact-form-card .form-group textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.8;
}

.form-error {
    display: none;
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin-top: 8px;
}

.form-success {
    display: none;
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

/* ===== Map ===== */
.contact-map {
    background: #fff;
    border: 1px solid #e8e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-map-header {
    padding: 28px 32px;
    border-bottom: 1px solid #f0f0f7;
}

.contact-map-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-map-header p {
    font-size: 14px;
    color: #8a8aa0;
}

.contact-map-frame {
    height: 380px;
    background: #f0f0f7;
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .contact-form-card,
    .contact-info {
        padding: 24px 20px;
    }
    .contact-map-frame {
        height: 280px;
    }
}
/* ===== About Story ===== */
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-content h2 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.about-story-content p {
    font-size: 15px;
    color: #6b6b8a;
    line-height: 2.2;
    margin-bottom: 16px;
}

.about-story-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.15);
}

.about-story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

/* ===== Team ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8e8ff, #f0f0ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 16px;
}

.team-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 13px;
    color: #4f46e5;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 13px;
    color: #6b6b8a;
    line-height: 1.9;
}

/* ===== Mission ===== */
.about-mission {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 24px;
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.25);
}

.about-mission h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.mission-text {
    font-size: 18px;
    color: #4a4a6a;
    line-height: 2.4;
    font-style: italic;
    position: relative;
    padding: 0 40px;
}

.mission-text::before {
    content: '"';
    position: absolute;
    right: 0;
    top: -10px;
    font-size: 80px;
    color: #e8e8ff;
    font-family: Georgia, serif;
    line-height: 1;
}

.mission-text::after {
    content: '"';
    position: absolute;
    left: 0;
    bottom: -40px;
    font-size: 80px;
    color: #e8e8ff;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ===== Why Us ===== */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-us-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-us-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.why-us-icon {
    width: 48px;
    height: 48px;
    background: #eef2ff;
    color: #4f46e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.why-us-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.why-us-item p {
    font-size: 13px;
    color: #6b6b8a;
    line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-story {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-story-content h2 {
        font-size: 24px;
    }
    .about-story-image img {
        height: 300px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mission-text {
        font-size: 16px;
        padding: 0 20px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .about-mission h2 {
        font-size: 22px;
    }
    .mission-text {
        font-size: 15px;
        padding: 0;
    }
    .mission-text::before,
    .mission-text::after {
        display: none;
    }
}
/* ===== Blog Featured ===== */
.blog-featured {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.blog-featured-image {
    height: 100%;
    min-height: 400px;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-featured-content {
    padding: 40px 40px 40px 0;
}

.blog-featured-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 16px 0;
}

.blog-featured-content p {
    font-size: 15px;
    color: #6b6b8a;
    line-height: 2.1;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #8a8aa0;
    margin-bottom: 20px;
}

/* ===== Blog Filters ===== */
.blog-filters {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-search input {
    width: 100%;
    padding: 16px 22px;
    border: 2px solid #e8e8f0;
    border-radius: 14px;
    font-family: inherit;
    font-size: 15px;
    background: #fff;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.blog-search input:focus {
    outline: none;
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.blog-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 22px;
    background: #fff;
    border: 2px solid #e8e8f0;
    border-radius: 50px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: #4a4a6a;
    cursor: pointer;
    transition: all 0.3s;
}

.category-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.category-btn.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* ===== Blog Card Meta Small ===== */
.blog-meta-small {
    display: flex;
    gap: 14px;
    font-size: 12px;
    color: #9999b0;
    margin-bottom: 12px;
}

/* ===== Blog Empty ===== */
.blog-empty {
    text-align: center;
    padding: 60px 20px;
}

.blog-empty-icon {
    font-size: 60px;
    margin-bottom: 16px;
    opacity: 0.6;
}

.blog-empty p {
    font-size: 15px;
    color: #6b6b8a;
}

/* ===== Pagination ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.pagination-btn {
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #4a4a6a;
    text-decoration: none;
    padding: 0 16px;
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #4f46e5;
    color: #4f46e5;
}

.pagination-btn.active {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
}

/* ===== Newsletter ===== */
.newsletter {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #f0f0ff, #f8f9fc);
    border: 2px solid #e8e8ff;
    border-radius: 24px;
    padding: 60px 40px;
}

.newsletter-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.25);
}

.newsletter h2 {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.newsletter > p {
    font-size: 15px;
    color: #6b6b8a;
    line-height: 1.9;
    margin-bottom: 28px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #e8e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 14px;
    background: #fff;
    transition: border-color 0.3s;
}

.newsletter-input:focus {
    outline: none;
    border-color: #4f46e5;
}

.newsletter-form .btn-primary {
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .blog-featured {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .blog-featured-image {
        min-height: 260px;
    }
    .blog-featured-content {
        padding: 32px 24px;
    }
    .blog-featured-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .newsletter {
        padding: 40px 24px;
    }
    .newsletter h2 {
        font-size: 22px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .blog-categories {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }
    .category-btn {
        flex-shrink: 0;
    }
}
/* ===== Demo Video ===== */
.demo-video-wrap {
    max-width: 960px;
    margin: 0 auto;
}

.demo-video-player {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(79, 70, 229, 0.2);
    cursor: pointer;
}

.demo-video-player img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.demo-video-player:hover img {
    transform: scale(1.03);
}

.demo-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.75), rgba(124, 58, 237, 0.75));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #fff;
    transition: background 0.3s;
}

.demo-video-player:hover .demo-video-overlay {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.85), rgba(124, 58, 237, 0.85));
}

.demo-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    border: none;
    color: #4f46e5;
    font-size: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: pulsePlay 2s infinite;
}

.demo-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

@keyframes pulsePlay {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(255, 255, 255, 0.6);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
    }
}

.demo-video-overlay p {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.95;
}

.demo-video-meta {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}

.demo-video-stats {
    display: flex;
    gap: 24px;
    background: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f5;
    font-size: 14px;
    color: #4a4a6a;
    font-weight: 600;
    flex-wrap: wrap;
    justify-content: center;
}

/* ===== Demo Steps ===== */
.demo-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.demo-step {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #f0f0f5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.1);
}

.demo-step-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

.demo-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e8e8ff, #f0f0ff);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin: 0 auto 20px;
}

.demo-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.demo-step p {
    font-size: 14px;
    color: #6b6b8a;
    line-height: 1.9;
    margin-bottom: 24px;
}

.btn-demo {
    display: inline-block;
    background: #f0f0ff;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.35);
}

/* ===== Demo Gallery ===== */
.demo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.demo-gallery-item {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f0f0f5;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.demo-gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.demo-gallery-caption {
    padding: 20px 24px;
}

.demo-gallery-caption h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.demo-gallery-caption p {
    font-size: 13px;
    color: #6b6b8a;
}

/* ===== Demo Highlights ===== */
.demo-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.demo-highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 18px;
    padding: 22px 24px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.demo-highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.demo-highlight-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #eef2ff, #e8e8ff);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.demo-highlight-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.demo-highlight-item p {
    font-size: 13px;
    color: #6b6b8a;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .demo-video-player img {
        height: 380px;
    }
    .demo-steps {
        grid-template-columns: 1fr;
    }
    .demo-gallery {
        grid-template-columns: 1fr;
    }
    .demo-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .demo-video-player img {
        height: 260px;
    }
    .demo-play-btn {
        width: 72px;
        height: 72px;
        font-size: 28px;
    }
    .demo-video-overlay p {
        font-size: 14px;
    }
    .demo-video-stats {
        gap: 14px;
        font-size: 13px;
        padding: 12px 20px;
    }
    .demo-highlights {
        grid-template-columns: 1fr;
    }
    .demo-gallery-item img {
        height: 200px;
    }
}
/* ===== Legal Layout ===== */
.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

/* ===== Legal Sidebar ===== */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-toc {
    background: #f8f9fc;
    border: 1px solid #f0f0f5;
    border-radius: 20px;
    padding: 28px 24px;
}

.legal-toc h3 {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e8e8ff;
}

.legal-toc ul {
    list-style: none;
}

.legal-toc ul li {
    margin-bottom: 4px;
}

.legal-toc ul li a {
    display: block;
    padding: 8px 12px;
    color: #6b6b8a;
    text-decoration: none;
    font-size: 13px;
    border-radius: 8px;
    transition: all 0.3s;
}

.legal-toc ul li a:hover {
    background: #eef2ff;
    color: #4f46e5;
    padding-right: 16px;
}

/* ===== Legal Content ===== */
.legal-content {
    max-width: 800px;
}

.legal-last-update {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.legal-intro {
    background: linear-gradient(135deg, #f0f0ff, #f8f9fc);
    border-right: 4px solid #4f46e5;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.legal-intro p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 2.1;
    margin: 0;
}

.legal-section {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.legal-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f5;
}

.legal-section h3 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 2.2;
    margin-bottom: 14px;
}

.legal-section ul {
    list-style: none;
    margin: 16px 0;
}

.legal-section ul li {
    position: relative;
    padding-right: 24px;
    font-size: 15px;
    color: #4a4a6a;
    line-height: 2.1;
    margin-bottom: 10px;
}

.legal-section ul li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: #4f46e5;
    font-weight: 800;
    font-size: 14px;
}

.legal-section a {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed #4f46e5;
}

.legal-section a:hover {
    border-bottom-style: solid;
}

.legal-section strong {
    color: #1a1a2e;
    font-weight: 700;
}

/* ===== Legal Footer ===== */
.legal-footer {
    background: linear-gradient(135deg, #f0f0ff, #f8f9fc);
    border: 2px solid #e8e8ff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    margin-top: 48px;
}

.legal-footer p {
    font-size: 15px;
    color: #4a4a6a;
    line-height: 2;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary-link {
    display: inline-block;
    background: #fff;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 14px;
    border: 2px solid #e8e8ff;
    transition: all 0.3s;
}

.btn-secondary-link:hover {
    border-color: #4f46e5;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .legal-sidebar {
        position: static;
    }
    .legal-toc ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

@media (max-width: 600px) {
    .legal-toc ul {
        grid-template-columns: 1fr;
    }
    .legal-section h2 {
        font-size: 18px;
    }
    .legal-section p,
    .legal-section ul li {
        font-size: 14px;
    }
    .legal-intro {
        padding: 18px 20px;
    }
    .legal-footer {
        padding: 24px 20px;
    }
    .legal-actions {
        flex-direction: column;
    }
    .legal-actions .btn-primary,
    .legal-actions .btn-secondary-link {
        width: 100%;
        text-align: center;
    }
}