/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: '__Inter_83ccbe','__Inter_Fallback_83ccbe', sans-serif;
    line-height: 1.55;
    color: #000;
    background-color: #fff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 25px;
}

@media (min-width: 840px) {
    .container {
        padding: 0 60px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 100px;
    }
}

/* Header */
header {
    background-color: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

nav h1 {
    color: #000;
    font-weight: 700;
    font-size: 1.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
    font-weight: 600;
}

nav ul li a:hover {
    color: #4776E6;
}

/* Main content */
main {
    margin-top: 80px;
}

section {
    padding: 3rem 0;
}

/* Hero */
#hero {
    background: linear-gradient(90deg, rgba(71, 118, 230, 0.9) 0%, rgba(142, 84, 233, 0.9) 100%), url('assets/1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 5rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

#hero .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1200px) {
    #hero .container {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

#hero h2 {
    font-size: 3rem;
    line-height: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

#hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    padding: 16px 64px;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: '__Inter_83ccbe','__Inter_Fallback_83ccbe', sans-serif;
    box-shadow: 0 4px 14px 0 rgba(71, 118, 230, 0.39);
}

.btn-primary:hover {
    background: linear-gradient(90deg, #B093ED 0%, #824ADB 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 16px 64px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: '__Inter_83ccbe','__Inter_Fallback_83ccbe', sans-serif;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* About */
#about {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 2rem;
}

.about-image {
    width: 75%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.about-text p {
    margin-bottom: 1rem;
}

@media (max-width: 1200px) {
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

#about h2 {
    font-size: 3rem;
    line-height: 1.35;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.55;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Features */
.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
    margin-top: 2rem;
}

.features-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.features-image {
    width: 75%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
    aspect-ratio: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0.5rem;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    margin-bottom: 0.5rem;
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
}

.feature p {
    color: #666;
    line-height: 1.55;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.plan {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s;
}

.plan:hover {
    transform: translateY(-5px);
}

.plan.featured {
    border: 3px solid #4776E6;
    transform: scale(1.05);
}

.plan h3 {
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #4776E6;
    margin-bottom: 1rem;
}

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

.plan ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.plan ul li:before {
    content: "✓";
    color: #4776E6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: #000;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
}

/* Contact */
#contact {
    background-color: #000;
    color: white;
    text-align: center;
}

#contact h2 {
    font-size: 3rem;
    line-height: 1.35;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    text-align: left;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #333;
    border-radius: 4px;
    font-size: 1rem;
    background: #111;
    color: white;
    font-family: '__Inter_83ccbe','__Inter_Fallback_83ccbe', sans-serif;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #4776E6;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-left p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: left;
}

.footer-right p {
    margin: 0;
    font-size: 0.875rem;
    text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    #hero h2 {
        font-size: 2rem;
    }

    #hero .container {
        grid-template-columns: 1fr;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-grid, .pricing-grid, .faq-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 32px;
        font-size: 0.8rem;
    }
}

/* Floating chat button */
.floating-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: '__Inter_83ccbe','__Inter_Fallback_83ccbe', sans-serif;
    box-shadow: 0 4px 14px 0 rgba(71, 118, 230, 0.39);
    transition: all 0.3s;
    z-index: 1001;
    display: inline-block;
    animation: breathe 2s infinite;
}

.floating-chat-btn:hover {
    background: linear-gradient(90deg, #B093ED 0%, #824ADB 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(71, 118, 230, 0.5);
}

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

@media (max-width: 768px) {
    .floating-chat-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* Terms page styles */
#terms {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

#terms h1 {
    font-size: 3rem;
    line-height: 1.35;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
    color: #000;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.terms-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #000;
}

.terms-content p {
    margin-bottom: 1rem;
    color: #333;
}

.terms-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.terms-content ol li {
    margin-bottom: 0.5rem;
    color: #333;
}