/*
 * 파일명: domain_parking.css
 * 경로: /assets/css/
 * 기능: 도메인 파킹 페이지 스타일 (메인 프로젝트 색상 테마 완전 적용)
 * 작성일: 2025-09-02
 * 수정일: 2025-09-03
 */

/* ========================================= */
/* 1. 색상 변수 및 전역 스타일                  */
/* ========================================= */

:root {
    --primary: #2E6157;
    --primary-dark: #1A3E39;
    --primary-light: #3F8175;
    --secondary: #00a880;
    --accent: #F8E06A;
    --dark: #E0EFEA;
    --medium: #A0B0A8;
    --light: #1A3E39;
    --white: #0B1E1A;
    --gradient-primary: linear-gradient(135deg, #2E6157, #1A3E39);
    --gradient-secondary: linear-gradient(135deg, #00a880, #006B5A);
    --gradient-accent: linear-gradient(135deg, #F8E06A, #D6C25B);
    --gradient-hero: linear-gradient(135deg, #2E6157 0%, #1A3E39 100%);
    --border: #3A6C63;
    --border-light: #4A7C73;
    --shadow-sm: 0 4px 8px rgba(11, 30, 26, 0.15);
    --shadow-md: 0 10px 20px rgba(11, 30, 26, 0.25);
    --shadow-lg: 0 20px 30px rgba(11, 30, 26, 0.35);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 기본 스타일 */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--primary); 
    color: var(--dark); 
    line-height: 1.7; 
    margin: 0; 
    padding: 0;
    opacity: 0; 
    transition: opacity 0.3s ease;
}
body.loaded { opacity: 1; }

/* 타이포그래피 */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif; 
    font-weight: 700; 
    color: var(--dark);
    margin: 0 0 .5rem; 
    line-height: 1.3; 
    letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; color: var(--medium); }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }

/* 포커스 스타일 */
button, .btn, .submit-btn, .form-control, .accordion-button {
    outline: none !important;
}
button:focus, .btn:focus, .submit-btn:focus {
    box-shadow: 0 0 0 .2rem rgba(248,224,106,.25) !important;
}
.form-control:focus {
    box-shadow: 0 0 0 .2rem rgba(248,224,106,.25) !important;
    border-color: var(--accent) !important;
}

/* ========================================= */
/* 2. 상단 네비게이션                          */
/* ========================================= */

.navbar {
    background: rgba(46, 97, 87, 0.95) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}
.navbar-brand { text-decoration: none; }
.nav-link { 
    color: var(--dark) !important; 
    font-weight: 500; 
    transition: var(--transition);
    border-radius: 20px; 
    padding: 8px 16px;
}
.nav-link:hover { 
    color: var(--accent) !important; 
    background: rgba(248,224,106,.1);
}
.dropdown-menu {
    background: var(--light); 
    border: 2px solid var(--border); 
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md); 
    min-width: 140px;
}
.dropdown-item { 
    color: var(--dark); 
    padding: 10px 16px; 
    transition: var(--transition); 
}
.dropdown-item:hover { 
    background: var(--accent); 
    color: var(--white); 
}
.dropdown-item.active { 
    background: var(--primary-light); 
    color: var(--dark); 
    font-weight: 600; 
}

