/* =================================================================
   GRAPHIC DESIGN PAGE STYLES
   ================================================================= */

/* ----------------------------------
   HERO SECTION
   ---------------------------------- */
.gd-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gd-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.brand-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.brand-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.15), transparent 70%); /* Orange for Impact */
    filter: blur(100px);
    opacity: 0.6;
}

.gd-hero__content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.gd-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    margin-bottom: 40px;
    font-family: monospace;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    backdrop-filter: blur(10px);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #FF6B00;
    border-radius: 50%;
    box-shadow: 0 0 10px #FF6B00;
    animation: pulse 2s infinite;
}

.gd-hero__content .title {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 10vw, 6.5rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.gd-hero__content .subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 650px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.gd-hero__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Button Styles (Reused) */
.btn-primary {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(45deg, var(--color-primary), #FF6B00);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(138, 66, 255, 0.3);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(138, 66, 255, 0.5);
    color: #fff;
}

.btn-outline {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 16px 36px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-3px);
}

/* ----------------------------------
   PROBLEM SECTION
   ---------------------------------- */
.gd-problem {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
}

.gd-problem__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FF6B00;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.1;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.problem-list li {
    display: flex;
    gap: 20px;
}

.problem-list i {
    font-size: 1.5rem;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.problem-list strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.problem-list p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

.brand-book-stack {
    position: relative;
    height: 400px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-layer {
    position: absolute;
    width: 280px;
    height: 360px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.layer-1 { transform: translateX(-20px) translateY(-20px) rotate(-5deg); opacity: 0.5; z-index: 1; }
.layer-2 { transform: translateX(-10px) translateY(-10px) rotate(-2deg); opacity: 0.7; z-index: 2; }
.layer-3 { transform: translateX(0) translateY(0) rotate(0deg); opacity: 1; z-index: 3; background: #0a0f2e; padding: 20px; }

.book-cover {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.logo-mark { width: 60px; height: 60px; border: 2px solid #FF6B00; border-radius: 50%; }
.lines span { display: block; height: 4px; background: rgba(255, 255, 255, 0.1); margin-bottom: 6px; width: 100px; }

/* ----------------------------------
   PROCESS SECTION
   ---------------------------------- */
.gd-process {
    padding: 120px 0;
    background: #02040a;
}

.gd-process__header {
    text-align: center;
    margin-bottom: 80px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6B00, transparent);
    z-index: 0;
}

.p-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FF6B00;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.p-step h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.p-step p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* ----------------------------------
   SERVICES SECTION
   ---------------------------------- */
.gd-services {
    padding: 120px 0;
    background: var(--color-bg);
}

.gd-services__header {
    text-align: center;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card.featured {
    background: rgba(255, 107, 0, 0.05);
    border-color: #FF6B00;
    transform: scale(1.05);
}

.service-card .card-icon {
    font-size: 2.5rem;
    color: #FF6B00;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ----------------------------------
   TOOLS SECTION
   ---------------------------------- */
.gd-tools {
    padding: 80px 0;
    background: #02040a;
    overflow: hidden;
}

.tools-marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
}

.tools-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
}

.tools-track span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ----------------------------------
   FAQ & CTA
   ---------------------------------- */
.gd-faq {
    padding: 100px 0;
    background: var(--color-bg);
}

.gd-cta-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 80px;
    text-align: center;
}

.gd-cta-box h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

.gd-cta-box p {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
}

/* ----------------------------------
   RESPONSIVE
   ---------------------------------- */
@media (max-width: 1024px) {
    .gd-problem__grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-line {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .gd-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .gd-hero__content .title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }

    .gd-problem, .gd-process, .gd-services, .gd-faq {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .brand-book-stack {
        transform: scale(0.8);
        margin-top: 20px;
    }
}