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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
}

.header-area {
    background: linear-gradient(135deg, #003d6a 0%, #005a9c 100%) !important;
    padding: 15px 0 !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1) !important;
    min-height: 70px !important;
}

.header-area .main-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    min-height: 40px !important;
}

.header-area .logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}

.header-area .logo img {
    background: white !important;
    padding: 5px 10px !important;
    border-radius: 8px !important;
}

.header-area .nav {
    display: flex !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.header-area .nav li {
    margin: 0 5px !important;
}

.header-area .nav li a {
    color: white !important;
    font-weight: 500 !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    display: inline-block !important;
}

.header-area .nav li a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) scaleX(0) !important;
    width: 80% !important;
    height: 2px !important;
    background: linear-gradient(90deg, #4CAF50, #2196F3) !important;
    transition: transform 0.3s ease !important;
}

.header-area .nav li a:hover {
    color: #f59e0b !important;
    transform: translateY(-2px) !important;
}

.header-area .nav li a:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
}

.gradient-button a {
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.gradient-button a:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 16px rgba(193, 39, 45, 0.4) !important;
}

.gradient-button a {
    background: #c1272d !important;
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
}

.menu-trigger {
    display: none !important;
    cursor: pointer !important;
    color: white !important;
    font-size: 1.5rem !important;
    padding: 8px 12px !important;
    background: transparent !important;
    border: none !important;
    line-height: 1 !important;
    position: absolute !important;
    left: 15px !important;
}

.menu-trigger:hover {
    color: #f59e0b !important;
}

.nav-close {
    display: none !important;
}

.notification-trigger {
    display: none !important;
    cursor: pointer !important;
    color: white !important;
    font-size: 1.3rem !important;
    padding: 8px 12px !important;
    background: transparent !important;
    border: none !important;
    line-height: 1 !important;
    position: absolute !important;
    right: 15px !important;
}

.notification-trigger:hover {
    color: #f59e0b !important;
}

.hero-section {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%) !important;
    padding: 60px 0 40px !important;
    color: #1f2937 !important;
    margin-top: 70px !important;
}

.hero-content h1 {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 15px !important;
    color: #003d6a !important;
}

.hero-content p {
    font-size: 1.25rem !important;
    margin-bottom: 30px !important;
    opacity: 1 !important;
    color: #4b5563 !important;
}

.hero-buttons {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 30px !important;
    flex-wrap: wrap !important;
}

.btn-primary {
    background: #c1272d !important;
    color: white !important;
    padding: 10px 28px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
    box-shadow: 0 4px 15px rgba(255,255,255,0.3) !important;
}

.btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(193,39,45,0.4) !important;
    color: white !important;
    background: #a01f24 !important;
    text-decoration: none !important;
}

.btn-secondary {
    background: white !important;
    color: #003d6a !important;
    padding: 10px 28px !important;
    border: 2px solid #003d6a !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s !important;
}

.btn-secondary:hover {
    background: #003d6a !important;
    color: white !important;
    text-decoration: none !important;
}

.trust-badges {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.trust-badges span {
    background: rgba(255,255,255,0.8) !important;
    padding: 5px 10px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    backdrop-filter: blur(10px) !important;
    color: #003d6a !important;
    border: 1px solid #bbdefb !important;
    white-space: nowrap !important;
}

.trust-badges i {
    color: #10b981 !important;
    margin-right: 5px !important;
}

.hero-image {
    text-align: center !important;
}

.hero-image img {
    width: 100% !important;
    max-width: 450px !important;
    animation: float 3s ease-in-out infinite !important;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: #f9fafb;
}

.trusted-title {
    font-size: 1rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

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

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d6a;
    margin-bottom: 5px;
}

.stat-item p {
    color: #6b7280;
    font-size: 0.95rem;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

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

.section-header p {
    font-size: 1.1rem;
    color: #6b7280;
}

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

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 1px solid #f3f4f6;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,61,106,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #003d6a, #005a9c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f9fafb;
}

.feature-module {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-module:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border-color: #003d6a;
}

.feature-module i {
    font-size: 2.5rem;
    color: #003d6a;
    margin-bottom: 15px;
}

.feature-module h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

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

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

.workflow-step {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    position: relative;
    transition: all 0.3s;
}

.workflow-step:hover {
    border-color: #003d6a;
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #c1272d, #a01f24);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.workflow-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1f2937;
}

.workflow-step p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f9fafb;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.3s;
}

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

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #003d6a, #005a9c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.author h5 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.author span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* Free Trial Section */
.free-trial-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.free-trial-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #003d6a;
    margin-bottom: 20px;
}

.free-trial-section .lead {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 30px;
}

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

.trial-features li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #1f2937;
}

.trial-features i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.2rem;
}

.btn-trial {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #c1272d, #a01f24);
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(193,39,45,0.3);
}

.btn-trial:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,39,45,0.4);
    color: white;
    text-decoration: none;
}

.trial-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #003d6a 0%, #005a9c 100%);
    color: white;
}

.comparison-table th {
    padding: 25px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
}

.comparison-table th:first-child {
    text-align: left;
    background: #1f2937;
}

.comparison-table .popular-col {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    position: relative;
}

.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 5px;
}

.popular-tag {
    position: absolute;
    top: 5px;
    right: 10px;
    background: white;
    color: #f59e0b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.comparison-table tbody tr:hover {
    background: #f9fafb;
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    color: #4b5563;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #1f2937;
}

.comparison-table .popular-col {
    background: rgba(245, 158, 11, 0.05);
}

.comparison-table tbody .popular-col {
    background: rgba(245, 158, 11, 0.05);
}

.comparison-table i {
    font-size: 1.2rem;
}