/* ========================================= */
/* 3. 히어로 섹션 (심플하고 깔끔한 디자인)        */
/* ========================================= */
.hero-section {
    background: linear-gradient(135deg, #2E6157 0%, #1A3E39 100%);
    min-height: auto;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 100px 0 40px; /* 상단 100px, 하단 40px로 축소 */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23F8E06A' fill-opacity='0.03'%3E%3Ccircle cx='20' cy='20' r='1'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

/* 도메인명 */
.domain-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #F8E06A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    word-break: break-word;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 도메인 설명 */
.domain-description {
    color: #E0EFEA;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

/* 도메인 정보 */
.domain-info {
    margin-bottom: 1.5rem;
}

.status-price-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(224, 239, 234, 0.1);
    padding: 12px 24px;
    border-radius: 30px;
    border: 1px solid rgba(248, 224, 106, 0.3);
    backdrop-filter: blur(10px);
}

.status-badge {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.status-available {
    color: #00a880;
}

.status-badge.status-premium {
    color: #F8E06A;
}

.status-badge.status-auction {
    color: #ff6b6b;
}

.status-badge.status-pending {
    color: #74b9ff;
}

.price-info {
    color: #F8E06A;
    font-weight: 700;
    font-size: 1rem;
}

/* 서브타이틀 */
.hero-subtitle {
    color: #A0B0A8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* 신뢰 기능들 */
.trust-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #E0EFEA;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: #F8E06A;
    font-size: 1.2rem;
}

/* 액션 버튼 */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-inquiry {
    background: linear-gradient(135deg, #F8E06A, #D6C25B);
    color: #0B1E1A;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(248, 224, 106, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.btn-inquiry:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 224, 106, 0.4);
    color: #0B1E1A;
    background: linear-gradient(135deg, #FFE55C, #E6D368);
}

.btn-learn {
    background: transparent;
    color: #E0EFEA;
    padding: 14px 28px;
    border: 2px solid #E0EFEA;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: #E0EFEA;
    color: #2E6157;
    transform: translateY(-2px);
}


/* ========================================= */
/* 4. 메인 콘텐츠 섹션 (컴팩트 버전)             */
/* ========================================= */

.main-content { 
    background: var(--light); 
    padding: 40px 0 !important;
}

/* 섹션 헤더 */
.section-header { 
    text-align: center; 
    margin-bottom: 40px !important;
}
.section-title { 
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--dark); 
    margin-bottom: 15px !important;
}
.section-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.2rem);
    color: var(--medium); 
    max-width: 700px; 
    margin: 0 auto;
}

/* 피처 그리드 및 카드 */
.features-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px !important;
    margin-top: 30px !important;
}
.feature-card {
    background: var(--light); 
    border: 2px solid var(--border); 
    border-radius: var(--radius-md);
    padding: 30px 25px !important;
    text-align: center; 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden;
}
.feature-card::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 224, 106, 0.1), transparent);
    transition: left 0.5s;
}
.feature-card:hover {
    transform: translateY(-10px); 
    border-color: var(--accent); 
    box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { left: 100%; }

.feature-icon {
    width: 70px !important;
    height: 70px !important; 
    background: var(--gradient-primary); 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 20px !important;
    box-shadow: var(--shadow-md);
}
.feature-icon i { 
    font-size: 1.9rem !important;
    color: var(--dark) !important; 
}
.feature-card h3 { 
    font-size: 1.4rem !important;
    color: var(--dark); 
    margin-bottom: 15px !important;
}
.feature-card p { 
    color: var(--medium); 
    line-height: 1.5;
    font-size: 0.95rem;
}

/* ========================================= */
/* 5. 통계 섹션 (컴팩트 버전)                   */
/* ========================================= */

.stats-section { 
    background: var(--primary); 
    padding: 40px 0 !important;
    position: relative; 
}
.stats-section::before {
    content: ''; 
    position: absolute; 
    inset: 0; 
    opacity: 0.6;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23E0EFEA' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px !important;
    text-align: center;
    position: relative; 
    z-index: 2;
}
.stat-item {
    padding: 18px 12px !important;
    background: rgba(224, 239, 234, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid var(--border); 
    transition: var(--transition);
    will-change: transform;
    backface-visibility: hidden;
}
.stat-item:hover {
    background: rgba(248, 224, 106, 0.15); 
    transform: translateY(-3px) translateZ(0);
    border-color: var(--accent);
}
.stat-item h3 { 
    font-size: clamp(2rem, 3.5vw, 2.8rem) !important;
    color: var(--accent); 
    margin-bottom: 8px !important;
    font-weight: 800; 
}
.stat-item p { 
    color: var(--medium); 
    font-size: 0.95rem !important;
    margin: 0; 
    line-height: 1.4;
}

/* ========================================= */
/* 6. 문의 및 FAQ 섹션                        */
/* ========================================= */

.inquiry-faq-section { 
    background: var(--light); 
    padding: 60px 0; 
}
.inquiry-card, .faq-card {
    background: var(--light); 
    border: 2px solid var(--border); 
    border-radius: var(--radius-lg);
    padding: 40px; 
    box-shadow: var(--shadow-md); 
    height: 100%;
}

/* 헤더 */
.inquiry-header, .faq-header { 
    margin-bottom: 30px; 
}
.inquiry-header h2, .faq-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem); 
    color: var(--dark); 
    margin-bottom: 15px;
}
.inquiry-header p { 
    font-size: 1.1rem; 
    color: var(--medium); 
}

