/*
Theme Name: Reparaciones MiVe
Theme URI: https://reparacionespontevedra.es
Author: Reparaciones MiVe
Description: Theme profesional para servicios de reparaciones del hogar en Pontevedra y Vigo. Optimizado para conversión y SEO local.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: reparaciones-mive
*/

/* ==========================================
   VARIABLES Y RESET
   ========================================== */

:root {
    --primary: #1A6FA8;
    --primary-dark: #145580;
    --accent: #F07B1D;
    --accent-dark: #D66A0F;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #6B6B6B;
    --bg-light: #F8F7F4;
    --bg-white: #FFFFFF;
    --border: #E8E6E1;
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(26, 111, 168, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 111, 168, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 111, 168, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
}

/* ==========================================
   BOTONES FLOTANTES FIJOS
   ========================================== */

.fixed-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.cta-phone {
    background: var(--primary);
    color: var(--bg-white);
}

.cta-phone:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 111, 168, 0.24);
    color: var(--bg-white);
}

.cta-whatsapp {
    background: #25D366;
    color: var(--bg-white);
}

.cta-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.24);
    color: var(--bg-white);
}

@media (max-width: 768px) {
    .fixed-cta {
        bottom: 16px;
        right: 16px;
    }
    
    .cta-btn span {
        display: none;
    }
    
    .cta-btn {
        width: 56px;
        height: 56px;
        padding: 0;
        justify-content: center;
    }
}

/* ==========================================
   CONTAINER Y LAYOUT
   ========================================== */

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

/* ==========================================
   HEADER
   ========================================== */

.header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

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

.logo {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.logo-location {
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 400;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
}

.nav-phone {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-phone:hover {
    background: var(--primary);
    color: var(--bg-white);
}

.nav-english {
    font-weight: 600;
    color: var(--accent) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 99;
    }
    
    .nav.nav-active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border);
    }
    
    .nav-phone {
        margin-top: 12px;
        text-align: center;
        display: block;
    }
    
    .menu-toggle {
        display: flex;
    }
}

/* ==========================================
   HERO
   ========================================== */

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #F8F7F4 0%, #FFFFFF 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(240, 123, 29, 0.1);
    color: var(--accent-dark);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--bg-white);
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--text-mid);
}

.trust-item svg {
    color: #10B981;
    flex-shrink: 0;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

/* ==========================================
   SERVICIOS
   ========================================== */

.services {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-mid);
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
    border-radius: 12px 0 0 12px;
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 111, 168, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 32px;
}

.service-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-description {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: gap 0.2s;
}

.service-link:hover {
    gap: 10px;
}

@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

/* ==========================================
   WHY US
   ========================================== */

.why-us {
    padding: 100px 0;
    background: var(--bg-light);
}

.features {
    display: grid;
    gap: 32px;
    margin-top: 40px;
}

.feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.6;
}

/* ==========================================
   PRICING
   ========================================== */

.pricing {
    padding: 100px 0;
    background: var(--bg-white);
}

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

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-box {
    background: linear-gradient(135deg, var(--primary) 0%, #145580 100%);
    color: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.price-tag {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.price-label {
    font-size: 18px;
    opacity: 0.9;
    margin-top: 8px;
}

.price-includes {
    list-style: none;
}

.price-includes li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.5;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

@media (max-width: 640px) {
    .pricing-box {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 48px;
    }
}

/* ==========================================
   RESEÑAS
   ========================================== */

.reviews {
    padding: 100px 0;
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.review-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-author strong {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.review-author span {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 968px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   CTA SECTION
   ========================================== */

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--text-mid);
    margin-bottom: 40px;
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .cta-title {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==========================================
   HOSTELERÍA ESPECÍFICO
   ========================================== */

.why-hosteleria {
    padding: 100px 0;
    background: var(--bg-white);
}

.hosteleria-types {
    margin-top: 60px;
}

.types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.type-badge {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 2px solid var(--border);
    border-radius: 30px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
    transition: all 0.3s;
}

.type-badge:hover {
    border-color: var(--primary);
    background: rgba(26, 111, 168, 0.05);
}

.how-we-work {
    padding: 100px 0;
    background: var(--bg-light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
    margin-bottom: 48px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--accent);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.6;
}

.factura-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px 32px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}

@media (max-width: 968px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* ==========================================
   ZONAS
   ========================================== */

.zones-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.zone-card {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.zone-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.zone-list {
    list-style: none;
}

.zone-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--text-mid);
    font-size: 15px;
}

.zone-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.zone-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-mid);
}

.zone-note {
    margin-top: 60px;
    padding: 32px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 12px;
    text-align: center;
}

.zone-note-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.zone-note-text {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
}

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

/* ==========================================
   FAQs
   ========================================== */

.faqs-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

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

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 24px 28px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-mid);
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer strong {
    color: var(--text-dark);
}

.faq-cta {
    max-width: 600px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
}

.faq-cta-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-cta-text {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 24px;
}

/* ==========================================
   BLOG ARTICLE
   ========================================== */

.blog-article {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.article-header {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.article-meta {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.article-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.article-intro {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-mid);
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-section {
    margin-bottom: 48px;
}

.article-section h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    margin-top: 40px;
}

.article-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.article-section ul {
    margin: 24px 0;
    padding-left: 24px;
}

.article-section li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.article-section strong {
    color: var(--text-dark);
    font-weight: 600;
}

.article-cta {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 32px;
    border-radius: 8px;
    margin: 48px 0;
    text-align: center;
}

.article-cta h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.article-cta p {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.article-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    
    .article-intro {
        font-size: 18px;
    }
    
    .article-section h2 {
        font-size: 24px;
    }
    
    .article-section p,
    .article-section li {
        font-size: 16px;
    }
}

/* WordPress specific */
.entry-content {
    margin: 0;
}

.entry-content p {
    margin-bottom: 1.5em;
}

/* ==========================================
   SECCIÓN DE RESEÑAS
   ========================================== */

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

.review-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-stars {
    color: #FFB800;
    font-size: 20px;
    margin-bottom: 16px;
    line-height: 1;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-mid);
    margin: 0;
}

/* Responsive - móvil */
@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .review-card {
        padding: 24px;
    }
}