/* Prevenir selección de texto e imágenes */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Permitir selección en elementos específicos si es necesario */
input,
textarea,
.selectable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Prevenir arrastre de imágenes */
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* Prevenir menú contextual en imágenes */
img,
.no-context-menu {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@keyframes neonGlow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.3), 0 0 10px rgba(255, 255, 255, 0.3), 0 0 15px rgba(255, 87, 34, 0.3);
    }

    100% {
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 87, 34, 0.5);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #5D2A88;
    color: #ffffff;
    overflow-x: hidden;
}

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

.hero .container {
    padding: 0 20px;
    max-width: 1400px;
}

.hero {
    padding: 20px 0;
    background: linear-gradient(to bottom, rgba(93, 42, 136, 0.8), rgba(93, 42, 136, 1));
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.hero .container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 30px !important;
}

.hero h1 {
    font-size: 4.2rem;
    line-height: 1.4;
    margin-bottom: 35px;
    max-width: 100%;
    margin: 0 auto 35px;
    width: 100%;
    text-align: center;
}

.header {
    padding: 20px 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #5D2A88;
    width: 100%;
    box-sizing: border-box;
}

.header .logo-container {
    margin-left: 20px;
}

.header .white-label-btn {
    margin-left: 15px;
}

.header-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease;
}

.logo-circle {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5D2A88;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
}

.white-label-btn {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 0.9rem;
    white-space: nowrap;
}

.white-label-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.hero {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(to bottom, rgba(93, 42, 136, 0.8), rgba(93, 42, 136, 1));
}

.hero h1 {
    font-size: 3rem !important;
    line-height: 1.4 !important;
    margin-bottom: 55px !important;
    max-width: 1600px !important;
    margin: 0 auto 35px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center !important;
    font-weight: 700 !important;
}


.hero span {
    color: #FF5722;
}

.hero .highlight-text {
    color: #FF5722;
    font-weight: 700;
}

