* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #814ac8;
    --secondary-color: #df7afe;
    --dark-bg: #000000;
    --light-bg: #f5f5f5;
    --text-dark: #ffffff;
    --text-light: #cccccc;
    --border-color: #333333;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #000000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar {
    background: #000000;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #814ac8, #df7afe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 50px;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    margin-left: 60px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #df7afe;
}

.cta-btn {
    background: #814ac8;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-btn:hover {
    background: #df7afe;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.1) 0%, rgba(223, 122, 254, 0.1) 100%);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-content p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #814ac8;
    color: white;
}

.btn-primary:hover {
    background: #df7afe;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(129, 74, 200, 0.2);
}

.btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-secondary {
    background: transparent;
    color: #814ac8;
    border: 2px solid #814ac8;
}

.btn-secondary:hover {
    background: #814ac8;
    color: white;
}

.btn-large {
    padding: 16px 48px;
    font-size: 18px;
}

.trust-text {
    font-size: 14px;
    color: #cccccc;
    font-weight: 500;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-editor {
    background: #0a0a0a;
    border: 1px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(129, 74, 200, 0.15);
    width: 100%;
    max-width: 450px;
    animation: editorFloat 3s ease-in-out infinite;
}

.editor-top {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid #333333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    gap: 12px;
}

.editor-arrows {
    display: flex;
    gap: 8px;
}

.arrow-btn,
.menu-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.arrow-btn:hover,
.menu-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.editor-filename {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.editor-controls svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.editor-body {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.editor-body pre {
    margin: 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #e0e0e0;
    animation: fadeInCode 0.5s ease-in-out;
}

@keyframes fadeInCode {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.editor-body code {
    color: #e0e0e0;
}

.keyword {
    color: #814ac8;
    font-weight: 600;
}

.class-name {
    color: #df7afe;
    font-weight: 600;
}

.function {
    color: #90ee90;
}

.param {
    color: #ffd700;
}

.string {
    color: #ff6b9d;
}

.boolean {
    color: #814ac8;
}

@keyframes editorFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.illustration-box {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #814ac8, #df7afe);
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
    display: none;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.services {
    padding: 100px 20px;
    background: #000000;
}

.services h2,
.process h2,
.case-studies h2,
.benefits h2,
.pricing h2,
.testimonials h2,
.faq h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 16px;
    color: #ffffff;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}

.section-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: rgba(255, 255, 255, 0.6);
    display: inline-block;
    margin-bottom: 12px;
}

.section-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 18px;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(18, 18, 18, 0.95);
    padding: 36px;
    border-radius: 18px;
    transition: transform 0.4s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(129, 74, 200, 0.25);
    border-color: rgba(223, 122, 254, 0.6);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(223, 122, 254, 0.18), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.25), rgba(223, 122, 254, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #df7afe;
    flex-shrink: 0;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-chip {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-title {
    font-size: 22px;
    margin-bottom: 4px;
    color: #ffffff;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list li {
    padding-left: 22px;
    color: #e5e5e5;
    font-size: 14px;
    border: none;
    position: relative;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #814ac8, #df7afe);
    opacity: 0.8;
}

.service-link {
    margin-top: auto;
    background: transparent;
    border: none;
    color: #df7afe;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}

.service-link::after {
    content: "→";
    font-size: 16px;
    transition: transform 0.3s ease;
}

.service-link:hover::after {
    transform: translateX(4px);
}

.process {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.05) 0%, rgba(223, 122, 254, 0.05) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
}

.step-number {
    display: inline-block;
    font-size: 48px;
    font-weight: 700;
    color: #814ac8;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.process-step p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.benefits {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.05) 0%, rgba(223, 122, 254, 0.05) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(129, 74, 200, 0.2);
    border-color: #814ac8;
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(129, 74, 200, 0.2);
    border-color: #814ac8;
}

.benefit-title {
    font-size: 18px;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 600;
}

.benefit-card p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.pricing {
    display: none;
}

.testimonials {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.05) 0%, rgba(223, 122, 254, 0.05) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(129, 74, 200, 0.2);
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-info h4 {
    font-size: 15px;
    color: #ffffff;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 13px;
    color: #cccccc;
}

.portfolio {
    padding: 100px 20px;
    background: #000000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: #1a1a1a;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #333333;
    transition: all 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(129, 74, 200, 0.2);
    background: #222222;
}

.portfolio-header h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #ffffff;
}

.project-type {
    color: #df7afe;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.portfolio-description {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #0a0a0a;
    color: #df7afe;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid #814ac8;
}

.contact {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.05) 0%, rgba(223, 122, 254, 0.05) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    background: transparent;
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #0a0a0a;
    color: #ffffff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #814ac8;
    box-shadow: 0 0 0 3px rgba(129, 74, 200, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-note {
    font-size: 12px;
    color: #cccccc;
    margin-top: 16px;
    text-align: center;
}

.contact-form .btn {
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #ffffff;
}

.info-item p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.info-item a {
    color: #df7afe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #814ac8;
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links-contact a {
    display: inline-block;
    width: fit-content;
}

.cta {
    display: none;
    background: linear-gradient(135deg, #5b3bff, #00d9ff);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.footer {
    background: #000000;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: white;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #df7afe;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-bottom p:first-child {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .services h2,
    .process h2,
    .case-studies h2,
    .benefits h2,
    .pricing h2,
    .testimonials h2,
    .faq h2 {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 28px;
    }

    .service-card-header {
        flex-direction: row;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .pricing-toggle {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact h2 {
        font-size: 32px;
    }
}
