/* ============================================
   DESIGN SERVICE PAGE
   Championship Playbook Aesthetic
   ============================================ */

/* Navigation Active State */
.nav-link.active {
    color: var(--color-primary);
}

/* Hero Section */
.design-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    color: white;
    overflow: hidden;
    padding: 8rem 0 4rem;
}

.hero-stripes {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(232, 123, 62, 0.03) 60px,
            rgba(232, 123, 62, 0.03) 120px
        );
    background-size: 100% 100%;
    pointer-events: none;
    animation: stripeSlide 40s linear infinite;
}

@keyframes stripeSlide {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: 120px 120px;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(232, 123, 62, 0.15);
    border: 2px solid rgba(232, 123, 62, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(232, 123, 62, 0.2);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 30px rgba(232, 123, 62, 0.4);
    }
}

.hero-badge svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.hero-badge span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--color-primary);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    color: white;
}

.title-line {
    display: block;
    animation: titleSlideIn 0.8s ease-out backwards;
    color: white;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.2s; }
.title-line:nth-child(3) { animation-delay: 0.3s; }

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.title-line.highlight {
    background: linear-gradient(135deg, var(--color-primary), #FFA858);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.5em;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    text-align: center;
    animation: statFadeIn 0.8s ease-out backwards;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes statFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: ctaFadeIn 1s ease-out 0.7s backwards;
}

@keyframes ctaFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-large svg {
    width: 20px;
    height: 20px;
}

/* Value Section */
.design-value {
    padding: 6rem 0;
    background: #F9FAFB;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    color: var(--color-primary);
    background: rgba(232, 123, 62, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 2px solid rgba(232, 123, 62, 0.2);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-darker);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 700px;
    margin: 0 auto;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cardSlideIn 0.6s ease-out backwards;
}

.value-card:nth-child(1) { animation-delay: 0.1s; }
.value-card:nth-child(2) { animation-delay: 0.2s; }
.value-card:nth-child(3) { animation-delay: 0.3s; }
.value-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(232, 123, 62, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(-5deg);
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.value-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--color-darker);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.value-desc {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Section */
.design-process {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 80px;
    bottom: 80px;
    width: 3px;
    background: linear-gradient(to bottom,
        var(--color-primary) 0%,
        var(--color-primary) 25%,
        var(--color-primary) 50%,
        var(--color-primary) 75%,
        #10B981 100%
    );
}

.process-step {
    position: relative;
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    animation: processStepIn 0.8s ease-out backwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }

@keyframes processStepIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-number {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: white;
    letter-spacing: 2px;
    box-shadow: 0 10px 40px rgba(232, 123, 62, 0.3);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(-3deg);
}

.process-step:last-child .step-number {
    background: linear-gradient(135deg, #10B981, #059669);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.step-content {
    flex: 1;
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    transition: all 0.4s ease;
}

.process-step:hover .step-content {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(232, 123, 62, 0.1);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-primary);
}

.step-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.step-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--color-darker);
    letter-spacing: 0.5px;
}

.step-desc {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.step-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-dark);
    font-weight: 500;
}

.checklist-item svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
}

.step-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(232, 123, 62, 0.1), rgba(232, 123, 62, 0.05));
    border-left: 4px solid var(--color-primary);
    border-radius: 8px;
    margin-top: 1.5rem;
}

.step-highlight svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.step-highlight.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-left-color: #10B981;
}

.step-highlight.success svg {
    color: #10B981;
}

/* Examples Section */
.design-examples {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #F9FAFB, white);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.example-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #E5E7EB;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: exampleFadeIn 0.8s ease-out backwards;
}

.example-card:nth-child(1) { animation-delay: 0.1s; }
.example-card:nth-child(2) { animation-delay: 0.2s; }
.example-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes exampleFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.example-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.example-visual {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.example-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(232, 123, 62, 0.4);
}

.example-mockup {
    width: 200px;
    height: 280px;
    position: relative;
    transition: transform 0.4s ease;
}

.example-card:hover .example-mockup {
    transform: scale(1.05);
}

.mockup-jersey {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Minimalist Example */
.example-mockup.minimalist .mockup-jersey {
    background: white;
}

.example-mockup.minimalist .jersey-stripe {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 50%, var(--color-primary) 100%);
    transform: translateY(-50%);
}

/* Classic Example */
.example-mockup.classic .mockup-jersey {
    background: #1F2937;
}

.example-mockup.classic .jersey-stripes {
    display: flex;
    justify-content: space-around;
    padding: 2rem 1.5rem;
    height: 100%;
    align-items: center;
}

.example-mockup.classic .jersey-stripes span {
    width: 30px;
    height: 100%;
    background: var(--color-primary);
}

/* Bold Example */
.example-mockup.bold .mockup-jersey {
    background: #111827;
}

.example-mockup.bold .jersey-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        var(--color-primary) 0%,
        #FF6B35 50%,
        #FFA858 100%
    );
    opacity: 0.8;
}

.example-info {
    padding: 2rem;
}

.example-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    color: var(--color-darker);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.example-desc {
    color: var(--color-gray);
    line-height: 1.6;
}

/* Pricing Section */
.design-pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    position: relative;
    overflow: hidden;
}

.design-pricing::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(232, 123, 62, 0.03) 60px,
            rgba(232, 123, 62, 0.03) 120px
        );
    pointer-events: none;
}

.pricing-card {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    animation: pricingSlideIn 1s ease-out;
    position: relative;
    z-index: 1;
}

@keyframes pricingSlideIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-header {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #F9FAFB 0%, white 100%);
    border-bottom: 2px solid #E5E7EB;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(232, 123, 62, 0.3);
}

.pricing-badge svg {
    width: 18px;
    height: 18px;
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 1rem;
}

.price-currency {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--color-primary);
    margin-right: 0.5rem;
    margin-top: 0.5rem;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--color-darker);
    line-height: 1;
    letter-spacing: -2px;
}

.pricing-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
}

.pricing-features {
    padding: 3rem 2rem;
}

.features-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--color-darker);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #F9FAFB;
    border-radius: 8px;
    font-weight: 500;
    color: var(--color-dark);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(232, 123, 62, 0.05);
    transform: translateX(5px);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #10B981;
    flex-shrink: 0;
}

.pricing-cta {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(to bottom, white, #F9FAFB);
}

.btn-full {
    width: 100%;
    max-width: 500px;
    justify-content: center;
    margin-bottom: 1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--color-gray);
    font-style: italic;
}

/* FAQ Section */
.design-faq {
    padding: 6rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    padding: 2rem;
    background: #F9FAFB;
    border-radius: 12px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s ease;
    animation: faqSlideIn 0.6s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }
.faq-item:nth-child(5) { animation-delay: 0.25s; }
.faq-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes faqSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item:hover {
    background: white;
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(232, 123, 62, 0.1);
    transform: translateY(-4px);
}

.faq-question {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.35rem;
    color: var(--color-darker);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.faq-answer {
    color: var(--color-gray);
    line-height: 1.7;
}

/* Final CTA Section */
.design-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.design-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(255, 255, 255, 0.05) 80px,
            rgba(255, 255, 255, 0.05) 160px
        );
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    animation: ctaContentFadeIn 1s ease-out;
}

@keyframes ctaContentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--color-primary);
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
        gap: 1.5rem;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .design-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .value-grid,
    .examples-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .price-amount {
        font-size: 4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Prevent reduced motion issues */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
