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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #111827;
    background-color: #FFFFFF;
    overflow-x: hidden;
    word-break: keep-all;
    word-wrap: break-word;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* =============================================
   Container & Utility Classes
============================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.required {
    color: #DC2626;
}

/* =============================================
   Navigation
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo img {
    height: 40px;
    max-width: 200px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #0B2A4A;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0B2A4A;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    padding: 9px 20px;
    background-color: #0B2A4A;
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.nav-cta:hover {
    background-color: #0F3D3E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 42, 74, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background-color: #0B2A4A;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* =============================================
   Hero Section
============================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.85) 0%, rgba(30, 58, 95, 0.75) 50%, rgba(42, 90, 125, 0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.highlight-item i {
    color: #C8A96A;
    font-size: 18px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background-color: white;
    color: #0B2A4A;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #0B2A4A;
}

.btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll-down 2s infinite;
}

@keyframes scroll-down {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* =============================================
   Section Base Styles
============================================= */
.section {
    padding: 120px 0;
    position: relative;
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #C8A96A;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 18px;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* =============================================
   Trust Stats Section
============================================= */
.trust-stats {
    background: linear-gradient(135deg, #0B2A4A 0%, #1E3A5F 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.trust-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(200,169,106,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 169, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 32px;
    color: #C8A96A;
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 20px;
    flex-shrink: 0;
}

.trust-message {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.trust-message p {
    font-size: 20px;
    color: white;
    margin: 0;
    line-height: 1.6;
}

.trust-message strong {
    font-size: 26px;
    font-weight: 900;
    color: #C8A96A;
}

/* =============================================
   Philosophy Section
============================================= */
.philosophy {
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
}

.philosophy-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B2A4A 0%, #C8A96A 50%, #2A5A7D 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.15);
    border-color: #C8A96A;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(11, 42, 74, 0.05);
    line-height: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(11, 42, 74, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(11, 42, 74, 0.3);
}

.value-icon i {
    font-size: 32px;
    color: white;
}

.value-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 12px;
}

.value-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #6B7280;
    font-weight: 500;
}

/* Philosophy Divider */
.philosophy-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 50px 0 40px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #C8A96A 50%, transparent 100%);
}

.divider-text {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: #C8A96A;
    white-space: nowrap;
    padding: 0 10px;
}

.divider-text i {
    font-size: 18px;
    animation: bounce 2s infinite;
}

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

/* Philosophy Actions (실천 약속) */
.philosophy-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.action-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0B2A4A 0%, #C8A96A 50%, #2A5A7D 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.action-card:hover::after {
    transform: scaleX(1);
}

.action-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.15);
    border-color: #C8A96A;
}

.action-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A96A 0%, #D4B87A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
    transition: all 0.3s ease;
}

.action-card:hover .action-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(200, 169, 106, 0.5);
}

.action-icon i {
    font-size: 36px;
    color: white;
}

.action-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 14px;
}

.action-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #6B7280;
    font-weight: 500;
}
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 10px;
}

/* =============================================
   Specialist Section (치주과 전문의)
============================================= */
.specialist-section {
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.specialist-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 169, 106, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.specialist-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #C8A96A;
    position: relative;
}

.intro-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C8A96A 0%, #B8935A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.intro-badge i {
    font-size: 36px;
    color: white;
}

.specialist-intro h3 {
    font-size: 28px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 20px;
}

.specialist-intro p {
    font-size: 17px;
    line-height: 1.9;
    color: #4B5563;
    font-weight: 500;
}

.specialist-intro strong {
    color: #C8A96A;
    font-weight: 700;
}

/* 3가지 강점 카드 */
.specialist-advantages {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #C8A96A 0%, #B8935A 100%);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(200, 169, 106, 0.2);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.advantage-icon i {
    font-size: 32px;
    color: #C8A96A;
}

.advantage-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 12px;
}

.advantage-subtitle {
    font-size: 16px;
    color: #C8A96A;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.advantage-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
}

.advantage-list li:last-child {
    margin-bottom: 0;
}

.advantage-list i {
    color: #10B981;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 3px;
}

.advantage-list strong {
    color: #0B2A4A;
    font-weight: 700;
}

