/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #A6E22E;
    --primary-dark: #8BBE23;
    --accent: #F92672;
    --accent-blue: #66D9EF;
    --accent-orange: #FD971F;
    --accent-purple: #AE81FF;
    --text: #F8F8F2;
    --text-light: #CFCFC2;
    --bg: #272822;
    --bg-alt: #1E1F1A;
    --bg-card: #3E3D32;
    --border: #49483E;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -4px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.logo {
    display: inline-block;
    margin-bottom: 24px;
}

.logo img {
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

/* Hero */
.hero {
    padding: 120px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #1E1F1A 0%, #272822 50%, #3E3D32 100%);
    color: var(--text);
    border-bottom: 3px solid var(--primary);
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero .tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 500;
    margin-bottom: 12px;
    opacity: 0.95;
}

.hero .subtitle {
    font-size: 1.125rem;
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto 32px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 48px;
}

/* Cards Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-light);
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.step {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 2px solid var(--accent);
    color: var(--accent);
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.step h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.step p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Pricing */
.price-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    border: 2px solid var(--border);
    transition: all 0.2s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue);
}

.price-card.featured {
    border-color: var(--primary);
    position: relative;
}

.price-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: var(--text);
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 24px;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 24px;
}

.price-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    position: relative;
    padding-left: 28px;
}

.price-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 600;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 32px;
    font-size: 0.95rem;
}

.payment-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.payment-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Tech Grid */
.tech-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.tech-item {
    background: var(--bg-card);
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    color: var(--accent-blue);
}

/* Contact */
.contact-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

#contact .btn-primary {
    background: var(--primary);
    color: var(--bg);
}

#contact .btn-primary:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    background: var(--bg-alt);
}

footer a {
    color: var(--accent-blue);
    text-decoration: none;
}

footer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Intro Text */
.intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* CTA Box */
.cta-box {
    background: var(--bg-card);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-box p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Contact Form */
.hero-small {
    padding: 80px 0 60px;
}

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

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.form-status {
    text-align: center;
    padding: 16px;
    margin-top: 16px;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(166, 226, 46, 0.1);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.form-status.error {
    display: block;
    background: rgba(249, 38, 114, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.contact-alt {
    text-align: center;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.contact-alt p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-alt h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.contact-note {
    margin-top: 24px;
    font-size: 0.95rem;
}

/* Contact Intro */
.contact-intro {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.contact-intro h2 {
    font-size: 1.5rem;
    margin-top: 32px;
    margin-bottom: 16px;
    text-align: left;
}

/* Response Note */
.response-note {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}

.response-note h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--primary);
}

.response-note p {
    color: var(--text-light);
    margin: 0;
}

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

.faq-item {
    background: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--accent-blue);
}

.faq-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .section {
        padding: 60px 0;
    }

    .btn {
        padding: 14px 24px;
        width: 100%;
        justify-content: center;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .contact-options .btn {
        max-width: 300px;
    }
}
