/* ===== EC Sales Agency Page Styles ===== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.breadcrumb a {
    color: var(--blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb a:hover {
    color: var(--navy);
}

.breadcrumb span {
    color: var(--light-gray);
}

/* Agency Hero Section */
.agency-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 8rem 0 6rem;
    margin-top: 90px;
}

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

.agency-title {
    font-family: var(--font-jp);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.agency-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.agency-hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.stat-number-agency {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label-agency {
    font-size: 0.9rem;
    opacity: 0.9;
}

.agency-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Section Styles */
.section-title-center {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center .section-label {
    display: block;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section-header-center .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-header-center .section-description {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Problem Section */
.problem-section {
    background: var(--light-bg);
}

.problem-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--dark-gray);
}

.problem-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.problem-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.problem-box h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.problem-box ul {
    list-style: none;
    padding: 0;
}

.problem-box ul li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
    color: var(--dark-gray);
}

.problem-box ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.problem-box.highlight {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
}

.problem-box.highlight h3 {
    color: var(--white);
}

.problem-box.highlight p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.problem-box .emphasis {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

/* Service Overview */
.service-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-overview-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.service-overview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--blue);
}

.service-icon {
    color: var(--blue);
    margin-bottom: 1.5rem;
}

.service-overview-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-overview-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Operation Scope */
.operation-scope-section {
    background: var(--light-bg);
}

.operation-scope-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.operation-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.operation-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.operation-item h4 {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.operation-item p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.operation-note {
    background: rgba(74, 159, 216, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--blue);
}

.operation-note p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Flow Section */
.flow-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.flow-step {
    position: relative;
    padding-left: 5rem;
    padding-bottom: 3rem;
    border-left: 3px solid var(--light-gray);
}

.flow-step:last-child {
    border-left-color: transparent;
}

.flow-number {
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1.1rem;
}

.flow-step h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.flow-step p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Approach Section */
.approach-section {
    background: var(--light-bg);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.approach-card h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Pricing Section */
.pricing-content {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-model {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.pricing-model h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pricing-model p {
    color: var(--dark-gray);
    line-height: 1.7;
}

.pricing-note {
    background: rgba(212, 175, 55, 0.08);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
}

.pricing-note p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* FAQ Section for Agency Page */
.faq-section-agency {
    background: var(--light-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    font-size: 1.2rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-answer {
    color: var(--dark-gray);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* CTA Final Section */
.cta-final-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}

.cta-final-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta-lead {
    font-size: 1.2rem;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 3rem;
}

.cta-buttons-final {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.cta-note {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.cta-note p {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-note ul {
    list-style: none;
    padding: 0;
}

.cta-note ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-note ul li::before {
    content: '・';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Responsive Styles for Agency Page */
@media (max-width: 968px) {
    .agency-hero {
        padding: 6rem 0 4rem;
    }
    
    .agency-hero-stats {
        gap: 2rem;
    }
    
    .stat-number-agency {
        font-size: 2rem;
    }
    
    .flow-step {
        padding-left: 4rem;
    }
    
    .flow-number {
        left: -1.25rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .agency-hero {
        padding: 5rem 0 3rem;
    }
    
    .agency-hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number-agency {
        font-size: 1.8rem;
    }
    
    .stat-label-agency {
        font-size: 0.85rem;
    }
    
    .agency-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .problem-boxes {
        grid-template-columns: 1fr;
    }
    
    .service-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .operation-scope-list {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .flow-step {
        padding-left: 3rem;
    }
    
    .flow-number {
        left: -1rem;
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }
    
    .cta-buttons-final {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}