@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;500;700&display=swap');

/* ========== Global Styles ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Vazirmatn', 'Tahoma', sans-serif;
    background: #f0f7ff;
    padding: 20px;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
}

/* ========== Header ========== */
.header {
    text-align: center;
    margin-bottom: 15px;
    padding: 40px 20px;
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.header h1 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.header-icon {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

.header p {
    font-size: 16px;
    opacity: 0.95;
}

.header-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.stat-item {
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.stat-item svg {
    flex-shrink: 0;
    opacity: 0.95;

}

/* ========== Hero Section ========== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin-bottom: 40px;
}

.hero-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.hero-feature {
    font-size: 16px;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 10px 20px;
    border-radius: 20px;
}

.cta-button {
    display: inline-block;
    background: #fbbf24;
    color: #1a202c;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 20px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* ========== Calculator ========== */
.calculator-wrapper {
    display: grid;
    gap: 20px;
}

.card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-title svg {
    color: #0ea5e9;
    flex-shrink: 0;
}

/* ========== Step Indicator ========== */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 4px;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
}

.step.active .step-number {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    transform: scale(1.1);
}

.step-label {
    font-size: 12px;
    color: #718096;
    font-weight: 500;
}

.step.active .step-label {
    color: #0ea5e9;
    font-weight: 700;
}

/* ========== Form Sections ========== */
.form-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-section.active {
    display: block;
}

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

/* ========== Rating Banner ========== */
.rating-banner {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #6ee7b7;
    border-radius: 16px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 6px;
}

.rating-number {
    font-size: 18px;
    font-weight: 700;
    color: #065f46;
    margin-left: 8px;
}

.star-icon {
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.rating-text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #065f46;
}

.user-icon {
    color: #059669;
}

/* ========== Option Cards ========== */
.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.option-card {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    background: #fafafa;
}

.option-card:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
    transform: translateY(-2px);
}

.option-card.selected {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

.option-card svg.icon {
    stroke: #64748b;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.option-card:hover svg.icon {
    stroke: #0ea5e9;
    transform: scale(1.1);
}

.option-card.selected svg.icon {
    stroke: #0ea5e9;
}

.option-card .title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
}

.option-card .description {
    font-size: 13px;
    color: #718096;
}

/* ========== Extra Items ========== */
.extras-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.extra-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    background: #fafafa;
    flex-wrap: wrap;
}

.extra-item:hover {
    border-color: #0ea5e9;
    background: #f0f9ff;
}

.extra-item.selected {
    border-color: #0ea5e9;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.extra-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.extra-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #cbd5e0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.extra-item.selected .extra-checkbox {
    background: #0ea5e9;
    border-color: #0ea5e9;
}

.extra-item.selected .extra-checkbox::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.extra-text {
    flex: 1;
}

.extra-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 3px;
}

.extra-desc {
    font-size: 13px;
    color: #718096;
}

.extra-input {
    display: none;
    width: 100%;
    margin-top: 10px;
    padding-right: 36px;
}

.extra-item.selected .extra-input {
    display: block;
}

.extra-input label {
    display: block;
    font-size: 13px;
    color: #4a5568;
    margin-bottom: 6px;
    font-weight: 500;
}

.extra-input input {
    width: 100%;
    padding: 10px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
}

.extra-input input:focus {
    outline: none;
    border-color: #0ea5e9;
}

