/* Base Reset and Variables */
:root {
    --primary-main: rgba(59, 130, 246, 1);
    --primary-light: #F5F7FF;
    --primary-lighter: #E2E9FF;
    --primary-dark: #0025E5;
    --primary-darker: #001FB8;
    --primary-gradient: linear-gradient(135deg, #F5F7FF 0%, #001690 100%);
    
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F5;
    --gray-200: #E4E4E7;
    --gray-300: #D4D4D8;
    --gray-400: #A1A1AA;
    --gray-500: #71717A;
    --gray-600: #52525B;
    --gray-700: #3F3F46;
    --gray-800: #27272A;
    --gray-900: #18181B;
    
    --shadow-soft: 0 2px 15px rgba(59, 92, 255, 0.08);
    --shadow-medium: 0 4px 20px rgba(59, 92, 255, 0.12);
    --shadow-large: 0 10px 40px rgba(59, 92, 255, 0.15);
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --max-width: 1280px;
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--gray-50);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

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

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

/* CRITICAL FIX: Testimonial Infinite Scroll Animation */
@keyframes testimonialScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-400px * 6 - 2rem * 6)); /* 6 cards with margins */
    }
}

/* Header Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    animation: slideDown 0.5s ease;
    transition: transform 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header.scrolled {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* CRITICAL FIX: Logo Size */
.logo {
    width: 110px !important;
    height: auto !important;
    object-fit: contain;
}

.logo-text {
    display: none !important;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-main);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-main);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-button-nav {
    padding: 0.75rem 1.5rem;
    background: var(--primary-main);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s ease;
}

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

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

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

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 92, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeIn 0.8s ease;
}

.trust-badge-top {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.badge-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-main);
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease 0.2s both;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-main) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.3s both;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.4s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.trust-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-main);
}

.trust-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    text-align: center;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: slideUp 0.8s ease 0.5s both;
}

.btn-primary-large, .btn-secondary-large {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-large {
    background: var(--primary-main);
    color: white;
    flex-direction: column;
    align-items: flex-start;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-primary-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-secondary-large {
    background: white;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
}

.btn-secondary-large:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.play-icon {
    width: 20px;
    height: 20px;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideUp 0.8s ease 0.6s both;
}

.payment-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

.payment-icon {
    padding: 0.25rem 0.75rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-visual {
    margin-top: 3rem;
    position: relative;
    animation: scaleUp 0.8s ease 0.7s both;
}

.dashboard-preview {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.dashboard-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-large);
}

.floating-card {
    position: absolute;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    right: -5%;
}

.floating-card.card-2 {
    bottom: 10%;
    left: -5%;
    animation-delay: 1.5s;
}

.card-title {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.card-value, .card-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-main);
}

.card-growth {
    font-size: 0.75rem;
    color: var(--success);
}

.card-customer {
    font-size: 0.875rem;
    color: var(--gray-700);
}

/* Pain Points Section */
.pain-points-section {
    padding: 4rem 0;
    background: white;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    text-align: center;
    margin-bottom: 3rem;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pain-point-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pain-point-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--danger);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pain-point-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

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

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-point-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.pain-point-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.solution-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--success);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-lighter);
    color: var(--primary-main);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

/* CRITICAL FIX: Feature Tabs Horizontal Scroll */
.feature-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--gray-300) transparent;
}

.feature-tabs::-webkit-scrollbar {
    height: 6px;
}

.feature-tabs::-webkit-scrollbar-track {
    background: var(--gray-100);
    border-radius: 3px;
}

.feature-tabs::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: 3px;
}

.feature-tabs::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn.active {
    background: var(--primary-main);
    color: white;
    border-color: var(--primary-main);
}

.tab-btn:hover:not(.active) {
    border-color: var(--primary-main);
    color: var(--primary-main);
}

.feature-panel {
    display: none;
}

.feature-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

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

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Industry Section */
.industry-section {
    padding: 4rem 0;
    background: white;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.industry-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.industry-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.user-count {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary-main);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

/* CRITICAL FIX: Testimonials Auto-Scrolling Carousel */
.testimonials-section {
    padding: 4rem 0;
    background: var(--gray-50);
    overflow: hidden;
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.stars {
    color: var(--warning);
    font-size: 1.5rem;
}

.rating-text {
    color: var(--gray-600);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    animation: testimonialScroll 30s linear infinite;
    width: fit-content;
}

.testimonials-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    min-width: 400px;
    max-width: 400px;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--gray-200);
}

