/* ==============================================
   Managed Product Landing Page Styles
   server-landing.css를 확장하는 상품별 페이지 CSS
============================================== */

/* ===== Product Hero Variants ===== */
.product-hero {
    padding-top: 120px;
}

.product-hero.basic-hero::before {
    background: radial-gradient(ellipse at center, rgba(49, 130, 246, 0.08) 0%, transparent 60%);
}

.product-hero.operating-hero::before {
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
}

.product-hero.security-hero::before {
    background: radial-gradient(ellipse at center, rgba(249, 115, 22, 0.08) 0%, transparent 60%);
}

.product-hero.expert-hero::before {
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
}

.product-hero.ito-hero::before {
    background: radial-gradient(ellipse at center, rgba(102, 126, 234, 0.08) 0%, transparent 60%);
}

/* Hero Badge Variants */
.hero-badge.popular {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-color: rgba(0, 212, 170, 0.3);
}

.hero-badge.security {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15) 0%, rgba(251, 146, 60, 0.15) 100%);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.hero-badge.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.15) 100%);
    border-color: rgba(139, 92, 246, 0.3);
    color: #8b5cf6;
}

.hero-badge.ito {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.3);
    color: #667eea;
}

/* ===== Product Price Card ===== */
.product-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    max-width: 320px;
}

.product-price-card.featured {
    border: 2px solid var(--primary);
}

.product-price-card.security {
    border: 2px solid #f97316;
}