.cta-row td {
    padding: 25px 20px;
    background: #f9fafb;
}

.btn-table {
    display: inline-block;
    padding: 12px 30px;
    background: #c1272d;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-table:hover {
    background: #a01f24;
    transform: translateY(-2px);
    color: white;
}

.btn-popular {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.btn-popular:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    max-width: 350px;
    background: #f3f4f6;
    color: #1f2937;
    padding: 12px 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border: 1px solid #e5e7eb;
    z-index: 9999;
    display: none;
    animation: slideIn 0.5s ease-out;
    position: relative;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cookie-close:hover {
    color: #1f2937;
    transform: rotate(90deg);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-right: 20px;
}

.cookie-text {
    display: flex;
    align-items: center;
}

.cookie-text span {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #1f2937;
}

.cookie-buttons {
    display: flex;
}

.cookie-accept {
    padding: 6px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.75rem;
    background: #003d6a;
    color: white;
    white-space: nowrap;
}

.cookie-accept:hover {
    background: #002a4a;
    transform: translateY(-1px);
}

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

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    border: 2px solid #e5e7eb;
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pricing-card.popular {
    border-color: #c1272d;
    box-shadow: 0 10px 40px rgba(193,39,45,0.2);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1f2937;
}

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

.currency {
    font-size: 1.5rem;
    color: #6b7280;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #c1272d;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

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

.features-list li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 0.95rem;
}

.features-list i {
    color: #10b981;
    margin-right: 10px;
    font-size: 1rem;
}

.features-list li.disabled {
    color: #9ca3af;
}

.features-list li.disabled i {
    color: #ef4444;
}

.btn-plan {
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #c1272d, #a01f24);
    color: white;
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,39,45,0.4);
    color: white;
}

.trial-info {
    text-align: center;
    margin-top: 15px;
    color: #10b981;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Security Section */
.security-section {
    padding: 80px 0;
    background: #f9fafb;
}

.security-item {
    text-align: center;
    padding: 30px;
    margin-bottom: 20px;
}

.security-item i {
    font-size: 3rem;
    color: #003d6a;
    margin-bottom: 15px;
}

.security-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

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

.contact-info {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
}

.contact-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1f2937;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: #c1272d;
    margin-top: 5px;
}

.info-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}

.info-item p {
    color: #6b7280;
    margin: 0;
}

.info-item a {
    color: #c1272d;
    text-decoration: none;
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #003d6a;
    box-shadow: 0 0 0 3px rgba(0,61,106,0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #c1272d, #a01f24);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193,39,45,0.4);
}

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

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.3s;
}

.video-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.demo-thumbnail {
    width: 100%;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
}

.play-button i {
    font-size: 2rem;
    color: #c1272d;
    margin-left: 5px;
}

.screenshot-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #003d6a;
}

.screenshot-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    opacity: 0;
    transition: opacity 0.3s;
}

.screenshot-card img.loaded {
    opacity: 1;
}

.screenshot-card h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0;
}

/* Customer Logos Section */
.customers-section {
    padding: 60px 0;
    background: #f9fafb;
}

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

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-color: #003d6a;
}

.logo-placeholder {
    font-size: 0.9rem;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1px;
    text-align: center;
}

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

.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: #1f2937;
    font-weight: 600;
    padding: 20px 25px;
    font-size: 1.05rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #003d6a 0%, #005a9c 100%);
    color: white;
}

.accordion-button i {
    margin-right: 12px;
    font-size: 1.1rem;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231e3a8a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: #4b5563;
    line-height: 1.7;
    font-size: 1rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* Lazy Loading */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Footer */
.footer-section {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-widget p {
    color: #9ca3af;
    line-height: 1.7;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-widget ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #c1272d;
    transform: translateY(-3px);
}

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

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        min-width: 150px;
    }
}

@media (max-width: 991px) {
    .menu-trigger {
        display: block !important;
    }
    
    .notification-trigger {
        display: block !important;
    }
    
    .header-area .logo {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }
    
    .header-area .nav {
        position: fixed !important;
        top: 70px !important;
        left: -100% !important;
        width: 50% !important;
        max-width: 280px !important;
        height: calc(100vh - 70px) !important;
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        flex-direction: column !important;
        padding: 50px 20px 20px !important;
        transition: left 0.3s ease !important;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1) !important;
        overflow-y: auto !important;
    }
    
    .nav-close {
        display: block !important;
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        font-size: 1.5rem !important;
        color: #1f2937 !important;
        cursor: pointer !important;
        background: transparent !important;
        border: none !important;
        padding: 5px 10px !important;
        line-height: 1 !important;
    }
    
    .nav-close:hover {
        color: #c1272d !important;
    }
    
    .header-area .nav.active {
        left: 0 !important;
    }
    
    .header-area .nav li {
        width: 100% !important;
        margin: 5px 0 !important;
    }
    
    .header-area .nav li a {
        display: block !important;
        padding: 12px 15px !important;
        color: #1f2937 !important;
        border-radius: 8px !important;
        background: transparent !important;
    }
    
    .header-area .nav li a:hover {
        background: #f3f4f6 !important;
        color: #003d6a !important;
    }
    
    .gradient-button a {
        display: block !important;
        text-align: center !important;
        background: #c1272d !important;
        color: white !important;
    }
    
    .gradient-button a:hover {
        background: #a01f24 !important;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .stats-row {
        gap: 20px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .price-tag {
        font-size: 1.1rem;
    }
    
    .cookie-consent {
        bottom: 10px;
        right: 10px;
        left: auto;
        max-width: calc(100% - 20px);
    }
    
    .cookie-text span {
        font-size: 0.75rem;
    }
    
    .cookie-accept {
        padding: 5px 16px;
        font-size: 0.7rem;
    }
}
