/* GM Associates - Distinctive Professional Design
   ================================================ */

/* Import Plus Jakarta Sans for distinctive typography */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --bg-dark: #06090f;
    --bg-card: #0d1420;
    --accent-cyan: #00d4ff;
    --accent-emerald: #10b981;
    --accent-amber: #f59e0b;
    --accent-purple: #8b5cf6;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #1e293b;
    --glow-cyan: rgba(0, 212, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.65;
    /* Subtle noise texture overlay */
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(139, 92, 246, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #06090f 0%, #0a1018 50%, #06090f 100%);
    background-attachment: fixed;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - Sticky with glassmorphism */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 0;
    background: rgba(6, 9, 15, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(6, 9, 15, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.08);
}

.nav-links a:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

.nav-links a.active {
    color: var(--accent-cyan);
}

.nav-links .cta-nav {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.25);
}

.nav-links .cta-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.35);
    color: white;
}

/* Hero Section */
.hero {
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(32px, 5.5vw, 56px);
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 50%, var(--accent-cyan) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero p,
.hero .subhead {
    font-size: clamp(17px, 2.5vw, 21px);
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    margin: 30px auto;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 35px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-purple) 100%);
    color: var(--text-light);
    padding: 16px 38px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.cta-small {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-light);
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.3);
}

/* Section Styling */
section {
    padding: 60px 0;
}

section h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Problem Section */
.problem {
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(13, 20, 32, 0.8) 100%);
    border: 1px solid rgba(236, 72, 153, 0.15);
    border-radius: 16px;
    padding: 45px;
    margin: 45px 0;
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-amber), transparent);
}

.problem h3 {
    color: var(--accent-amber);
    margin-bottom: 24px;
    font-size: 26px;
    font-weight: 600;
}

.problem ul {
    list-style: none;
}

.problem li {
    padding: 14px 0;
    padding-left: 35px;
    position: relative;
    color: var(--text-muted);
    font-size: 17px;
    transition: color 0.2s ease;
}

.problem li:hover {
    color: var(--text-light);
}

.problem li::before {
    content: "X";
    position: absolute;
    left: 0;
    color: var(--accent-amber);
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
}

/* Solution Box (cyan border variant) */
.solution-box {
    border-left: 3px solid var(--accent-cyan);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
}

.solution-box h3 {
    color: var(--accent-cyan);
}

/* Cross-sell Box (purple border variant) */
.crosssell-box {
    border-left: 3px solid var(--accent-purple);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(0, 212, 255, 0.05));
}

.crosssell-box h3 {
    color: var(--accent-purple);
}

/* How It Works - Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 15px;
}

.step h4 {
    margin-bottom: 10px;
    font-size: 20px;
}

.step p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 45px;
}

.service-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(13, 20, 32, 0.6) 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 212, 255, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card h4 {
    color: var(--accent-cyan);
    margin-bottom: 14px;
    font-size: 19px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.pricing-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(13, 20, 32, 0.7) 100%);
    border-radius: 16px;
    padding: 35px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 212, 255, 0.15);
}

.pricing-card.featured::before {
    content: "Best Value";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-emerald));
    color: var(--bg-dark);
    padding: 6px 16px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.pricing-card h4 {
    font-size: 22px;
    margin-bottom: 6px;
    font-weight: 600;
}

.pricing-card .for {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 18px;
}

.pricing-card .price {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: -0.02em;
}

.pricing-card .term {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.pricing-card .details {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
}

.pricing-card .rate {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
}

.no-plan {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 8px;
}

.no-plan span {
    color: var(--accent-pink);
    font-weight: 600;
}

/* About/Bio Section */
.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    margin: 40px 0;
}

.about-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-cyan);
    flex-shrink: 0;
}

.about-text h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-text p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.about-text .experience-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 15px;
}

/* Testimonials */
.testimonials {
    margin: 70px 0;
    position: relative;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: rgba(0, 212, 255, 0.05);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 45px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(13, 20, 32, 0.6) 100%);
    border-radius: 16px;
    padding: 35px;
    border-left: 3px solid var(--accent-cyan);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.testimonial-card blockquote {
    font-size: 16px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 18px;
    line-height: 1.7;
}

.testimonial-card cite {
    color: var(--text-muted);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
}

/* Why Section */
.why-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.why-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 8px;
}

.why-icon {
    color: var(--accent-cyan);
    font-size: 24px;
    flex-shrink: 0;
}

.why-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
}

.why-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Guarantee Badge */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 8px;
    padding: 15px 25px;
    margin: 30px auto;
    max-width: 500px;
}

.guarantee-icon {
    font-size: 24px;
}

.guarantee p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Audience Section */
.audience {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 40px;
    margin: 40px 0;
}

.audience h3 {
    color: var(--accent-cyan);
    margin-bottom: 20px;
    font-size: 24px;
}

.audience ul {
    list-style: none;
}

.audience li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-light);
    font-size: 17px;
}

.audience li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-category {
    margin-bottom: 30px;
}

.faq-category h3 {
    color: var(--accent-cyan);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.05);
}

.faq-question::after {
    content: "+";
    font-size: 20px;
    color: var(--accent-cyan);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 20px 20px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
}

/* Remote Support */
.remote-support {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
    border: 1px solid var(--border-color);
}

.remote-support h3 {
    margin-bottom: 15px;
}

.remote-support p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.anydesk-steps {
    text-align: left;
    max-width: 500px;
    margin: 20px auto;
    padding-left: 20px;
}

.anydesk-steps li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

.anydesk-steps li strong {
    color: var(--text-light);
}

.anydesk-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.anydesk-btn {
    display: inline-block;
    background: #ef443b;
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.anydesk-btn:hover {
    background: #d93a32;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(0, 212, 255, 0.2));
    border-radius: 12px;
    margin: 40px 0;
}

.cta-section h2 {
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-section .bonus {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Contact */
.contact {
    text-align: center;
    padding: 60px 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.contact-item {
    text-align: center;
}

.contact-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-size: 18px;
}

.contact-item span {
    display: block;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 5px;
}

/* AI Sub-navigation (tabs below hero) */
.ai-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: -20px auto 40px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    max-width: 600px;
}

.ai-tabs a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s;
}

.ai-tabs a:hover {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.1);
}

.ai-tabs a.active {
    color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.15);
}

/* Comparison Table */
.comparison {
    margin: 60px 0;
}

.comparison h2 {
    text-align: center;
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-light);
    font-weight: 600;
}

.comparison-table th:first-child {
    color: var(--accent-pink);
}

.comparison-table th:last-child {
    color: var(--accent-cyan);
}

.comparison-table td:first-child {
    color: var(--text-muted);
}

.comparison-table td:last-child {
    color: var(--text-light);
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Subtle glow on cards hover */
.card:hover {
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

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

footer .logo {
    height: 35px;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .nav-links {
        justify-content: center;
    }

    .hero {
        padding: 50px 0 40px;
    }

    section {
        padding: 40px 0;
    }

    .problem,
    .audience {
        padding: 25px;
    }

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

    .contact-info {
        gap: 25px;
    }

    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }

    .ai-tabs {
        gap: 5px;
    }

    .ai-tabs a {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .pricing-card .price {
        font-size: 28px;
    }

    .step,
    .service-card {
        padding: 20px;
    }
}