/* 폼 스타일 */
.form-group { margin-bottom: 25px; }
.form-label { 
    font-weight: 600; 
    color: var(--dark); 
    margin-bottom: 8px; 
    display: block; 
}
.required-star { 
    color: var(--secondary); 
    font-weight: bold; 
}
.form-control {
    width: 100%; 
    padding: 15px; 
    border: 2px solid var(--border); 
    border-radius: var(--radius-sm);
    background: var(--light); 
    color: var(--dark); 
    font-size: 1rem; 
    transition: var(--transition);
}
.form-control:focus {
    border-color: var(--accent); 
    background: rgba(248, 224, 106, 0.05);
    box-shadow: 0 0 0 0.2rem rgba(248, 224, 106, 0.25);
}
.form-control::placeholder { 
    color: var(--medium); 
    opacity: 0.8; 
}
.form-control.is-invalid { 
    border-color: var(--secondary); 
    background: rgba(0, 168, 128, 0.05); 
}
.invalid-feedback { 
    color: var(--secondary); 
    font-size: 0.875rem; 
    margin-top: 5px; 
    display: block; 
}

/* 가격 입력 */
.price-input-group { position: relative; }
.price-input-group::before {
    content: '$'; 
    position: absolute; 
    left: 15px; 
    top: 50%; 
    transform: translateY(-50%);
    color: var(--accent); 
    font-weight: bold; 
    font-size: 1.1rem; 
    z-index: 1;
}
.price-input-group .form-control { padding-left: 35px; }
.price-note { 
    font-size: 0.85rem; 
    color: var(--medium); 
    margin-top: 5px; 
    font-style: italic; 
}

