/* =====================================================
   NEW HOMEPAGE STYLES - GreyBox LLC
   Modern, clean design matching all other pages
   ===================================================== */

:root {
    --neo-bg: #0a0a0a;
    --neo-surface: #101114;
    --neo-text: #eaeaea;
    --neo-muted: #b9bcc6;
    --neo-orange: #fc7a10;
    --neo-blue: #4fc3f7;
    --neo-glow-o: rgba(252,122,16,.35);
    --neo-glow-b: rgba(79,195,247,.35);
    --neo-grid: rgba(255,255,255,.055);
}

/* ===================== PAGE WRAPPER ===================== */
.homepage-new {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    background-color: var(--neo-bg);
    overflow: hidden;
}

/* ===================== HERO SECTION ===================== */
.hero-section-new {
    position: relative;
    padding: 200px 0 140px;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section-new .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: 0;
}

.hero-section-new .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252,122,16,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79,195,247,0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.hero-section-new .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.hero-section-new .container {
    position: relative;
    z-index: 2;
}

.hero-section-new .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero-eyebrow .icon-img {
    width: 18px;
    height: 18px;
}

.hero-section-new .hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--neo-text);
    margin-bottom: 28px;
}

.hero-section-new .hero-title .highlight {
    color: var(--neo-orange);
}

.hero-section-new .hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--neo-muted);
    max-width: 750px;
    margin: 0 auto 40px;
}

.hero-section-new .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: var(--neo-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.hero-btn.primary:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.hero-btn.secondary {
    background: rgba(255,255,255,0.05);
    color: var(--neo-text);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.hero-btn .icon-img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.hero-section-new .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-stats .stat-item {
    text-align: center;
    padding: 24px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-5px);
}

.hero-stats .stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 13px;
    color: var(--neo-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================== SECTION TITLES ===================== */
.sec-title {
    text-align: center;
    margin-bottom: 60px;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.sub-title .icon-img {
    width: 18px;
    height: 18px;
}

.sec-title .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

/* ===================== SERVICES PREVIEW ===================== */
.services-preview {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.service-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.service-card .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card .card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
}

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

.service-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--neo-orange);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card .card-link:hover {
    gap: 12px;
}

.services-cta {
    text-align: center;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.3);
}

.view-all-btn .icon-img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ===================== PROCESS PREVIEW ===================== */
.process-preview {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: stretch;
    margin-bottom: 50px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-5px);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: rgba(252,122,16,0.1);
    border: 2px solid rgba(252,122,16,0.3);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    color: var(--neo-orange);
    line-height: 46px;
    margin-bottom: 16px;
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
}

.step-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--neo-muted);
    margin-bottom: 16px;
    flex-grow: 1;
}

.step-duration {
    font-size: 13px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background: rgba(252,122,16,0.1);
    border-radius: 20px;
}

.step-connector {
    display: none;
}

.process-cta {
    text-align: center;
}

.view-process-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-process-btn:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.3);
}

.view-process-btn .icon-img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ===================== RESULTS SECTION ===================== */
.results-section {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.result-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.result-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.result-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 12px;
}

.result-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--neo-muted);
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating .star {
    color: var(--neo-orange);
    font-size: 18px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neo-muted);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 4px;
}

.author-role {
    font-size: 14px;
    color: var(--neo-muted);
}

.testimonials-cta {
    text-align: center;
}

.view-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--neo-text);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-reviews-btn:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.3);
}

.view-reviews-btn .icon-img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ===================== FAQ SECTION ===================== */
.faq-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.faq-grid {
    display: flex;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--neo-text);
    margin: 0;
    flex: 1;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    color: var(--neo-orange);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
    padding: 0 30px;
    opacity: 0;
    visibility: hidden;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 24px 30px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.4s ease, opacity 0.3s ease 0.1s, padding 0.4s ease;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--neo-muted);
    margin: 0;
}

/* ===================== SEO INFO SECTION ===================== */
.seo-info-section {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.seo-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-main-content {
    text-align: center;
    margin-bottom: 60px;
}

.seo-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.seo-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--neo-muted);
    max-width: 900px;
    margin: 0 auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.seo-block {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.seo-block:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
}

.seo-block.full-width {
    grid-column: span 2;
}

.seo-block-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--neo-orange);
    margin-bottom: 20px;
}

.seo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-list li {
    font-size: 15px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.seo-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--neo-orange);
    font-weight: 700;
}

.seo-list.columns-2 {
    column-count: 2;
    column-gap: 30px;
}

.seo-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--neo-muted);
}

/* ===================== CTA SECTION ===================== */
.cta-section-final {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
    overflow: hidden;
}

.cta-section-final .anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.cta-section-final .anim-icons .image-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0.3;
}

.cta-section-final .anim-icons .image-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    opacity: 0.2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 24px;
}

.cta-text {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neo-muted);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: var(--neo-orange);
    color: #fff;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.cta-btn.primary:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.cta-btn.secondary {
    background: rgba(255,255,255,0.05);
    color: var(--neo-text);
    border: 1px solid rgba(255,255,255,0.1);
}

.cta-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.cta-btn .icon-img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ===================== UTILITY CLASSES ===================== */
.color1 {
    color: var(--neo-orange);
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
    .hero-section-new .hero-title {
        font-size: 60px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section-new {
        padding: 160px 0 120px;
    }
    
    .hero-section-new .hero-title {
        font-size: 48px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .sec-title .title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .hero-section-new {
        padding: 140px 0 100px;
    }
    
    .hero-section-new .hero-title {
        font-size: 36px;
    }
    
    .hero-section-new .hero-description {
        font-size: 16px;
    }
    
    .hero-section-new .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    .results-grid,
    .testimonials-grid,
    .process-steps,
    .seo-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-block.full-width {
        grid-column: span 1;
    }
    
    .seo-list.columns-2 {
        column-count: 1;
    }
    
    .sec-title .title,
    .cta-title,
    .seo-title {
        font-size: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .hero-section-new .hero-title {
        font-size: 32px;
    }
    
    .sec-title .title,
    .cta-title,
    .seo-title {
        font-size: 28px;
    }
    
    .seo-intro {
        font-size: 16px;
    }
    
    .seo-block {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .hero-eyebrow,
    .sub-title {
        font-size: 12px;
    }
}
