* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-dark: #0052a3;
    --secondary: #7c3aed;
    --secondary-light: #a78bfa;
    --accent: #00a8cc;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --light-purple: #f5f3ff;
    --gray: #6c757d;
    --success: #28a745;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--secondary);
}

/* Buttons */
.cta-button {
    background: var(--primary);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,102,204,0.3);
}

.cta-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.secondary-button {
    background: transparent;
    color: white;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: white;
    color: var(--secondary);
}

.secondary-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0066cc 0%, #7c3aed 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Problem Section */
.problem {
    padding: 5rem 0;
    background: var(--light);
}

.problem h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.problem-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid var(--secondary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.problem-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.problem-card p {
    color: var(--gray);
    line-height: 1.7;
}

.problem-result {
    text-align: center;
    font-size: 1.3rem;
    color: var(--gray);
    margin-top: 3rem;
}

.problem-result strong {
    color: #dc3545;
    font-weight: 700;
}

/* Solutions Showcase */
.solutions-showcase {
    padding: 5rem 0;
    background: white;
}

.solutions-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--gray);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--secondary);
}

.solution-card.available {
    border-color: var(--success);
    background: linear-gradient(to bottom, rgba(40, 167, 69, 0.05) 0%, white 30%);
}

.solution-card.available:hover {
    border-color: var(--success);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.2);
}

.solution-card.coming-soon {
    opacity: 0.9;
}

.badge-available {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.badge-coming {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.solution-icon {
    font-size: 3.5rem;
    margin: 1.5rem 0;
}

.solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 600;
}

.solution-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.solution-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.solution-link:hover {
    color: var(--secondary-light);
}

/* How It Works */
.how-it-works {
    padding: 5rem 0;
    background: var(--light-purple);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.solution-features {
    max-width: 900px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.feature-text p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Packages Section */
.packages {
    padding: 5rem 0;
    background: var(--light);
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.package-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.package-card.featured {
    border: 3px solid var(--secondary);
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
}

.package-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.package-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.package-price {
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--gray);
    margin-top: 0.5rem;
    display: block;
}

.package-features {
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: var(--dark);
    font-size: 1.05rem;
}

.feature-item:first-child {
    padding-top: 0;
}

.feature-item:last-child {
    border-bottom: none;
}

.addon-item {
    padding: 1.2rem 0;
    border-bottom: 1px solid #eee;
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.3rem;
    font-size: 1.05rem;
}

.addon-price {
    color: var(--secondary);
    font-weight: 700;
    float: right;
    font-size: 1.1rem;
}

.addon-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 0.3rem;
    clear: both;
}

.package-button {
    width: 100%;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 1.2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: block;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.package-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,102,204,0.3);
}

.package-button.primary {
    background: var(--secondary);
}

.package-button.primary:hover {
    background: var(--secondary-light);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.3);
}

.package-note {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    margin-top: 1.2rem;
    font-style: italic;
}

/* Optional Support */
.optional-support {
    max-width: 750px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px dashed var(--secondary);
}

.optional-support h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 700;
}

.optional-support > p:first-of-type {
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.optional-support ul {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
    display: inline-block;
}

.optional-support li {
    padding: 0.6rem 0;
    color: var(--dark);
    font-size: 1.05rem;
}

.support-note {
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 1.5rem;
    font-style: italic;
}

/* Dashboard Showcase */
.dashboard-showcase {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 100%);
    color: white;
}

.dashboard-showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.dashboard-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 3rem;
}

.dashboard-feature {
    text-align: center;
    padding: 2.5rem;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.dashboard-feature:hover {
    background: rgba(124, 58, 237, 0.25);
    transform: translateY(-5px);
}

.dashboard-feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-light);
    font-weight: 600;
}

.dashboard-feature p {
    line-height: 1.7;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-purple);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    transition: all 0.3s;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.faq-item p {
    color: var(--dark);
    line-height: 1.7;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--light);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark);
}

.about p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--gray);
}

.about-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin: 1.5rem 0;
}

.about-list li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: var(--dark);
}

.about-list li:before {
    content: "✓";
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.3rem;
    position: absolute;
    left: 0;
}

.about-highlight {
    font-size: 1.4rem !important;
    color: var(--secondary) !important;
    font-weight: 700;
    margin: 2rem 0 !important;
}

.about-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.skill-tag {
    background: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    color: var(--secondary);
    font-weight: 600;
    border: 2px solid var(--secondary);
    transition: all 0.3s;
}

.skill-tag:hover {
    background: var(--secondary);
    color: white;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-purple);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-form {
    max-width: 650px;
    margin: 3rem auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form select {
    grid-column: 1 / -1;
    cursor: pointer;
}

.contact-form textarea {
    resize: vertical;
    grid-column: 1 / -1;
}

.contact-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray);
    font-size: 1.05rem;
}

.contact-note a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: scale(1);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    cursor: pointer;
    user-select: none;
}

.faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding-top: 0.5rem;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}