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

body {
    font-family: 'Rubik', sans-serif;
    line-height: 1.6;
    color: #232536;
    overflow-x: hidden;
}

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 18px 0;
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(72, 116, 241, 0.1);
    transition: all 0.3s ease;
}

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

.logo img {
    height: 40px;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #232536;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4874F1;
}

.cta-button, .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(72, 116, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover, .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(72, 116, 241, 0.4);
}

.cta-button::before, .btn-primary::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;
}

.cta-button:hover::before, .btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #232536;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: linear-gradient(135deg, #00c851 0%, #007e33 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 35px rgba(0, 200, 81, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 200, 81, 0.6);
    background: linear-gradient(135deg, #00e676 0%, #00c853 100%);
}

.hero-buttons .btn-primary:hover::before {
    left: 100%;
}

.hero-buttons .btn-secondary {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px) scale(1.05);
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-secondary:hover::before {
    transform: scaleX(1);
}

.hero-buttons .btn-primary i,
.hero-buttons .btn-secondary i {
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(5px) scale(1.1);
}

.hero-buttons .btn-secondary:hover i {
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
        font-size: 1.1rem;
        padding: 16px 35px;
    }
}

/* Social Proof Section */
.social-proof {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.social-proof-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232536;
}

.social-proof-header p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #666;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.metric-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.metric-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4874F1;
    margin-bottom: 10px;
}

.metric-label {
    font-size: 1.1rem;
    color: #666;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.badge i {
    color: #4874F1;
    font-size: 1.2rem;
}

/* Video Demo Section */
.video-demo {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
}

.section-tag {
    background: #4874F1;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232536;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

.video-container {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.benefits-list {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f1f1;
    padding: 15px 20px;
    border-radius: 10px;
}

.benefit-item i {
    color: #4874F1;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(72,116,241,0.05)"/><circle cx="80" cy="40" r="1" fill="rgba(72,116,241,0.05)"/><circle cx="40" cy="80" r="1" fill="rgba(72,116,241,0.05)"/></svg>');
    background-size: 100px 100px;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 116, 241, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 90px;
    height: 90px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    box-shadow: 0 15px 40px rgba(72, 116, 241, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(72, 116, 241, 0.4);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #232536;
    line-height: 1.3;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    background: white;
    padding: 80px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(72, 116, 241, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(72, 116, 241, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar img {
    border-color: rgba(72, 116, 241, 0.5);
    transform: scale(1.05);
}

.author-info {
    flex-grow: 1;
}

.author-info strong {
    color: #232536;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 3px;
    font-weight: 600;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.stars {
    color: #ffd700;
    font-size: 1rem;
    flex-shrink: 0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 0;
    color: #555;
    line-height: 1.6;
}

/* Detailed Features Section */
.detailed-features {
    background: white;
    padding: 80px 0;
}

.feature-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.feature-detail.reverse {
    direction: rtl;
}

.feature-detail.reverse > * {
    direction: ltr;
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232536;
}

.feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #4874F1;
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #232536;
}

.feature-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
}

.feature-content li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    color: #666;
}

.feature-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4874F1;
    font-weight: bold;
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chat-simulation {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}

.chat-message {
    background: #f1f1f1;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    position: relative;
}

.agent-label {
    color: #4874F1;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.agent-maria { border-left: 4px solid #ff6b6b; }
.agent-joao { border-left: 4px solid #4ecdc4; }
.agent-ana { border-left: 4px solid #45b7d1; }

.broadcast-dashboard {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    border: 1px solid rgba(72, 116, 241, 0.1);
    max-width: 400px;
    margin: 0 auto;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(72, 116, 241, 0.1);
}

.dashboard-header i {
    font-size: 2.5rem;
    color: #4874F1;
    margin-bottom: 10px;
}

.dashboard-header h4 {
    color: #232536;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.contacts-counter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.counter-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.counter-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4874F1;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.sending-progress {
    margin-bottom: 25px;
}

.progress-bar {
    background: rgba(72, 116, 241, 0.1);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 100%;
    width: 69%;
    border-radius: 4px;
    transition: width 0.3s ease;
    animation: progress-pulse 2s infinite;
}

@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.progress-text {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.send-button-demo {
    text-align: center;
}

.demo-send-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(72, 116, 241, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
}

.demo-send-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(72, 116, 241, 0.4);
}

.demo-send-btn i {
    font-size: 1rem;
}

/* Video Tutorial Section */
.video-tutorial-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 100px 0;
    position: relative;
}

.video-tutorial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1" fill="rgba(72,116,241,0.04)"/><circle cx="75" cy="75" r="1" fill="rgba(72,116,241,0.04)"/></svg>');
    background-size: 150px 150px;
}

.video-tutorial-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-tutorial-header {
    text-align: left;
}

.tutorial-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(72, 116, 241, 0.3);
    animation: badge-glow 2s infinite;
}

@keyframes badge-glow {
    0%, 100% { box-shadow: 0 8px 25px rgba(72, 116, 241, 0.3); }
    50% { box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5); }
}

.video-tutorial-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #232536;
    margin-bottom: 20px;
    line-height: 1.2;
}

.video-tutorial-header p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 35px;
    line-height: 1.6;
}

.tutorial-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(72, 116, 241, 0.1);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.highlight-item i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 6px 20px rgba(72, 116, 241, 0.3);
}