/* ========== Buttons ========== */
.navigation-buttons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover {
    background: #cbd5e0;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== Result Card ========== */
.result-card {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.result-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}

.result-icon svg {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.result-label {
    font-size: 16px;
    opacity: 0.95;
    margin-bottom: 10px;
}

.result-price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.result-details {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    text-align: right;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.result-item:last-child {
    border-bottom: none;
    margin-top: 10px;
    padding-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

.action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.reset-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.reset-btn:hover {
    background: rgba(255,255,255,0.3);
}

.contact-btn {
    background-color: #10b981;
    color: white;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

/* ========== Testimonials ========== */
.testimonials-section {
    background: #f7fafc;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}

.testimonials-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stars {
    color: #fbbf24;
    font-size: 24px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #4a5568;
    margin-bottom: 15px;
}

.customer-name {
    color: #718096;
    font-size: 14px;
    font-weight: 600;
}

/* ========== CTA Section ========== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 20px;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.btn-call, .btn-calc {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-call {
    background: #10b981;
    color: white;
}

.btn-calc {
    background: white;
    color: #0ea5e9;
}

.btn-call:hover, .btn-calc:hover {
    transform: scale(1.05);
}

/* ========== FAQ ========== */
.faq-section {
    padding: 60px 0;
}

.faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

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

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}

.faq-item h3 {
    color: #1a202c;
    font-size: 18px;
    margin-bottom: 10px;
}

.faq-item p {
    color: #718096;
    line-height: 1.6;
}

/* ========== Price Tables ========== */
.price-table-section {
    margin-bottom: 30px;
}

.price-table-header {
    background: linear-gradient(135deg, #0ea5e9 0%, #3b82f6 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-table {
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:hover {
    background: #f0f9ff;
}

.price-row.highlight {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-right: 4px solid #0ea5e9;
}

.service-name {
    font-size: 15px;
    color: #334155;
    font-weight: 500;
    flex: 1;
}

.service-price {
    font-size: 17px;
    color: #0ea5e9;
    font-weight: 700;
    min-width: 150px;
    text-align: left;
}

/* ========== Alert & Info Boxes ========== */
.alert-box {
    background: #fef3c7;
    border-right: 4px solid #f59e0b;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6;
}

.alert-box strong {
    display: block;
    margin-bottom: 5px;
    color: #78350f;
}

.info-box {
       background: #f9f9f9;
    padding: 20px;
    border-radius: 17px;
    margin-top: 30px;
    font-size: 13px;
    color: #4b515a;
    line-height: 1.8;
}
.info-box h2{
font-size: 1.45rem;
        margin: 16px 0;
}

.info-box h3 {
color: #4b515a;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
}
.info-box img{
	height: auto;
    margin-bottom: 25px;
    border-radius: 12px;
    display: block;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box ul {
    margin-right: 20px;
    margin-top: 10px;
}

.info-box li {
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
    margin-top: 25px;
    font-weight: 600;
}

.section-subtitle:first-of-type {
    margin-top: 0;
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .header h1 {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
        line-height: 1.4;
    }

    .header-icon {
        width: 32px;
        height: 32px;
    }

    .header p {
        font-size: 14px;
    }

    .header-stats {
        gap: 10px;
    }

    .stat-item {
        font-size: 12px;
        padding: 8px 14px;
    }

    .stat-item svg {
        width: 14px;
        height: 14px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .rating-banner {
        flex-direction: column;
        gap: 12px;
        padding: 14px 18px;
    }

    .rating-number {
        font-size: 16px;
    }

    .rating-text {
        font-size: 14px;
    }

    .star-icon {
        width: 18px;
        height: 18px;
    }

    .option-grid {
        grid-template-columns: 1fr;
    }

    .result-price {
        font-size: 36px;
    }

    .step-indicator {
        flex-wrap: wrap;
        gap: 15px;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 16px;
    }

    .service-name {
        font-size: 14px;
    }

    .service-price {
        font-size: 16px;
        min-width: auto;
        text-align: right;
    }

    .price-table-header {
        font-size: 16px;
        padding: 12px 16px;
    }

    .testimonials-section h2,
    .cta-section h2,
    .faq-section h2 {
        font-size: 24px;
    }

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

    .btn-call, .btn-calc {
        width: 100%;
    }
}
/* ========== Mobile-Only Horizontal Scroll Fix ========== */
@media (max-width: 768px) {
    /* جلوگیری از اسکرول افقی */
    html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    body {
        overflow-x: hidden;
        max-width: 100vw;
        padding: 10px !important;
    }
    
    /* فیکس Container */
    .container {
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }
    
    /* فیکس همه Cards و Sections */
    .card,
    .header,
    .hero-section,
    .calculator-wrapper,
    .testimonials-section,
    .cta-section,
    .faq-section,
    .result-card,
    .info-box,
    .alert-box {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }
    
    /* فیکس Step Indicator - مشکوک‌ترین بخش */
    .step-indicator {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }
    
    .step-indicator::-webkit-scrollbar {
        display: none;
    }
    
    .step-indicator::before {
        content: none; /* حذف خط */
    }
    
    /* فیکس Grid ها */
    .option-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* فیکس Flex Containers */
    .header-stats,
    .hero-features,
    .rating-banner,
    .navigation-buttons,
    .action-buttons,
    .cta-buttons {
        flex-direction: column;
        max-width: 100%;
        gap: 10px;
    }
    
    /* فیکس Items */
    .stat-item,
    .hero-feature,
    .option-card,
    .extra-item,
    .btn,
    .btn-call,
    .btn-calc,
    .cta-button {
        max-width: 100%;
        width: 100%;
    }
    
    /* فیکس Price Table */
    .price-row {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
    }
    
    .service-name,
    .service-price {
        max-width: 100%;
        width: 100%;
    }
    
    /* فیکس Result Card */
    .result-details {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .result-item {
        flex-wrap: wrap;
        max-width: 100%;
    }
    
    .result-price {
        font-size: 32px;
        word-break: break-word;
    }
    
    /* فیکس Header */
    .header {
        padding: 20px 10px;
    }
    
    .header h1 {
        font-size: 18px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .header-icon {
        width: 28px;
        height: 28px;
    }
    
    /* فیکس Hero */
    .hero-section {
        padding: 30px 15px;
    }
    
    .hero-content h2 {
        font-size: 22px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    /* فیکس Rating Banner */
    .rating-banner {
        padding: 12px 15px;
    }
    
    .rating-stars {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    /* فیکس Cards Padding */
    .card {
        padding: 15px;
    }
    
    /* فیکس Testimonials */
    .testimonials-section {
        padding: 40px 15px;
    }
    
    .testimonials-section h2,
    .cta-section h2,
    .faq-section h2 {
        font-size: 22px;
    }
    
    /* فیکس CTA Section */
    .cta-section {
        padding: 40px 15px;
    }
    
    /* فیکس FAQ */
    .faq-section {
        padding: 40px 10px;
    }
    
    .faq-list {
        max-width: 100%;
        padding: 0;
    }
    
    .faq-item {
        margin: 0 0 15px 0;
        padding: 15px;
    }
    
    /* فیکس Info Box */
    .info-box {
        padding: 15px;
        margin: 20px 0;
    }
    
    .info-box ul {
        margin-right: 15px;
    }
    
    /* فیکس Price Table Header */
    .price-table-header {
        padding: 12px 15px;
        font-size: 14px;
        flex-wrap: wrap;
    }
    
    /* فیکس Extra Items */
    .extra-item {
        padding: 12px;
    }
    
    .extra-input {
        padding-right: 0;
        width: 100%;
    }
    
    .extra-input input {
        width: 100%;
        max-width: 100%;
    }
    
    /* فیکس SVG Icons */
    .option-card .icon {
        width: 40px;
        height: 40px;
    }
    
    /* فیکس Step */
    .step {
        min-width: 70px;
        padding: 0 5px;
    }
    
    .step-label {
        font-size: 10px;
        white-space: nowrap;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    body {
        padding: 5px !important;
    }
    
    .container {
        padding: 0 5px;
    }
    
    .card,
    .faq-item,
    .testimonial-card {
        padding: 12px;
    }
    
    .header,
    .hero-section,
    .cta-section,
    .testimonials-section {
        padding: 20px 10px;
    }
    
    .header h1 {
        font-size: 16px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .result-price {
        font-size: 28px;
    }
}
/* ========== Option Cards - 2 Columns in Mobile ========== */
@media (max-width: 768px) {
    .option-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }

    .option-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px !important;
        box-sizing: border-box !important;
    }

    .option-card .icon {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 8px !important;
    }

    .option-card .title {
        font-size: 13px !important;
        margin-bottom: 4px !important;
        line-height: 1.3 !important;
    }

    .option-card .description {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }
}


@media (max-width: 360px) {
    .option-grid {
        grid-template-columns: 1fr !important;
    }
}