.product-price-card.premium {
    border: 2px solid #8b5cf6;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}

.product-price-card.ito {
    border: 2px solid #667eea;
    background: linear-gradient(180deg, #eef2ff 0%, #fff 100%);
}

.product-price-card .popular-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.product-price-card .premium-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    animation: rotate 10s linear infinite;
}

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

.product-price-card .price-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-price-card .price-badge.free {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-price-card .price-badge.discount {
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: #fff;
}

.product-price-card .ito-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-price-card .price-name {
    font-size: 28px;
    font-weight: 800;
    color: #191f28;
    margin-bottom: 16px;
}

.product-price-card .price-amount {
    margin-bottom: 8px;
}

.product-price-card .price-amount .original {
    display: block;
    font-size: 16px;
    color: #8b95a1;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.product-price-card .price-amount .current {
    font-size: 18px;
    color: #191f28;
}

.product-price-card .price-amount .current strong {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
}

.product-price-card.security .price-amount .current strong {
    color: #f97316;
}

.product-price-card.premium .price-amount .current strong {
    color: #8b5cf6;
}

.product-price-card.ito .price-amount .current strong {
    color: #667eea;
}

.product-price-card .price-note {
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 24px;
}

.product-price-card .price-cta-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.product-price-card .price-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

.product-price-card .price-cta-btn.security {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
}

.product-price-card .price-cta-btn.security:hover {
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.product-price-card .price-cta-btn.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.product-price-card .price-cta-btn.premium:hover {
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.product-price-card .price-cta-btn.ito {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-price-card .price-cta-btn.ito:hover {
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

/* ===== Included Section ===== */
.product-included-section {
    padding: 100px 0;
    background: #fff;
}

.included-highlight {
    text-align: center;
    padding: 20px 30px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 14px;
    margin-bottom: 50px;
}

.included-highlight .highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.included-highlight .highlight-badge.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.included-highlight .highlight-badge.ito {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.included-highlight p {
    font-size: 15px;
    color: #6b7684;
}

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

.included-card {
    padding: 30px;
    background: #f8fafb;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.included-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.included-card.highlight {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.included-card.highlight.security {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, rgba(251, 146, 60, 0.08) 100%);
    border-color: rgba(249, 115, 22, 0.2);
}

.included-card.highlight.premium {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(167, 139, 250, 0.08) 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.included-card.highlight.ito {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    border-color: rgba(102, 126, 234, 0.2);
}

.included-card .included-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.included-card .included-icon i {
    font-size: 24px;
    color: #fff;
}

.included-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.included-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 16px;
}

.included-card .included-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.15);
    color: var(--primary);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.included-card .included-tag.new {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.included-card .included-tag.security {
    background: rgba(249, 115, 22, 0.15);
    color: #f97316;
}

.included-card .included-tag.premium {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.included-card .included-tag.ito {
    background: rgba(102, 126, 234, 0.15);
    color: #667eea;
}

/* ===== Not Included Section ===== */
.product-not-included-section {
    padding: 100px 0;
    background: #f8fafb;
}

.section-badge.warning {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.not-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.not-included-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e8eb;
}

.not-included-item i {
    font-size: 18px;
    color: #e74c3c;
}

.not-included-item span {
    flex: 1;
    font-size: 15px;
    color: #6b7684;
}

.not-included-item .upgrade-link {
    padding: 6px 12px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.not-included-item .upgrade-link:hover {
    transform: scale(1.05);
}

.not-included-item .upgrade-link.ito {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.upgrade-cta p {
    font-size: 16px;
    color: #6b7684;
    margin-bottom: 20px;
}

.btn-upgrade {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-upgrade:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
}

.btn-upgrade.premium {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.btn-upgrade.premium:hover {
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

/* ===== Target Section ===== */
.product-target-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.target-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

.target-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.target-card .target-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.target-card .target-icon i {
    font-size: 28px;
    color: #fff;
}

.target-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.target-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== Comparison Section ===== */
.product-comparison-section {
    padding: 100px 0;
    background: #fff;
}

.quick-compare-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
}

.quick-compare-table table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.quick-compare-table th,
.quick-compare-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e8eb;
}

.quick-compare-table th {
    background: #f8fafb;
    font-size: 14px;
    font-weight: 600;
    color: #4e5968;
}

.quick-compare-table th:first-child {
    text-align: left;
}

.quick-compare-table th.current {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.quick-compare-table td {
    font-size: 14px;
    color: #6b7684;
}

.quick-compare-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #191f28;
}

.quick-compare-table td.current {
    background: rgba(0, 212, 170, 0.05);
    font-weight: 600;
    color: #191f28;
}

.quick-compare-table .text-primary {
    color: var(--primary);
}

.quick-compare-table .text-gray {
    color: #ccc;
}

.compare-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-compare-detail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #191f28;
    color: #fff;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-compare-detail:hover {
    background: #2d3748;
    transform: translateY(-2px);
}

/* ===== Benefits Section ===== */
.product-benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

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

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

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
}

.benefit-card .benefit-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ===== Security Specific Sections ===== */
.security-threats-section {
    padding: 100px 0;
    background: #fff;
}

.section-badge.danger {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

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

.threat-card {
    padding: 30px;
    background: #fff;
    border: 1px solid #e5e8eb;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.threat-card:hover {
    border-color: #e74c3c;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.1);
}

.threat-card .threat-icon {
    width: 64px;
    height: 64px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.threat-card .threat-icon i {
    font-size: 28px;
    color: #e74c3c;
}

.threat-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.threat-card p {
    font-size: 14px;
    color: #6b7684;
    line-height: 1.6;
    margin-bottom: 16px;
}

.threat-card .threat-stat {
    display: inline-block;
    padding: 8px 14px;
    background: #fff8f7;
    color: #e74c3c;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.solution-intro {
    text-align: center;
}

.solution-intro .solution-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.solution-intro .solution-arrow i {
    font-size: 24px;
    color: #fff;
}

.solution-intro p {
    font-size: 18px;
    color: #191f28;
}

.solution-intro p strong {
    color: var(--primary);
}

/* Security Architecture */
.security-architecture-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.architecture-visual {
    max-width: 600px;
    margin: 0 auto;
}

.architecture-visual .layer {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: 0;
}

.architecture-visual .layer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.architecture-visual .layer-icon i {
    font-size: 26px;
    color: #fff;
}

.architecture-visual .layer-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.architecture-visual .layer-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.architecture-visual .layer-connector {
    text-align: center;
    padding: 16px 0;
    color: var(--primary);
    font-size: 20px;
}

/* ===== Expert Specific Sections ===== */
.expert-highlights-section {
    padding: 60px 0;
    background: #f8fafb;
    border-bottom: 1px solid #e5e8eb;
}

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

.highlight-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.highlight-card .highlight-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-card .highlight-icon i {
    font-size: 24px;
    color: #fff;
}

.highlight-card .highlight-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 4px;
}

.highlight-card .highlight-content p {
    font-size: 14px;
    color: #6b7684;
}

/* AI Security Section */
.ai-security-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ai-feature {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.ai-feature .ai-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.ai-feature .ai-feature-icon i {
    font-size: 26px;
    color: #fff;
}

.ai-feature h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.ai-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Incident Care Section */
.incident-care-section {
    padding: 100px 0;
    background: #fff;
}

.incident-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.incident-step {
    display: flex;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e8eb;
}

.incident-step:last-child {
    border-bottom: none;
}

.incident-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.incident-step .step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.incident-step .step-content p {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
}

/* ===== ITO Specific Sections ===== */
.ito-concept-section {
    padding: 80px 0;
    background: #f8fafb;
}

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

.concept-text {
    margin-bottom: 40px;
}

.concept-text p {
    font-size: 18px;
    color: #4e5968;
    line-height: 1.8;
}

.concept-text strong {
    color: var(--primary);
}

.concept-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.concept-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.concept-benefit i {
    font-size: 20px;
    color: #667eea;
}

.concept-benefit span {
    font-size: 15px;
    font-weight: 600;
    color: #191f28;
}

/* ITO Scope Section */
.ito-scope-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.scope-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.scope-card {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.scope-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
}

.scope-card .scope-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.scope-card .scope-icon i {
    font-size: 26px;
    color: #fff;
}

.scope-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.scope-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scope-card ul li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.scope-card ul li:last-child {
    border-bottom: none;
}

/* ITO Process Section */
.ito-process-section {
    padding: 100px 0;
    background: #fff;
}

.ito-timeline {
    max-width: 700px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #e5e8eb;
}

.timeline-step:last-child {
    border-bottom: none;
}

.timeline-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-step .step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
}

.timeline-step .step-content p {
    font-size: 15px;
    color: #6b7684;
    line-height: 1.6;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .included-grid,
    .threats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ai-features,
    .scope-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .target-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .not-included-grid,
    .highlights-grid,
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-hero .hero-visual {
        display: block;
    }

    .product-price-card {
        margin: 0 auto;
    }

    .included-grid,
    .threats-grid,
    .not-included-grid,
    .target-grid,
    .highlights-grid,
    .benefits-grid,
    .ai-features,
    .scope-grid {
        grid-template-columns: 1fr;
    }

    .concept-benefits {
        flex-direction: column;
        align-items: center;
    }
}
