.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.comp-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(7, 17, 31, 0.01);
    border-top: 4px solid var(--danger);
    border-left: 1px solid rgba(7, 17, 31, 0.02);
}

.comp-card.success-theme {
    border-top-color: var(--success);
}

.comp-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.diagram-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diagram-item {
    display: flex;
    align-items: flex-start;
    background: var(--background);
    padding: 18px;
    border-radius: 12px;
}

.diagram-text-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.diagram-text-block strong {
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
}

.diagram-text-block span {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.diagram-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.comp-card:not(.success-theme) .diagram-icon {
    background: #fee2e2;
    color: var(--danger);
}

.comp-card.success-theme .diagram-icon {
    background: #dcfce7;
    color: var(--success);
}

.diagram-arrow {
    text-align: center;
    color: var(--gray-400);
    font-weight: bold;
    font-size: 0.85rem;
    padding: 4px 0;
}

.platform-dark-panel {
    background: linear-gradient(135deg, #07111F 0%, #030A14 100%);
    color: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(7, 17, 31, 0.15);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: var(--transition-smooth);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-2px);
}

.platform-card h3 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.platform-card p {
    font-size: 0.9rem;
    color: var(--gray-400);
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 1100px) {
    .game-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .game-grid {
        grid-template-columns: 1fr;
    }
}

.game-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(7, 17, 31, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
}

.game-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(7, 17, 31, 0.03);
    transform: translateY(-2px);
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.game-no {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-dark);
    background: #e6f7f6;
    padding: 2px 8px;
    border-radius: 4px;
}

.game-tag {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-600);
    background: var(--background);
    padding: 2px 6px;
    border-radius: 4px;
}

.game-card h4 {
    font-size: 1.05rem;
    color: var(--dark);
    margin-bottom: 6px;
    font-weight: 700;
}

.game-card p {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 14px;
    flex-grow: 1;
}

.game-btn {
    display: block;
    text-align: center;
    background: var(--background);
    color: var(--primary-dark);
    padding: 6px 0;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.game-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.flow-container {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    margin-top: 32px;
    border: 1px solid rgba(7, 17, 31, 0.04);
    text-align: center;
    font-size: 0.95rem;
}

.timeline-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.timeline-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(7, 17, 31, 0.04);
    border-left: 4px solid var(--secondary);
    display: flex;
    gap: 16px;
}

.timeline-card.s2 {
    border-left-color: var(--primary-dark);
}

.timeline-card.s3 {
    border-left-color: var(--accent);
}

.tl-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-400);
}

.tl-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.tl-content p {
    font-size: 0.85rem;
    color: var(--gray-600);
}

.hw-showcase-grid-3way {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

@media (max-width: 992px) {
    .hw-showcase-grid-3way {
        grid-template-columns: 1fr;
    }
}

.hw-show-card-3way {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(7, 17, 31, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(7, 17, 31, 0.01);
}

.hw-img-box-3way {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    background-color: #ECEFF1;
}

.hw-img-rope {
    background-image: url('../assets/images/rope.webp');
}

.hw-img-band {
    background-image: url('../assets/images/band.webp');
}

.hw-img-app-container {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    margin-bottom: 20px;
    background-image: url('../assets/images/app.webp');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #F8FAFC;
}

.hw-extend-wrapper-full {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    margin-top: 16px;
}

@media (max-width: 992px) {
    .hw-extend-wrapper-full {
        grid-template-columns: 1fr;
    }
}

.algo-table-box-full {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(7, 17, 31, 0.04);
    box-shadow: 0 4px 20px rgba(7, 17, 31, 0.01);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.prd-table {
    width: 100%;
    min-width: 520px;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.85rem;
}

.prd-table th,
.prd-table td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(7, 17, 31, 0.04);
}

.prd-table th {
    background: rgba(14, 165, 164, 0.03);
    color: var(--primary-dark);
    font-weight: 700;
}

.cloud-profile-box-full {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(13, 148, 136, 0.15);
    box-shadow: 0 10px 30px rgba(13, 148, 136, 0.02);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cloud-profile-header {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(13, 148, 136, 0.1);
    padding-bottom: 10px;
}

.profile-row-item {
    background: var(--background);
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--dark);
    border-left: 3px solid var(--primary);
}

.download-spec-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    background: var(--primary-dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: 8px;
}

.download-spec-btn:hover {
    background: #0b7a70;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(13, 148, 136, 0.2);
}

.sdgs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sdgs-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(7, 17, 31, 0.04);
}

.sdgs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
}

.sdgs-card.s3::before {
    background: var(--sdgs-3);
}

.sdgs-card.s4::before {
    background: var(--sdgs-4);
}

.sdgs-card.s10::before {
    background: var(--sdgs-10);
}

.sdgs-num {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.05;
    position: absolute;
    right: 15px;
    top: 5px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
}

.faq-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid rgba(7, 17, 31, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 18px;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
}

.faq-q span {
    color: var(--primary-dark);
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.faq-item .faq-q[aria-expanded="true"] span {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 18px;
}

.faq-a p {
    color: var(--gray-600);
    padding-bottom: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(7, 17, 31, 0.1);
    border-radius: 6px;
    background: var(--white);
    font-family: inherit;
}