.hero p {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 1000px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-image-container {
    position: relative;
    max-width: 800px;
    margin: 60px auto;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.browser-frame {
    background: #f0f0f0;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.browser-dots {
    display: flex;
    gap: 5px;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: #FF5722;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 87, 34, 0.3);
}

.btn-group {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    margin-bottom: 0px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: #FF5722;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.4);
}

.btn-hero i {
    font-size: 1.2rem;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
    padding: 0 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 10px;
    border-radius: 20px;
    text-align: center;
    min-width: 270px;
    max-width: 300px;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: #FF5722;
}

.stat-number {
    font-size: 2.5rem;
    color: #FF5722;
    margin-bottom: 10px;
    font-weight: 900;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.benefits {
    padding: 80px 0;
    background: #ffffff;
    color: #333;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.benefits-tag {
    display: inline-block;
    padding: 15px 30px;
    background: #4A1F70;
    color: white;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    height: 50px;
    line-height: 20px;
    text-align: center;
    min-width: 200px;
    border: 2px solid #8B5CF6;
    box-shadow: 0 8px 20px rgba(93, 42, 136, 0.6);
    transform: translateY(-3px);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-tag {
    display: inline-block;
    padding: 15px 30px;
    background: #4A1F70;
    color: white;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    height: 50px;
    line-height: 20px;
    text-align: center;
    min-width: 200px;
    border: 2px solid #8B5CF6;
    box-shadow: 0 8px 20px rgba(93, 42, 136, 0.6);
    transform: translateY(-3px);
}

.testimonials-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: bold;
}

.testimonials-subtitle {
    font-size: 1.2rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-badge-btn {
    display: inline-block;
    padding: 15px 30px;
    background: #4A1F70;
    color: white;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    height: 50px;
    line-height: 20px;
    text-align: center;
    min-width: 200px;
    border: 2px solid #8B5CF6;
    box-shadow: 0 8px 20px rgba(93, 42, 136, 0.6);
    transform: translateY(-3px);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-card {
    background: #7c3aed;
    border: 2px solid #7c3aed;
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    height: 100%;
    min-height: 280px;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
    border: 4px solid #FF5722;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: #7c3aed;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: transparent;
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.features-list {
    list-style: none;
    margin-top: 20px;
}

.features-list li {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li::before {
    content: "✓";
    color: #FF5722;
}

.testimonials {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #333;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF5722, #FF9800, #FFC107);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    position: relative;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.6;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 3rem;
    color: #FF5722;
    opacity: 0.3;
    font-family: Georgia, serif;
}

.testimonial-stars {
    margin-bottom: 15px;
    color: #FFD700;
    font-size: 1rem;
}

.testimonial-author {
    text-align: left;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.testimonial-author strong {
    color: #5D2A88;
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    font-weight: 500;
}

.testimonial-company {
    color: #888;
    font-size: 0.9rem;
    margin-top: 3px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-avatar img.person-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.country-flag {
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid white;
    object-fit: cover;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.pricing {
    padding: 80px 0;
    background: #fff;
    color: #333;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.pricing-card {
    border-radius: 20px;
    padding: 25px 40px 50px 40px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: white;
    transform: scale(1);
    display: flex;
    flex-direction: column;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.pricing-card.plan-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    /* Morado azulado */
}

.pricing-card.plan-premium {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    /* Rosa a rojo */
}

.pricing-card.plan-basico {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    /* Azul cian */
}

.pricing-card.plan-negocio {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    /* Verde esmeralda */
}

.pricing-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-pro:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.pricing-card.plan-premium:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.pricing-card.plan-basico:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
}

.pricing-card.plan-negocio:hover {
    background: linear-gradient(135deg, #38f9d7 0%, #43e97b 100%);
}

.popular-badge {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 6px 16px;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10;
}

.popular-badge.marca-blanca {
    background: #000000;
    /* Verde oscuro para Marca Blanca */
    box-shadow: 0 2px 8px rgba(46, 125, 50, 0.3);
}

.popular-badge.usuario-final {
    background: #3f00eb;
    /* Naranja para Usuario Final */
    box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

.plan-name {
    font-size: 1.8rem;
    margin-top: 55px;
    margin-bottom: 15px;
    color: white;
    text-align: center;
}

.price-container {
    margin: 20px 0;
    text-align: center;
}

.price {
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
}

.price-details {
    margin-bottom: 30px;
    text-align: center;
}

.price-details p {
    margin: 5px 0;
    color: rgba(255, 255, 255, 0.9);
}

.installment {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #FFD700;
    margin-top: 0px;
}

.feature-content {
    flex: 1;
}

.feature-title {
    display: block;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    font-size: 1rem;
}

.feature-description {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-container {
    text-align: center;
    margin-top: auto;
    padding-top: 20px;
}

.btn-pricing {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    min-width: 200px;
    text-align: center;
}

.pricing-card .btn-pricing {
    background: #000000;
    color: white;
}

.pricing-card.plan-pro .btn-pricing {
    color: #667eea;
}

.pricing-card.plan-premium .btn-pricing {
    color: #f093fb;
}

.pricing-card.plan-basico .btn-pricing {
    color: #4facfe;
}

.pricing-card.plan-negocio .btn-pricing {
    color: #43e97b;
}

.pricing-card.plan-pro .btn-pricing:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-premium .btn-pricing:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-basico .btn-pricing:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.pricing-card.plan-negocio .btn-pricing:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.guarantee {
    text-align: center;
    margin: 60px auto 0;
    width: 100%;
    max-width: 600px;
}

.guarantee-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(93, 42, 136, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    color: #5D2A88;
    border: 1px solid #5D2A88;
    margin: 0 auto;
    font-size: 0.95rem;
    text-align: center;
    max-width: 90%;
    line-height: 1.4;
}

.guarantee-text-desktop {
    display: block;
    text-align: center;
    line-height: 1.3;
}

.guarantee-text-mobile {
    display: none;
    text-align: center;
    line-height: 1.3;
}

.guarantee-text {
    font-weight: 600;
    text-align: center;
}

.final-cta {
    text-align: center;
    padding: 80px 0;
    background: #5D2A88;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

footer {
    background: #1a1a1a;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Botón flotante para volver arriba */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FF5722;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #E64A19;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.6);
}

.back-to-top i {
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    .hero {
        padding: 60px 0 40px;
    }

    .hero h1 {
        font-size: 2.4rem !important;
        margin-bottom: 25px !important;
        max-width: 100% !important;
        line-height: 1.4 !important;
        padding-left: 20px !important;
        padding-right: 20px !important;
        text-align: center !important;
    }

    .hero p {
        font-size: 1.2rem;
        margin: 0 auto 30px;
        padding: 0 20px;
    }

    .hero-image-container {
        margin: 25px auto;
        max-width: 100%;
    }

    .hero-image {
        width: 100%;
        height: auto;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .stat-card {
        min-width: auto;
        padding: 25px 20px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }

    .benefits {
        padding: 60px 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .benefit-card {
        padding: 25px;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 30px auto;
        padding: 0 20px;
    }

    .price-card {
        padding: 30px 25px;
    }

    .final-cta {
        padding: 60px 0;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .white-label-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin: 0 2px;
    }

    .guarantee {
        max-width: 90%;
    }

    .guarantee-badge {
        padding: 14px 22px;
        font-size: 1rem;
        border-radius: 8px;
        gap: 8px;
        max-width: 90%;
        line-height: 1.4;
    }

    .guarantee-text-desktop {
        display: none;
    }

    .guarantee-text-mobile {
        display: block;
        line-height: 1.3;
    }
}

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

    .hero {
        padding: 20px 0 20px;
    }

    .hero h1 {
        font-size: 1.9rem !important;
        padding: 0 15px !important;
        margin-bottom: 20px !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }

    .hero p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .logo-image {
        height: 60px;
    }

    .benefits-grid,
    .testimonials-grid,
    .pricing-grid {
        padding: 0 15px;
    }

    .benefit-card,
    .testimonial-card,
    .price-card {
        padding: 20px;
    }

    .stat-card {
        padding: 20px 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .white-label-btn {
        padding: 4px 8px;
        font-size: 0.75rem;
        margin: 0 1px;
    }

    .guarantee {
        max-width: 95%;
    }

    .guarantee-badge {
        padding: 12px 20px;
        font-size: 0.95rem;
        border-radius: 8px;
        gap: 8px;
        max-width: 90%;
        line-height: 1.4;
    }

    .guarantee-text-desktop {
        display: none;
    }

    .guarantee-text-mobile {
        display: block;
        line-height: 1.3;
    }
}