/* filepath: /css/style.css */
/* === RESET & VARIABLES === */
:root {
    --black: #111111;
    --white: #ffffff;
    --salmon: #ff8a7a;
    --salmon-light: #ffa69e;
    --gray-light: #f8f8f8;
    --gray-text: #555555;
    --font-sans: 'Inter', -apple-system, sans-serif;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.5;
}

/* === TIPOGRAFÍA === */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
}

h1 { font-size: clamp(3.5rem, 8vw, 5.5rem); }
h2 { font-size: clamp(2.8rem, 6vw, 4rem); }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.3rem; }

p {
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 65ch;
}

/* === UTILIDADES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 7rem 0;
}

.text-center { text-align: center; }

/* === BOTONES === */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-weight: 700;
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--salmon);
    color: var(--black);
    border-color: var(--salmon);
}

.btn-primary:hover {
    background-color: var(--salmon-light);
    border-color: var(--salmon-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* === HEADER === */
.header {
    padding: 1.5rem 0;
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Navegación */
.nav-desktop {
    display: flex;
    gap: 3rem;
}

.nav-desktop a {
    font-weight: 600;
    font-size: 1rem;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-desktop a:hover {
    color: var(--salmon);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    font-weight: 700;
    color: var(--black);
    font-size: 1.1rem;
}

/* === LOGO === */
.logo-img {
    height: 55px;
    width: auto;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: filter 0.2s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

@media (max-width: 1024px) {
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
}

/* === HAMBURGUESA (VERSIÓN ÚNICA) === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* === MENÚ MÓVIL MEJORADO === */

/* Overlay (para cerrar al hacer clic fuera) */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 149;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Menú móvil - ocupa la mitad de la pantalla */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 50%;
    max-width: 350px;
    min-width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 150;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    border-left: 1px solid #eee;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

/* Header del menú */
.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-logo-img {
    height: 35px;
    width: auto;
}

/* Botón de cerrar */
.mobile-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #eee;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-close span {
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: var(--black);
    left: 50%;
    top: 50%;
    transition: all 0.2s ease;
}

.mobile-close span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-close span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-close:hover {
    background: var(--salmon);
    border-color: var(--salmon);
}

.mobile-close:hover span {
    background-color: var(--black);
}

/* Navegación */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.mobile-nav a {
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav a:hover {
    background: #f5f5f5;
    color: var(--salmon);
    padding-left: 1.2rem;
}

/* Footer del menú - TELÉFONO Y BOTÓN MÁS ARRIBA */
.mobile-footer {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.mobile-phone {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    text-align: center;
    padding: 0.7rem;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.mobile-quote {
    display: block;
    background: var(--black);
    color: white;
    text-decoration: none;
    text-align: center;
    padding: 0.7rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-quote:hover {
    background: var(--salmon);
    color: var(--black);
}

/* Responsive para pantallas muy pequeñas */
@media (max-width: 600px) {
    .mobile-menu {
        width: 70%;
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 80%;
        padding: 70px 15px 20px;
    }
    
    .mobile-nav a {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .mobile-phone {
        font-size: 1.1rem;
        padding: 0.6rem;
    }
    
    .mobile-quote {
        padding: 0.6rem;
    }
}

@media (max-width: 380px) {
    .mobile-menu {
        width: 85%;
    }
}

/* === HERO === */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #444;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    gap: 4rem;
}

.stat-number {
    font-weight: 800;
    font-size: 2rem;
    color: var(--black);
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.hero-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);
}

/* === GRIDS === */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.services-grid,
.pricing-grid,
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* === CARDS === */
.service-card,
.pricing-card,
.review-card {
    background: var(--white);
    padding: 3rem;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

.service-card:hover,
.pricing-card:hover,
.review-card:hover {
    border-color: var(--salmon);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.pricing-card.popular {
    border: 2px solid var(--salmon);
    transform: scale(1.02);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--salmon);
    color: var(--black);
    padding: 6px 20px;
    font-weight: 700;
    border-radius: 30px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 2rem 0;
}

.review-stars {
    color: #ffb347;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

/* === CTA === */
.cta-section {
    background-color: var(--black);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 3rem;
}

.cta-section p {
    color: #aaa;
    max-width: 600px;
    margin: 1.5rem auto;
}

/* === FOOTER BLANCO === */
.footer {
    background-color: var(--white);
    color: var(--black);
    border-top: 1px solid #eaeaea;
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h4 {
    color: var(--black);
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 0.6rem;
}

.footer a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--salmon);
}

.footer-contact li {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.footer-contact span:first-child {
    font-size: 0.7rem;
    color: #999;
    letter-spacing: 0.5px;
}

.footer-contact a,
.footer-contact span:last-child {
    color: var(--black);
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid #eaeaea;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #777;
}

.footer-legal a {
    color: #777;
    text-decoration: none;
    margin-left: 1rem;
}

.footer-legal a:hover {
    color: var(--salmon);
}

/* === RESPONSIVE UNIFICADO === */
@media (max-width: 1024px) {
    .nav-desktop,
    .header-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }
    h3 {
        font-size: 1.5rem;
    }
    p {
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .btn {
        width: 100%;
    }
    
    .steps-grid,
    .services-grid,
    .pricing-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .pricing-card,
    .review-card {
        padding: 2rem;
    }
    
    .popular-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
        transform: none;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 1rem 0;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    
    .service-card,
    .pricing-card,
    .review-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    .container {
        padding: 0 16px;
    }
}

/* === MOBILE DENSITY TUNING === */
@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }

    [style*="padding-top: 5rem; padding-bottom: 2rem;"] {
        padding-top: 2.5rem !important;
        padding-bottom: 1.25rem !important;
    }

    [style*="padding: 5rem 0;"] {
        padding: 3rem 0 !important;
    }

    [style*="max-width: 900px; text-align: center;"],
    [style*="max-width: 800px; text-align: center;"],
    [style*="max-width: 700px; text-align: center;"] {
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center;"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }

    [style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem;"],
    [style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: 2.25rem 0;
    }

    [style*="padding: 5rem 0;"] {
        padding: 2.25rem 0 !important;
    }

    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; text-align: center;"] {
        grid-template-columns: 1fr !important;
    }
}

/* === PREVENIR ZOOM === */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
    }
    
    body, p, a, li, span, div, input, button, textarea, select {
        font-size: 16px !important;
    }
    
    h1 { font-size: clamp(2.2rem, 7vw, 2.8rem) !important; }
    h2 { font-size: clamp(1.8rem, 5vw, 2.2rem) !important; }
    h3 { font-size: 1.5rem !important; }
    
    input[type="text"],
    input[type="tel"],
    input[type="email"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* === TODOS LOS FIX DE PÁGINAS ESPECÍFICAS === */
@media (max-width: 768px) {
    [style*="max-width: 800px; text-align: center"] {
        padding: 0 16px !important;
    }
    
    [style*="max-width: 700px; text-align: center"] {
        padding: 0 16px !important;
    }
    
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 3rem !important;
    }
    
    [style*="order: 2"] {
        order: 1 !important;
    }
    
    [style*="order: 1"] {
        order: 2 !important;
    }
    
    [style*="padding: 1.5rem; border-left: 4px solid var(--black); background: white"] {
        padding: 1.2rem !important;
        margin-top: 1rem !important;
    }
    
    [style*="margin-bottom: 1rem"] h5 {
        font-size: 1rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; list-style: none"] {
        grid-template-columns: 1fr !important;
        gap: 0.4rem !important;
    }
    
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;"] {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
    }
    
    [style*="display: flex; align-items: center; gap: 0.5rem"] {
        font-size: 0.95rem !important;
        padding: 0.3rem 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    [style*="width:100%; border-radius:8px; filter: grayscale(20%)"] {
        width: 100% !important;
        height: auto !important;
        max-height: 250px !important;
        object-fit: cover !important;
        margin-top: 1rem !important;
    }
    
    [style*="border-radius: 50%; border: 4px solid var(--salmon)"] {
        max-width: 180px !important;
        margin: 0 auto 1rem !important;
        display: block !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;"]:has([style*="border-radius: 50%"]) {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; max-width: 900px"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem;"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;"] {
        grid-template-columns: 1fr !important;
    }
    
    [style*="display: grid; grid-template-columns: 2fr 1fr; gap: 3rem;"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    [style*="position: sticky; top: 100px"] {
        position: static !important;
        margin-top: 2rem !important;
    }
    
    [style*="padding: 16px 35px; background: white; color: #111;"] {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
    }
    
    [style*="display: flex; gap: 1rem; justify-content: center;"] {
        flex-direction: column !important;
        gap: 1rem !important;
    }
}

@media (max-width: 480px) {
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center"] {
        gap: 1.5rem !important;
        margin-bottom: 2.5rem !important;
    }
    
    [style*="padding: 1.5rem; border-left: 4px solid var(--black); background: white"] {
        padding: 1rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; max-width: 900px"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    [style*="font-size: 3rem; font-weight: 700; color: #111;"] {
        font-size: 2.2rem !important;
    }
    
    [style*="padding: 18px 45px;"] {
        padding: 16px 30px !important;
        font-size: 1rem !important;
    }
    
    section[style*="height: 400px;"] {
        height: 300px !important;
    }
}

/* === FIX SERVICES.PHP === */
@media (max-width: 1024px) {
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;"] {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }
    
    [style*="order: 2"] {
        order: 1 !important;
    }
    
    [style*="order: 1"] {
        order: 2 !important;
    }
    
    [style*="width: 100%; height: auto; box-shadow: 0 30px 60px -20px rgba(0,0,0,0.3);"] {
        max-width: 100% !important;
        height: auto !important;
        margin-top: 1rem !important;
    }
    
    h2 {
        font-size: 2rem !important;
        margin-top: 1rem !important;
    }
    
    [style*="font-size: 3.5rem; margin-bottom: 1.5rem;"] {
        font-size: 3rem !important;
        margin-bottom: 1rem !important;
    }
    
    [style*="list-style: none; margin-bottom: 2.5rem;"] {
        margin-bottom: 1.5rem !important;
    }
    
    [style*="margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;"] {
        font-size: 1rem !important;
        gap: 0.5rem !important;
        line-height: 1.5 !important;
    }
    
    [style*="color: var(--salmon); font-weight: 700;"] {
        font-size: 1.2rem !important;
        min-width: 24px !important;
    }
    
    .btn-primary {
        width: 100% !important;
        text-align: center !important;
        padding: 16px 30px !important;
    }
}

@media (max-width: 768px) {
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;"] {
        gap: 2rem !important;
        margin-bottom: 4rem !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
    }
    
    [style*="font-size: 3.5rem; margin-bottom: 1.5rem;"] {
        font-size: 2.5rem !important;
    }
    
    [style*="margin-bottom: 1.5rem; font-size: 1.1rem;"] {
        font-size: 1rem !important;
        margin-bottom: 1rem !important;
    }
    
    [style*="margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;"] {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }
    
    .service-card[style*="padding: 2rem; text-align: center;"] {
        padding: 1.5rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; text-align: center;"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    [style*="display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;"] {
        gap: 1.5rem !important;
        margin-bottom: 3rem !important;
    }
    
    h1 {
        font-size: 2.2rem !important;
    }
    
    h2 {
        font-size: 1.5rem !important;
    }
    
    [style*="font-size: 3.5rem; margin-bottom: 1.5rem;"] {
        font-size: 2.2rem !important;
        margin-bottom: 0.8rem !important;
    }
    
    [style*="margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem;"] {
        font-size: 0.9rem !important;
        gap: 0.4rem !important;
    }
    
    [style*="display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;"] {
        grid-template-columns: 1fr !important;
    }
    
    .btn-primary {
        padding: 14px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .container {
        padding: 0 16px !important;
    }
}