.highlight-item span {
    font-weight: 600;
    color: #232536;
    font-size: 1.1rem;
}

.video-demo-container {
    position: relative;
}

.video-wrapper {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.15);
    border: 1px solid rgba(72, 116, 241, 0.1);
    overflow: hidden;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 15px;
    overflow: hidden;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.play-button {
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.8) 100%);
    color: #4874F1;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
    animation: play-pulse 2s infinite;
}

@keyframes play-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #4874F1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.tutorial-cta {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 60px;
}

.tutorial-cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 25px 50px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 15px 45px rgba(72, 116, 241, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.tutorial-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
    transition: left 0.5s ease;
}

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

.tutorial-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(72, 116, 241, 0.6);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.button-content i {
    font-size: 1.5rem;
}

.button-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-text {
    font-size: 1.3rem;
    font-weight: 700;
}

.sub-text {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.button-arrow {
    background: rgba(255,255,255,0.2);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tutorial-cta-button:hover .button-arrow {
    transform: translateX(5px);
    background: rgba(255,255,255,0.3);
}

.tutorial-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #4caf50;
    font-weight: 600;
    margin-top: 15px;
}

.tutorial-guarantee i {
    font-size: 1.2rem;
}

/* Mobile Responsive for Video Tutorial */
@media (max-width: 768px) {
    .video-tutorial-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .video-tutorial-header {
        text-align: center;
    }
    
    .video-tutorial-header h2 {
        font-size: 2.2rem;
    }
    
    .tutorial-highlights {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .highlight-item:hover {
        transform: translateY(-5px);
    }
    
    .tutorial-cta-button {
        padding: 20px 35px;
        font-size: 1.1rem;
    }
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 100px 0;
    position: relative;
}

.bonus-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(72, 116, 241, 0.3);
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.bonus-main {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(72, 116, 241, 0.1);
    transition: all 0.3s ease;
}

.bonus-main:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

.bonus-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(72, 116, 241, 0.3);
}

.bonus-icon i {
    font-size: 2.5rem;
    color: white;
}

.bonus-process {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.bonus-main h3, .bonus-process h3 {
    color: #232536;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.bonus-main p {
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.bonus-features {
    display: grid;
    gap: 20px;
}

.bonus-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(72, 116, 241, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bonus-feature:hover {
    background: rgba(72, 116, 241, 0.1);
    transform: translateX(5px);
}

.bonus-feature i {
    color: #4874F1;
    font-size: 1.3rem;
    min-width: 24px;
}

.bonus-feature span {
    color: #232536;
    font-weight: 500;
}

.ease-section {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.ease-content {
    text-align: center;
    margin-bottom: 40px;
}

.ease-content h3 {
    color: #232536;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.ease-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.ease-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ease-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(72, 116, 241, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.ease-feature:hover {
    background: rgba(72, 116, 241, 0.1);
    transform: translateY(-5px);
}

.ease-feature i {
    color: #4874F1;
    font-size: 1.5rem;
}

.ease-feature span {
    color: #232536;
    font-weight: 500;
}

.process-steps {
    display: grid;
    gap: 30px;
    margin-top: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(72, 116, 241, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(72, 116, 241, 0.1);
    transform: translateY(-3px);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(72, 116, 241, 0.3);
}

.step-content h4 {
    color: #232536;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Integrations Section */
.integrations {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.integration-icon {
    font-size: 3rem;
    color: #4874F1;
    margin-bottom: 20px;
}

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

.integration-category {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(72, 116, 241, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-category:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.integration-category:hover::before {
    transform: scaleX(1);
}

.integration-category h4 {
    color: #232536;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.integration-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.integration-items span {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
    box-shadow: 0 4px 12px rgba(72, 116, 241, 0.3);
}

.integration-items span:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(72, 116, 241, 0.4);
}

/* Recovery Section */
.recovery-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 100px 0;
}

.recovery-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.recovery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 50px 0 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.recovery-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(72, 116, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.recovery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.recovery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.recovery-card:hover::before {
    transform: scaleX(1);
}

.recovery-icon {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.recovery-card:hover .recovery-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.recovery-icon i {
    color: white;
    font-size: 2.2rem;
}

.recovery-card h4 {
    color: #232536;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.recovery-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.recovery-cta {
    text-align: center;
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.recovery-cta h3 {
    color: #232536;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.recovery-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Trust and Community Section */
.trust-community {
    background: white;
    padding: 100px 0;
}

.trust-section {
    margin-bottom: 80px;
}

.trust-header {
    text-align: center;
    margin-bottom: 50px;
}

.trust-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.trust-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #232536;
}

.trust-header p {
    font-size: 1.2rem;
    color: #666;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.trust-stat {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(72, 116, 241, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4874F1;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-weight: 500;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    border-radius: 15px;
    border: 1px solid rgba(72, 116, 241, 0.1);
    transition: all 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.trust-feature i {
    color: #4874F1;
    font-size: 2rem;
    min-width: 40px;
}

.feature-content h4 {
    color: #232536;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.community-section {
    display: flex;
    justify-content: center;
}

.community-card {
    background: linear-gradient(135deg, rgba(72, 116, 241, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 600px;
    border: 1px solid rgba(72, 116, 241, 0.1);
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

.community-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(72, 116, 241, 0.3);
}

.community-icon i {
    color: white;
    font-size: 2.5rem;
}

.community-card h3 {
    color: #232536;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.community-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.community-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit i {
    color: #4874F1;
    font-size: 1.2rem;
}

.benefit span {
    color: #232536;
    font-weight: 500;
    font-size: 0.9rem;
}

.community-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    font-size: 1.1rem;
    padding: 18px 35px;
}

.community-block p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.community-block h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #4874F1;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 120px 0;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(72,116,241,0.03)"/><circle cx="90" cy="50" r="1" fill="rgba(72,116,241,0.03)"/><circle cx="50" cy="90" r="1" fill="rgba(72,116,241,0.03)"/></svg>');
    background-size: 200px 200px;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(72, 116, 241, 0.3);
    animation: pulse-badge 2s infinite;
}

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



.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* Starter Card */
.pricing-card.starter {
    border-color: rgba(72, 116, 241, 0.2);
}

.pricing-card.starter:hover {
    border-color: #4874F1;
}

/* Pro Card */
.pricing-card.pro {
    border-color: rgba(102, 126, 234, 0.3);
    transform: scale(1.02);
    position: relative;
}

.pricing-card.pro:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: #667eea;
}

/* Annual Special Card */
.pricing-card.annual-special {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    border: 3px solid;
    border-image: linear-gradient(135deg, #ffd700, #ff6b6b, #667eea) 1;
    position: relative;
    box-shadow: 0 25px 80px rgba(255, 215, 0, 0.3);
}

.pricing-card.annual-special:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 90px rgba(255, 215, 0, 0.4);
}

/* Plan Ribbons */
.plan-ribbon {
    position: absolute;
    top: 15px;
    right: -30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 40px;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 4px 15px rgba(72, 116, 241, 0.3);
}

.plan-ribbon.annual {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    animation: ribbon-shine 2s infinite;
}

@keyframes ribbon-shine {
    0%, 100% { background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%); }
    50% { background: linear-gradient(135deg, #ffed4a 0%, #ff5722 100%); }
}

/* Badges */
.popular-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(72, 116, 241, 0.3);
}

.annual-plan-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
}

.special-offer-badge-external {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: special-glow 2s infinite;
    z-index: 3;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.special-offer-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    animation: special-glow 2s infinite;
    z-index: 2;
}

@keyframes special-glow {
    0%, 100% { 
        background: linear-gradient(135deg, #ff6b6b 0%, #ffd700 100%);
        box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    }
    50% { 
        background: linear-gradient(135deg, #ff5722 0%, #ffed4a 100%);
        box-shadow: 0 12px 35px rgba(255, 87, 34, 0.6);
    }
}

/* Plan Headers */
.plan-header {
    margin-bottom: 30px;
}

.plan-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(72, 116, 241, 0.3);
}

.annual-special .plan-icon {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    animation: icon-glow 2s infinite;
}

@keyframes icon-glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5); }
}

.plan-icon i {
    color: white;
    font-size: 2rem;
}

.plan-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #232536;
}

.plan-subtitle {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* Pricing */
.plan-price {
    margin-bottom: 35px;
}

.discount-comparison {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 500;
}

.discount-percent {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    animation: discount-pulse 2s infinite;
}

@keyframes discount-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.price-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4874F1;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4874F1;
}

.annual-special .currency,
.annual-special .price {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    color: #666;
    font-size: 1.2rem;
    font-weight: 500;
}

.price-note {
    color: #666;
    font-size: 0.95rem;
    margin-top: 8px;
    font-weight: 500;
}

.savings-highlight {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    color: #4caf50;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    margin-top: 15px;
    border: 2px solid rgba(76, 175, 80, 0.2);
    animation: savings-glow 3s infinite;
}

@keyframes savings-glow {
    0%, 100% { background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%); }
    50% { background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.1) 100%); }
}

/* Features */
.plan-features {
    text-align: left;
    margin-bottom: 35px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.feature-header i {
    color: #ffd700;
    font-size: 1.3rem;
}

.feature-header span {
    font-weight: 700;
    color: #232536;
    font-size: 1.1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: #555;
    font-size: 0.95rem;
}

.feature i {
    width: 20px;
    color: #4874F1;
    font-size: 1rem;
}

.feature.premium-feature i {
    color: #667eea;
}

.feature.exclusive i {
    color: #764ba2;
}

.feature.bonus i {
    color: #ffd700;
}

.feature.guarantee i {
    color: #4caf50;
}

.feature strong {
    font-weight: 700;
    color: #232536;
}

/* Buttons */
.plan-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(72, 116, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(72, 116, 241, 0.4);
}

.plan-button.starter-btn {
    background: linear-gradient(135deg, #4874F1 0%, #667eea 100%);
}

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

.plan-button.annual-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    animation: button-shine 3s infinite;
}

@keyframes button-shine {
    0%, 100% { 
        background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
        box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    }
    50% { 
        background: linear-gradient(135deg, #ffed4a 0%, #ff5722 100%);
        box-shadow: 0 15px 45px rgba(255, 237, 74, 0.5);
    }
}

.plan-button.annual-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(255, 215, 0, 0.6);
}

.urgency-timer {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    animation: urgency-blink 2s infinite;
}

@keyframes urgency-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.urgency-timer i {
    color: #ff6b6b;
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 60px;
    text-align: center;
}

.guarantee-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 2px solid rgba(76, 175, 80, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
}

.guarantee-badge {
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    animation: guarantee-pulse 3s infinite;
}

@keyframes guarantee-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
    }
    50% { 
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    }
}

.guarantee-badge i {
    font-size: 1.1rem;
}

.guarantee-content h3 {
    color: #232536;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.guarantee-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(76, 175, 80, 0.1);
    transition: all 0.3s ease;
}

.guarantee-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    border-color: rgba(76, 175, 80, 0.3);
}

.guarantee-feature i {
    color: #4caf50;
    font-size: 1.2rem;
    min-width: 20px;
}

.guarantee-feature span {
    color: #232536;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Mobile responsive for guarantee */
@media (max-width: 768px) {
    .guarantee-section {
        padding: 40px 25px;
    }
    
    .guarantee-content h3 {
        font-size: 1.6rem;
    }
    
    .guarantee-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .guarantee-feature {
        padding: 12px 15px;
    }
}



/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

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

.faq-item {
    border: 1px solid rgba(72, 116, 241, 0.1);
    border-radius: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #232536;
}

.faq-question i {
    color: #4874F1;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Guarantee and CTA Section */
.guarantee-cta {
    background: #232536;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.guarantee-block {
    margin-bottom: 50px;
}

.guarantee-block h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.guarantee-block p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-badge {
    background: #4874F1;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.final-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #ccc;
}

.large-cta {
    font-size: 1.3rem;
    padding: 20px 40px;
    background: #4874F1;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.large-cta:hover {
    background: #3a5fd1;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #232536 0%, #2d2d2d 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(72, 116, 241, 0.5), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-column p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4874F1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.9rem;
        padding: 8px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding: 20px;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .feature-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-detail.reverse {
        direction: ltr;
    }

    .trust-points {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 100%;
    }

    .pricing-card.featured,
    .pricing-card.pro,
    .pricing-card.annual-special {
        transform: none;
    }
    
    .pricing-card {
        padding: 30px 25px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .process-steps {
        flex-direction: column;
        gap: 20px;
    }

    .recovery-features {
        grid-template-columns: 1fr;
    }

    .integrations-grid {
        grid-template-columns: 1fr;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        flex-direction: column;
        align-items: center;
    }

    .trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
