
/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    background-color: #ffffff;
    color: #1e1e2f;
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1e1e2f;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.2rem;
    color: #5a5a6e;
    max-width: 700px;
    margin: 0 auto;
}

.section-title .badge {
    display: inline-block;
    background: #e4dbff;
    color: #6b3eff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(145deg, #6b3eff, #5432cc);
    color: #ffffff;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 8px 20px rgba(107, 62, 255, 0.3);
}

.btn-primary i {
    margin-right: 8px;
}

.btn-primary:hover {
    background: linear-gradient(145deg, #5432cc, #3e1faa);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(107, 62, 255, 0.4);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #1e1e2f;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid #1e1e2f;
    transition: 0.2s;
    font-size: 1rem;
}

.btn-secondary i {
    margin-right: 8px;
}

.btn-secondary:hover {
    background: #1e1e2f;
    color: #ffffff;
}

.btn-large {
    padding: 16px 42px;
    font-size: 1.1rem;
}

/* ===== TOP BANNER ===== */
.top-banner {
    background: #ffd966;
    color: #1e1e2f;
    text-align: center;
    padding: 12px 0;
    font-weight: 600;
    font-size: 1rem;
}

.top-banner i {
    margin: 0 8px;
}

/* ===== NAVBAR ===== */
.navbar {
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #6b3eff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: #1e1e2f;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #6b3eff;
}

.btn-login {
    background: none;
    border: 2px solid #1e1e2f;
    padding: 8px 22px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.btn-login:hover {
    background: #1e1e2f;
    color: #ffffff;
}

.mobile-menu-icon {
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #f8f7ff 0%, #ffffff 100%);
    padding: 40px 0 70px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content .hero-badge {
    background: #e4dbff;
    color: #6b3eff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #6b3eff;
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ffd966;
    z-index: -1;
    opacity: 0.4;
}

.hero-content p {
    font-size: 1.2rem;
    color: #5a5a6e;
    margin-bottom: 25px;
}

.hero-features {
    list-style: none;
    margin: 25px 0;
}

.hero-features li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-features i {
    color: #28a745;
    margin-right: 12px;
}

.hero-price {
    font-size: 2.4rem;
    font-weight: 700;
    color: #6b3eff;
    margin: 25px 0 15px;
}

.hero-price small {
    font-size: 1.1rem;
    color: #5a5a6e;
    font-weight: 400;
    text-decoration: line-through;
    margin-left: 10px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 25px 45px -15px rgba(107, 62, 255, 0.25);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logos span i {
    color: #ffc107;
    margin-right: 6px;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 30px 20px;
    transition: 0.2s;
    text-align: center;
}

.service-card:hover {
    border-color: #6b3eff;
    box-shadow: 0 15px 35px rgba(107, 62, 255, 0.08);
    transform: translateY(-5px);
}

.service-card i {
    font-size: 2.8rem;
    color: #6b3eff;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-card p {
    color: #5a5a6e;
    font-size: 0.95rem;
}

.free-badge {
    background: #ffd966;
    color: #1e1e2f;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 30px;
    margin-left: 8px;
    font-weight: 600;
    display: inline-block;
    vertical-align: middle;
}

/* ===== AI AGENT SECTION ===== */
.ai-agent-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
}

.section-title .new-badge {
    display: inline-block;
    background: #e4dbff;
    color: #6b3eff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #5a5a6e;
    max-width: 600px;
    margin: 0 auto;
}

.kodee-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin: 60px 0 40px;
}

.feature-badge {
    background: #e4dbff;
    color: #6b3eff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.kodee-content h3 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #6b3eff, #5025d1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    font-size: 1.1rem;
    color: #5a5a6e;
    margin-bottom: 25px;
}

.kodee-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.kodee-features-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.kodee-features-list i {
    color: #28a745;
    margin-right: 12px;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 45px -15px rgba(107, 62, 255, 0.3);
    border: 1px solid rgba(107, 62, 255, 0.1);
}

.video-wrapper video {
    width: 100%;
    display: block;
}

.video-caption {
    text-align: center;
    margin-top: 15px;
    color: #5a5a6e;
    font-size: 0.9rem;
    font-style: italic;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.ai-feature-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 20px;
    padding: 35px 25px;
    transition: 0.3s;
}

.ai-feature-card:hover {
    transform: translateY(-5px);
    border-color: #6b3eff;
    box-shadow: 0 15px 35px rgba(107, 62, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #f0ebff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.card-icon i {
    font-size: 30px;
    color: #6b3eff;
}

.ai-feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ai-feature-card p {
    color: #5a5a6e;
}

.ai-tools-header {
    text-align: center;
    margin: 70px 0 40px;
}

.ai-tools-header h3 {
    font-size: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.ai-tools-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ai-tool-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeef2;
}

.ai-tool-card.reverse {
    direction: rtl;
}

.ai-tool-card.reverse .tool-content {
    direction: ltr;
}

.tool-image {
    height: 100%;
    overflow: hidden;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.ai-tool-card:hover .tool-image img {
    transform: scale(1.05);
}

.tool-content {
    padding: 40px;
}

.tool-content h4 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.tool-content p {
    color: #5a5a6e;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.tool-features {
    list-style: none;
}

.tool-features li {
    margin-bottom: 12px;
}

.tool-features i {
    color: #28a745;
    margin-right: 10px;
}

/* ===== PRICING SECTION ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid #eaeef2;
    border-radius: 30px;
    padding: 40px 30px;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid #6b3eff;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(107, 62, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #6b3eff;
    color: #ffffff;
    padding: 6px 28px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e2f;
    margin: 20px 0 5px;
}

.pricing-card .price small {
    font-size: 1.1rem;
    color: #5a5a6e;
    font-weight: 400;
}

.pricing-card .old-price {
    color: #5a5a6e;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-card ul li {
    margin-bottom: 15px;
}

.pricing-card ul i {
    color: #28a745;
    margin-right: 12px;
}

.pricing-card .btn-primary {
    width: 100%;
    text-align: center;
}

/* ===== MIGRATION OFFER ===== */
.migration-offer {
    background: linear-gradient(135deg, #1e1e2f, #2a2a3c);
    color: #ffffff;
}

.migration-offer .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.migration-offer h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.migration-offer ul {
    list-style: none;
    margin: 25px 0;
}

.migration-offer ul li {
    margin-bottom: 15px;
}

.migration-offer i {
    color: #28a745;
    margin-right: 12px;
}

.migration-offer .btn-primary {
    background: #ffffff;
    color: #1e1e2f;
    box-shadow: none;
}

.migration-offer img {
    width: 100%;
    border-radius: 20px;
}

/* ===== REVIEWS SECTION ===== */
.reviews {
    background: #f8f7ff;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eaeef2;
}

.review-card .stars i {
    color: #ffb800;
    margin-right: 3px;
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin: 20px 0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* ===== FAQ SECTION ===== */
.faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 22px 28px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    color: #5a5a6e;
    border-top: 1px solid #dee2e6;
    padding-top: 15px;
}

/* ===== 24/7 SUPPORT SECTION ===== */
.support-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f7ff 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.support-badge {
    display: inline-block;
    background: #e4dbff;
    color: #6b3eff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.support-badge i {
    margin-right: 8px;
}

.support-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.support-content h2 span {
    color: #6b3eff;
    position: relative;
    display: inline-block;
}

.support-content h2 span::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 8px;
    background: #ffd966;
    z-index: -1;
    opacity: 0.4;
}

.support-description {
    font-size: 1.2rem;
    color: #5a5a6e;
    margin-bottom: 40px;
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.support-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #f0ebff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 24px;
    color: #6b3eff;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-text p {
    color: #5a5a6e;
}

.support-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a5a6e;
    font-size: 0.95rem;
}

.support-trust i {
    color: #ffc107;
    font-size: 1.2rem;
}

.support-image {
    position: relative;
}

.support-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 30px;
    box-shadow: 0 30px 50px -20px rgba(107, 62, 255, 0.3);
}

.image-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eaeef2;
}

.image-card i {
    font-size: 2rem;
    color: #6b3eff;
}

.support-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 60px;
    padding: 40px 0 0;
    border-top: 1px solid #eaeef2;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6b3eff;
    margin-bottom: 5px;
}

