.badges {
    display: flex;
    flex-wrap: wrap; /* badges will wrap to next line on small screens */
    gap: 8px; /* spacing between badges */
    margin-top: 15px;
    justify-content: center; /* center badges on smaller screens */
}

.workflow-badge {
    background-color: #f0f0f0;
    color: #333;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px; /* spacing between icon and text */
    white-space: nowrap; /* prevent text from breaking mid-word */
}
 


/* Optional: slightly smaller badges on very small screens */
@media (max-width: 480px) {
    .workflow-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
}
.cta-social {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.cta-social img {
    display: block;
    opacity: 0.9;
    transition: 0.2s;
}

.cta-social img:hover {
    opacity: 1;
    transform: scale(1.1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f5f7fa;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 30px;
}

.header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.1rem;
    color: #666;
}

.workflow-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.controls-panel {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.step-section {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
}

.step-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 12px;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.step-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
    padding-left: 48px;
}

.viewport-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    margin-bottom: 15px;
}

.viewport-option {
    position: relative;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: all 0.2s;
    background: white;
}

.viewport-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.viewport-option.active {
    border-color: #667eea;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.viewport-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.viewport-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.viewport-label {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 4px;
}

.viewport-size {
    font-size: 13px;
    color: #666;
}

.custom-viewport {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.custom-viewport.active {
    display: block;
}

.custom-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.custom-input-group input {
    flex: 1;
    padding: 10px 14px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 14px;
}

.custom-input-group input:focus {
    outline: none;
    border-color: #667eea;
}

.custom-input-group label {
    font-weight: 600;
    color: #666;
    min-width: 80px;
}
.qa-steps-list {
    list-style-type: none; /* Remove default bullet points */
    padding: 0;
}



.file-upload-area {
    border: 2px dashed #667eea;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-area:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: #764ba2;
}

.file-upload-area.dragover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: #667eea;
    transform: scale(1.02);
}

.file-upload-area.has-file {
    border-color: #28a745;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.05) 0%, rgba(40, 167, 69, 0.1) 100%);
}

.file-input {
    display: none;
}

.upload-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.url-input-group {
    display: flex;
    gap: 10px;
}

.url-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.url-input:focus {
    outline: none;
    border-color: #667eea;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #545b62;
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #1e7e34;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

.comparison-controls {
    display: none;
    margin-top: 20px;
}

.comparison-controls.active {
    display: block;
}

.slider-group {
    margin-bottom: 15px;
}

.slider-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 600;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e1e5e9;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    border: none;
}

.button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.comparison-viewer {
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    overflow: auto;
    background: white;
    min-height: 600px;
    position: relative;
}

.viewer-container {
    position: relative;
    display: inline-block;
    min-width: 100%;
    min-height: 600px;
}

.design-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform-origin: top left;
    pointer-events: none;
}

.website-iframe {
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    z-index: 2;
    background: transparent;
    transform-origin: top left;
    
    /* Hide scrollbar but keep scrolling ability */
    overflow: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

/* Hide scrollbar in Chrome/Safari/Edge */
.website-iframe::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}


.placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 600px;
    color: #666;
    text-align: center;
    position: absolute;
    width: 100%;
    z-index: 0;
    padding: 20px;
}

.placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.info-panel {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    font-size: 14px;
    display: none;
}

.info-panel.active {
    display: block;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.info-item {
    background: white;
    padding: 12px;
    border-radius: 6px;
}

.info-item strong {
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

.info-item span {
    color: #333;
    font-weight: 600;
}

.breakpoint-indicator {
    display: inline-block;
    padding: 4px 12px;
    background: #28a745;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 15px;
    display: none;
    animation: slideIn 0.3s ease;
}

.alert.show {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-warning {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.status-badge.pending {
    background: #ffc107;
    color: #000;
}

.status-badge.ready {
    background: #28a745;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2rem;
    }
    
    .viewport-grid {
        grid-template-columns: 1fr;
    }
    
    .url-input-group {
        flex-direction: column;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}
/* Viewport Mismatch Modal */
.mismatch-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.mismatch-modal {
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 25px 25px 20px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.modal-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.modal-header h3 {
    margin: 0;
    font-size: 22px;
    color: #333;
}

.modal-body {
    padding: 25px;
}

.size-comparison-visual {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.comparison-row {
    margin-bottom: 15px;
}

.comparison-row:last-child {
    margin-bottom: 0;
}

.comparison-row .label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 8px;
}

.bar-container {
    position: relative;
    width: 100%;
    height: 40px;
    background: #e1e5e9;
    border-radius: 6px;
    overflow: hidden;
}

.bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: width 0.3s ease;
}

.viewport-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 100%;
}

.image-bar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.modal-recommendation {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

.modal-actions {
    padding: 0 25px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
}

.modal-btn strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.modal-btn small {
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
}

.btn-link {
    background: none;
    border: none;
    color: #667eea;
    text-decoration: underline;
    cursor: pointer;
    padding: 10px;
    font-size: 14px;
}

.btn-link:hover {
    color: #764ba2;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .mismatch-modal {
        max-width: 95%;
    }
    
    .modal-header h3 {
        font-size: 18px;
    }
    
    .modal-icon {
        font-size: 36px;
    }
}
/* seo content styling */
.seo-content-section {
    /* max-width: 1200px; */
    margin: 60px auto 40px;
    /* padding: 0 20px; */
}

.content-block {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-block h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    /* border-bottom: 3px solid #667eea; */
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-block strong {
    /* color: #667eea; */
    color:black;
    font-weight: 600;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.step-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}


.step-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px 25px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: white;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.comparison-table th {
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background: #f8f9ff;
}

.comparison-table .check {
    color: #28a745;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.comparison-table .cross {
    color: #dc3545;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.comparison-table .partial {
    color: #ffc107;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}

.comparison-note {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    font-size: 0.95rem;
}

/* Use Cases Grid */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 10px;
    padding: 25px 20px;
}

.use-case-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.use-case-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* QA Steps List */
.qa-steps-list {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px 30px 30px 50px;
    margin: 25px 0;
}

.qa-steps-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
    padding-left: 10px;
}

.qa-steps-list li strong {
    color: #667eea;
    display: block;
    margin-bottom: 5px;
}

/* Breakpoints Grid */
.breakpoints-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.breakpoint-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 25px 20px;
}

.breakpoint-card h3 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 12px;
}

.breakpoint-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

.breakpoints-tip {
    background: #e7f3ff;
    border-left: 4px solid #667eea;
    padding: 15px 20px;
    margin-top: 25px;
    border-radius: 4px;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq-item {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px; 
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 1.15rem;
    color: #333;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white !important;
}

.cta-section h2 {
    color: white;
    border-bottom: 3px solid rgba(255,255,255,0.3);
}

.cta-section p {
    color: white;
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .content-block {
        padding: 25px 20px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .steps-grid,
    .features-grid,
    .use-cases-grid,
    .breakpoints-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
} 
.testimonials-section {
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%); */
    background-color: white;
}

.testimonials-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.testimonial-card {
    /* background: white; */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.testimonial-stars {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #ffc107;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-text strong {
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.85rem;
    color: #888;
}

/* Stats Section */
.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    /* background: white; */
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.stat-item {
    padding: 10px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonials-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}