/* 가이드젠트 솔루션 페이지 CSS */

/* ============================================
   SOLUTIONS OVERVIEW
============================================ */

.solutions-overview {
    padding: 100px 0;
    background: #f8fafc;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.overview-item {
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.overview-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1E3A8A, #10B981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.overview-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.overview-item:hover::before {
    transform: scaleX(1);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.overview-item:hover .overview-icon {
    transform: scale(1.1);
}

.overview-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 16px;
}

.overview-item p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

/* ============================================
   SOLUTION DETAILS
============================================ */

.solution-details {
    padding: 100px 0;
}

.solution-section {
    margin-bottom: 120px;
    scroll-margin-top: 100px;
}

.solution-section:last-child {
    margin-bottom: 0;
}

.solution-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E5E7EB;
}

.solution-title-area {
    display: flex;
    align-items: center;
    gap: 24px;
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.solution-icon-large.affiliate {
    background: linear-gradient(135deg, #10B981, #34D399);
}

.solution-icon-large.hosting {
    background: linear-gradient(135deg, #F59E0B, #EAB308);
}

.solution-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 8px;
}

.solution-header p {
    font-size: 1.1rem;
    color: #6B7280;
}

.solution-cta {
    display: flex;
    gap: 16px;
}

.solution-content {
    padding: 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main {
    min-height: 600px;
}

.content-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

/* Feature Showcase */
.feature-showcase {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.showcase-header {
    margin-bottom: 40px;
}

.showcase-header h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1F2937;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(8px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1E3A8A, #3B82F6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.feature-content p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #4B5563;
    font-size: 0.9rem;
}

.feature-content li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
    font-size: 1rem;
}

/* Sidebar Widgets */
.demo-widget,
.pricing-preview {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 24px;
}

.demo-widget h4,
.pricing-preview h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 20px;
}

.automation-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.auto-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8fafc;
    border-radius: 8px;
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6B7280;
    margin-bottom: 2px;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
}

.workflow-preview h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.workflow-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 0.85rem;
    color: #4B5563;
}

.workflow-status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.workflow-status.active {
    background: #10B981;
}

.workflow-status.pending {
    background: #F59E0B;
}

/* Pricing Preview */
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
    position: relative;
}

.price-item:last-child {
    border-bottom: none;
}

.price-item.featured {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05), rgba(16, 185, 129, 0.05));
    border-radius: 8px;
    padding: 12px;
    margin: 4px -12px;
}

.price-name {
    font-weight: 500;
    color: #1F2937;
}

.price-value {
    font-weight: 600;
    color: #1E3A8A;
}

.price-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #F59E0B;
    color: white;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 12px;
}

/* ============================================
   AFFILIATE SHOWCASE
============================================ */

.affiliate-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.affiliate-partners {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.affiliate-partners h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 32px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.partner-logo {
    font-size: 2rem;
    margin-bottom: 8px;
}

.partner-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
    text-align: center;
}

/* Affiliate Features */
.affiliate-features {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748B;
    flex: 1;
}

.tab-btn.active {
    background: white;
    color: #1E3A8A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 24px;
}

/* Feature Demo */
.feature-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.demo-screen {
    background: #1F2937;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.demo-header {
    background: #374151;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-header span {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.demo-controls {
    display: flex;
    gap: 6px;
}

.demo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6B7280;
}

.demo-content {
    padding: 20px;
    background: #111827;
    color: white;
}

.demo-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.metric {
    text-align: center;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-bottom: 4px;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #10B981;
}

.demo-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.link-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
}

.link-platform {
    background: #1E3A8A;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-align: center;
}

.link-earnings {
    color: #10B981;
    font-weight: 600;
}

.demo-features ul {
    list-style: none;
    padding: 0;
}

.demo-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: #4B5563;
}

.demo-features li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
}

/* Optimization Features */
.optimization-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.opt-feature {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
}

.opt-feature i {
    font-size: 1.5rem;
    color: #1E3A8A;
    margin-top: 4px;
}

.opt-feature h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.opt-feature p {
    color: #6B7280;
    line-height: 1.5;
}