.stat-label {
    color: #5a5a6e;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(145deg, #6b3eff, #5025d1);
    text-align: center;
    color: #ffffff;
}

.cta-banner h2 {
    color: #ffffff;
}

.cta-banner .btn-primary {
    background: #ffffff;
    color: #6b3eff;
    margin-top: 25px;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a28;
    color: #a0a0b0;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #a0a0b0;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-col i {
    margin-right: 10px;
    width: 20px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c2c3f;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .hero .container,
    .migration-offer .container,
    .support-grid,
    .kodee-feature-grid,
    .ai-tool-card,
    .ai-tool-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        text-align: left;
        display: inline-block;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ai-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .support-content {
        text-align: center;
    }
    
    .support-feature {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 20px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .services-grid,
    .ai-features-grid {
        grid-template-columns: 1fr;
    }
    
    .tool-content {
        padding: 30px;
    }
    
    .tool-content h4 {
        font-size: 1.5rem;
    }
    
    .support-content h2 {
        font-size: 2rem;
    }
    
    .support-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .support-actions {
        flex-direction: column;
    }
    
    .support-actions a {
        width: 100%;
        text-align: center;
    }
    
    .image-card {
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

@media (max-width: 480px) {
    .support-stats {
        flex-direction: column;
        gap: 20px;
    }
}