/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0D5C5C;
    --secondary-color: #FF6B35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --border-radius: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Vazirmatn', 'Segoe UI', Tahoma, sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: var(--white);
    direction: rtl;
    overflow-x: hidden;
}

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

/* Typography */
h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #094848;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-demo {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 24px;
    font-size: 1rem;
}

.btn-demo:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-demo-large {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 14px 32px;
    font-size: 1.125rem;
}

.btn-demo-large:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0D5C5C 0%, #0a4545 100%);
    color: var(--white);
    padding: 80px 0 60px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    font-size: 15rem;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: var(--bg-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.problem-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.problem-card .icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 20px;
}

.problem-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
}

.problem-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--bg-light);
    padding: 35px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.feature-card p {
    text-align: center;
}

/* Comparison Table */
.comparison {
    padding: 80px 0;
    background: var(--bg-light);
}

.comparison table {
    width: 100%;
    background: var(--white);
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.comparison thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison th,
.comparison td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison th {
    font-weight: 700;
    font-size: 1.125rem;
}

.comparison tbody tr:hover {
    background: var(--bg-light);
}

.comparison tbody tr:last-child td {
    border-bottom: none;
}

/* Trust Section */
.trust {
    padding: 80px 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trust-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

.trust-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.trust-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.trust-card .flag-icon {
    font-size: 1.5rem;
    display: inline-block;
}

/* Highlighted Card (4th card) */
.trust-card-highlight {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
    border: 3px solid var(--secondary-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.2);
}

.trust-card-highlight:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.35);
}

.trust-card-highlight h3 {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.trust-card-highlight .highlight-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-card-highlight .highlight-text strong {
    color: var(--secondary-color);
    font-weight: 700;
}

.bonus-feature {
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 2px dashed var(--secondary-color);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-align: right;
}

.bonus-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

.bonus-feature p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.6;
    flex: 1;
}


/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.pricing-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 3px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.badge-annual {
    background: #4caf50;
}

.pricing-card h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price {
    margin: 30px 0;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.price-total {
    font-size: 1rem;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
}

.price-divider {
    font-size: 1.5rem;
    color: #ccc;
    font-weight: 300;
}

.price-monthly {
    display: flex;
    align-items: baseline;
    gap: 6px;
    white-space: nowrap;
}

.price-monthly .amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price-monthly .currency {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

.price .currency {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 500;
}

.discount {
    color: #4caf50;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 30px 0;
    text-align: right;
}

.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-dark);
    font-size: 1rem;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.card-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: auto;
}

/* Special Offer Section */
.special-offer {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8cc 100%);
    border: 3px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-hover);
    max-width: 850px;
    margin: 0 auto;
}

.offer-header {
    text-align: center;
    margin-bottom: 25px;
}

.offer-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.offer-header h3 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin: 0;
    font-weight: 700;
}

.offer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Setup Free Box */
.setup-free {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.setup-free .icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.setup-free p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.setup-free .strike {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

.setup-free .free-badge {
    color: #4caf50;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Discount Section */
.offer-discount-section {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.15);
}

.discount-title {
    text-align: center;
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.offer-plans {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offer-plan {
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    padding: 16px 20px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.offer-plan::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: right 0.5s ease;
}

.offer-plan:hover::before {
    right: 100%;
}

.offer-plan:hover {
    transform: translateX(-5px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    border-color: var(--secondary-color);
}

.offer-plan p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    text-align: center;
    position: relative;
    z-index: 1;
}

.offer-plan strong {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.15rem;
}

.period-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}


/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-right: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(-5px);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #094848 100%);
    color: var(--white);
    text-align: center;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer Styles ===== */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* ستون برند */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
    transition: filter 0.3s ease;
    display: inline-block;
}

.footer-logo:hover {
    filter: brightness(1.3);
}

/* تیترهای فوتر */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #00d4ff;
    font-weight: 700;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    border-radius: 2px;
}

/* توضیحات */
.footer-description {
    color: #b8b8d1;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* لینک‌های فوتر */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b8b8d1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #00d4ff;
    transform: translateX(-5px);
}

.footer-links a:hover::before,
.footer-links a:focus::before {
    width: 100%;
}

/* شبکه‌های اجتماعی */
.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.social-link:hover,
.social-link:focus {
    background: rgba(0, 212, 255, 0.2);
    border-color: #00d4ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.social-icon {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

/* خط جداکننده */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184, 184, 209, 0.2), transparent);
    margin: 2rem 0;
}

/* بخش پایین */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
}

.enamad {
    transition: transform 0.3s ease;
}

.enamad:hover {
    transform: scale(1.05);
}

.enamad img {
    max-width: 100px;
    height: auto;
    display: block;
    cursor: pointer;
}