.testimonial-header h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.testimonial-header p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.testimonial-rating {
    margin-left: auto;
    color: var(--warning);
}

.testimonial-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.testimonial-stats span {
    padding: 0.25rem 0.75rem;
    background: var(--primary-lighter);
    color: var(--primary-main);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

.testimonial-cta {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    padding: 0.75rem 2rem;
    background: var(--primary-main);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

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

.pricing-card {
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.popular {
    background: white;
    box-shadow: var(--shadow-large);
    transform: scale(1.05);
}

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

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    background: var(--primary-main);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--gray-600);
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-main);
}

.price-contact {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-main);
}

.price-period {
    color: var(--gray-600);
}

.plan-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-plan {
    width: 100%;
    padding: 1rem;
    background: white;
    color: var(--primary-main);
    border: 2px solid var(--primary-main);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-popular {
    background: var(--primary-main);
    color: white;
}

.btn-plan:hover {
    background: var(--primary-main);
    color: white;
}

.btn-popular:hover {
    background: var(--primary-dark);
}

.savings-badge {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.25rem 0.75rem;
    background: var(--success);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
}

/* CRITICAL FIX: Comparison Table Responsive */
.pricing-comparison {
    margin-top: 3rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pricing-comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
    white-space: nowrap;
}

.comparison-table th {
    background: var(--gray-50);
    font-weight: 600;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: var(--primary-lighter);
    color: var(--primary-main);
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

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

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

.faq-question {
    margin: 0;
}

.faq-toggle {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-toggle:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle[aria-expanded="true"] + .faq-answer {
    max-height: 1000px; /* Increased for longer content */
}

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: white;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-badge-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.trust-badge-item span {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: rgba(59, 130, 246, 0.5);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
    color: white;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cta-primary {
    background: white;
    color: var(--primary-main);
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-main);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.cta-note {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-note strong {
    color: var(--warning);
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
    background: var(--gray-900);
    color: white;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* CRITICAL FIX: Footer Logo Size */
.footer-logo img {
    width: 70px !important;
    height: auto !important;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-main);
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-column li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-400);
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray-400);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payments span {
    color: var(--gray-400);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-large);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 50%;
    transform: translateY(50%);
    background: var(--gray-900);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    white-space: nowrap;
    font-size: 0.875rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

.whatsapp-float.show-tooltip .whatsapp-tooltip {
    opacity: 1;
}

/* CRITICAL MOBILE RESPONSIVE FIXES */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Logo on mobile */
    .logo {
        width: 80px !important;
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
    }
    
    /* Hero Section */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .trust-item {
        padding: 0.75rem;
    }
    
    .trust-number {
        font-size: 1.25rem;
    }
    
    .trust-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .payment-methods {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .payment-icons {
        flex-wrap: wrap;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-section {
        padding: 6rem 0 2rem;
    }
    
    /* Pain Points */
    .pain-points-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pain-point-card {
        padding: 1.5rem;
    }
    
    /* Features */
    .feature-tabs {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    /* Industry */
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .industry-card {
        padding: 1rem;
    }
    
    .industry-card h3 {
        font-size: 0.875rem;
    }
    
    .industry-card p {
        font-size: 0.75rem;
    }
    
    /* Testimonials - Mobile Specific */
    .testimonial-card {
        min-width: 85vw !important;
        max-width: 85vw !important;
        padding: 1.5rem;
    }
    
    .testimonials-track {
        animation-duration: 25s;
    }
    
    @keyframes testimonialScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-85vw * 6 - 2rem * 6));
        }
    }
    
    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    /* Comparison Table */
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    /* FAQ */
    .faq-toggle {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer > div {
        padding: 0 1rem 1rem;
    }
    
    /* Trust Badges */
    .trust-grid {
        gap: 1.5rem;
    }
    
    /* CTA Section */
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* General */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        min-width: 90vw !important;
        max-width: 90vw !important;
    }
    
    @keyframes testimonialScroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-90vw * 6 - 2rem * 6));
        }
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

/* Print Styles */
@media print {
    .header,
    .whatsapp-float,
    .mobile-menu-toggle,
    .cta-buttons {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}