* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* IRANYekan Font Faces */
@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 100;
    src: url(/fonts/iranyekanweb/iranyekanwebthin.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebthin.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebthin.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebthin.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 300;
    src: url(/fonts/iranyekanweb/iranyekanweblight.eot);
    src: url(/fonts/iranyekanweb/iranyekanweblight.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanweblight.woff2) format("woff2"), url(/fonts/iranyekanweb/iranyekanweblight.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanweblight.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 400;
    src: url(/fonts/iranyekanweb/iranyekanwebregular.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebregular.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebregular.woff2) format("woff2"), url(/fonts/iranyekanweb/iranyekanwebregular.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebregular.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 500;
    src: url(/fonts/iranyekanweb/iranyekanwebmedium.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebmedium.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebmedium.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebmedium.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 700;
    src: url(/fonts/iranyekanweb/iranyekanwebbold.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebbold.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebbold.woff2) format("woff2"), url(/fonts/iranyekanweb/iranyekanwebbold.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebbold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 800;
    src: url(/fonts/iranyekanweb/iranyekanwebextrabold.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebextrabold.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebextrabold.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebextrabold.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 900;
    src: url(/fonts/iranyekanweb/iranyekanwebblack.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebblack.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebblack.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebblack.ttf) format("truetype");
}

@font-face {
    font-display: swap;
    font-family: IRANYekan;
    font-style: normal;
    font-weight: 950;
    src: url(/fonts/iranyekanweb/iranyekanwebextrablack.eot);
    src: url(/fonts/iranyekanweb/iranyekanwebextrablack.eot) format("embedded-opentype"), url(/fonts/iranyekanweb/iranyekanwebextrablack.woff) format("woff"), url(/fonts/iranyekanweb/iranyekanwebextrablack.ttf) format("truetype");
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: url('/images/bg.png') center center / cover no-repeat fixed,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 50px;
    background: rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 3.5rem;
}

.hero-title .highlight {
    background: #00F5A0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-actions .btn {
    text-align: center
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #00F5A0;
    color: #3b0d7e;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.btn.large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation Menu */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    background: rgba(58, 12, 98, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: linear-gradient(45deg, #00F5A0, #9B5DE5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00F5A0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F5A0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.mobile-nav-side {
    display: flex;
    align-items: center;
}
.mobile-nav-actions {
    display: none;
    gap: 1rem;
    align-items: center;
}
.mobile-nav-actions .mobile-login-btn {
    margin-bottom: 0 !important;
    width: auto !important;;
}

.nav-btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Code Window */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.hero-video {
    width: 100%;
    max-width: 750px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.hero-video video {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.hero-video-mobile {
    display: none;
}

.hero-video-desktop {
    display: block;
}

.code-window {
    background: rgba(0,0,0,0.8);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px);
}

.window-header {
    background: rgba(255,255,255,0.1);
    padding: 12px 16px;
    display: flex;
    align-items: center;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.code-content {
    padding: 20px;
    font-family: 'Fira Code', Monaco, monospace;
    font-size: 14px;
    line-height: 1.5;
}

.code-line {
    margin-bottom: 4px;
}

.indent { padding-left: 20px; }
.comment { color: #6a9955; }
.keyword { color: #569cd6; }
.variable { color: #9cdcfe; }
.function { color: #dcdcaa; }
.property { color: #92c5f7; }
.string { color: #ce9178; }

/* Features Section */
.features-section {
    padding: 40px 0;
    background: rgb(114 55 162 / 95%);
    z-index: 10;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Compliance Section */
.compliance-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B5CF6 0%, #667eea 100%);
}

.compliance-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
}

.compliance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    max-width: 600px;
}

.compliance-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
}

.compliance-features {
    list-style: none;
    max-width: 600px;
}

.compliance-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 30px;
}

.compliance-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ECDC4;
    font-weight: bold;
}

.robot-character {
    font-size: 8rem;
    opacity: 0.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background: rgba(255,255,255,0.05);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* How it works Section */
.how-it-works-section {
    padding: 40px 0;
    background: #1a0836e6;
    position: relative;

}

.how-it-works-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-top: 3rem;
}

.how-it-works-image {
    flex: 0 0 45%;
}

.how-it-works-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    flex: 1;
}

.step-card {
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-align: left;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00F5A0, #9B5DE5);
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-desc h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.step-desc p {
    opacity: 0.85;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* Showcase Section */
.showcase-section {
    padding: 80px 0 60px;
    background: #1a0836e6;
    position: relative;
    overflow: hidden;
}

.showcase-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.showcase-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.85;
    color: #ffffff;
}

.showcase-slider-wrapper {
    overflow: hidden;
    width: 100%;
    margin-top: 3rem;
    direction: ltr;
    position: relative;
    padding:10px 0;
}

.showcase-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.showcase-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.showcase-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.showcase-prev-btn {
    left: 20px;
}

.showcase-next-btn {
    right: 20px;
}

.showcase-slider {
    display: flex;
    gap: 2rem;
    width: fit-content;
    transition: none;
    will-change: transform;
    touch-action: pan-y;
    cursor: grab;
}

.showcase-slide {
    flex-shrink: 0;
    width: 320px;
    text-decoration: none;
    color: inherit;
    display: block;
}

.showcase-slide .showcase-image {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.15);
}

.showcase-slide:hover .showcase-image {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-slide:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
    text-align: right;
}

.showcase-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: #ffffff;
}

.showcase-overlay p {
    opacity: 0.9;
    font-size: 0.9rem;
    color: #ffffff;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: #f5f5f5;
}

.pricing-section .section-title {
    color: #3a0c62;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #3a0c62;
    margin-bottom: 3rem;
}

.pricing-calculator {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-container {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 2rem;
}

.pricing-category {
    width: 100%;
}

.pricing-separator {
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-sign {
    background: #00F5A0;
    color: #3a0c62;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,245,160,0.3);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #3a0c62;
    text-align: center;
}

.pricing-rows {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-row {
    background: rgb(46 255 182 / 5%);
    border: 2px solid rgb(46 255 182 / 15%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-row:hover {
    border-color: rgba(0,245,160,0.4);
    background: rgba(0,245,160,0.08);
}

.pricing-row.selected {
    border-color: #00F5A0 !important;
    background: rgba(0,245,160,0.2) !important;
    box-shadow: 0 5px 15px rgba(0,245,160,0.2);
}

.pricing-row.popular {
    background: rgba(0,245,160,0.05);
    border: 2px solid rgba(0,245,160,0.2);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 2rem;
    background: linear-gradient(45deg, #00F5A0, #9B5DE5);
    color: white;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
    flex-wrap: wrap;
}

.plan-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    color: #3a0c62;
    white-space: nowrap;
}

.plan-features {
    font-size: 0.9rem;
    color: #3a0c62;
    opacity: 0.8;
    margin-bottom: 0;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #00d389;
}

.plan-price span {
    font-size: 1rem;
    opacity: 0.7;
    color: #3a0c62;
}

.selection-indicator {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: #00F5A0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    color: #3b0d7e;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-row.selected .selection-indicator {
    opacity: 1;
}

.total-price-display {
    background: rgba(0,245,160,0.05);
    border: 2px solid rgba(0,245,160,0.3);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(15px);
}
.total-price-display-action {
    text-align: center;
}

.total-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.total-info {
    flex: 1;
}

.total-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #3a0c62;
}

.selected-plans {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #3a0c62;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00F5A0, #9B5DE5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.total-price span {
    font-size: 1rem;
    color: #3a0c62;
    opacity: 0.7;
}

.proceed-section .btn:disabled,
.total-price-display .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet styles */
    .hero-video {
        max-width: 500px;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 48px;
        left: 0;
        right: 0;
        background: rgba(58, 12, 98, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-actions {
        display: none;
    }

    .mobile-nav-actions {
        display: flex;
    }

    .mobile-login-btn {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Group mobile actions together on right side */
    .nav-content {
        justify-content: space-between;
    }
    
    .nav-content > *:last-child {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 2.5rem;
    }

    .hero-video {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-video-desktop {
        display: none;
    }

    .hero-video-mobile {
        display: block;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
    }
    
    .btn {
        width: 280px;
        max-width: 100%;
    }
    
    .hero-actions .btn {
        width: auto;
    }

    .code-window {
        max-width: 100%;
    }
    
    .compliance-content {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .steps-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .step-card {
        padding: 2rem 1.5rem;
    }
    
    .how-it-works-content {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 0;
    }
    
    .how-it-works-image {
        flex: none;
    }
    
    .step-card {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .showcase-section {
        padding: 50px 0 40px;
    }
    
    .showcase-section .section-title {
        font-size: 1.8rem;
    }
    
    .showcase-slide {
        width: 280px;
    }
    
    .showcase-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .showcase-prev-btn {
        left: 10px;
    }
    
    .showcase-next-btn {
        right: 10px;
    }
    
    .showcase-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .showcase-overlay {
        padding: 1.2rem;
    }
    
    .showcase-overlay h3 {
        font-size: 1.1rem;
    }
    
    .showcase-overlay p {
        font-size: 0.85rem;
    }
    
    .pricing-container {
        gap: 1rem;
        flex-direction: column;
    }
    
    .pricing-container .pricing-separator {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .pricing-row {
        padding: 1rem;
    }
    
    .plan-header {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
    
    .selection-indicator {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .total-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .features-grid {
        margin-top: 2rem;
    }

    .cta-section {
        font-size: 1.75rem;
    }
    .cta-section h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    .hero-actions {
        flex-direction: row;
    }
    .hero-actions .btn {
        width: auto;
    }
    
    .showcase-section .section-title {
        font-size: 1.5rem;
    }
    
    .showcase-section .section-subtitle {
        font-size: 0.95rem;
    }
    
    .showcase-slide {
        width: 240px;
    }
    
    .showcase-slider {
        gap: 1.5rem;
    }
    
    .showcase-overlay {
        padding: 1rem;
    }
    
    .showcase-overlay h3 {
        font-size: 1rem;
    }
    
    .showcase-overlay p {
        font-size: 0.8rem;
    }

    html[dir="rtl"] .how-it-works-content {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-menu {
        display: flex;
        flex-direction: column !important;
        gap: 1rem;
    }
    .nav-menu li a {
        padding: 5px;
        width: 100%;
        display: block;
    }
}

/* RTL Support */
html[dir="rtl"] {
    text-align: right;
}
html[dir="rtl"] body {
    font-family: IRANYekan,-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
html[dir="rtl"] .btn {
    font-family: IRANYekan,-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
html[dir="rtl"] .nav-content {
    direction: rtl;
}

html[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-link::after {
    right: 0;
    left: auto;
}

html[dir="rtl"] .hero-content {
    text-align: center;
}

html[dir="rtl"] .hero-actions {
    justify-content: center;
}

html[dir="rtl"] .features-grid {
    direction: rtl;
}

html[dir="rtl"] .feature-card {
    text-align: center;
}

html[dir="rtl"] .step-card {
    text-align: right;
}

html[dir="rtl"] .step-desc {
    text-align: right;
}

html[dir="rtl"] .plan-header {
    flex-direction: row;
}

html[dir="rtl"] .total-info {
    text-align: right;
}

html[dir="rtl"] .selection-indicator {
    right: auto;
    left: 0.5rem;
}

html[dir="rtl"] .popular-badge {
    right: 2rem;
    left: auto;
}

html[dir="rtl"] .compliance-features li {
    padding-right: 30px;
    padding-left: 0;
}

html[dir="rtl"] .compliance-features li::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-4px, 6px);
}

html[dir="rtl"] .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-4px, -6px);
}

@media (max-width: 768px) {
    html[dir="rtl"] .nav-menu {
        text-align: right;
    }
    
    html[dir="rtl"] .step-card {
        flex-direction: column;
        text-align: right;
    }
    
    html[dir="rtl"] .total-content {
        align-items: flex-end;
    }
}

@media (max-width: 480px) {
    html[dir="rtl"] .container {
        padding: 0 15px;
    }
}

.footer {
    text-align: center;
    padding: 2rem 0;
    color: white;
    background: rgba(58, 12, 98, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: nowrap;
}
.footer-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}
.footer-menu a:hover {
    color: #00F5A0;
}
.footer-menu .sep {
    color: rgba(255, 255, 255, 0.6);
}
.footer-copyright {
    margin-bottom: 10px;
}

/* Terms Page Styles */
.terms-section {
    padding-top: 100px;
    min-height: 100vh;
}

.terms-container {
    margin: 0 auto;
    padding: 0 1rem;
    margin-bottom: 3rem;
}

.terms-content {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.terms-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.terms-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff; /* white title outside the content box */
    margin-bottom: 0.5rem;
}

/* .terms-updated removed per request */

.terms-sections {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.terms-section-item h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.terms-section-item p {
    color: #6b7280;
    line-height: 1.625;
    margin-bottom: 1rem;
}

.terms-section-item ul {
    list-style-type: disc;
    list-style-position: inside;
    color: #6b7280;
    margin-right: 1rem;
}

.terms-section-item ul li {
    margin-bottom: 0.5rem;
}

.terms-contact-box {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
}

.terms-contact-box p {
    color: #6b7280;
    margin: 0;
}

.terms-link {
    color: #2563eb;
}

.terms-link:hover {
    color: #1d4ed8;
}

.terms-footer-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.terms-footer-section p {
    color: #9ca3af;
    margin: 0;
}

@media (max-width: 640px) {
    .terms-container {
        padding: 0 1rem;
    }
    
    .terms-content {
        padding: 1.5rem;
    }
    
    .terms-title {
        font-size: 1.5rem;
    }
    
    .terms-section-item h2 {
        font-size: 1.25rem;
    }
}