/* 결론 메시지 */
.specialist-conclusion {
    background: linear-gradient(135deg, #0B2A4A 0%, #1E3A5F 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(11, 42, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.conclusion-icon {
    width: 90px;
    height: 90px;
    background: rgba(200, 169, 106, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.conclusion-icon i {
    font-size: 42px;
    color: #C8A96A;
}

.conclusion-text {
    text-align: left;
}

.conclusion-text h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 12px;
    color: white;
}

.conclusion-text p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.conclusion-text strong {
    color: #C8A96A;
    font-weight: 700;
}

/* =============================================
   Gum Treatment Section
============================================= */
.gum-treatment {
    background-color: white;
}

/* 치주질환 진행 단계 인포그래픽 */
.gum-stages {
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stages-header {
    text-align: center;
    margin-bottom: 50px;
}

.stages-header h3 {
    font-size: 28px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stages-header h3 i {
    color: #EF4444;
    font-size: 32px;
}

.stages-header p {
    font-size: 17px;
    color: #6B7280;
    font-weight: 600;
}

.stages-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
}

.stage-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stage-visual {
    width: 140px;
    height: 140px;
    position: relative;
    margin-bottom: 20px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stage-item:hover .stage-visual {
    transform: scale(1.05);
}

.tooth-icon {
    font-size: 48px;
    margin-bottom: 10px;
}

.gum-line {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 15px;
    border-radius: 8px;
}

.gum-line.healthy {
    background: linear-gradient(to right, #F472B6, #FCA5A5);
}

.gum-line.gingivitis {
    background: linear-gradient(to right, #EF4444, #DC2626);
}

.gum-line.periodontitis {
    background: linear-gradient(to right, #DC2626, #991B1B);
    height: 20px;
}

.gum-line.severe {
    background: linear-gradient(to right, #7F1D1D, #450A0A);
    height: 25px;
}

.stage-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
}

.stage-badge.warning {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

.stage-badge.danger {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

.stage-badge.critical {
    background: linear-gradient(135deg, #7F1D1D 0%, #450A0A 100%);
}

.stage-desc p {
    font-size: 13px;
    margin: 6px 0;
    color: #4B5563;
    font-weight: 600;
}

.stage-arrow {
    font-size: 32px;
    color: #C8A96A;
    font-weight: bold;
    flex-shrink: 0;
    margin: 0 10px;
}

.stages-notice {
    background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%);
    border-left: 5px solid #3B82F6;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.stages-notice i {
    font-size: 32px;
    color: #3B82F6;
    flex-shrink: 0;
}

.stages-notice p {
    font-size: 16px;
    line-height: 1.7;
    color: #1E40AF;
    margin: 0;
}

.stages-notice strong {
    font-weight: 900;
    color: #1E3A8A;
}

/* 이런 분들께 권해드립니다 */

/* 이런 분들께 권해드립니다 */
.gum-recommendation {
    margin-bottom: 80px;
}

.recommendation-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.recommendation-header .header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A96A 0%, #D4B87A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(200, 169, 106, 0.3);
}

.recommendation-header .header-icon i {
    font-size: 36px;
    color: white;
}

.recommendation-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0B2A4A;
    margin: 0;
}

.recommendation-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.recommendation-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.recommendation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C8A96A 0%, #0B2A4A 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.recommendation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.15);
    border-color: #C8A96A;
}

.rec-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.recommendation-card:hover .rec-icon {
    background: linear-gradient(135deg, #C8A96A 0%, #D4B87A 100%);
    transform: scale(1.1) rotate(-5deg);
}

.rec-icon i {
    font-size: 32px;
    color: #C8A96A;
    transition: color 0.3s ease;
}

.recommendation-card:hover .rec-icon i {
    color: white;
}

.rec-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 10px;
}

.rec-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #6B7280;
}

/* 치료 과정 */
.gum-process {
    margin-bottom: 80px;
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
    padding: 60px 50px;
    border-radius: 20px;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.process-header .header-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.3);
}

.process-header .header-icon i {
    font-size: 36px;
    color: white;
}

.process-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #0B2A4A;
    margin: 0;
}

.process-header p {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

.process-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.flow-step {
    flex: 1;
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(11, 42, 74, 0.15);
    border-color: #0B2A4A;
}

.flow-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A96A 0%, #D4B87A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-number span {
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.flow-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s ease;
}

.flow-step:hover .flow-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(11, 42, 74, 0.4);
}

.flow-icon i {
    font-size: 36px;
    color: white;
}

.flow-step h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 12px;
}

.flow-step p {
    font-size: 14px;
    line-height: 1.7;
    color: #6B7280;
}

.flow-arrow {
    flex-shrink: 0;
    color: #C8A96A;
    font-size: 28px;
}

.flow-arrow i {
    animation: arrowPulse 2s infinite;
}

@keyframes arrowPulse {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(5px); opacity: 1; }
}

.anxiety-block {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    padding: 50px;
    border-radius: 16px;
    margin-top: 40px;
}

.anxiety-block h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 30px;
    text-align: center;
}

