/* ========================================
   Detail Page Styles - Figma Design Match
   ======================================== */

/* ========================================
   Hero Section - Figma Layout
   ======================================== */
.detail-hero {
    padding: 40px 0;
    background: #f5f5f5;
}

.detail-hero-content {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Side: Product Card */
.hero-left {
    position: sticky;
    top: 120px;
}

.hero-product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.hero-product-card .product-image {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.hero-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-info {
    padding: 28px 24px;
    text-align: center;
    border-top: 1px solid #eee;
}

.product-card-info h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.product-card-info p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
}

/* Right Side */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Right Side: Info Section */
.hero-info-section {
    background: #fff;
    padding: 28px 32px;
    border-radius: 12px 12px 0 0;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #888;
}

.breadcrumb a {
    color: #888;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb .sep {
    color: #ccc;
}

.breadcrumb .current {
    color: #333;
}

/* Hero Title */
.hero-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
    line-height: 1.3;
}

.hero-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
}

/* Hero Tags */
.hero-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-tags .tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 9999px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 500;
}

.hero-tags .tag i {
    font-size: 12px;
}

.hero-tags .tag-yellow {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    color: #92400e;
}

.hero-tags .tag-green {
    background: #ecfdf5;
    border: 1px solid #34d399;
    color: #065f46;
}

.hero-tags .tag-blue {
    background: #eff6ff;
    border: 1px solid #60a5fa;
    color: #1e40af;
}

/* Hero Price Box */
.hero-price-box {
    background: #fbbf24;
    border: 2px solid #fbbf24;
    border-radius: 8px;
    padding: 16px 24px;
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.hero-price-box .price-amount {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #000;
}

.hero-price-box .price-unit {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

/* Order Form Section */
.hero-order-form {
    background: #fff;
    padding: 28px 32px;
    border-top: 1px solid #eee;
}

.hero-order-form .form-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

.hero-order-form .form-group {
    margin-bottom: 16px;
}

.hero-order-form .form-group > label {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

/* Select Wrapper */
.select-wrapper {
    position: relative;
}

.hero-order-form .form-select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero-order-form .form-select:focus {
    outline: none;
    border-color: #fbbf24;
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 12px;
    pointer-events: none;
}

/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fbbf24;
    cursor: pointer;
}

.checkbox-group label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    color: #555;
    cursor: pointer;
    margin-bottom: 0 !important;
}

/* Quantity & Payment Row */
.quantity-payment-row {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-top: 1px solid #E5E5E5;
}

/* 수량 라인 */
.quantity-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quantity-line label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
}

.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f5f5f5;
}

.qty-btn:active {
    background: #eee;
}

.qty-minus {
    border-radius: 6px 0 0 6px;
    border-right: none;
}

.qty-plus {
    border-radius: 0 6px 6px 0;
    border-left: none;
}

