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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2c1810;
    background-color: #faf8f4;
}

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

.hero {
    background: linear-gradient(135deg, #faf8f4 0%, #f5f1e8 100%);
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(54, 112, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 126, 95, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 126, 95, 0.05) 0%, transparent 50%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, rgba(255, 126, 95, 0.1), rgba(54, 112, 199, 0.1));
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
}

.logo {
    font-size: 4.5rem !important;
    margin-bottom: 0px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    background: linear-gradient(45deg, #3670c7, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 24px;
    color: #2c1810;
}

.hero-highlight {
    background: linear-gradient(45deg, #3670c7, #ff7e5f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #ff7e5f;
    border-radius: 2px;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: #5a4a3a;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #3670c7, #4a7fd9);
    color: white;
    box-shadow: 0 4px 15px rgba(54, 112, 199, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 112, 199, 0.4);
}

.btn-secondary {
    background: white;
    color: #3670c7;
    border: 2px solid #3670c7;
}

.btn-secondary:hover {
    background: #3670c7;
    color: white;
    transform: translateY(-2px);
}

/* .team-avatars {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
} */

.avatar {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.avatar-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(45deg, #3670c7, #ff7e5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.avatar-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #5a4a3a;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    color: #2c1810;
}

.how-it-works {
    background: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 40px 20px;
    background: #faf8f4;
    border-radius: 16px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #3670c7, #4a7fd9);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #2c1810;
}

.step p {
    color: #5a4a3a;
    font-size: 1.1rem;
}

.automation-examples {
    background: linear-gradient(135deg, #f5f1e8 0%, #faf8f4 100%);
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding: 20px;
}

.automation-card {
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.automation-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.automation-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #2c1810;
}

.automation-card p {
    color: #5a4a3a;
    font-size: 1rem;
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(54, 112, 199, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #3670c7;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    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: 5% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #e0d5cc;
    background: linear-gradient(135deg, #faf8f4 0%, #f5f1e8 100%);
}

.modal-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: #2c1810;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #5a4a3a;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 126, 95, 0.1);
    color: #ff7e5f;
}

.modal-body {
    padding: 30px;
    max-height: 60vh;
    overflow-y: auto;
}

.modal-body h3 {
    color: #2c1810;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.modal-body p {
    margin-bottom: 15px;
    color: #5a4a3a;
    line-height: 1.6;
}

.modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 8px;
    color: #5a4a3a;
}

.pricing {
    background: #faf8f4;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

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

.pricing-card.featured {
    border: 3px solid #ff7e5f;
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7e5f;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2c1810;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3670c7;
    margin-bottom: 8px;
}

.plan-period {
    color: #5a4a3a;
    margin-bottom: 24px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 8px 0;
    color: #5a4a3a;
    position: relative;
    padding-left: 24px;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #3670c7;
    font-weight: 600;
}

.custom-automation {
    background: white;
}

.custom-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.custom-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c1810;
}

.custom-content p {
    font-size: 1.2rem;
    color: #5a4a3a;
    margin-bottom: 40px;
}

.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.use-case {
    background: #faf8f4;
    padding: 30px;
    border-radius: 16px;
    text-align: left;
}

.use-case-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #3670c7, #ff7e5f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
    color: white;
}

.contact {
    background: linear-gradient(135deg, #2c1810 0%, #3a241a 100%);
    color: white;
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ff7e5f;
}

.contact-info p {
    margin-bottom: 16px;
    color: #e0d5cc;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #e0d5cc;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff7e5f;
}

.footer {
    background: #1a110b;
    color: white;
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #ff7e5f;
}

.footer-section a {
    color: #e0d5cc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: #ff7e5f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #a0958a;
}

.payment-icons {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.payment-icon {
    width: 40px;
    height: 25px;
    background: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #2c1810;
}

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .step h3 {
        font-size: 1.3rem;
    }

    .step p {
        font-size: 1rem;
    }

    .automation-card {
        min-width: calc(25% - 30px) !important;
        flex: 0 0 calc(25% - 30px) !important;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .plan-price {
        font-size: 2rem;
    }

    .plan-name {
        font-size: 1.3rem;
    }

    .use-case {
        padding: 20px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .automation-card {
        min-width: calc(50% - 25px) !important;
        flex: 0 0 calc(50% - 25px) !important;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .automation-card {
        min-width: calc(33.333% - 27px) !important;
        flex: 0 0 calc(33.333% - 27px) !important;
    }
}

@media (min-width: 1280px) {
    .automation-card {
        min-width: calc(25% - 30px) !important;
        flex: 0 0 calc(25% - 30px) !important;
    }
}

@media (max-width: 768px) {
    .automation-card {
        min-width: calc(100% - 40px) !important;
        flex: 0 0 calc(100% - 40px) !important;
        padding: 20px;
    }

    .container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 2.2rem;
    }

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

    /* .team-avatars {
        flex-direction: column;
        gap: 15px;
    } */

    .steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .custom-content h2 {
        font-size: 1.8rem;
    }

    .carousel-container {
        padding: 0 10px;
    }

    .carousel-track {
        gap: 20px;
        padding: 10px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-dots {
        display: none;
    }
}