.anxiety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.anxiety-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.anxiety-q {
    font-size: 17px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.anxiety-q::before {
    content: 'Q.';
    color: #C8A96A;
    font-size: 20px;
    font-weight: 900;
}

.anxiety-a {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    padding-left: 26px;
}

/* =============================================
   Implant Section
============================================= */
/* =============================================
   Implant Section (Redesigned)
============================================= */
.implant {
    position: relative;
    background: linear-gradient(135deg, #0B2A4A 0%, #1E3A5F 100%);
    color: white;
    overflow: hidden;
}

.implant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/implant-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.implant .container {
    position: relative;
    z-index: 1;
}

.implant .section-title {
    color: white;
}

.implant .section-description {
    color: rgba(255, 255, 255, 0.9);
}

/* 치주과 전문의 임플란트 강점 박스 */
.implant-specialist-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 45px;
    margin-bottom: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.specialist-box-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 3px solid #C8A96A;
}

.specialist-box-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C8A96A 0%, #B8935A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
}

.specialist-box-icon i {
    font-size: 38px;
    color: white;
}

.specialist-box-header h3 {
    font-size: 26px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 8px;
}

.specialist-box-header p {
    font-size: 16px;
    color: #C8A96A;
    font-weight: 700;
    margin: 0;
}

.specialist-points {
    display: grid;
    gap: 30px;
}

.point-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.point-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.point-content h4 {
    font-size: 20px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.point-content h4 i {
    color: #C8A96A;
    font-size: 22px;
}

.point-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4B5563;
    margin: 0;
}

.point-content strong {
    color: #0B2A4A;
    font-weight: 700;
}

/* 임플란트 특징 */
.implant-features {
    margin-top: 50px;
}

.feature-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-intro h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #C8A96A;
}

.feature-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.implant-process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(200, 169, 106, 0.3);
    line-height: 1;
}