.quantity-control input {
    width: 60px;
    height: 36px;
    padding: 0 8px;
    border: 1px solid #ddd;
    border-radius: 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    text-align: center;
    -moz-appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-control input:focus {
    outline: none;
    border-color: #fbbf24;
}

/* 결제 금액 라인 */
.payment-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment-line label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.payment-amount {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

.payment-amount .currency {
    font-size: 18px;
    font-weight: 500;
    color: #666;
    margin-left: 2px;
}

/* Purchase Button */
.btn-purchase {
    width: 100%;
    padding: 16px 24px;
    background: #fbbf24;
    border: none;
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #222;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-purchase:hover {
    background: #f59e0b;
}

/* Info Banner */
.hero-info-banner {
    background: #fef3c7;
    padding: 14px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    color: #92400e;
    margin-top: 16px;
}

.hero-info-banner i {
    font-size: 16px;
    color: #f59e0b;
}

/* ========================================
   About Section
   ======================================== */
.detail-about {
    padding: 80px 0;
    background: #fff;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    padding-right: 20px;
}

.about-checklist {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-checklist .about-features {
    background: #fafafa;
    padding: 24px 32px;
    border-radius: 16px;
    width: 100%;
}

.section-label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #FFC107;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
}

.section-desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 0;
    line-height: 1.7;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #eee;
}

.about-features li:last-child {
    border-bottom: none;
}

.about-features li i {
    color: #FFC107;
    font-size: 18px;
    font-weight: bold;
}

.about-images {
    display: flex;
    align-items: center;
}

.about-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.about-image-item {
    border-radius: 16px;
    overflow: hidden;
    background: #f5f0e8;
    aspect-ratio: 1;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   Digital Era Section
   ======================================== */
.detail-digital-era {
    padding: 80px 0;
    background: linear-gradient(180deg, #fffef5 0%, #fff 100%);
}

.digital-era-banner {
    background: #fff;
    border: 3px solid #FFC107;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(255, 193, 7, 0.15);
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

.digital-era-banner .banner-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.digital-era-banner .banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.digital-era-banner .banner-content {
    flex: 1;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.digital-era-banner .banner-icon {
    width: 60px;
    height: 60px;
    background: #e3f2fd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.digital-era-banner .banner-icon i {
    font-size: 24px;
    color: #2196F3;
}

.digital-era-banner h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin-bottom: 16px;
    line-height: 1.4;
}

.digital-era-banner p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.digital-era-banner p strong {
    color: #333;
}

.digital-era-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.digital-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.digital-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.digital-card.popular {
    border: 2px solid #FFC107;
}

/* Card Badge Decoration - Semi-circular design */
.digital-card .card-badge-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, transparent 50%, rgba(255, 193, 7, 0.15) 50%);
    border-radius: 0 16px 0 0;
}

.digital-card.popular .card-badge-decoration {
    background: linear-gradient(135deg, transparent 50%, rgba(255, 193, 7, 0.3) 50%);
}

/* Card Badge Text */
.digital-card .card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f5f5f5;
    color: #666;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    letter-spacing: 0.3px;
    z-index: 1;
}

.digital-card.popular .card-badge {
    background: #FFC107;
    color: #000;
    font-weight: 700;
}

.digital-card .card-icon {
    width: 56px;
    height: 56px;
    background: #e3f2fd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.digital-card .card-icon i {
    font-size: 24px;
    color: #2196F3;
}

.digital-card h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.digital-card p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.digital-era-footer {
    text-align: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* ========================================
   Our DB Section
   ======================================== */
.detail-our-db {
    padding: 80px 0;
    background: #fff;
}

.our-db-header {
    text-align: center;
    margin-bottom: 40px;
}

.our-db-icon {
    width: 72px;
    height: 72px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.our-db-icon i {
    font-size: 32px;
    color: #fff;
}

.our-db-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.our-db-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.our-db-checklist {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.our-db-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f9f9f9;
    padding: 20px 24px;
    border-radius: 12px;
}

.our-db-item .check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.our-db-item .check-icon i {
    font-size: 14px;
    color: #fff;
}

.our-db-item span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.our-db-banner {
    background: #FFC107;
    border-radius: 16px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.db-banner-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.db-banner-icon i {
    font-size: 22px;
    color: #000;
}

.our-db-banner span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000;
}

/* Our DB Section Responsive */
@media (max-width: 768px) {
    .detail-our-db {
        padding: 60px 0;
    }

    .our-db-icon {
        width: 60px;
        height: 60px;
    }

    .our-db-icon i {
        font-size: 26px;
    }

    .our-db-title {
        font-size: 26px;
    }

    .our-db-subtitle {
        font-size: 14px;
    }

    .our-db-item {
        padding: 16px 20px;
    }

    .our-db-item span {
        font-size: 14px;
    }

    .our-db-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }

    .our-db-banner span {
        font-size: 16px;
    }
}

/* ========================================
   DB Advantages Section
   ======================================== */
.detail-db-advantages {
    padding: 80px 0;
    background: #f5f0e8;
}

.db-adv-header {
    text-align: center;
    margin-bottom: 48px;
}

.db-adv-icon {
    width: 64px;
    height: 64px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.db-adv-icon i {
    font-size: 28px;
    color: #fff;
}

.db-adv-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.db-adv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.db-adv-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.db-adv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.db-adv-card .card-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #e8e8e8;
}

.db-adv-card .card-icon-box {
    width: 56px;
    height: 56px;
    background: #FFC107;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.db-adv-card h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.db-adv-card p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.db-adv-card .card-link {
    display: inline-block;
    background: #FFC107;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.db-adv-card .card-link:hover {
    background: #e6ac00;
}

/* DB Advantages - Bottom Row Centering */
.db-adv-cards .db-adv-card:nth-child(4) {
    grid-column: 1 / 2;
    justify-self: end;
    margin-right: 12px;
}

.db-adv-cards .db-adv-card:nth-child(5) {
    grid-column: 2 / 3;
    justify-self: start;
    margin-left: 12px;
}

/* DB Advantages Section Responsive */
@media (max-width: 992px) {
    .db-adv-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .db-adv-cards .db-adv-card:nth-child(4),
    .db-adv-cards .db-adv-card:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        margin: 0;
    }

    .db-adv-cards .db-adv-card:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .detail-db-advantages {
        padding: 60px 0;
    }

    .db-adv-icon {
        width: 56px;
        height: 56px;
    }

    .db-adv-icon i {
        font-size: 24px;
    }

    .db-adv-title {
        font-size: 26px;
    }

    .db-adv-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .db-adv-cards .db-adv-card:nth-child(4),
    .db-adv-cards .db-adv-card:nth-child(5) {
        grid-column: auto;
        justify-self: auto;
        margin: 0;
        max-width: none;
    }

    .db-adv-card {
        padding: 24px 20px;
    }

    .db-adv-card .card-number {
        font-size: 28px;
    }

    .db-adv-card .card-icon-box {
        width: 48px;
        height: 48px;
    }

    .db-adv-card .card-icon-box i {
        font-size: 20px;
    }
}

/* ========================================
   Recommendation Section
   ======================================== */
.detail-recommendation {
    padding: 80px 0;
    background: #fff;
}

.recommend-header {
    text-align: center;
    margin-bottom: 48px;
}

.recommend-icon {
    width: 72px;
    height: 72px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.recommend-icon i {
    font-size: 32px;
    color: #000;
}

.recommend-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.recommend-cards {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.recommend-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recommend-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #d0d0d0;
}

.recommend-card-icon {
    width: 64px;
    height: 64px;
    background: #4A7CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.recommend-card p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Recommendation Section Responsive */
@media (max-width: 1024px) {
    .recommend-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .detail-recommendation {
        padding: 60px 0;
    }

    .recommend-icon {
        width: 60px;
        height: 60px;
    }

    .recommend-icon i {
        font-size: 26px;
    }

    .recommend-title {
        font-size: 28px;
    }

    .recommend-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .recommend-card {
        padding: 32px 16px;
    }

    .recommend-card-icon {
        width: 56px;
        height: 56px;
    }

    .recommend-card-icon i {
        font-size: 22px;
    }

    .recommend-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .recommend-cards {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   3 Steps Section
   ======================================== */
.detail-three-steps {
    padding: 80px 0;
    background: #f5f5f5;
}

.steps-header {
    text-align: center;
    margin-bottom: 48px;
}

.steps-icon {
    width: 64px;
    height: 64px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.steps-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.steps-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

/* Vertical dotted line */
.steps-timeline::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 60px;
    bottom: 60px;
    width: 2px;
    border-left: 2px dashed #d0d0d0;
}

.step-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.step-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #4A7CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-icon i {
    font-size: 20px;
    color: #fff;
}

.step-text h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.step-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-text ul li {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 14px;
}

.step-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #999;
}

.step-badge {
    background: #f0f4ff;
    color: #4A7CFF;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* 3 Steps Section Responsive */
@media (max-width: 768px) {
    .detail-three-steps {
        padding: 60px 0;
    }

    .steps-icon {
        width: 56px;
        height: 56px;
    }

    .steps-icon i {
        font-size: 24px;
    }

    .steps-title {
        font-size: 26px;
    }

    .steps-subtitle {
        font-size: 14px;
    }

    .steps-timeline::before {
        left: 24px;
        top: 50px;
        bottom: 50px;
    }

    .step-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
    }

    .step-content {
        gap: 16px;
    }

    .step-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .step-icon i {
        font-size: 16px;
    }

    .step-text h4 {
        font-size: 15px;
    }

    .step-text ul li {
        font-size: 13px;
    }

    .step-badge {
        align-self: flex-end;
    }
}

/* ========================================
   Customer Reviews Section
   ======================================== */
.detail-reviews {
    padding: 80px 0;
    background: #f9f9f9;
}

.reviews-header {
    text-align: center;
    margin-bottom: 48px;
}

.reviews-icon {
    width: 72px;
    height: 72px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.reviews-icon i {
    font-size: 32px;
    color: #fff;
}

.reviews-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.reviews-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.review-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #4A7CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviewer-avatar i {
    font-size: 20px;
    color: #fff;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.review-date {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 14px;
    color: #FFC107;
}

.review-rating i.far {
    color: #ddd;
}

.review-content {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    line-height: 1.7;
    margin-bottom: 16px;
}

.review-content strong {
    color: #222;
    font-weight: 600;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.review-tag {
    background: #e8f4ff;
    color: #4A7CFF;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 16px;
}

/* Customer Reviews Section Responsive */
@media (max-width: 768px) {
    .detail-reviews {
        padding: 60px 0;
    }

    .reviews-icon {
        width: 60px;
        height: 60px;
    }

    .reviews-icon i {
        font-size: 26px;
    }

    .reviews-title {
        font-size: 28px;
    }

    .reviews-subtitle {
        font-size: 14px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 20px;
    }

    .review-header {
        flex-wrap: wrap;
    }

    .review-rating {
        width: 100%;
        margin-top: 8px;
    }

    .reviewer-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .reviewer-avatar i {
        font-size: 16px;
    }

    .reviewer-info h4 {
        font-size: 14px;
    }

    .review-content {
        font-size: 13px;
    }
}

/* ========================================
   A/S Policy Section
   ======================================== */
.detail-as-policy {
    padding: 80px 0;
    background: linear-gradient(180deg, #e8f4fc 0%, #f5f5f5 100%);
}

.as-header {
    text-align: center;
    margin-bottom: 40px;
}

.as-icon {
    width: 64px;
    height: 64px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.as-title {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.as-subtitle {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

/* A/S Conditions Card */
.as-conditions-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.as-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e8f4ff;
    color: #4A7CFF;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.as-badge i {
    font-size: 14px;
}

.as-conditions-card h3 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.as-conditions-desc {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-bottom: 28px;
}

.as-conditions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.as-condition-item {
    text-align: center;
}

.condition-icon {
    width: 56px;
    height: 56px;
    background: #4A7CFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.condition-icon i {
    font-size: 22px;
    color: #fff;
}

.as-condition-item span {
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    margin-bottom: 4px;
}

.as-condition-item small {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #999;
}

/* Warning Card */
.as-warning-card {
    background: #fffbeb;
    border: 1px solid #ffeeba;
    border-radius: 16px;
    padding: 28px 32px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.as-warning-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #b8860b;
    margin-bottom: 20px;
}

.as-warning-card h3 i {
    font-size: 20px;
    color: #FFC107;
}

.warning-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.warning-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 20px;
}

.warning-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

.warning-content h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}

.warning-content p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    margin: 0;
}

.warning-content p strong {
    color: #e74c3c;
}

/* CTA Button */
.as-cta {
    text-align: center;
    margin-bottom: 24px;
}

.btn-as-inquiry {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFC107;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-as-inquiry:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

.btn-as-inquiry i {
    font-size: 18px;
}

/* Contact Info */
.as-contact {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.as-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
}

.as-contact .contact-item i {
    font-size: 16px;
    color: #4A7CFF;
}

/* A/S Policy Section Responsive */
@media (max-width: 768px) {
    .detail-as-policy {
        padding: 60px 0;
    }

    .as-icon {
        width: 56px;
        height: 56px;
    }

    .as-icon i {
        font-size: 24px;
    }

    .as-title {
        font-size: 26px;
    }

    .as-conditions-card {
        padding: 24px 20px;
    }

    .as-conditions-card h3 {
        font-size: 18px;
    }

    .as-conditions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .condition-icon {
        width: 48px;
        height: 48px;
    }

    .condition-icon i {
        font-size: 18px;
    }

    .as-condition-item span {
        font-size: 12px;
    }

    .as-condition-item small {
        font-size: 10px;
    }

    .as-warning-card {
        padding: 20px;
    }

    .as-warning-card h3 {
        font-size: 16px;
    }

    .warning-item {
        padding: 12px 16px;
    }

    .warning-content h4 {
        font-size: 14px;
    }

    .warning-content p {
        font-size: 12px;
    }

    .btn-as-inquiry {
        padding: 14px 36px;
        font-size: 15px;
    }

    .as-contact {
        gap: 20px;
    }

    .as-contact .contact-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .as-conditions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .as-contact {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

/* ========================================
   Why Target Banner
   ======================================== */
.detail-why-banner {
    padding: 60px 0;
    background: #FFC107;
}

.why-banner-content {
    text-align: center;
}

.why-banner-content h2 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.why-banner-content p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

.btn-dark {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-dark:hover {
    background: #111;
}

/* ========================================
   Stats Section
   ======================================== */
.detail-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #444 100%);
    color: #fff;
}

.detail-stats .section-title {
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.detail-stats .section-desc {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 48px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: #FFC107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.stat-icon i {
    font-size: 24px;
    color: #333;
}

.stat-value {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #FFC107;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   Recommendation Section
   ======================================== */
.detail-recommendation {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-recommendation .section-title {
    text-align: center;
}

.detail-recommendation .section-desc {
    text-align: center;
    margin-bottom: 48px;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.recommendation-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.recommendation-card:hover {
    border-color: #FFC107;
    transform: translateY(-4px);
}

.recommendation-card.featured {
    border-color: #FFC107;
    box-shadow: 0 8px 30px rgba(255, 193, 7, 0.2);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFC107;
    color: #333;
    padding: 6px 20px;
    border-radius: 20px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 12px;
    font-weight: 700;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.recommendation-card.featured .card-icon {
    background: linear-gradient(135deg, #FFC107, #FFD54F);
}

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

.recommendation-card.featured .card-icon i {
    color: #fff;
}

.recommendation-card h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.recommendation-card p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   DB Advantages Section
   ======================================== */
.detail-db-advantages {
    padding: 80px 0;
    background: #fff;
}

.detail-db-advantages .section-title {
    text-align: center;
    margin-bottom: 48px;
}

.db-advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.db-advantage-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    position: relative;
}

.db-advantage-number {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #FFC107;
    opacity: 0.5;
    position: absolute;
    top: 16px;
    right: 24px;
}

.db-advantage-card h4 {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.db-advantage-card p {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* ========================================
   Benefits Section
   ======================================== */
.detail-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.detail-benefits .section-title {
    text-align: center;
}

.detail-benefits .section-desc {
    text-align: center;
    margin-bottom: 48px;
}

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

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFC107, #FFD54F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.benefit-item span {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

/* ========================================
   Inquiry Section
   ======================================== */
.detail-inquiry {
    padding: 80px 0;
    background: #fff;
}

.detail-inquiry .section-title {
    text-align: center;
}

.detail-inquiry .section-desc {
    text-align: center;
    margin-bottom: 48px;
}

.inquiry-box {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 48px;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.inquiry-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inquiry-form .form-group.full-width {
    grid-column: 1 / -1;
    margin-bottom: 24px;
}

.inquiry-form label {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #FFC107;
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-primary {
    background: #FFC107;
    color: #333;
    border: none;
    border-radius: 8px;
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #e6ac00;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .detail-hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-left {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-info-section {
        border-radius: 12px 12px 0 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .about-checklist .about-features {
        padding: 20px 24px;
    }

    .digital-era-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 32px;
    }

    .digital-era-banner {
        flex-direction: column;
    }

    .digital-era-banner .banner-image {
        flex: none;
        max-width: 100%;
        height: 250px;
    }

    .digital-era-banner .banner-content {
        padding: 32px 24px;
    }

    .digital-era-banner h2 {
        font-size: 22px;
    }

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

    .recommendation-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .db-advantages-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .detail-hero {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-info-section {
        padding: 20px 24px;
    }

    .hero-order-form {
        padding: 20px 24px;
    }

    .quantity-payment-row {
        gap: 12px;
    }

    .payment-amount {
        font-size: 28px;
    }

    .hero-price-box .price-amount {
        font-size: 28px;
    }

    .product-card-info h3 {
        font-size: 20px;
    }

    .product-card-info p {
        font-size: 14px;
    }

    .section-title {
        font-size: 26px;
    }

    .why-banner-content h2 {
        font-size: 24px;
    }

    .about-image-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .inquiry-box {
        padding: 32px 24px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-value {
        font-size: 18px;
    }

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

@media (max-width: 480px) {
    .detail-hero {
        padding: 16px 0;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-info-section {
        padding: 16px 20px;
    }

    .hero-order-form {
        padding: 16px 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-tags .tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .hero-price-box {
        padding: 12px 16px;
    }

    .hero-price-box .price-amount {
        font-size: 24px;
    }

    .product-card-info {
        padding: 20px 16px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .benefit-item {
        padding: 16px 12px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .db-advantage-card {
        padding: 24px;
    }

    .db-advantage-number {
        font-size: 36px;
    }
}

/* ========================================
   Animation Styles
   ======================================== */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* ========================================
   Footer Override
   ======================================== */
.footer {
    padding: 60px 0 40px;
}

.footer-brand img.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
}