/* Analytics Dashboard */
.analytics-dashboard {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.chart-container {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.analytics-insights {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
}

.insight-icon {
    font-size: 1.5rem;
}

.insight-title {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 2px;
}

.insight-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
}

/* ============================================
   HOSTING FEATURES
============================================ */

.hosting-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

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

.hosting-feature {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hosting-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hosting-feature .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F59E0B, #EAB308);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
}

.hosting-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 12px;
}

.hosting-feature p {
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hosting-feature ul {
    list-style: none;
    padding: 0;
}

.hosting-feature li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: #4B5563;
    font-size: 0.9rem;
}

.hosting-feature li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
}

/* Hosting Plans */
.hosting-plans h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1F2937;
    text-align: center;
    margin-bottom: 40px;
}

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

.plan-item {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-item:hover {
    border-color: #10B981;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.plan-item.featured {
    border-color: #F59E0B;
    box-shadow: 0 8px 24px rgba(245, 158, 11, 0.2);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-header {
    margin-bottom: 24px;
}

.plan-header h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1E3A8A;
}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #6B7280;
}

.plan-features {
    margin-bottom: 24px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    color: #4B5563;
}

.plan-features li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
}

/* ============================================
   INTEGRATION SECTION
============================================ */

.integration-section {
    padding: 100px 0;
    background: #f8fafc;
}

.integration-visual {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 60px auto;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #1E3A8A, #10B981);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
}

.center-logo {
    text-align: center;
}

.center-logo i {
    font-size: 2rem;
    margin-bottom: 8px;
    display: block;
    animation: rotate 10s linear infinite;
}

.center-logo span {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.integration-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: white;
    border: 3px solid #10B981;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #1F2937;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.node:hover {
    transform: scale(1.1);
    border-color: #1E3A8A;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.2);
}

.node i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    color: #10B981;
}

.node.automation { top: 0; left: 50%; transform: translateX(-50%); }
.node.affiliate { top: 20%; right: 0; }
.node.hosting { bottom: 20%; right: 0; }
.node.analytics { bottom: 0; left: 50%; transform: translateX(-50%); }
.node.content { bottom: 20%; left: 0; }
.node.social { top: 20%; left: 0; }

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.connection-lines line {
    animation: pulse-line 3s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.integration-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 80px;
}

.benefit-item {
    text-align: center;
    padding: 24px;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #10B981;
    margin-bottom: 16px;
    display: block;
}

.benefit-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #6B7280;
    line-height: 1.5;
}

/* ============================================
   NETWORK TABS
============================================ */

.network-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 12px;
    flex-wrap: wrap;
}

.network-tab {
    background: transparent;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #64748B;
    flex: 1;
    min-width: 120px;
    font-size: 0.9rem;
}

.network-tab.active {
    background: white;
    color: #1E3A8A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.network-tab:hover:not(.active) {
    background: rgba(255, 255, 255, 0.7);
    color: #374151;
}

.network-content {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.network-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.network-content .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.network-content .partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.network-content .partner-item:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #10b981;
}

.network-content .partner-logo {
    font-size: 1.8rem;
    margin-bottom: 8px;
    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.network-content .partner-item:hover .partner-logo {
    filter: grayscale(0);
}

.network-content .partner-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #374151;
    line-height: 1.3;
}

.network-content .partner-item .partner-commission {
    font-size: 0.75rem;
    color: #10b981;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
    margin-top: 4px;
}

/* ============================================
   RESPONSIVE DESIGN
============================================ */

@media (max-width: 1200px) {
    .content-grid {
        gap: 40px;
    }
    
    .solution-header {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .integration-visual {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-sidebar {
        position: static;
        order: -1;
    }
    
    .feature-demo {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .analytics-dashboard {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .plan-item.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* .page-title 반응형은 app.css가 담당(중복 제거) */
    .solution-header h2 {
        font-size: 2rem;
    }
    
    .solution-title-area {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .solution-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-tabs {
        flex-direction: column;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hosting-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-visual {
        width: 300px;
        height: 300px;
    }
    
    .node {
        width: 60px;
        height: 60px;
        font-size: 0.6rem;
    }
    
    .node i {
        font-size: 1rem;
    }
    
    .network-tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .network-tab {
        min-width: auto;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .network-content .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .network-content .partner-item {
        padding: 16px 12px;
    }
    
    .network-content .partner-logo {
        font-size: 1.5rem;
    }
    
    .network-content .partner-item span {
        font-size: 0.8rem;
    }
}