.process-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(200, 169, 106, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.process-icon i {
    font-size: 32px;
    color: #C8A96A;
}

.process-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.process-card p {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

/* 임플란트 추천 */
.implant-recommendation {
    margin-bottom: 50px;
}

.recommendation-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.recommendation-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.recommendation-title i {
    font-size: 32px;
    color: #C8A96A;
}

.recommendation-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.recommendation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.rec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.rec-item i {
    font-size: 16px;
    color: #C8A96A;
}

.rec-item span {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.service-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   Doctors Section
============================================= */
.doctors {
    background-color: #F7F7F5;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.doctor-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.doctor-photo {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
}

.doctor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.doctor-info {
    padding: 35px;
}

.doctor-name {
    font-size: 26px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 24px;
    text-align: center;
}

.doctor-highlights ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.doctor-highlights li {
    font-size: 14px;
    color: #374151;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.doctor-highlights li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #C8A96A;
    font-size: 20px;
    line-height: 1;
}

/* =============================================
   Systems Section (Redesigned)
============================================= */
.systems {
    background-color: #F9FAFB;
}

.systems-detailed {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 50px;
}

.system-detail-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.system-detail-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.system-detail-header {
    padding: 35px 40px 25px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 3px solid #C8A96A;
}

.system-detail-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.system-detail-icon i {
    font-size: 32px;
    color: white;
}

.system-detail-title {
    flex: 1;
}

.system-detail-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 8px;
}

.system-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #C8A96A;
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
}

.system-detail-content {
    padding: 35px 40px;
}

.system-description {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 8px;
    border-left: 3px solid #C8A96A;
}

.benefit-item i {
    font-size: 18px;
    color: #C8A96A;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    color: #374151;
    line-height: 1.6;
    font-weight: 500;
}

.systems-footer {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 2px dashed #C8A96A;
}

.systems-footer p {
    font-size: 15px;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.systems-footer i {
    font-size: 18px;
    color: #C8A96A;
}

/* =============================================
   Aftercare Section (Redesigned)
============================================= */
.aftercare {
    background: linear-gradient(to bottom, #FFFFFF 0%, #F9FAFB 100%);
}

/* 사후관리 중요성 */
.aftercare-importance {
    margin: 50px 0;
}

.importance-content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #C8A96A 0%, #B89858 100%);
    border-radius: 16px;
    color: white;
}

.importance-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.importance-icon i {
    font-size: 48px;
    color: white;
}

.importance-text h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.importance-text p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

.importance-text strong {
    font-weight: 900;
}

/* 치주과 전문의 사후관리 차별점 */
.aftercare-specialist {
    background: linear-gradient(135deg, #F7F7F5 0%, #FFFFFF 100%);
    border-radius: 20px;
    padding: 45px;
    margin: 50px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.aftercare-specialist h3 {
    font-size: 26px;
    font-weight: 900;
    color: #0B2A4A;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.aftercare-specialist h3 i {
    color: #C8A96A;
    font-size: 28px;
}

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

.benefit-box {
    background: white;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #C8A96A;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(200, 169, 106, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(200, 169, 106, 0.1) 0%, rgba(200, 169, 106, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-icon i {
    font-size: 28px;
    color: #C8A96A;
}

.benefit-box h4 {
    font-size: 19px;
    font-weight: 900;
    color: #0B2A4A;
    margin-bottom: 12px;
}

.benefit-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

.benefit-box strong {
    color: #0B2A4A;
    font-weight: 700;
}

/* 사후관리 프로그램 카드 */
.aftercare-programs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.program-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.program-header {
    padding: 30px;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    border-bottom: 3px solid #C8A96A;
    display: flex;
    align-items: center;
    gap: 20px;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon i {
    font-size: 28px;
    color: white;
}

.program-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0B2A4A;
}

.program-content {
    padding: 30px;
}

.program-description {
    font-size: 15px;
    color: #6B7280;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-details li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.program-details li i {
    font-size: 18px;
    color: #C8A96A;
    margin-top: 2px;
    flex-shrink: 0;
}

.program-details li div {
    flex: 1;
}

.program-details li strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.program-details li span {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
}

/* 관리 주기 안내 */
.aftercare-schedule {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.schedule-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.schedule-header i {
    font-size: 32px;
    color: #C8A96A;
}

.schedule-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0B2A4A;
}

.schedule-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    padding: 20px 0;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 3px;
    background: linear-gradient(to right, #C8A96A 0%, #C8A96A 100%);
    z-index: 0;
}

.timeline-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timeline-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C8A96A 0%, #B89858 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(200, 169, 106, 0.3);
    border: 4px solid white;
}

.timeline-content {
    text-align: center;
}

.timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.5;
}

/* Footer Note */
.aftercare-footer-note {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
    padding: 25px;
    background: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #C8A96A;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    line-height: 1.7;
}

.aftercare-footer-note i {
    font-size: 18px;
    color: #C8A96A;
    flex-shrink: 0;
}

/* =============================================
   FAQ Section
============================================= */
.faq {
    background-color: #F7F7F5;
}

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

.faq-item {
    background: white;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 28px 35px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    color: #0B2A4A;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #F9FAFB;
}

.faq-question i {
    font-size: 18px;
    color: #C8A96A;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 35px 28px;
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
}

/* =============================================
   Consult Form Section
============================================= */
.consult {
    background-color: white;
}

.consult-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #F9FAFB;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.consult-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    min-width: 0;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: white;
    box-sizing: border-box;
    line-height: 1.5;
}

.form-group select {
    height: 51px;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0B2A4A;
    box-shadow: 0 0 0 3px rgba(11, 42, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background-color: white;
    border-radius: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 15px;
    color: #374151;
}

.privacy-link {
    font-size: 14px;
    color: #0B2A4A;
    text-decoration: underline;
}

.privacy-link:hover {
    color: #2A5A7D;
}

.form-submit {
    margin-top: 10px;
}

.form-note {
    font-size: 13px;
    color: #6B7280;
    text-align: center;
    margin-top: 10px;
}

/* =============================================
   Location Section
============================================= */
.location {
    background-color: #F7F7F5;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: white;
}

.info-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0B2A4A;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.info-text a {
    color: #0B2A4A;
    font-weight: 600;
    text-decoration: underline;
}

.info-text a:hover {
    color: #2A5A7D;
}

.location-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.location-buttons .btn {
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(11, 42, 74, 0.3);
}

.location-buttons .btn:hover {
    background: linear-gradient(135deg, #2A5A7D 0%, #0B2A4A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 42, 74, 0.4);
}

.location-desk-image {
    margin-bottom: 50px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    position: relative;
}

.location-desk-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.desk-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(11, 42, 74, 0.95), rgba(11, 42, 74, 0.7));
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.desk-caption i {
    font-size: 24px;
    color: #C8A96A;
}

.location-map-container {
    position: relative;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 500px;
    min-height: 500px;
}

.location-map {
    width: 100%;
    height: 100%;
    border: 0;
    position: relative;
}

.location-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-directions-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #0B2A4A 0%, #2A5A7D 100%);
    color: white;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(11, 42, 74, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.map-directions-btn:hover {
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 6px 30px rgba(11, 42, 74, 0.5);
}

.map-directions-btn i {
    font-size: 20px;
}

.map-placeholder {
    height: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
    color: #0B2A4A;
}

.map-placeholder i {
    font-size: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
}

/* =============================================
   Footer
============================================= */
.footer {
    background-color: #0B2A4A;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
}

.footer-logo-img {
    margin-bottom: 20px;
}

.footer-logo-img img {
    height: 60px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-text a {
    color: white;
    text-decoration: underline;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.footer-links a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.footer-copyright {
    margin-top: 30px;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* =============================================
   Floating Quick CTA
============================================= */
.floating-quick-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    gap: 12px;
}

.quick-cta-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.quick-cta-btn i {
    font-size: 22px;
}

.phone-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

.phone-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.5);
}

.location-btn {
    background: linear-gradient(135deg, #C8A96A 0%, #B8935A 100%);
}

.location-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(200, 169, 106, 0.5);
}

.consult-btn {
    background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
}

.consult-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(59, 130, 246, 0.5);
}

/* =============================================
   Animation Classes
============================================= */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   Responsive Design
============================================= */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 18px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-cta {
        padding: 8px 18px;
        font-size: 13px;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 16px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .nav-logo img {
        height: 38px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .philosophy-content,
    .service-layout,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
    }
    
    .systems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .implant-process-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .recommendation-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* 사후관리 섹션 태블릿 */
    .aftercare-programs {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .importance-content {
        flex-direction: column;
        text-align: center;
    }
    
    .schedule-timeline::before {
        left: 10%;
        right: 10%;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .philosophy-actions {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .recommendation-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .stat-divider {
        display: none;
    }
    
    .anxiety-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 70px;
    }
    
    .nav-logo img {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #E5E7EB;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 15px;
    }
    
    .highlight-item {
        font-size: 14px;
        justify-content: center;
        text-align: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
        line-height: 1.3;
        word-break: keep-all;
    }
    
    .section-description {
        font-size: 15px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px 25px;
    }
    
    /* Specialist Section 모바일 */
    .specialist-intro {
        padding: 30px 25px;
    }
    
    .intro-badge {
        width: 70px;
        height: 70px;
    }
    
    .intro-badge i {
        font-size: 32px;
    }
    
    .specialist-intro h3 {
        font-size: 24px;
    }
    
    .specialist-intro p {
        font-size: 15px;
    }
    
    .advantage-card {
        padding: 30px 25px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-content h3 {
        font-size: 21px;
    }
    
    .advantage-subtitle {
        font-size: 15px;
    }
    
    .advantage-list li {
        font-size: 15px;
    }
    
    .specialist-conclusion {
        flex-direction: column;
        padding: 40px 30px;
        text-align: center;
    }
    
    .conclusion-icon {
        width: 80px;
        height: 80px;
    }
    
    .conclusion-icon i {
        font-size: 38px;
    }
    
    .conclusion-text {
        text-align: center;
    }
    
    .conclusion-text h3 {
        font-size: 22px;
    }
    
    .conclusion-text p {
        font-size: 16px;
    }
    
    /* Gum Stages 모바일 */
    .gum-stages {
        padding: 35px 25px;
    }
    
    .stages-header h3 {
        font-size: 22px;
        flex-direction: column;
        gap: 10px;
    }
    
    .stages-flow {
        flex-direction: column;
        gap: 20px;
    }
    
    .stage-item {
        min-width: 100%;
    }
    
    .stage-visual {
        width: 120px;
        height: 120px;
    }
    
    .tooth-icon {
        font-size: 42px;
    }
    
    .stage-arrow {
        transform: rotate(90deg);
        font-size: 28px;
    }
    
    .stage-badge {
        font-size: 13px;
        padding: 7px 18px;
    }
    
    .stage-desc p {
        font-size: 12px;
    }
    
    .stages-notice {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    
    .stages-notice i {
        font-size: 28px;
    }
    
    .stages-notice p {
        font-size: 14px;
    }
    
    /* Implant Specialist Box 모바일 */
    .implant-specialist-box {
        padding: 30px 25px;
    }
    
    .specialist-box-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .specialist-box-icon {
        width: 70px;
        height: 70px;
    }
    
    .specialist-box-icon i {
        font-size: 34px;
    }
    
    .specialist-box-header h3 {
        font-size: 22px;
    }
    
    .specialist-box-header p {
        font-size: 15px;
    }
    
    .point-item {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .point-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .point-content h4 {
        font-size: 18px;
        justify-content: center;
    }
    
    .point-content p {
        font-size: 15px;
    }
    
    /* Aftercare Specialist 모바일 */
    .aftercare-specialist {
        padding: 35px 25px;
    }
    
    .aftercare-specialist h3 {
        font-size: 22px;
        flex-direction: column;
        gap: 10px;
    }
    
    .specialist-benefits {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefit-box {
        padding: 30px 25px;
    }
    
    .benefit-box h4 {
        font-size: 18px;
    }
    
    .benefit-box p {
        font-size: 14px;
    }
    
    .value-number {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .value-icon i {
        font-size: 28px;
    }
    
    .value-text h3 {
        font-size: 20px;
    }
    
    .value-text p {
        font-size: 15px;
    }
    
    .philosophy-divider {
        margin: 40px 0 30px;
        gap: 15px;
    }
    
    .divider-text {
        font-size: 14px;
    }
    
    .divider-text i {
        font-size: 16px;
    }
    
    .philosophy-actions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .action-card {
        padding: 30px 25px;
    }
    
    .action-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .action-icon i {
        font-size: 32px;
    }
    
    .action-card h3 {
        font-size: 19px;
    }
    
    .action-card p {
        font-size: 14px;
    }
    
    .needs-list li {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .step-content h4 {
        font-size: 16px;
        word-break: keep-all;
    }
    
    .step-content p {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .anxiety-q {
        font-size: 15px;
        word-break: keep-all;
    }
    
    .anxiety-a {
        font-size: 14px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .process-card h4 {
        font-size: 20px;
        word-break: keep-all;
    }
    
    .process-card p {
        font-size: 14px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .doctor-name {
        font-size: 24px;
        word-break: keep-all;
    }
    
    .doctor-highlights li {
        font-size: 13px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .system-detail-header {
        padding: 25px 20px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .system-detail-title h3 {
        font-size: 20px;
        word-break: keep-all;
    }
    
    .system-detail-content {
        padding: 25px 20px;
    }
    
    .system-description {
        font-size: 15px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .benefit-item span {
        font-size: 14px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    /* 사후관리 섹션 모바일 */
    .importance-content {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }
    
    .importance-icon {
        width: 80px;
        height: 80px;
    }
    
    .importance-icon i {
        font-size: 40px;
    }
    
    .importance-text h3 {
        font-size: 22px;
    }
    
    .importance-text p {
        font-size: 15px;
    }
    
    .aftercare-programs {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .program-header {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
    }
    
    .program-icon {
        width: 55px;
        height: 55px;
    }
    
    .program-icon i {
        font-size: 26px;
    }
    
    .program-header h3 {
        font-size: 20px;
    }
    
    .program-content {
        padding: 25px 20px;
    }
    
    .program-description {
        font-size: 14px;
    }
    
    .program-details li strong {
        font-size: 14px;
    }
    
    .program-details li span {
        font-size: 13px;
    }
    
    .aftercare-schedule {
        padding: 30px 20px;
    }
    
    .schedule-header {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .schedule-header h3 {
        font-size: 22px;
    }
    
    .schedule-timeline {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .schedule-timeline::before {
        display: none;
    }
    
    .timeline-item {
        text-align: center;
        align-items: center;
        width: 100%;
    }
    
    .timeline-badge {
        margin: 0 auto 15px;
    }
    
    .timeline-content {
        text-align: center;
        width: 100%;
    }
    
    .timeline-content h4 {
        font-size: 15px;
        text-align: center;
    }
    
    .timeline-content p {
        font-size: 13px;
        text-align: center;
    }
    
    .aftercare-footer-note {
        font-size: 13px;
        padding: 20px 15px;
        flex-direction: column;
        text-align: center;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 20px 25px;
        line-height: 1.5;
        word-break: keep-all;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding: 0 25px 20px;
        line-height: 1.8;
        word-break: keep-all;
    }
    
    .info-text h4 {
        font-size: 16px;
        word-break: keep-all;
    }
    
    .info-text p {
        font-size: 14px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .recommendation-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommendation-card {
        padding: 30px 20px;
    }
    
    .recommendation-header h3 {
        font-size: 26px;
    }
    
    .process-header h3 {
        font-size: 26px;
    }
    
    .gum-process {
        padding: 50px 30px;
    }
    
    .flow-step {
        padding: 35px 20px;
    }
    
    .flow-step h4 {
        font-size: 18px;
    }
    
    .flow-step p {
        font-size: 13px;
    }
    
    .trust-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 15px);
        width: calc(50% - 15px);
        justify-content: center;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    .trust-message {
        padding: 25px 20px;
    }
    
    .trust-message p {
        font-size: 18px;
    }
    
    .trust-message strong {
        font-size: 22px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consult-form-wrapper {
        padding: 30px 15px;
    }
    
    .location-desk-image {
        margin-bottom: 40px;
    }
    
    .location-desk-image img {
        height: 400px;
    }
    
    .desk-caption {
        padding: 20px 20px;
        font-size: 16px;
    }
    
    .desk-caption i {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 14px;
        word-break: keep-all;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .aftercare-points {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-logo-img img {
        height: 50px;
    }
    
    .location-map-container {
        height: 400px;
        min-height: 400px;
    }
    
    .map-directions-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .floating-quick-cta {
        bottom: 20px;
        right: 20px;
        flex-direction: column;
    }
    
    .quick-cta-btn {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.4;
        word-break: keep-all;
    }
    
    .hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
        word-break: keep-all;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        word-break: keep-all;
    }
    
    .section-title {
        font-size: 24px;
        line-height: 1.4;
        word-break: keep-all;
    }
    
    .section-description {
        font-size: 14px;
        line-height: 1.8;
        word-break: keep-all;
    }
    
    /* Specialist Section 480px */
    .specialist-intro {
        padding: 25px 20px;
    }
    
    .intro-badge {
        width: 60px;
        height: 60px;
    }
    
    .intro-badge i {
        font-size: 28px;
    }
    
    .specialist-intro h3 {
        font-size: 21px;
    }
    
    .specialist-intro p {
        font-size: 14px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-content h3 {
        font-size: 19px;
    }
    
    .advantage-subtitle {
        font-size: 14px;
    }
    
    .advantage-list li {
        font-size: 14px;
    }
    
    .specialist-conclusion {
        padding: 35px 25px;
    }
    
    .conclusion-icon {
        width: 70px;
        height: 70px;
    }
    
    .conclusion-icon i {
        font-size: 34px;
    }
    
    .conclusion-text h3 {
        font-size: 20px;
    }
    
    .conclusion-text p {
        font-size: 15px;
    }
    
    /* Gum Stages 480px */
    .gum-stages {
        padding: 30px 20px;
    }
    
    .stages-header h3 {
        font-size: 20px;
    }
    
    .stages-header h3 i {
        font-size: 24px;
    }
    
    .stages-header p {
        font-size: 14px;
    }
    
    .stage-visual {
        width: 110px;
        height: 110px;
    }
    
    .tooth-icon {
        font-size: 38px;
    }
    
    .gum-line {
        width: 70px;
        height: 12px;
    }
    
    .gum-line.periodontitis {
        height: 16px;
    }
    
    .gum-line.severe {
        height: 20px;
    }
    
    .stage-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .stages-notice {
        padding: 18px;
    }
    
    .stages-notice i {
        font-size: 24px;
    }
    
    .stages-notice p {
        font-size: 13px;
    }
    
    /* Implant Specialist Box 480px */
    .implant-specialist-box {
        padding: 25px 20px;
    }
    
    .specialist-box-icon {
        width: 60px;
        height: 60px;
    }
    
    .specialist-box-icon i {
        font-size: 30px;
    }
    
    .specialist-box-header h3 {
        font-size: 20px;
    }
    
    .specialist-box-header p {
        font-size: 14px;
    }
    
    .point-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .point-content h4 {
        font-size: 17px;
    }
    
    .point-content h4 i {
        font-size: 20px;
    }
    
    .point-content p {
        font-size: 14px;
    }
    
    /* Aftercare Specialist 480px */
    .aftercare-specialist {
        padding: 30px 20px;
    }
    
    .aftercare-specialist h3 {
        font-size: 20px;
    }
    
    .aftercare-specialist h3 i {
        font-size: 24px;
    }
    
    .benefit-box {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        width: 55px;
        height: 55px;
    }
    
    .benefit-icon i {
        font-size: 24px;
    }
    
    .benefit-box h4 {
        font-size: 17px;
    }
    
    .benefit-box p {
        font-size: 13px;
    }
    
    .doctor-photo {
        height: 400px;
    }
    
    .doctor-name {
        font-size: 22px;
        word-break: keep-all;
    }
    
    .doctor-highlights li {
        font-size: 12px;
        line-height: 1.8;
        word-break: keep-all;
    }
    
    .value-card {
        padding: 25px 20px;
    }
    
    .value-number {
        font-size: 32px;
    }
    
    .value-icon {
        width: 55px;
        height: 55px;
    }
    
    .value-icon i {
        font-size: 24px;
    }
    
    .value-text h3 {
        font-size: 18px;
    }
    
    .value-text p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .philosophy-divider {
        margin: 30px 0 25px;
        flex-direction: column;
        gap: 10px;
    }
    
    .divider-line {
        width: 100%;
        height: 1px;
    }
    
    .recommendation-header .header-icon {
        width: 65px;
        height: 65px;
    }
    
    .recommendation-header .header-icon i {
        font-size: 28px;
    }
    
    .recommendation-header h3 {
        font-size: 22px;
    }
    
    .recommendation-card {
        padding: 25px 18px;
    }
    
    .rec-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }
    
    .rec-icon i {
        font-size: 28px;
    }
    
    .rec-text h4 {
        font-size: 16px;
    }
    
    .rec-text p {
        font-size: 13px;
    }
    
    .process-header .header-icon {
        width: 65px;
        height: 65px;
    }
    
    .process-header .header-icon i {
        font-size: 28px;
    }
    
    .process-header h3 {
        font-size: 22px;
    }
    
    .process-header p {
        font-size: 14px;
    }
    
    .gum-process {
        padding: 40px 20px;
        border-radius: 16px;
    }
    
    .flow-step {
        padding: 30px 18px;
    }
    
    .flow-number {
        width: 35px;
        height: 35px;
        top: 12px;
        right: 12px;
    }
    
    .flow-number span {
        font-size: 14px;
    }
    
    .flow-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .flow-icon i {
        font-size: 28px;
    }
    
    .flow-step h4 {
        font-size: 16px;
    }
    
    .flow-step p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .trust-stats {
        padding: 50px 0;
    }
    
    .stats-grid {
        gap: 20px;
    }
    
    .stat-item {
        flex: 0 0 calc(50% - 10px);
        width: calc(50% - 10px);
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .stat-content {
        text-align: center;
    }
    
    .stat-icon {
        width: 55px;
        height: 55px;
    }
    
    .stat-icon i {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .trust-message {
        padding: 20px 15px;
    }
    
    .trust-message p {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .trust-message strong {
        font-size: 20px;
    }
    
    .divider-text {
        font-size: 13px;
        padding: 10px 0;
    }
    
    .philosophy-actions {
        gap: 15px;
    }
    
    .action-card {
        padding: 25px 20px;
    }
    
    .action-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }
    
    .action-icon i {
        font-size: 28px;
    }
    
    .action-card h3 {
        font-size: 17px;
    }
    
    .action-card p {
        font-size: 13px;
        line-height: 1.6;
    }
    
    /* 사후관리 섹션 소형 모바일 */
    .importance-content {
        padding: 25px 15px;
    }
    
    .importance-icon {
        width: 70px;
        height: 70px;
    }
    
    .importance-icon i {
        font-size: 36px;
    }
    
    .importance-text h3 {
        font-size: 20px;
    }
    
    .importance-text p {
        font-size: 14px;
    }
    
    .program-header {
        padding: 20px 15px;
    }
    
    .program-icon {
        width: 50px;
        height: 50px;
    }
    
    .program-icon i {
        font-size: 24px;
    }
    
    .program-header h3 {
        font-size: 18px;
    }
    
    .program-content {
        padding: 20px 15px;
    }
    
    .program-description {
        font-size: 13px;
    }
    
    .program-details li strong {
        font-size: 13px;
    }
    
    .program-details li span {
        font-size: 12px;
    }
    
    .aftercare-schedule {
        padding: 25px 15px;
    }
    
    .schedule-header h3 {
        font-size: 20px;
    }
    
    .timeline-item {
        text-align: center;
    }
    
    .timeline-badge {
        width: 60px;
        height: 60px;
        font-size: 14px;
        margin: 0 auto 12px;
    }
    
    .timeline-content {
        text-align: center;
        width: 100%;
    }
    
    .timeline-content h4 {
        font-size: 14px;
        text-align: center;
    }
    
    .timeline-content p {
        font-size: 12px;
        text-align: center;
    }
    
    .aftercare-footer-note {
        font-size: 12px;
        padding: 18px 12px;
    }
    
    .faq-question {
        font-size: 15px;
        padding: 18px 20px;
        line-height: 1.6;
        word-break: keep-all;
    }
    
    .faq-answer p {
        font-size: 13px;
        padding: 0 20px 18px;
        line-height: 1.9;
        word-break: keep-all;
    }
    
    .location-desk-image {
        margin-bottom: 30px;
    }
    
    .location-desk-image img {
        height: 300px;
    }
    
    .desk-caption {
        padding: 15px 15px;
        font-size: 14px;
    }
    
    .desk-caption i {
        font-size: 18px;
    }
    
    .consult-form-wrapper {
        padding: 25px 12px;
        border-radius: 12px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .checkbox-group {
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
        padding: 12px 14px;
    }
    
    .checkbox-label span {
        font-size: 13px;
        word-break: keep-all;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    /* 임플란트 섹션 모바일 */
    .feature-intro {
        padding: 25px 15px;
    }
    
    .feature-intro h3 {
        font-size: 20px;
    }
    
    .feature-intro p {
        font-size: 14px;
    }
    
    .process-card {
        padding: 25px 15px;
    }
    
    .process-number {
        font-size: 32px;
    }
    
    .process-card h4 {
        font-size: 18px;
    }
    
    .process-card p {
        font-size: 13px;
    }
    
    .recommendation-box {
        padding: 25px 15px;
    }
    
    .recommendation-title h3 {
        font-size: 18px;
    }
    
    .rec-item span {
        font-size: 13px;
    }
    
    /* 장비 시스템 섹션 모바일 */
    .system-detail-header {
        padding: 20px 15px 18px;
    }
    
    .system-detail-icon {
        width: 55px;
        height: 55px;
    }
    
    .system-detail-icon i {
        font-size: 26px;
    }
    
    .system-detail-title h3 {
        font-size: 18px;
    }
    
    .system-badge {
        font-size: 12px;
        padding: 5px 14px;
    }
    
    .system-detail-content {
        padding: 20px 15px;
    }
    
    .system-description {
        font-size: 14px;
    }
    
    .benefit-item {
        padding: 12px;
    }
    
    .benefit-item span {
        font-size: 13px;
    }
    
    .systems-footer {
        padding: 18px 15px;
    }
    
    .systems-footer p {
        font-size: 13px;
    }
}