/* 캡챠 */
.captcha-group { 
    display: flex; 
    flex-direction: column; 
    gap: 10px; 
}
.captcha-question {
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    background: var(--gradient-accent); 
    padding: 12px 20px; 
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.math-equation { 
    color: var(--white); 
    font-weight: bold; 
    font-size: 1.1rem; 
}
.captcha-refresh {
    background: rgba(255, 255, 255, 0.2); 
    border: none; 
    color: var(--white);
    padding: 5px; 
    border-radius: 50%; 
    cursor: pointer; 
    transition: var(--transition);
    width: 30px; 
    height: 30px; 
    display: flex; 
    align-items: center; 
    justify-content: center;
}
.captcha-refresh:hover { 
    background: rgba(255, 255, 255, 0.3); 
    transform: rotate(90deg); 
}
.captcha-note { 
    font-size: 0.85rem; 
    color: var(--medium); 
    margin-top: 5px; 
    font-style: italic; 
}

/* 제출 버튼 */
.submit-btn {
    width: 100%; 
    background: var(--gradient-accent); 
    border: none; 
    color: var(--white);
    padding: 18px 30px; 
    border-radius: var(--radius-sm); 
    font-size: 1.1rem; 
    font-weight: 600;
    cursor: pointer; 
    transition: var(--transition); 
    text-transform: uppercase; 
    letter-spacing: 1px;
    box-shadow: var(--shadow-sm);
}
.submit-btn:hover {
    background: linear-gradient(135deg, #D6C25B, #C4B049); 
    transform: translateY(-3px); 
    box-shadow: var(--shadow-md);
}
.submit-btn:disabled { 
    opacity: 0.7; 
    cursor: not-allowed; 
    transform: none; 
}

/* 아코디언 */
.accordion-item {
    background: var(--light); 
    border: 2px solid var(--border); 
    border-radius: var(--radius-sm);
    margin-bottom: 10px; 
    overflow: hidden; 
    box-shadow: var(--shadow-sm);
}
.accordion-button {
    background: var(--light) !important; 
    color: var(--dark) !important; 
    font-weight: 600;
    padding: 20px 25px; 
    border: none; 
    transition: var(--transition);
}
.accordion-button:not(.collapsed) {
    background: var(--gradient-accent) !important; 
    color: var(--white) !important;
}
.accordion-button::after {
    filter: brightness(0) saturate(100%) invert(85%) sepia(8%) saturate(1029%) hue-rotate(93deg) brightness(98%) contrast(89%);
}
.accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(100%);
}
.accordion-body {
    background: var(--light); 
    color: var(--medium); 
    padding: 25px; 
    border-top: 1px solid var(--border);
}

/* ========================================= */
/* 7. 리뷰 섹션                               */
/* ========================================= */

.reviews-section { 
    background: var(--primary); 
    padding: 60px 0; 
    position: relative; 
}
.reviews-section::before {
    content: ''; 
    position: absolute; 
    inset: 0; 
    opacity: 0.6;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7z' fill='%23E0EFEA' fill-opacity='0.08'/%3E%3C/svg%3E");
}
.reviews-summary { 
    text-align: center; 
    margin-bottom: 50px; 
    position: relative; 
    z-index: 2; 
}
.reviews-rating {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 15px; 
    margin-bottom: 15px;
}
.reviews-rating .stars i { 
    color: var(--accent) !important; 
    font-size: 1.5rem; 
}
.reviews-rating .rating-score { 
    font-size: 2.5rem; 
    font-weight: 700; 
    color: var(--accent); 
}
.reviews-count { 
    font-size: 1.1rem; 
    color: var(--medium); 
}

.reviews-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 30px;
    position: relative; 
    z-index: 2;
}
.review-card {
    background: var(--light); 
    border: 2px solid var(--border); 
    border-radius: var(--radius-md);
    padding: 30px; 
    transition: var(--transition); 
    position: relative; 
    overflow: hidden;
}
.review-card::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: -100%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(248, 224, 106, 0.1), transparent);
    transition: left 0.5s;
}
.review-card:hover {
    transform: translateY(-8px); 
    border-color: var(--accent); 
    box-shadow: var(--shadow-md);
}
.review-card:hover::before { left: 100%; }
.review-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start; 
    margin-bottom: 20px; 
}
.reviewer-info h4 { 
    color: var(--dark); 
    margin-bottom: 5px; 
    font-size: 1.2rem; 
}
.review-date { 
    color: var(--medium); 
    font-size: 0.9rem; 
}
.review-stars { 
    display: flex; 
    gap: 2px; 
}
.review-stars i { 
    color: var(--accent) !important; 
    font-size: 1rem; 
}
.review-text { 
    color: var(--medium); 
    line-height: 1.6; 
    font-style: italic; 
    margin: 0; 
}

/* ========================================= */
/* 8. 애니메이션                              */
/* ========================================= */

