/*
 * 좋은티켓 전용 스타일시트
 * 클래스명 접두사: db-
 * 주황+초록 파스텔 테마
 */

/* ========================================
   Reset & Base
======================================== */
.db-wrap * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.db-wrap {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a2e;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 17px;
}

/* ========================================
   Variables (CSS Custom Properties)
======================================== */
:root {
    --db-primary: #22C55E;
    --db-primary-dark: #16A34A;
    --db-primary-light: #4ADE80;
    --db-secondary: #F97316;
    --db-accent: #FB923C;
    --db-gradient: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    --db-gradient-orange: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
    --db-gradient-full: linear-gradient(135deg, #4ADE80 0%, #22C55E 50%, #16A34A 100%);
    --db-bg-light: #F0FDF4;
    --db-bg-white: #FFFFFF;
    --db-text-dark: #1E293B;
    --db-text-gray: #64748B;
    --db-text-light: #94A3B8;
    --db-border: #BBF7D0;
    --db-radius: 20px;
    --db-radius-sm: 12px;
    --db-radius-full: 50px;
}

/* ========================================
   Typography
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* 텍스트 강조 스타일 */
.db-text-gradient {
    background: linear-gradient(135deg, #FCD34D 0%, #FBBF24 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.db-text-white {
    color: white;
}

/* ========================================
   Container
======================================== */
.db-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========================================
   Header / Navigation
======================================== */
.db-header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.db-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.db-logo {
    font-size: 2em;
    font-weight: 900;
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
    letter-spacing: -1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.db-logo-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.db-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.db-nav-menu {
    display: flex;
    gap: 8px;
    list-style: none;
    margin-right: 25px;
}

.db-nav-menu a {
    padding: 14px 28px;
    text-decoration: none;
    color: var(--db-text-gray);
    font-weight: 600;
    font-size: 1.15em;
    border-radius: var(--db-radius-full);
    transition: all 0.3s ease;
}

.db-nav-menu a:hover,
.db-nav-menu a.active {
    background: var(--db-bg-light);
    color: var(--db-primary);
}

.db-nav-contact {
    display: flex;
    gap: 12px;
}

.db-btn {
    padding: 16px 34px;
    border-radius: var(--db-radius-full);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.db-btn-call {
    background: var(--db-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.db-btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
}

.db-btn-sms {
    background: white;
    border: 2px solid var(--db-border);
    color: var(--db-text-dark);
}

.db-btn-sms:hover {
    border-color: var(--db-primary);
    color: var(--db-primary);
    transform: translateY(-2px);
}

/* ========================================
   Hero Section - 배경 이미지 사용
======================================== */
.db-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 30px 100px;
    position: relative;
    overflow: hidden;
    /* 배경 이미지 - img/bg/hero-bg.jpg 사용 */
    background: url('../img/bg/hero-bg.jpg') center/cover no-repeat;
}

.db-hero::before {
    display: none;
}

.db-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.db-hero-content {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 50px;
    border-radius: var(--db-radius);
    backdrop-filter: blur(5px);
}

.db-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: var(--db-radius-full);
    font-size: 1.1em;
    font-weight: 600;
    color: white;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.db-hero-tag i {
    color: #4ADE80;
    font-size: 0.8em;
    animation: db-blink 1.5s infinite;
}

@keyframes db-blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.db-hero-title {
    font-size: 4.5em;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 30px;
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 4px 30px rgba(0, 0, 0, 0.3);
}

.db-hero-subtitle {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4), 0 2px 15px rgba(0, 0, 0, 0.2);
}

.db-hero-cta {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.db-cta-btn {
    padding: 22px 50px;
    border-radius: var(--db-radius-full);
    font-size: 1.25em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    cursor: pointer;
}

.db-cta-primary {
    background: white;
    color: var(--db-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.db-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.db-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

.db-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
}

.db-hero-stats {
    display: flex;
    gap: 50px;
}

.db-hero-stat {
    text-align: left;
}

.db-hero-stat-number {
    font-size: 3em;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5), 0 2px 20px rgba(0, 0, 0, 0.3);
}

.db-hero-stat-label {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 8px;
    font-weight: 500;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* Hero Visual - 이미지 카드 */
.db-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.db-hero-card {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.db-card-header {
    text-align: center;
    margin-bottom: 35px;
}

.db-card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: var(--db-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2em;
    color: white;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.db-card-title {
    font-size: 1.8em;
    font-weight: 800;
    color: var(--db-text-dark);
    margin-bottom: 12px;
}

.db-card-subtitle {
    color: var(--db-primary);
    font-size: 1.4em;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
}

.db-card-features {
    list-style: none;
    margin-bottom: 35px;
}

.db-card-features li {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--db-border);
    color: var(--db-text-dark);
    font-size: 1.15em;
}

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

.db-card-features li i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--db-primary);
    font-size: 1.2em;
}

.db-card-features li strong {
    color: var(--db-primary);
    font-weight: 700;
}

.db-card-buttons {
    display: flex;
    gap: 12px;
}

.db-card-btn {
    flex: 1;
    padding: 18px 15px;
    background: var(--db-gradient);
    color: white;
    border: none;
    border-radius: var(--db-radius);
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}

.db-card-btn-call {
    background: var(--db-gradient);
}

.db-card-btn-sms {
    background: var(--db-gradient-orange);
}

.db-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

/* Floating elements */
.db-float-element {
    position: absolute;
    background: white;
    border-radius: var(--db-radius);
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: db-bounce 3s ease-in-out infinite;
}

.db-float-element.db-float-1 {
    top: 15%;
    right: -30px;
    animation-delay: 0s;
}

.db-float-element.db-float-2 {
    bottom: 20%;
    left: -30px;
    animation-delay: 1.5s;
}

.db-float-element i {
    font-size: 1.6em;
}

.db-float-element.db-float-1 i { color: #22C55E; }
.db-float-element.db-float-2 i { color: #F97316; }

/* 떠다니는 요소 숨김 */
.db-float-element {
    display: none !important;
}

.db-float-element span {
    color: var(--db-text-dark);
    font-weight: 700;
    font-size: 1.1em;
}

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

/* ========================================
   Section Common Styles
======================================== */
.db-section {
    padding: 120px 30px;
    position: relative;
}

.db-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.db-section-badge {
    display: inline-block;
    background: var(--db-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: var(--db-radius-full);
    font-size: 1em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.db-section-title {
    font-size: 3.2em;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--db-text-dark);
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
}

.db-section-subtitle {
    font-size: 1.3em;
    color: var(--db-text-gray);
}

/* ========================================
   Trust Badges Section
======================================== */
.db-badges {
    padding: 80px 30px;
    background: var(--db-bg-white);
    border-bottom: 1px solid var(--db-border);
}

.db-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.db-badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px;
    background: var(--db-bg-light);
    border-radius: var(--db-radius);
    transition: all 0.3s ease;
}

.db-badge-item:hover {
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.db-badge-icon {
    font-size: 2.5em;
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db-badge-content {
    display: flex;
    flex-direction: column;
}

.db-badge-number {
    font-size: 2em;
    font-weight: 900;
    color: var(--db-text-dark);
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

.db-badge-label {
    font-size: 1em;
    color: var(--db-text-gray);
    font-weight: 500;
}

/* ========================================
   Why Choose Section - 배경 이미지
======================================== */
.db-why {
    background: url('../img/bg/section-bg-1.jpg') center/cover no-repeat;
}

.db-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.db-why-card {
    background: white;
    border: 1px solid var(--db-border);
    border-radius: var(--db-radius);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.db-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--db-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.db-why-card:hover::before {
    transform: scaleX(1);
}

.db-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.db-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    transition: all 0.3s ease;
}

.db-why-card:nth-child(1) .db-why-icon { color: #22C55E; }
.db-why-card:nth-child(2) .db-why-icon { color: #F97316; background: linear-gradient(135deg, #FFEDD5, #FED7AA); }
.db-why-card:nth-child(3) .db-why-icon { color: #16A34A; background: linear-gradient(135deg, #DCFCE7, #BBF7D0); }
.db-why-card:nth-child(4) .db-why-icon { color: #EA580C; background: linear-gradient(135deg, #FFEDD5, #FED7AA); }

.db-why-card h3 {
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--db-text-dark);
}

.db-why-card p {
    color: var(--db-text-gray);
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 25px;
}

.db-why-highlight {
    display: inline-block;
    background: var(--db-gradient);
    color: white;
    padding: 10px 22px;
    border-radius: var(--db-radius-full);
    font-size: 0.95em;
    font-weight: 700;
}

/* ========================================
   Services Section - 배경 이미지
======================================== */
.db-services {
    background: url('../img/bg/section-bg-2.jpg') center/cover no-repeat;
}

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

.db-service-card {
    background: white;
    border: 1px solid var(--db-border);
    border-radius: var(--db-radius);
    padding: 55px 45px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.db-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.db-service-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--db-gradient);
    color: white;
    padding: 8px 18px;
    border-radius: var(--db-radius-full);
    font-size: 0.9em;
    font-weight: 700;
}

.db-service-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8em;
    color: var(--db-primary);
}

.db-service-card:nth-child(2) .db-service-icon {
    background: linear-gradient(135deg, #FFEDD5, #FED7AA);
    color: #F97316;
}

.db-service-card h3 {
    font-size: 1.8em;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--db-text-dark);
}

.db-service-card > p {
    color: var(--db-text-gray);
    font-size: 1.15em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.db-service-features {
    list-style: none;
    margin-bottom: 35px;
    text-align: left;
}

.db-service-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--db-border);
    color: var(--db-text-dark);
    font-size: 1.1em;
}

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

.db-service-features li i {
    color: #22C55E;
    font-size: 1.1em;
}

.db-service-btn {
    width: 100%;
    padding: 20px;
    background: var(--db-gradient);
    color: white;
    border: none;
    border-radius: var(--db-radius);
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.db-service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.35);
}

/* ========================================
   Process Section
======================================== */
.db-process {
    background: white;
}

.db-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.db-process-line {
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 3px;
    background: var(--db-gradient);
    border-radius: 2px;
}

.db-process-step {
    background: var(--db-bg-light);
    border-radius: var(--db-radius);
    padding: 45px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.db-process-step:hover {
    background: white;
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.db-step-num {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--db-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: 900;
    color: white;
    font-family: 'Outfit', sans-serif;
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.35);
    position: relative;
    z-index: 2;
}

.db-process-step h4 {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--db-text-dark);
}

.db-process-step p {
    color: var(--db-text-gray);
    font-size: 1.05em;
    line-height: 1.7;
}

.db-step-time {
    display: inline-block;
    margin-top: 20px;
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: var(--db-primary);
    padding: 8px 18px;
    border-radius: var(--db-radius-full);
    font-size: 0.95em;
    font-weight: 700;
}

.db-process-cta {
    text-align: center;
    margin-top: 70px;
}

.db-process-total {
    font-size: 1.4em;
    color: var(--db-text-gray);
    margin-bottom: 30px;
}

.db-process-total strong {
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.1em;
}

/* ========================================
   Reviews Section - 배경 이미지
======================================== */
.db-reviews {
    background: url('../img/bg/section-bg-3.jpg') center/cover no-repeat;
}

.db-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.db-review-card {
    background: white;
    border: 1px solid var(--db-border);
    border-radius: var(--db-radius);
    padding: 25px;
    transition: all 0.3s ease;
}

.db-review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.db-review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.db-review-stars {
    display: flex;
    gap: 4px;
}

.db-review-stars i {
    color: #FBBF24;
    font-size: 1em;
}

.db-review-date {
    font-size: 0.95em;
    color: var(--db-text-light);
}

.db-review-text {
    font-size: 1em;
    line-height: 1.7;
    color: var(--db-text-dark);
    margin-bottom: 15px;
}

.db-review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--db-border);
}

.db-review-name {
    font-weight: 700;
    color: var(--db-text-dark);
    font-size: 0.95em;
}

.db-review-service {
    background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
    color: var(--db-primary);
    padding: 4px 12px;
    border-radius: var(--db-radius-full);
    font-size: 0.8em;
    font-weight: 600;
}

.db-reviews-more {
    text-align: center;
    margin-top: 55px;
}

.db-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid var(--db-primary);
    color: var(--db-primary);
    text-decoration: none;
    border-radius: var(--db-radius-full);
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.db-btn-outline:hover {
    background: var(--db-gradient);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* ========================================
   Carrier Section
======================================== */
.db-carriers {
    background: white;
}

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

.db-carrier-card {
    background: var(--db-bg-light);
    border: 1px solid var(--db-border);
    border-radius: var(--db-radius);
    padding: 45px 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.db-carrier-card:hover {
    background: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.db-carrier-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1em;
    color: white;
}

.db-carrier-skt { background: linear-gradient(135deg, #E4002B, #FF1744); }
.db-carrier-kt { background: linear-gradient(135deg, #000000, #333333); }
.db-carrier-lgu { background: linear-gradient(135deg, #E6007E, #FF4081); }

.db-carrier-card h4 {
    font-size: 1.5em;
    font-weight: 800;
    color: var(--db-text-dark);
    margin-bottom: 25px;
}

.db-carrier-limit {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--db-border);
}

.db-carrier-limit:last-child {
    border-bottom: none;
}

.db-limit-label {
    font-size: 1.05em;
    color: var(--db-text-gray);
}

.db-limit-value {
    font-weight: 700;
    font-size: 1.1em;
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.db-carrier-note {
    text-align: center;
    color: var(--db-text-gray);
    font-size: 1em;
}

/* ========================================
   FAQ Section
======================================== */
.db-faq {
    background: var(--db-bg-light);
}

.db-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.db-faq-item {
    background: white;
    border: 1px solid var(--db-border);
    border-radius: var(--db-radius);
    margin-bottom: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.db-faq-item:hover {
    border-color: var(--db-primary);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.1);
}

.db-faq-question {
    padding: 28px 35px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--db-text-dark);
    transition: all 0.3s ease;
}

.db-faq-question:hover {
    background: var(--db-bg-light);
}

.db-faq-icon {
    font-size: 1em;
    transition: transform 0.3s ease;
    color: var(--db-primary);
}

.db-faq-item.active .db-faq-icon {
    transform: rotate(180deg);
}

.db-faq-answer {
    padding: 0 35px 28px;
    color: var(--db-text-gray);
    line-height: 1.9;
    font-size: 1.1em;
    display: none;
}

.db-faq-item.active .db-faq-answer {
    display: block;
}

/* ========================================
   Final CTA Section - 배경 이미지
======================================== */
.db-final-cta {
    padding: 120px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('../img/bg/cta-bg.jpg') center/cover no-repeat;
}

.db-final-cta::before {
    display: none;
}

.db-final-cta-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: var(--db-radius);
    backdrop-filter: blur(5px);
    display: inline-block;
}

.db-final-cta h2 {
    font-size: 3em;
    font-weight: 900;
    color: white;
    margin-bottom: 25px;
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.db-final-cta p {
    font-size: 1.4em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

.db-final-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.db-final-cta .db-cta-primary {
    background: white;
    color: var(--db-primary);
}

.db-final-cta .db-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
}

/* ========================================
   Footer
======================================== */
.db-footer {
    background: var(--db-text-dark);
    padding: 70px 30px 50px;
    text-align: center;
}

.db-footer-logo {
    font-size: 2.2em;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Outfit', sans-serif;
}

.db-footer-info {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.db-footer-info p {
    margin-bottom: 8px;
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.db-footer-info a {
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
}

.db-footer-contact {
    font-size: 1.5em;
    margin-bottom: 25px;
}

.db-footer-contact a {
    background: var(--db-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 700;
}

.db-footer p {
    color: var(--db-text-light);
    font-size: 1.05em;
    margin-bottom: 12px;
}

/* ========================================
   Floating Buttons
======================================== */
.db-floating {
    position: fixed;
    bottom: 35px;
    right: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.db-float-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.db-float-btn i {
    font-size: 1.6em;
    color: white;
}

.db-float-call {
    background: var(--db-gradient);
    animation: db-pulse 2s infinite;
}

.db-float-call:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(34, 197, 94, 0.5);
}

.db-float-sms {
    background: var(--db-gradient-orange);
}

.db-float-sms:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 45px rgba(249, 115, 22, 0.5);
}

@keyframes db-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4); }
    50% { box-shadow: 0 10px 50px rgba(34, 197, 94, 0.7); }
}

/* ========================================
   Animations
======================================== */
.db-hover-lift {
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.db-hover-lift.db-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Mobile Hide Utility
======================================== */
.db-hide-mobile {
    display: block;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .db-wrap { font-size: 16px; }

    .db-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .db-hero-content {
        margin: 0 auto;
        text-align: center;
    }

    .db-hero-title { font-size: 3.5em; }
    .db-hero-stats { justify-content: center; }
    .db-hero-cta { justify-content: center; flex-wrap: wrap; }
    .db-cta-btn { white-space: nowrap; padding: 18px 35px; }

    .db-hero-visual { margin-top: 20px; }
    .db-float-element { display: none; }

    .db-badges-grid,
    .db-why-grid,
    .db-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .db-process-line { display: none; }
    .db-section-title { font-size: 2.6em; }
}

@media (max-width: 768px) {
    .db-wrap { font-size: 15px; }

    /* ==========================================
       모바일에서 불필요한 섹션 숨김
    ========================================== */
    .db-hide-mobile,
    .db-badges,
    .db-carriers,
    .db-why,
    .db-process {
        display: none !important;
    }

    /* ==========================================
       모바일 헤더
    ========================================== */
    .db-header {
        padding: 10px 0;
    }

    .db-header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 12px;
    }

    .db-logo {
        font-size: 1.2em;
        gap: 6px;
    }

    .db-logo-icon {
        width: 28px;
        height: 28px;
    }

    .db-nav-menu {
        display: none;
    }

    .db-nav {
        flex-direction: row;
        gap: 6px;
    }

    .db-nav-contact {
        display: flex;
        gap: 6px;
    }

    .db-btn span {
        display: none;
    }

    .db-btn-call,
    .db-btn-sms {
        width: 40px;
        height: 40px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
    }

    .db-btn-call {
        background: var(--db-gradient);
    }

    .db-btn-sms {
        background: var(--db-gradient-orange);
        border: none;
        color: white;
    }

    /* ==========================================
       모바일 히어로 - 간결하게
    ========================================== */
    .db-hero {
        padding: 60px 0 0 0;
        min-height: auto;
        display: block;
    }

    .db-hero-container {
        display: block;
        padding: 0;
    }

    .db-hero-content {
        background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.4) 100%);
        padding: 25px 15px 20px;
        border-radius: 0;
        text-align: center;
    }

    .db-hero-tag {
        padding: 6px 12px;
        font-size: 0.7em;
        margin-bottom: 15px;
        background: rgba(34, 197, 94, 0.3);
        border: 1px solid rgba(34, 197, 94, 0.5);
    }

    .db-hero-tag i {
        font-size: 0.5em;
    }

    .db-hero-title {
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .db-hero-subtitle {
        font-size: 0.85em;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .db-hero-subtitle br {
        display: none;
    }

    /* 모바일 CTA 버튼 */
    .db-hero-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-bottom: 20px;
    }

    .db-cta-btn {
        padding: 14px 8px;
        font-size: 0.9em;
        border-radius: 10px;
        gap: 6px;
        white-space: nowrap;
        justify-content: center;
    }

    .db-cta-primary {
        background: white;
        color: var(--db-primary);
    }

    .db-cta-secondary {
        background: var(--db-gradient-orange);
        border: none;
        color: white;
    }

    .db-cta-btn i {
        font-size: 1em;
    }

    .db-cta-btn span {
        font-size: 0.85em;
    }

    /* 통계 - 간결하게 */
    .db-hero-stats {
        display: none;
    }

    /* 히어로 카드 - 숨기고 간결하게 */
    .db-hero-visual {
        padding: 15px;
    }

    .db-hero-card {
        width: 100%;
        padding: 20px 15px;
        border-radius: 16px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .db-card-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        text-align: left;
    }

    .db-card-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        margin: 0;
        font-size: 1.2em;
    }

    .db-card-title {
        font-size: 1em;
        margin-bottom: 2px;
    }

    .db-card-subtitle {
        font-size: 0.95em;
    }

    /* 카드 피처 - 아코디언 형식 */
    .db-card-features {
        margin-bottom: 15px;
    }

    .db-card-features li {
        padding: 10px 0;
        font-size: 0.85em;
        gap: 10px;
    }

    .db-card-features li i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.85em;
        border-radius: 8px;
    }

    .db-card-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .db-card-btn {
        padding: 12px 8px;
        font-size: 0.85em;
        border-radius: 10px;
        gap: 5px;
        white-space: nowrap;
        justify-content: center;
    }

    /* ==========================================
       모바일 섹션 공통
    ========================================== */
    .db-section {
        padding: 40px 15px;
    }

    .db-section-header {
        margin-bottom: 25px;
    }

    .db-section-badge {
        padding: 5px 12px;
        font-size: 0.7em;
        margin-bottom: 12px;
    }

    .db-section-title {
        font-size: 1.3em;
        line-height: 1.3;
    }

    .db-section-subtitle {
        font-size: 0.85em;
        line-height: 1.4;
    }

    /* ==========================================
       모바일 서비스 - 아코디언 스타일
    ========================================== */
    .db-service-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .db-service-card {
        padding: 20px 15px;
    }

    .db-service-badge {
        position: static;
        display: inline-block;
        margin-bottom: 12px;
        padding: 4px 10px;
        font-size: 0.7em;
    }

    .db-service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4em;
        margin-bottom: 12px;
    }

    .db-service-card h3 {
        font-size: 1.1em;
        margin-bottom: 8px;
    }

    .db-service-card > p {
        font-size: 0.8em;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .db-service-card > p br {
        display: none;
    }

    .db-service-features {
        margin-bottom: 15px;
    }

    .db-service-features li {
        padding: 8px 0;
        font-size: 0.8em;
    }

    .db-service-btn {
        padding: 12px;
        font-size: 0.9em;
    }

    /* ==========================================
       모바일 리뷰 - 1개만 표시
    ========================================== */
    .db-reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .db-review-card:nth-child(n+3) {
        display: none;
    }

    .db-review-card {
        padding: 15px;
    }

    .db-review-header {
        margin-bottom: 12px;
    }

    .db-review-stars i {
        font-size: 0.9em;
    }

    .db-review-date {
        font-size: 0.75em;
    }

    .db-review-text {
        font-size: 0.85em;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .db-review-author {
        padding-top: 12px;
    }

    .db-review-name {
        font-size: 0.85em;
    }

    .db-review-service {
        padding: 3px 8px;
        font-size: 0.7em;
    }

    .db-reviews-more {
        margin-top: 20px;
    }

    .db-btn-outline {
        padding: 12px 25px;
        font-size: 0.85em;
    }

    /* ==========================================
       모바일 FAQ - 접혀있게
    ========================================== */
    .db-faq-container {
        padding: 0;
    }

    .db-faq-item {
        margin-bottom: 8px;
    }

    /* 처음 2개만 표시 */
    .db-faq-item:nth-child(n+4) {
        display: none;
    }

    .db-faq-question {
        padding: 14px 15px;
        font-size: 0.9em;
    }

    .db-faq-answer {
        padding: 0 15px 14px;
        font-size: 0.8em;
        line-height: 1.6;
    }

    /* ==========================================
       모바일 Final CTA - 심플하게
    ========================================== */
    .db-final-cta {
        padding: 40px 15px;
    }

    .db-final-cta-content {
        padding: 25px 15px;
        border-radius: 14px;
    }

    .db-final-cta h2 {
        font-size: 1.2em;
        margin-bottom: 10px;
    }

    .db-final-cta p {
        font-size: 0.85em;
        margin-bottom: 20px;
    }

    .db-final-cta-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .db-final-cta .db-cta-btn {
        padding: 12px 8px;
        font-size: 0.85em;
    }

    /* ==========================================
       모바일 푸터
    ========================================== */
    .db-footer {
        padding: 30px 15px 25px;
    }

    .db-footer-logo {
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    .db-footer-contact {
        font-size: 1.1em;
        margin-bottom: 12px;
    }

    .db-footer p {
        font-size: 0.75em;
        margin-bottom: 6px;
    }

    /* ==========================================
       모바일 플로팅 버튼
    ========================================== */
    .db-floating {
        bottom: 15px;
        right: 12px;
        gap: 8px;
    }

    .db-float-btn {
        width: 50px;
        height: 50px;
    }

    .db-float-btn i {
        font-size: 1.2em;
    }
}

/* ==========================================
   모바일 하단 네비게이션
========================================== */
.db-mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .db-mobile-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        padding: 8px 0;
        padding-bottom: calc(8px + env(safe-area-inset-bottom));
    }

    .db-mobile-nav-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--db-text-gray);
        font-size: 0.7em;
        padding: 8px 5px;
        transition: all 0.2s ease;
    }

    .db-mobile-nav-item i {
        font-size: 1.5em;
        margin-bottom: 4px;
    }

    .db-mobile-nav-item span {
        font-weight: 600;
    }

    .db-mobile-nav-item:hover,
    .db-mobile-nav-item.active {
        color: var(--db-primary);
    }

    /* 푸터 하단 여백 추가 (모바일 네비에 가려지지 않도록) */
    .db-footer {
        padding-bottom: 90px;
    }

    /* 플로팅 버튼 위치 조정 */
    .db-floating {
        bottom: 80px;
    }
}

/* ==========================================
   초소형 모바일 (375px 이하)
========================================== */
@media (max-width: 375px) {
    .db-hero-title {
        font-size: 1.4em;
    }

    .db-hero-subtitle {
        font-size: 0.8em;
    }

    .db-hero-cta {
        gap: 6px;
    }

    .db-cta-btn {
        padding: 12px 6px;
        font-size: 0.85em;
        gap: 5px;
    }

    .db-hero-card {
        padding: 15px 12px;
    }

    .db-card-header {
        gap: 10px;
    }

    .db-card-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1em;
    }

    .db-card-title {
        font-size: 0.95em;
    }

    .db-card-subtitle {
        font-size: 0.9em;
    }

    .db-card-features li {
        padding: 8px 0;
        font-size: 0.8em;
    }

    .db-card-features li i {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.8em;
    }

    .db-card-btn {
        padding: 10px 6px;
        font-size: 0.8em;
    }

    .db-section-title {
        font-size: 1.2em;
    }

    .db-section-subtitle {
        font-size: 0.8em;
    }

    .db-service-card h3 {
        font-size: 1em;
    }

    .db-final-cta h2 {
        font-size: 1.1em;
    }

    .db-final-cta .db-cta-btn {
        padding: 10px 6px;
        font-size: 0.8em;
    }
}
