* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #000; color: #fff; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button, a { cursor: pointer; text-decoration: none; border: none; background: none; color: inherit; }

.grecaptcha-badge { visibility: hidden !important; display: none !important; width: 0 !important; height: 0 !important; position: absolute !important; }

/* Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: all 0.3s; }
.navbar.scrolled { background: #000; border-bottom: 1px solid #1f2937; }
.navbar-container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 80px; }
.navbar-logo img { height: 48px; width: auto; }
.navbar-menu { display: flex; align-items: center; gap: 2rem; }
.navbar-link { font-size: 0.875rem; font-weight: 500; color: #fff; transition: color 0.3s; white-space: nowrap; }
.navbar-link:hover { color: #00FF00; }
.navbar-cta { padding: 0.625rem 1.5rem; background: #00FF00; color: #000; font-size: 0.875rem; font-weight: 600; border-radius: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.navbar-cta:hover { background: #00DD00; }
.mobile-menu-btn { display: none; font-size: 1.5rem; color: #fff; background: none; border: none; cursor: pointer; padding: 0.25rem; }

@media (max-width: 767px) {
    .mobile-menu-btn { display: block; }
    .navbar-menu {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #000;
        border-bottom: 1px solid #1f2937;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem;
        gap: 0;
    }
    .navbar-menu.open { display: flex; }
    .navbar-link, .navbar-cta {
        padding: 0.875rem 0;
        border-bottom: 1px solid #1f2937;
        font-size: 1rem;
        border-radius: 0;
        background: none;
    }
    .navbar-cta {
        margin-top: 0.75rem;
        border-bottom: none;
        text-align: center;
        padding: 0.875rem;
        border-radius: 0.5rem;
        background: #00FF00;
    }
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.6), #000); }
.hero-content { position: relative; z-index: 10; max-width: 1280px; margin: 0 auto; padding: 8rem 1.5rem; text-align: center; width: 100%; }
.hero-badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(0,255,0,0.1); border: 1px solid rgba(0,255,0,0.3); border-radius: 9999px; margin-bottom: 1.5rem; }
.hero-badge span { color: #00FF00; font-size: 0.875rem; font-weight: 600; }
.hero-title { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-title .highlight { color: #00FF00; }
.hero-subtitle { font-size: 1.25rem; color: #d1d5db; margin-bottom: 2.5rem; max-width: 48rem; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 5rem; }
.btn-primary { padding: 1rem 2rem; background: #00FF00; color: #000; font-size: 1rem; font-weight: 700; border-radius: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.btn-primary:hover { background: #00DD00; transform: scale(1.05); }
.btn-secondary { padding: 1rem 2rem; background: transparent; border: 2px solid #fff; color: #fff; font-size: 1rem; font-weight: 700; border-radius: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.btn-secondary:hover { background: #fff; color: #000; }
.hero-features { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 64rem; margin: 0 auto; }
.hero-feature { background: rgba(17,24,39,0.5); backdrop-filter: blur(8px); border: 1px solid #1f2937; border-radius: 0.5rem; padding: 1.5rem; }
.hero-feature-icon { width: 48px; height: 48px; background: rgba(0,255,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.hero-feature-icon i { font-size: 1.5rem; color: #00FF00; }
.hero-feature h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.hero-feature p { color: #9ca3af; font-size: 0.875rem; }

/* Section */
.section { padding: 6rem 0; }
.section-black { background: #000; }
.section-gray { background: #030712; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-badge { display: inline-block; padding: 0.5rem 1rem; background: rgba(0,255,0,0.1); border: 1px solid rgba(0,255,0,0.3); border-radius: 9999px; margin-bottom: 1rem; }
.section-badge span { color: #00FF00; font-size: 0.875rem; font-weight: 600; }
.section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.section-title .highlight { color: #00FF00; }
.section-subtitle { color: #9ca3af; font-size: 1.125rem; max-width: 42rem; margin: 0 auto; }

/* Services */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
.service-card { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 2rem; transition: all 0.3s; }
.service-card:hover { border-color: rgba(0,255,0,0.5); transform: scale(1.05); }
.service-icon { width: 56px; height: 56px; background: rgba(0,255,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; transition: all 0.3s; }
.service-card:hover .service-icon { box-shadow: 0 0 20px rgba(0,255,0,0.3); }
.service-icon i { font-size: 1.5rem; color: #00FF00; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.service-card p { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.service-features { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid #1f2937; display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.service-feature { display: flex; align-items: center; gap: 0.5rem; }
.service-feature i { color: #00FF00; font-size: 0.875rem; }
.service-feature span { color: #d1d5db; font-size: 0.75rem; }

/* Web Design Banner */
.webdesign-banner { margin-top: 3rem; position: relative; overflow: hidden; background: linear-gradient(to bottom right, #111827, #111827, #000); border: 1px solid #1f2937; border-radius: 1rem; padding: 3rem; transition: all 0.3s; }
.webdesign-banner:hover { border-color: rgba(0,255,0,0.5); }
.webdesign-pattern { position: absolute; inset: 0; opacity: 0.05; background-image: radial-gradient(circle at 2px 2px, rgba(0,255,0,0.15) 1px, transparent 0); background-size: 32px 32px; }
.webdesign-badge { position: absolute; top: 1.5rem; right: 1.5rem; padding: 0.5rem 1rem; background: #00FF00; color: #000; font-size: 0.875rem; font-weight: 700; border-radius: 9999px; white-space: nowrap; display: flex; align-items: center; gap: 0.5rem; }
.webdesign-content { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 2rem; }
.webdesign-text { flex: 1; }
.webdesign-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.webdesign-header-icon { width: 48px; height: 48px; background: rgba(0,255,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.webdesign-header-icon i { font-size: 1.5rem; color: #00FF00; }
.webdesign-header h3 { font-size: 1.875rem; font-weight: 700; }
.webdesign-header .highlight { color: #00FF00; }
.webdesign-text p { color: #9ca3af; font-size: 1.125rem; margin-bottom: 1.5rem; max-width: 42rem; }
.webdesign-features { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.webdesign-feature { padding: 0.5rem 1rem; background: rgba(0,0,0,0.5); border: 1px solid #1f2937; border-radius: 0.5rem; font-size: 0.875rem; color: #d1d5db; display: flex; align-items: center; gap: 0.5rem; }
.webdesign-feature i { color: #00FF00; }
.webdesign-cta { flex-shrink: 0; }
.webdesign-btn { padding: 1rem 2rem; background: #00FF00; color: #000; font-size: 1.125rem; font-weight: 700; border-radius: 0.5rem; transition: all 0.3s; white-space: nowrap; display: flex; align-items: center; gap: 0.75rem; }
.webdesign-btn:hover { background: #00DD00; box-shadow: 0 0 20px rgba(0,255,0,0.3); transform: scale(1.05); }
.webdesign-btn i { transition: transform 0.3s; }
.webdesign-btn:hover i { transform: translateX(4px); }

/* Screen Repair */
.two-col-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.repair-steps { margin-bottom: 2rem; }
.repair-step { display: flex; align-items: start; gap: 1rem; margin-bottom: 1.5rem; }
.repair-step-number { flex-shrink: 0; width: 48px; height: 48px; background: rgba(0,255,0,0.1); border: 1px solid rgba(0,255,0,0.3); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.repair-step-number span { color: #00FF00; font-weight: 700; font-size: 0.875rem; }
.repair-step-content h4 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.25rem; }
.repair-step-content p { color: #9ca3af; font-size: 0.875rem; }
.brands-box { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 1.5rem; }
.brands-box h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1rem; }
.brands-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.brand-tag { padding: 0.5rem 1rem; background: #1f2937; border: 1px solid #374151; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; transition: all 0.3s; }
.brand-tag:hover { border-color: #00FF00; }
.image-container { position: relative; }
.image-container img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 0.5rem; }
.image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.image-badge { position: absolute; bottom: -2rem; left: -2rem; background: #00FF00; color: #000; border-radius: 0.5rem; padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5); }
.image-badge-number { font-size: 2.5rem; font-weight: 700; margin-bottom: 0.25rem; }
.image-badge-text { font-size: 0.875rem; font-weight: 600; }

/* PC Builds */
.builds-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 4rem; }
.build-card { position: relative; background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; overflow: hidden; transition: all 0.3s; }
.build-card.popular { border-color: #00FF00; }
.build-card:hover { border-color: #00FF00; }
.build-badge { position: absolute; top: 1rem; right: 1rem; z-index: 10; background: #00FF00; color: #000; padding: 0.25rem 0.75rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.build-image { position: relative; height: 320px; width: 100%; overflow: hidden; }
.build-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.5s; }
.build-card:hover .build-image img { transform: scale(1.1); }
.build-image-overlay { position: absolute; inset: 0; background: linear-gradient(to top, #111827, rgba(17,24,39,0.5), transparent); }
.build-content { padding: 1.5rem; }
.build-content h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.build-price { color: #00FF00; font-size: 1.875rem; font-weight: 700; margin-bottom: 1.5rem; }
.build-specs { margin-bottom: 1.5rem; }
.build-spec { display: flex; align-items: start; font-size: 0.875rem; color: #d1d5db; margin-bottom: 0.75rem; }
.build-spec i { color: #00FF00; margin-right: 0.5rem; margin-top: 0.125rem; flex-shrink: 0; }
.build-btn { width: 100%; padding: 0.75rem 1.5rem; background: #00FF00; color: #000; font-size: 0.875rem; font-weight: 700; border-radius: 0.5rem; transition: all 0.3s; white-space: nowrap; }
.build-btn:hover { background: #00DD00; }
.custom-build-box { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 3rem; }
.custom-build-content { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; }
.custom-build-text h3 { font-size: 1.875rem; font-weight: 700; margin-bottom: 1rem; }
.custom-build-text h3 .highlight { color: #00FF00; }
.custom-build-text p { color: #9ca3af; margin-bottom: 1.5rem; line-height: 1.6; }
.custom-build-features { margin-bottom: 0; }
.custom-build-feature { display: flex; align-items: center; font-size: 0.875rem; margin-bottom: 0.75rem; }
.custom-build-feature i { color: #00FF00; margin-right: 0.75rem; }
.custom-build-image { position: relative; height: 384px; width: 100%; border-radius: 0.5rem; overflow: hidden; }
.custom-build-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 0.5rem; }

/* About */
.about-image { position: relative; border-radius: 0.5rem; overflow: hidden; height: 600px; width: 100%; }
.about-image img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 0.5rem; }
.about-badge { position: absolute; bottom: -2rem; right: -2rem; background: #111827; border: 1px solid #00FF00; border-radius: 0.5rem; padding: 1.5rem; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.5); }
.about-badge-content { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.about-badge-content i { font-size: 1.875rem; color: #00FF00; }
.about-badge-number { font-size: 1.5rem; font-weight: 700; color: #00FF00; }
.about-badge-text { font-size: 0.875rem; color: #9ca3af; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 1.5rem; text-align: center; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: #00FF00; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: #9ca3af; }
.features-list { margin-bottom: 0; }
.feature-item { display: flex; align-items: start; gap: 1rem; margin-bottom: 1rem; }
.feature-icon { width: 40px; height: 40px; background: rgba(0,255,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { font-size: 1.25rem; color: #00FF00; }
.feature-content h4 { font-weight: 700; margin-bottom: 0.25rem; }
.feature-content p { color: #9ca3af; font-size: 0.875rem; }

/* Reviews */
.review-box { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 3rem; max-width: 64rem; margin: 0 auto; }
.review-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 1.5rem; }
.review-avatar { position: relative; width: 80px; height: 80px; border-radius: 9999px; overflow: hidden; flex-shrink: 0; }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.review-info h4 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.25rem; }
.review-info p { color: #9ca3af; font-size: 0.875rem; margin-bottom: 0.5rem; }
.review-stars { display: flex; gap: 0.25rem; }
.review-stars i { color: #00FF00; }
.review-text { color: #d1d5db; font-size: 1.125rem; line-height: 1.6; margin-bottom: 2rem; }
.review-controls { display: flex; align-items: center; justify-content: space-between; }
.review-dots { display: flex; gap: 0.5rem; }
.review-dot { width: 8px; height: 8px; border-radius: 9999px; background: #374151; transition: all 0.3s; }
.review-dot.active { background: #00FF00; width: 32px; }
.review-arrows { display: flex; gap: 0.5rem; }
.review-arrow { width: 40px; height: 40px; background: #1f2937; border: 1px solid #374151; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.review-arrow:hover { border-color: #00FF00; }
.review-arrow i { font-size: 1.25rem; }
.review-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.review-stat { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 1.5rem; text-align: center; }
.review-stat-number { font-size: 1.875rem; font-weight: 700; color: #00FF00; margin-bottom: 0.5rem; }
.review-stat-label { font-size: 0.875rem; color: #9ca3af; }

/* Review marquee */
.rq-marquee { overflow: hidden; margin-bottom: 3rem; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.rq-track { display: flex; gap: 1.5rem; width: max-content; animation: rq-scroll 40s linear infinite; }
.rq-track:hover { animation-play-state: paused; }
@keyframes rq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.rq-card { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 1.5rem; width: 320px; flex-shrink: 0; display: flex; flex-direction: column; gap: 1rem; transition: border-color 0.3s; }
.rq-card:hover { border-color: rgba(0,255,0,0.4); }
.rq-card-header { display: flex; align-items: center; gap: 0.75rem; }
.rq-avatar { width: 48px; height: 48px; border-radius: 9999px; object-fit: cover; flex-shrink: 0; }
.rq-name { font-weight: 700; font-size: 0.9375rem; margin-bottom: 0.2rem; }
.rq-stars { display: flex; gap: 0.15rem; font-size: 0.75rem; }
.rq-platform { margin-left: auto; font-size: 0.8125rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; white-space: nowrap; }
.rq-text { color: #9ca3af; font-size: 0.875rem; line-height: 1.6; }

/* FAQ */
.faq-list { max-width: 64rem; margin: 0 auto; }
.faq-item { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; overflow: hidden; margin-bottom: 1rem; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(0,255,0,0.5); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; text-align: left; }
.faq-question h3 { font-size: 1.125rem; font-weight: 700; padding-right: 2rem; }
.faq-question i { font-size: 1.5rem; color: #00FF00; flex-shrink: 0; transition: transform 0.3s; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: #9ca3af; line-height: 1.6; display: none; }
.faq-item.active .faq-answer { display: block; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-footer { margin-top: 3rem; text-align: center; }
.faq-footer p { color: #9ca3af; margin-bottom: 1rem; }

/* CTA */
.cta-box { position: relative; background: linear-gradient(to right, #111827, #1f2937); border: 1px solid rgba(0,255,0,0.3); border-radius: 1rem; overflow: hidden; }
.cta-pattern { position: absolute; inset: 0; opacity: 0.1; }
.cta-content { position: relative; z-index: 10; padding: 4rem 2rem; text-align: center; }
.cta-content h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.cta-content h2 .highlight { color: #00FF00; }
.cta-content p { color: #d1d5db; font-size: 1.125rem; margin-bottom: 2rem; max-width: 42rem; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 2rem; }
.cta-features { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 48rem; margin: 0 auto; }
.cta-feature { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.cta-feature i { font-size: 1.5rem; color: #00FF00; }
.cta-feature span { font-size: 0.875rem; color: #d1d5db; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea { width: 100%; padding: 0.75rem 1rem; background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; color: #fff; font-size: 0.875rem; transition: all 0.3s; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: #00FF00; outline: none; }
.form-textarea { resize: none; }
.form-counter { text-align: right; font-size: 0.75rem; color: #6b7280; margin-top: 0.25rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.form-success { background: rgba(0,255,0,0.1); border: 1px solid #00FF00; border-radius: 0.5rem; padding: 1rem; display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.form-success i { font-size: 1.5rem; color: #00FF00; }
.form-success p { color: #00FF00; font-size: 0.875rem; font-weight: 600; }
.contact-info { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; padding: 2rem; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-item { display: flex; align-items: start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-icon { width: 48px; height: 48px; background: rgba(0,255,0,0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon i { font-size: 1.25rem; color: #00FF00; }
.contact-details h4 { font-weight: 700; margin-bottom: 0.25rem; }
.contact-details p, .contact-details a { color: #9ca3af; font-size: 0.875rem; }
.contact-details a:hover { color: #00FF00; }
.contact-map { background: #111827; border: 1px solid #1f2937; border-radius: 0.5rem; overflow: hidden; height: 256px; margin-top: 2rem; }
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer { background: #111827; border-top: 1px solid #1f2937; }
.footer-content { max-width: 1280px; margin: 0 auto; padding: 3rem 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand img { height: 48px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; background: #1f2937; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.footer-social a:hover { background: #00FF00; color: #000; }
.footer-social i { font-size: 1.125rem; }
.footer-section h4 { color: #fff; font-weight: 700; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a, .footer-links button { color: #9ca3af; font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover, .footer-links button:hover { color: #00FF00; }
.footer-contact li { display: flex; align-items: start; margin-bottom: 0.75rem; }
.footer-contact i { color: #00FF00; margin-right: 0.75rem; margin-top: 0.125rem; }
.footer-contact span, .footer-contact a { color: #9ca3af; font-size: 0.875rem; }
.footer-bottom { border-top: 1px solid #1f2937; padding-top: 2rem; display: flex; flex-direction: column; align-items: center; }
.footer-bottom p { color: #9ca3af; font-size: 0.875rem; margin-bottom: 1rem; }
.footer-bottom-links { display: flex; align-items: center; gap: 1.5rem; }
.footer-bottom-links a { color: #9ca3af; font-size: 0.875rem; transition: color 0.3s; }
.footer-bottom-links a:hover { color: #00FF00; }
.footer-bottom-links span { color: #374151; }

/* HubSpot custom form */
:root {
  --green: #00FF00;
  --green-hover: #00DD00;
  --label: #d1d5db;
  --text-muted: #9ca3af;
  --input-bg: #1a1f2e;
  --input-border: #374151;
  --input-border-focus: #00FF00;
  --input-text: #f3f4f6;
  --error: #ef4444;
  --radius: 0.5rem;
  --font: Helvetica, Arial, sans-serif;
}

.hs-custom-form { width: 100%; }

.hsfc-Row { display: grid; grid-template-columns: repeat(auto-fit, minmax(0, 1fr)); gap: 1.25rem; margin-bottom: 1.25rem; }
@media (max-width: 480px) { .hsfc-Row { display: flex; flex-direction: column; gap: 1rem; } }

.hsfc-FieldLabel { display: block !important; font-size: 0.875rem !important; color: #00FF00 !important; margin-bottom: 0.5rem !important; font-weight: 500 !important; }
.hsfc-FieldLabel__RequiredIndicator { color: var(--error); margin-left: 0.2rem; }

.hsfc-TextInput,
.hsfc-TextareaInput { width: 100%; background: var(--input-bg); border: 1px solid var(--input-border); border-radius: var(--radius); color: var(--input-text); font-family: var(--font); font-size: 0.9375rem; padding: 0.65rem 0.875rem; transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.hsfc-TextInput::placeholder, .hsfc-TextareaInput::placeholder { color: #4b5563; }
.hsfc-TextInput:hover, .hsfc-TextareaInput:hover { border-color: #4b5563; }
.hsfc-TextInput:focus, .hsfc-TextareaInput:focus { border-color: var(--input-border-focus); box-shadow: 0 0 0 2px rgba(0, 255, 0, 0.12); }
.hsfc-TextInput.error, .hsfc-TextareaInput.error { border-color: var(--error); }
.hsfc-TextareaInput { resize: vertical; min-height: 120px; }

.hsfc-TextField, .hsfc-EmailField, .hsfc-PhoneField, .hsfc-TextareaField { display: flex; flex-direction: column; }

.field-error { color: var(--error); font-size: 0.78rem; margin-top: 0.3rem; display: none; }
.field-error.visible { display: block; }

.hsfc-RichText { color: var(--text-muted) !important; font-size: 0.8125rem !important; line-height: 1.6; margin-bottom: 0.75rem !important; max-width: none !important; }

.hsfc-CheckboxField label { display: flex; align-items: flex-start; gap: 0.6rem; cursor: pointer; }
.hsfc-CheckboxInput { appearance: none !important; width: 1.1rem !important; height: 1.1rem !important; min-width: 1.1rem; border: 1px solid var(--input-border) !important; border-radius: 3px; background: var(--input-bg) !important; cursor: pointer; margin-top: 0.1rem; position: relative; transition: border-color 0.2s, background 0.2s; flex-shrink: 0 !important; display: block !important; }
.hsfc-CheckboxInput:hover { border-color: var(--green) !important; }
.hsfc-CheckboxInput:checked { background: var(--green) !important; border-color: var(--green) !important; }
.hsfc-CheckboxInput:checked::after { content: ''; position: absolute; top: 1px; left: 3px; width: 5px; height: 9px; border: 2px solid #000; border-top: none; border-left: none; transform: rotate(45deg); }
.hsfc-CheckboxInput.error { border-color: var(--error) !important; }
.hsfc-CheckboxField label span { font-size: 0.8125rem; color: var(--label); line-height: 1.5; }

.hsfc-DataPrivacyField { border-top: 1px solid #1f2937; padding-top: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }

.hsfc-Button { display: block !important; width: 100% !important; padding: 1rem 2rem !important; background: var(--green) !important; color: #000 !important; font-size: 1rem !important; font-weight: 700 !important; font-family: var(--font) !important; border: none !important; border-radius: var(--radius) !important; cursor: pointer; transition: background 0.2s, transform 0.15s !important; white-space: nowrap !important; margin-top: 1.25rem; }
.hsfc-Button:hover:not(:disabled) { background: var(--green-hover) !important; transform: scale(1.02) !important; }
.hsfc-Button:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.form-message { display: none; padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9375rem; margin-top: 1rem; line-height: 1.5; }
.form-message.success { background: rgba(0, 255, 0, 0.08); border: 1px solid rgba(0, 255, 0, 0.3); color: var(--green); }
.form-message.failure { background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.3); color: #fca5a5; }

.hsfc-Button .spinner { display: inline-block; width: 1em; height: 1em; border: 2px solid rgba(0,0,0,0.3); border-top-color: #000; border-radius: 50%; animation: spin 0.6s linear infinite; vertical-align: middle; margin-right: 0.4em; }
@keyframes spin { to { transform: rotate(360deg); } }

.copilot-grid-layout { display: none !important; }

/* Responsive */
@media (min-width: 640px) {
  .hero-buttons { flex-direction: row; }
  .hero-features { grid-template-columns: repeat(3, 1fr); }
  .form-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-buttons { flex-direction: row; }
  .cta-features { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
  .footer-bottom p { margin-bottom: 0; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 4rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .builds-grid { grid-template-columns: repeat(3, 1fr); }
  .review-stats { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
  .webdesign-content { flex-direction: row; align-items: center; }
  .webdesign-text { text-align: left; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 4.5rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .two-col-grid { grid-template-columns: repeat(2, 1fr); }
  .custom-build-content { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}