.animate-fade-in {
    opacity: 0; 
    transform: translateY(30px); 
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.animate-fade-in.loaded { 
    opacity: 1; 
    transform: translateY(0); 
}
.animate-delay-1 { transition-delay: 0.2s; }
.animate-delay-2 { transition-delay: 0.4s; }
.animate-delay-3 { transition-delay: 0.6s; }

/* ========================================= */
/* 9. 반응형 스타일 (통합)                     */
/* ========================================= */

/* 태블릿 (768px - 991px) */
@media (max-width: 991.98px) {
    /* 네비게이션 */
    .navbar-collapse { 
        background: var(--primary-dark); 
        padding: 20px; 
        border-radius: var(--radius-sm); 
        margin-top: 15px; 
        border: 2px solid var(--border);
    }
    
    /* 히어로 섹션 */
    .hero-section { 
        padding: 90px 0 35px;
        min-height: auto;
    }
    
    .domain-name {
        font-size: clamp(2rem, 5vw, 3.5rem);
        margin-bottom: 1.2rem;
    }
    
    .domain-description {
        font-size: 1.1rem;
        margin-bottom: 1.8rem;
    }
    
    .status-price-wrapper {
        padding: 14px 22px;
    }
    
    .hero-subtitle {
        margin-bottom: 2rem;
    }
    
    .btn-inquiry {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* 메인 콘텐츠 */
    .main-content {
        padding: 35px 0;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .features-grid {
        gap: 25px;
        margin-top: 25px;
        grid-template-columns: 1fr;
    }
    .feature-card {
        padding: 25px 20px;
    }
    
    /* 통계 섹션 */
    .stats-section {
        padding: 35px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .stat-item {
        padding: 16px 10px;
    }
    .stat-item h3 {
        font-size: clamp(1.8rem, 3vw, 2.4rem);
        margin-bottom: 6px;
    }
    .stat-item p {
        font-size: 0.9rem;
    }
    
    /* 리뷰 */
    .reviews-grid { 
        grid-template-columns: 1fr; 
    }
}

/* 모바일 (576px - 767px) */
@media (max-width: 767.98px) {
    /* 히어로 섹션 */
    .hero-section {
        padding: 85px 0 30px; /* 축소 */
        min-height: auto;
    }

	.trust-features {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .domain-name {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1rem;
    }
    
    .domain-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .status-price-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 16px 20px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn-inquiry,
    .btn-learn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    /* 메인 콘텐츠 */
    .main-content {
        padding: 30px 0;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-title {
        margin-bottom: 12px;
    }
    .features-grid {
        gap: 20px;
        margin-top: 20px;
    }
    .feature-card {
        padding: 22px 18px;
    }
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .feature-icon i {
        font-size: 1.7rem;
    }
    
    /* 통계 섹션 */
    .stats-section {
        padding: 30px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .stat-item {
        padding: 14px 8px;
    }
    .stat-item h3 {
        font-size: clamp(1.6rem, 4vw, 2.2rem);
        margin-bottom: 5px;
    }
    .stat-item p {
        font-size: 0.85rem;
    }
    
    /* 문의 및 리뷰 */
    .inquiry-faq-section, .reviews-section { 
        padding: 40px 0; 
    }
    .inquiry-card, .faq-card { 
        padding: 25px; 
    }
}

/* 소형 모바일 (575px 이하) */
@media (max-width: 575.98px) {
    /* 히어로 섹션 */
    .hero-section {
        padding: 80px 0 25px; /* 축소 */
    }
    
    .domain-name {
        margin-bottom: 0.8rem;
    }
    
    .domain-description {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    
    .trust-features {
        display: none; /* 매우 작은 화면에서는 숨김 */
    }
    
    .status-price-wrapper {
        flex-direction: column;
        gap: 0.5rem;
        padding: 14px 20px;
    }
    
    .status-badge {
        font-size: 0.8rem;
    }
    
    .price-info {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* 메인 콘텐츠 */
    .main-content {
        padding: 25px 0;
    }
    .section-header {
        margin-bottom: 25px;
    }
    .features-grid {
        gap: 18px;
        margin-top: 18px;
    }
    .feature-card {
        padding: 20px 15px;
    }
    .feature-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    .feature-icon i {
        font-size: 1.5rem;
    }
    .feature-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    /* 통계 섹션 */
    .stats-section {
        padding: 25px 0;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .stat-item {
        padding: 12px 6px;
    }
    .stat-item h3 {
        font-size: clamp(1.4rem, 5vw, 1.9rem);
        margin-bottom: 4px;
    }
    .stat-item p {
        font-size: 0.8rem;
    }
    
    /* 폼 */
    .form-control { 
        padding: 12px; 
        font-size: 0.95rem; 
    }
    .submit-btn { 
        padding: 15px 25px; 
        font-size: 1rem; 
    }
}