.footer-bottom p {
    color: #b8b8d1;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .phone-mockup {
        font-size: 10rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
    }

    .hero-content p {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .phone-mockup {
        font-size: 8rem;
    }

    .problem,
    .solution,
    .comparison,
    .trust,
    .pricing,
    .faq,
    .final-cta {
        padding: 60px 0;
    }

    .problem-grid,
    .features-grid,
    .trust-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-grid {
        margin-bottom: 80px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .price-row {
        flex-wrap: nowrap;
        gap: 10px;
    }

    .price-total {
        font-size: 1rem;
    }

    .price-monthly .amount {
        font-size: 1.75rem;
    }

    .price-monthly .currency {
        font-size: 0.9rem;
    }

    .price .amount {
        font-size: 2rem;
    }

    .card-buttons {
        gap: 12px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .btn-demo {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .comparison table {
        font-size: 0.9rem;
    }

    .comparison th,
    .comparison td {
        padding: 15px 10px;
    }
}




@media (max-width: 768px) {
    .special-offer {
        padding: 30px 20px;
        max-width: 100%;
    }

    .offer-header h3 {
        font-size: 1.5rem;
    }

    .offer-icon {
        font-size: 2.2rem;
        margin-bottom: 8px;
    }

    .offer-header {
        margin-bottom: 20px;
    }

    .offer-content {
        gap: 18px;
    }

    .setup-free {
        padding: 16px 18px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .setup-free .icon {
        font-size: 1.8rem;
    }

    .setup-free p {
        font-size: 1rem;
    }

    .setup-free .free-badge {
        font-size: 1.2rem;
    }

    .offer-discount-section {
        padding: 20px 16px;
    }

    .discount-title {
        font-size: 1.3rem;
        margin-bottom: 16px;
    }

    .offer-plans {
        gap: 12px;
    }

    .offer-plan {
        padding: 14px 16px;
    }

    .offer-plan p {
        font-size: 1rem;
    }

    .offer-plan strong {
        font-size: 1.05rem;
    }

    .period-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .special-offer {
        padding: 25px 16px;
    }

    .offer-header h3 {
        font-size: 1.35rem;
    }

    .offer-icon {
        font-size: 2rem;
    }

    .setup-free p {
        font-size: 0.95rem;
    }

    .discount-title {
        font-size: 1.2rem;
    }

    .offer-plan p {
        font-size: 0.95rem;
    }

    .offer-plan strong {
        font-size: 1rem;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .phone-mockup {
        font-size: 6rem;
    }

    .problem-card,
    .feature-card,
    .trust-card {
        padding: 25px 20px;
    }

    .problem-card .icon,
    .feature-card .icon {
        font-size: 2.5rem;
    }

    .special-offer {
        padding: 30px 20px;
    }

    .offer-header h3 {
        font-size: 1.25rem;
    }

    .offer-icon {
        font-size: 2rem;
    }

    .setup-free {
        padding: 18px 15px;
    }

    .setup-free .icon {
        font-size: 2rem;
    }

    .setup-free p {
        font-size: 1rem;
    }

    .setup-free .free-badge {
        font-size: 1.125rem;
    }

    .discount-title {
        font-size: 1.25rem;
    }

    .offer-plan {
        padding: 15px 20px;
    }

    .offer-plan p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 25px 15px;
    }

    .price-row {
        gap: 8px;
    }

    .price-total {
        font-size: 0.9rem;
    }

    .price-monthly .amount {
        font-size: 1.5rem;
    }

    .price-monthly .currency {
        font-size: 0.85rem;
    }

    .price .amount {
        font-size: 1.75rem;
    }

    .price .currency {
        font-size: 1rem;
    }

    .faq-item {
        padding: 20px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .comparison th,
    .comparison td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}


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

    .trust-card {
        padding: 30px 20px;
    }

    .trust-card h3 {
        font-size: 1.3rem;
    }

    .trust-card-highlight h3 {
        font-size: 1.4rem;
    }

    .trust-card-highlight .highlight-text {
        font-size: 1rem;
    }

    .bonus-feature {
        flex-direction: row;
        text-align: right;
        gap: 10px;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .bonus-icon {
        margin-top: 2px;
        flex-shrink: 0;
    }
    
    .bonus-feature p {
        flex: 1;
        text-align: right;
    }
}


/* Desktop: Center 4th card */
@media (min-width: 769px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trust-card-highlight {
        grid-column: 2 / 3;
        grid-row: 2;
    }
}

/* Print Styles */
@media print {
    .hero-buttons,
    .btn,
    footer,
    .enamad {
        display: none;
    }
}
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

	.footer-logo {
        display: block;
        margin: 0 auto 1.5rem;
        width: 100px;
        height: 100px;
    }
	
    .footer-title::after {
        right: 50%;
        transform: translateX(50%);
    }

    .social-links {
        justify-content: center;
    }

    .social-icon {
        width: 48px;
        height: 48px;
    }

    .footer-links a:hover {
        transform: translateX(0);
    }

    .footer-bottom {
        gap: 1.25rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .social-icon {
        width: 44px;
        height: 44px;
    }

    .enamad img {
        max-width: 85px;
    }
}
