/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.highlight {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    border-radius: 2px;
    opacity: 0.3;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-demo,
.btn-pricing,
.btn-submit {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

.btn-secondary {
    background: rgba(37, 99, 235, 0.05);
    color: #2563EB;
    border: 2px solid #2563EB;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.btn-demo {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: white;
    padding: 12px 24px;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
    text-decoration: none;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #1D4ED8, #1E40AF);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
    color: white;
    text-decoration: none;
}

.btn-demo:visited {
    color: white;
    text-decoration: none;
}

.btn-demo:active {
    color: white;
    text-decoration: none;
}

/* Additional anchor button styling */
a.btn-primary, a.btn-secondary, a.btn-demo, a.btn-pricing, a.btn-submit,
a.btn-pricing-main, a.btn-notify {
    text-decoration: none !important;
    color: inherit;
}

a.btn-primary:hover, a.btn-secondary:hover, a.btn-demo:hover, a.btn-pricing:hover, a.btn-submit:hover,
a.btn-pricing-main:hover, a.btn-notify:hover {
    text-decoration: none !important;
}

a.btn-primary:visited, a.btn-secondary:visited, a.btn-demo:visited, a.btn-pricing:visited, a.btn-submit:visited,
a.btn-pricing-main:visited, a.btn-notify:visited {
    text-decoration: none !important;
}

a.btn-primary:active, a.btn-secondary:active, a.btn-demo:active, a.btn-pricing:active, a.btn-submit:active,
a.btn-pricing-main:active, a.btn-notify:active {
    text-decoration: none !important;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover .logo-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.logo:hover .logo-text {
    color: #FF6B35;
}

.logo-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    background: white;
    padding: 8px;
}

.logo-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1E293B;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #4B5563;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2563EB;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2563EB;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #F1F5F9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 20px;
    color: #1E293B;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748B;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #FF6B35;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748B;
}

/* Dashboard Preview */
.hero-visual {
    position: relative;
}

.dashboard-preview {
    background: white;
    border-radius: 20px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
    transform: perspective(1200px) rotateY(-8deg) rotateX(8deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.dashboard-preview:hover {
    transform: perspective(1200px) rotateY(-2deg) rotateX(2deg);
    box-shadow:
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

.dashboard-header {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 50%, #1E40AF 100%);
    color: white;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.dashboard-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.dashboard-title {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-score {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-content {
    padding: 24px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.stat-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.stat-mini .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.stat-mini .stat-icon.urgent {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.stat-mini .stat-icon.progress {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.stat-mini .stat-icon.completed {
    background: linear-gradient(135deg, #10B981, #059669);
}

.stat-mini .stat-data {
    display: flex;
    flex-direction: column;
}

.stat-mini .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    line-height: 1;
}

.stat-mini .stat-label {
    font-size: 0.75rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #1E293B;
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 16px;
}

.ai-card {
    top: 20%;
    right: -10%;
    color: #2563EB;
    animation-delay: 0s;
}

.efficiency-card {
    top: 60%;
    right: -15%;
    color: #059669;
    animation-delay: 1s;
}

.gamification-card {
    bottom: 20%;
    right: -12%;
    color: #F59E0B;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.task-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid;
    transition: all 0.2s ease;
    cursor: pointer;
}

.task-card:hover {
    transform: translateX(4px);
}

.task-card.urgent {
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-color: #F87171;
}

.task-card.completed {
    background: linear-gradient(135deg, #F0FDF4 0%, #DCFCE7 100%);
    border-color: #4ADE80;
}

.task-card.progress {
    background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 100%);
    border-color: #FBBF24;
}

.task-card .task-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.task-card.urgent .task-icon {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.task-card.completed .task-icon {
    background: linear-gradient(135deg, #10B981, #059669);
}

.task-card.progress .task-icon {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.task-info h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
    color: #1E293B;
    font-weight: 600;
}

.task-info p {
    font-size: 0.8rem;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 6px;
}

.task-status {
    margin-left: auto;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.task-card.urgent .task-status {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.task-card.completed .task-status {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.task-card.progress .task-status {
    background: rgba(245, 158, 11, 0.1);
    color: #D97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

/* Problem/Solution Section */
.problem-solution {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
    color: #1E293B;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.problem-item {
    text-align: center;
    padding: 40px 30px;
    position: relative;
}

.problem-icon-wrapper {
    margin-bottom: 24px;
    position: relative;
}

.problem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(239, 68, 68, 0.25);
    position: relative;
}

.problem-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, #EF4444, #DC2626);
    border-radius: 24px;
    z-index: -1;
    opacity: 0.2;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
}

.problem-item h3 {
    margin-bottom: 16px;
    color: #1E293B;
    font-weight: 600;
}

.problem-item p {
    color: #64748B;
    line-height: 1.7;
    font-size: 1.05rem;
}

.solution-arrow {
    text-align: center;
    margin: 60px 0;
    position: relative;
}

.arrow-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.solution-arrow h3 {
    color: #FF6B35;
    font-weight: 700;
    font-size: 1.25rem;
}

.solution-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.solution-content h2 {
    margin-bottom: 20px;
}

.solution-content p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 48px 36px;
    border-radius: 20px;
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #2563EB, #10B981);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

.feature-icon-wrapper {
    margin-bottom: 24px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon.ai {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
}

.feature-icon.tasks {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.feature-icon.gamification {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.feature-icon.monitoring {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.feature-card h3 {
    margin-bottom: 16px;
    color: #1E293B;
    font-weight: 700;
    font-size: 1.4rem;
}

.feature-card p {
    color: #64748B;
    margin-bottom: 24px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    color: #64748B;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-list li i {
    color: #10B981;
    font-size: 14px;
    width: 16px;
    height: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    border-radius: 24px;
    padding: 50px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(230, 0, 126, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E6007E, #C4006A, #A8005A);
}

.testimonial-text p {
    font-size: 1.3rem;
    color: #1E293B;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.author-info h4 {
    color: #1E293B;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748B;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-2px);
}

.logo-container {
    background: white;
    border: 2px solid #E6007E;
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(230, 0, 126, 0.15);
    transition: all 0.3s ease;
}

.company-logo:hover .logo-container {
    box-shadow: 0 6px 20px rgba(230, 0, 126, 0.25);
    border-color: #C4006A;
}

.company-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-weight: 600;
    color: #1E293B;
    font-size: 1rem;
}

.testimonial-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    border-top: 1px solid #E2E8F0;
    padding-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #E6007E;
    margin-bottom: 5px;
}

.stat-item .stat-label {
    color: #64748B;
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #F1F5F9 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.pricing-main-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #F7931E, #FF8C42);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.pricing-card-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.pricing-card-header p {
    color: #64748B;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-features-main {
    margin-bottom: 40px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 1.05rem;
    color: #1E293B;
    font-weight: 500;
}

.feature-highlight i {
    color: #10B981;
    font-size: 20px;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.pricing-cta {
    text-align: center;
}

.btn-pricing-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
    margin-bottom: 16px;
}

.btn-pricing-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

.pricing-note {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0;
}

.pricing-coming-soon {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    position: relative;
}

.coming-soon-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
}

.coming-soon-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
}

.coming-soon-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #F59E0B, #D97706);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.25);
}

.pricing-coming-soon p {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
    text-align: center;
}

.coming-soon-plans {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.plan-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #F8FAFC;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.plan-preview:hover {
    background: #F1F5F9;
    border-color: #CBD5E1;
}

.plan-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #64748B, #475569);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.plan-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px;
}

.plan-info p {
    color: #64748B;
    font-size: 0.9rem;
    margin: 0;
}

.notify-launch {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #E2E8F0;
}

.notify-launch p {
    color: #64748B;
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
}

.btn-notify:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-pricing {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #F8FAFC, #E2E8F0);
    color: #374151;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-pricing:hover {
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    border-color: #CBD5E1;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-pricing.primary {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.btn-pricing.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: #2563EB;
}

.faq-question h3 {
    color: #1E293B;
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #64748B;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #2563EB;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    color: #64748B;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #F8FAFC 0%, #E2E8F0 50%, #F1F5F9 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    color: #1E293B;
    margin-bottom: 20px;
    font-size: 2.75rem;
    font-weight: 700;
}

.contact-header p {
    font-size: 1.2rem;
    color: #64748B;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    border-radius: 24px;
    padding: 48px 36px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    transition: all 0.3s ease;
}

.whatsapp-card::before {
    background: linear-gradient(90deg, #25D366, #128C7E);
}

.linkedin-card::before {
    background: linear-gradient(90deg, #0077B5, #005885);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.whatsapp-card .contact-card-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.linkedin-card .contact-card-icon {
    background: linear-gradient(135deg, #0077B5, #005885);
}

.contact-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 12px;
}

.contact-card-content p {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-benefits-mini {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #64748B;
}

.benefit-mini i {
    width: 20px;
    height: 20px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #2563EB;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
}

.linkedin-btn {
    background: linear-gradient(135deg, #0077B5, #005885);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.25);
}

.linkedin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 119, 181, 0.35);
}

.contact-cta {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    text-align: center;
}

.cta-content {
    margin-bottom: 40px;
}

.cta-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FF6B35;
    margin-bottom: 8px;
    line-height: 1;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: #64748B;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563EB;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FF8C42 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.btn-submit::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;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.footer-logo:hover .logo-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
}

.footer-logo h3 {
    color: #2563EB;
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #2563EB;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 0;
}

.modal-header h3 {
    color: #1E293B;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748B;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1E293B;
}

.modal-body {
    padding: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .logo-icon {
        width: 48px;
        height: 48px;
        padding: 6px;
    }

    .logo-text {
        font-size: 1.9rem;
    }

    .footer-logo .logo-icon {
        width: 40px;
        height: 40px;
        padding: 5px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .dashboard-preview {
        transform: none;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pricing-main-card,
    .pricing-coming-soon {
        padding: 36px 24px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .company-logo {
        gap: 10px;
    }
    
    .company-logo-img {
        height: 28px;
    }
    
    .logo-container {
        padding: 6px 10px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .contact-card {
        padding: 36px 24px;
    }

    .cta-stats {
        flex-direction: column;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card {
        padding: 24px 20px;
    }

    .contact-card-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .cta-stats {
        gap: 20px;
    }

    .cta-stat .stat-number {
        font-size: 2rem;
    }

    .contact-cta {
        padding: 36px 24px;
    }

    .pricing-main-card,
    .pricing-coming-soon {
        padding: 24px 20px;
    }

    .pricing-icon,
    .coming-soon-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .coming-soon-plans {
        gap: 16px;
    }

    .plan-preview {
        padding: 16px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-text p {
        font-size: 1.1rem;
    }

    .company-logo {
        gap: 8px;
    }

    .company-logo-img {
        height: 24px;
    }
    
    .logo-container {
        padding: 6px 8px;
    }
    
    .company-name {
        font-size: 0.9rem;
    }

    .modal-content {
        margin: 20% auto;
        width: 95%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-visual,
.feature-card,
.testimonial-card,
.pricing-main-card,
.pricing-coming-soon {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}