/* CSS Reset y Base - Mobile First */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    font-size: 16px;
}

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

/* Variables CSS */
:root {
    --primary-color: #FF6224;
    --secondary-color: #3B4051;
    --text-dark: #333;
    --text-light: #666;
    --text-muted: #999;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --success-color: #4caf50;
    --trial-color: #ff4081;
    --benefit-color: #1976d2;
    --border-radius: 10px;
    --border-radius-lg: 20px;
    --transition: 0.3s ease;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #ff8a50 100%);
    --gradient-trial: linear-gradient(135deg, var(--trial-color) 0%, #ff6ec7 100%);
}

/* Header - Mobile First */
.header {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2f3d 100%);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 1001;
}

.logo img {
    height: 32px;
    margin-right: 8px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Links - Mobile */
.nav-links {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    box-shadow: var(--shadow);
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition);
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* CTA Button */
.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55520 100%);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
    transition: transform var(--transition), box-shadow var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 98, 36, 0.4);
}

/* Hero Section - Mobile */
.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2a2f3d 100%);
    color: var(--white);
    padding: 100px 0 60px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

.hero-text {
    order: 2;
}

.hero-video {
    order: 1;
}

/* Hero Benefits */
.hero-benefits {
    margin: 2rem 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.benefit-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Video Styles */
.video-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.demo-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: var(--transition);
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 0;
}

