/* Base Styles */
:root {
    --primary-color: #f47d7d;
    --secondary-color: #6ccbc0;
    --tertiary-color: #eacd53;
    --dark-blue: #1c2537;
    --text-color: #333;
    --light-bg: #f5f7fa;
    --white: #ffffff;
    --gray: #7a8699;
    --border-radius: 8px;
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.section-title span {
    color: var(--primary-color);
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

.btn-primary:hover {
    background-color: #e06a6a;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #5bb8ae;
}

.btn-text {
    background: transparent;
    color: var(--text-color);
}

.btn-text:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}

.logo img {
    width: 40px;
    height: 40px;
}

.navigation ul {
    display: flex;
    gap: 30px;
}

.navigation a {
    font-weight: 500;
    position: relative;
}

.navigation a:hover {
    color: var(--primary-color);
}

.navigation a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.navigation a:hover::after {
    width: 100%;
}

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

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-blue);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 span {
    color: var(--primary-color);
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hero-form {
    flex: 1;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-form input {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.hero-form input:focus {
    border-color: var(--secondary-color);
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0 10px;
    background-color: #f9f9f9;
    border-right: 1px solid #e0e0e0;
}

.country-code img {
    width: 20px;
    height: 15px;
}

.phone-input input {
    flex: 1;
    border: none;
    border-radius: 0;
}

.hero-form button {
    margin-top: 10px;
    width: 100%;
}

/* Modules Section */
.modules {
    background-color: var(--light-bg);
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.module-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

.module-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.module-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.module-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.module-card p {
    color: var(--gray);
}

/* How it works */
.how-it-works {
    background-color: var(--white);
}

.steps {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.step {
    flex: 1;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step:nth-child(2) .step-number {
    background-color: var(--secondary-color);
}

.step:nth-child(3) .step-number {
    background-color: var(--tertiary-color);
}

.step h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    color: var(--gray);
}

/* Impact */
.impact {
    background-color: var(--light-bg);
}

.stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}

.stat {
    flex: 1;
    text-align: center;
}

.stat h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat:nth-child(1) h3 {
    color: #f5cb5c;
}

.stat:nth-child(2) h3 {
    color: var(--secondary-color);
}

.stat:nth-child(3) h3 {
    color: var(--primary-color);
}

.stat p {
    color: var(--gray);
}

.testimonials {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial {
    flex: 1;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Why AI */
.why-ai {
    background-color: var(--white);
}

.why-ai-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.why-ai-text {
    flex: 1;
}

.why-ai-text .section-title {
    text-align: left;
}

.why-ai-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.why-ai-text ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.why-ai-text li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.red-dot {
    background-color: var(--primary-color);
}

.teal-dot {
    background-color: var(--secondary-color);
}

.yellow-dot {
    background-color: var(--tertiary-color);
}

.why-ai-image {
    flex: 1;
}

.why-ai-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* User Testimonials */
.user-testimonials {
    background-color: var(--light-bg);
}

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

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
    border-left: 4px solid transparent;
}

.red-border {
    border-left-color: var(--primary-color);
}

.teal-border {
    border-left-color: var(--secondary-color);
}

.yellow-border {
    border-left-color: var(--tertiary-color);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.blog-card p {
    padding: 0 20px;
    color: var(--gray);
    margin-bottom: 15px;
}

.read-more {
    display: block;
    padding: 0 20px 20px;
    color: var(--primary-color);
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    background-color: var(--light-bg);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.contact-info h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 600;
}

.contact-info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info img {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

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

.tagline {
    margin-top: 10px;
    color: var(--gray);
}

.footer-links h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

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

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

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--gray);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    margin-bottom: 10px;
}

.cookie-icon img {
    width: 40px;
    height: 40px;
}

.cookie-consent h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.cookie-consent p {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Thank You Popup */
.thank-you-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.thank-you-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    max-width: 400px;
}

.thank-you-content img {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
}

.thank-you-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.thank-you-content p {
    margin-bottom: 20px;
}

.main-title {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    font-size: 2.5rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-ai-content {
        flex-direction: column;
    }
    
    .testimonials-grid, 
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .navigation {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .stats, 
    .testimonials {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonials-grid, 
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}