.play-button {
    background: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.video-title {
    color: var(--white);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Enhanced CTAs */
.cta-button.primary {
    background: var(--gradient-trial);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 16px 32px;
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
}

.cta-subtitle {
    display: block;
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 4px;
}

.guarantee-text {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.discount-banner {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: none;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

.discount-banner.show {
    display: inline-block;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.protocol-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.protocol-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.hero-cta {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.hero-cta .cta-button {
    font-size: 1rem;
    padding: 12px 30px;
    width: 100%;
    max-width: 300px;
}

.secondary-button {
    background: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
}

.secondary-button:hover {
    background: var(--white) !important;
    color: var(--secondary-color) !important;
}

/* Section Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Technical Features */
.tech-features {
    padding: 60px 0;
    background: var(--white);
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tech-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.tech-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-icon {
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

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

.tech-list li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.tech-list li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Benefits Section */
.benefits {
    padding: 60px 0;
    background: var(--background-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
    background: var(--white);
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e55520 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* How it Works */
.how-it-works {
    padding: 60px 0;
    background: var(--white);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Transparency Section */
.transparency {
    padding: 60px 0;
    background: var(--background-light);
}

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

.transparency-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.what-we-dont {
    background: #fff3f0;
    border: 1px solid #ffccbc;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.what-we-dont h3 {
    color: #d84315;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.what-we-dont ul {
    list-style: none;
}

.what-we-dont li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 0.95rem;
}

.what-we-dont li:before {
    content: "✗";
    color: #d84315;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.transparency-note {
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Pricing */
.pricing {
    padding: 60px 0;
    background: var(--white);
}

.pricing-card {
    max-width: 380px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    text-align: center;
    position: relative;
}

.professional-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 20px;
    font-weight: bold;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.professional-badge.discount {
    background: var(--primary-color);
}

.pricing-content {
    padding: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1rem;
    display: none;
    margin-bottom: 0.5rem;
}

.original-price.show {
    display: block;
}

.current-price {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.guarantee {
    background: #e8f5e8;
    border: 1px solid var(--success-color);
    color: #2e7d32;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.features li {
    padding: 0.4rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 0.9rem;
}

.features li:before {
    content: "✓";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.pricing-cta-btn {
    width: 100%;
    margin-top: 1rem;
    padding: 12px 15px;
    font-size: 1rem;
}

.pricing-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--background-light);
}

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

.faq-item {
    background: var(--white);
    margin: 1rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    background: var(--secondary-color);
    color: var(--white);
    padding: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background var(--transition);
    font-size: 0.95rem;
}

.faq-question:hover {
    background: var(--primary-color);
}

.faq-answer {
    padding: 1rem;
    display: none;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.faq-answer.active {
    display: block;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 30px;
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-features {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s forwards;
}

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

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-cta .cta-button {
        width: auto;
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .tech-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
    }
    
    .current-price {
        font-size: 2.8rem;
    }
    
    .pricing-content {
        padding: 2rem;
    }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
    
    /* Header Desktop */
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        padding: 0;
        gap: 2rem;
        box-shadow: none;
        border-radius: 0;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    /* Hero Desktop */
    .hero {
        padding: 140px 0 100px;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .trust-indicators {
        gap: 2rem;
    }
    
    .hero-cta .cta-button {
        font-size: 1.2rem;
        padding: 15px 40px;
    }
    
    /* Sections Desktop */
    .tech-features,
    .benefits,
    .how-it-works,
    .transparency,
    .pricing,
    .faq {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .benefit-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .pricing-card {
        max-width: 400px;
    }
    
    .current-price {
        font-size: 3rem;
    }
    
    .transparency-content {
        max-width: 800px;
    }
    
    .what-we-dont {
        padding: 2rem;
    }
}

/* Large Desktop - 1200px and up */
@media (min-width: 1200px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .protocol-badges {
        gap: 1rem;
    }
    
    .protocol-badge {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Trial-specific styles */
.trial-banner {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    display: none;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.trial-banner.show {
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.trial-button {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%) !important;
    border: 2px solid #4CAF50 !important;
    position: relative;
    overflow: hidden;
}

.trial-button:hover {
    background: linear-gradient(135deg, #45a049 0%, #3d8b40 100%) !important;
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4) !important;
}

.trial-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.trial-button:hover::before {
    left: 100%;
}

.trial-highlight {
    background: linear-gradient(135deg, #E8F5E8 0%, #F1F8E9 100%);
    border: 2px solid #4CAF50;
    border-radius: var(--border-radius);
    padding: 1rem;
    margin: 1rem 0;
    text-align: center;
    display: none;
}

.trial-highlight strong {
    color: #2E7D32;
    font-size: 1.1rem;
}

.trial-price {
    color: #4CAF50;
    font-weight: bold;
}

/* ===== NEW BENEFITS-FOCUSED SECTIONS ===== */

/* Problem/Solution Section */
.problem-solution {
    background: var(--background-light);
    padding: 4rem 0;
}

.problem-section {
    margin-bottom: 4rem;
}

.problems-grid, .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.problem-item, .solution-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.problem-item:hover, .solution-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem-icon, .solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-item h3, .solution-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.solution-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.solution-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-guarantee {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Social Proof Section */
.social-proof {
    background: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.testimonial {
    background: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-location {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.social-proof-cta {
    margin-top: 2rem;
}

.cta-pretext {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Security Explained Section */
.security-explained {
    background: var(--background-light);
    padding: 4rem 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.security-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.security-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.tech-detail {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
    display: inline-block;
}

.security-guarantee {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--success-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced Benefits Section */
.benefit-proof {
    background: var(--background-light);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    color: var(--success-color);
    margin-top: 1rem;
    font-weight: 600;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
}

.cta-button.big {
    font-size: 1.2rem;
    padding: 18px 40px;
}

.benefits-guarantee {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enhanced Pricing Section */
.pricing-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.trial-badge {
    background: var(--gradient-trial);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.trial-info {
    text-align: center;
    margin-bottom: 2rem;
}

.trial-period {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.trial-days {
    font-size: 3rem;
    font-weight: 700;
    color: var(--trial-color);
}

.trial-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-color);
}

.then-price {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.what-you-get {
    margin: 2rem 0;
    text-align: left;
}

.what-you-get h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.benefit-features {
    list-style: none;
    padding: 0;
}

.benefit-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--background-light);
    font-size: 0.95rem;
}

.guarantee-section {
    margin: 2rem 0;
}

.guarantee-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--success-color);
    font-weight: 500;
}

.guarantee-icon {
    font-size: 1.1rem;
}

.pricing-ctas {
    text-align: center;
    margin: 2rem 0;
}

.cta-button.huge {
    font-size: 1.3rem;
    padding: 20px 50px;
    width: 100%;
    max-width: 500px;
}

.trust-indicators {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-item {
    white-space: nowrap;
}

/* Responsive Design for New Sections */
@media (min-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-video {
        order: 2;
    }
    
    .hero-benefits {
        text-align: left;
    }
    
    .problems-grid, .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .social-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-button.huge {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .problems-grid, .solutions-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .security-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}