/* ============================================================
   en-landing-v2.css  –  샘플 #2 전용 스타일
   기존 en-landing.css 위에 덮어씌우는 방식으로 임포트
   ============================================================ */

/* ── 색상 오버라이드 (v2는 조금 더 밝고 클리니컬한 톤) ── */
:root {
    --navy:      #1b2d50;
    --navy-d:    #0f1e38;
    --gold:      #3b82f6;      /* v2: 블루 계열 액센트 */
    --gold-l:    #93c5fd;
    --gold-pale: #eff6ff;
    --cream:     #f8fafc;
    --white:     #ffffff;
    --gray:      #f1f5f9;
    --text:      #1e293b;
    --muted:     #64748b;
    --border:    #e2e8f0;
    --green:     #059669;
    --green-l:   #d1fae5;
    --accent:    #3b82f6;
}

/* ── Hero: v2 레이아웃 ── */
.hero-v2 {
    background: linear-gradient(135deg, #0f1e38 0%, #1b2d50 60%, #1e3a6e 100%);
    min-height: 620px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.hero-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233b82f6' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-v2-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-v2 .ins-accepted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(59,130,246,.15);
    border: 1px solid rgba(59,130,246,.3);
    color: #93c5fd;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero-v2 h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 3.8vw, 52px);
    font-weight: 400;
    color: #fff;
    line-height: 1.18;
    margin-bottom: 16px;
}
.hero-v2 h1 strong { font-weight: 600; color: #93c5fd; }
.hero-v2 .hero-desc {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 480px;
}
.hero-v2 .hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.btn-primary-v2 {
    background: var(--accent);
    color: #fff;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.btn-primary-v2:hover { background: #2563eb; color: #fff; transform: translateY(-1px); }
.btn-outline-v2 {
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
    padding: 13px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
}
.btn-outline-v2:hover { border-color: #93c5fd; color: #93c5fd; }

/* 보험사 배지 row */
.hero-v2 .ins-logos-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ins-pill {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.7);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}
.ins-pill i { color: #4ade80; font-size: 10px; }

/* ── Why this hero works 패널 ── */
.why-panel {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    padding: 24px 22px;
    backdrop-filter: blur(8px);
}
.why-panel h4 {
    font-size: 13px;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.why-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    align-items: flex-start;
}
.why-item:last-child { margin-bottom: 0; }
.why-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
    margin-top: 6px;
}
.why-item p { font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.6; }
.why-item p strong { color: rgba(255,255,255,.9); font-weight: 500; }

/* WhatsApp + Coverage 플로팅 버튼 (우측 사이드) */
.side-floats {
    position: absolute;
    right: 20px;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}
.side-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,.3);
    transition: transform .2s;
}
.side-btn:hover { transform: scale(1.08); }
.side-btn.wa-btn { background: #25D366; color: #fff; }
.side-btn.cov-btn { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; }

/* ── Trust Indicators v2 ── */
.trust-v2 {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 0;
}
.trust-v2-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-left: 1px solid var(--border);
}
.trust-v2-item {
    padding: 32px 24px;
    border-right: 1px solid var(--border);
    text-align: center;
}
.trust-v2-item i {
    font-size: 20px;
    color: var(--accent);
    display: block;
    margin-bottom: 10px;
}
.trust-v2-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}
.trust-v2-num sup { font-size: 20px; color: var(--accent); }
.trust-v2-label { font-size: 12px; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ── Insurance & Billing v2 ── */
.ins-v2 { padding: 88px 0; background: var(--cream); }
.ins-v2-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ins-v2-head { margin-bottom: 32px; }
.sec-label-v2 {
    font-size: 10px;
    letter-spacing: .18em;
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.sec-label-v2::before { content: ''; display: block; width: 20px; height: 2px; background: var(--accent); border-radius: 1px; }
.sec-h2-v2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 2.8vw, 36px);
    font-weight: 400;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 12px;
}
.ins-plan-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.ins-plan-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    transition: all .2s;
}
.ins-plan-item:hover { border-color: var(--accent); background: #eff6ff; }
.ins-plan-item i { color: var(--green); font-size: 13px; flex-shrink: 0; }

/* Direct billing flow */
.billing-flow-card {
    background: var(--navy);
    border-radius: 12px;
    padding: 36px 32px;
    color: #fff;
}
.billing-flow-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.flow-step {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}
.flow-step:last-child { margin-bottom: 0; }
.flow-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.flow-body h4 { font-size: 13.5px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.flow-body p  { font-size: 12.5px; color: rgba(255,255,255,.45); line-height: 1.6; }
.btn-cov-now {
    display: block;
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-align: center;
    margin-top: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.btn-cov-now:hover { background: #2563eb; color: #fff; }

/* ── How It Works v2 ── */
.how-v2 { padding: 88px 0; background: #fff; }
.how-v2-head { text-align: center; margin-bottom: 56px; }
.how-v2-flow {
    display: grid;
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    align-items: center;
    gap: 0;
    max-width: 860px;
    margin: 0 auto 40px;
}
.how-v2-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}
.how-v2-card .step-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.how-v2-card i  { font-size: 24px; color: var(--accent); display: block; margin-bottom: 12px; }
.how-v2-card h4 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.how-v2-card p  { font-size: 13px; color: var(--muted); line-height: 1.7; }
.how-arrow-v2 { text-align: center; color: var(--accent); font-size: 18px; }

/* ── Services v2 ── */
.svc-v2 { padding: 88px 0; background: var(--cream); }
.svc-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}
.svc-v2-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px 24px;
    transition: all .25s;
    cursor: pointer;
}
.svc-v2-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(59,130,246,.1);
    transform: translateY(-2px);
}
.svc-icon-v2 {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.svc-icon-v2 i { font-size: 18px; color: var(--accent); }
.svc-v2-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.svc-v2-card p  { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 12px; }
.svc-tags-v2 { display: flex; flex-wrap: wrap; gap: 5px; }
.svc-tag-v2 {
    font-size: 11px;
    color: var(--accent);
    background: #eff6ff;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 500;
}

/* ── About v2 ── */
.about-v2 { padding: 88px 0; background: #fff; }
.about-v2-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 48px;
}
.doctor-photo-box {
    background: var(--gray);
    border-radius: 10px;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--muted);
    overflow: hidden;
}
.doctor-photo-box i   { font-size: 48px; opacity: .2; margin-bottom: 10px; }
.doctor-photo-box span{ font-size: 13px; opacity: .4; }
.about-right h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
}
.about-bullets { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.about-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.6;
}
.about-bullets li i { color: var(--accent); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.clinic-photos-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 20px;
}
.clinic-photo-box {
    aspect-ratio: 4/3;
    background: var(--gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--muted);
    font-size: 11px;
    letter-spacing: .04em;
    overflow: hidden;
}
.clinic-photo-box i { font-size: 24px; opacity: .2; margin-bottom: 6px; display: block; }

/* ── Patient Stories v2 ── */
.stories-v2 { padding: 88px 0; background: var(--cream); }
.stories-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
    align-items: start;
}
.review-v2-list { display: flex; flex-direction: column; gap: 16px; }
.review-v2 {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
}
.reviewer-flag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.reviewer-flag span { color: var(--muted); font-weight: 400; }
.review-v2 p {
    font-size: 13.5px;
    color: var(--text);
    line-height: 1.75;
    font-style: italic;
}
.review-v2-stars { color: #f59e0b; font-size: 12px; margin-bottom: 8px; }

/* Before/After 모듈 */
.ba-modules { display: flex; flex-direction: column; gap: 16px; }
.ba-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
}
.ba-card h4 { font-size: 12px; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ba-box {
    aspect-ratio: 4/3;
    background: var(--gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--muted);
    flex-direction: column;
    gap: 4px;
}
.ba-box i { font-size: 18px; opacity: .3; }

/* ── Location v2 ── */
.location-v2 { padding: 88px 0; background: #fff; }
.location-v2-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 56px;
    align-items: start;
    margin-top: 48px;
}
.map-placeholder-v2 {
    width: 100%;
    height: 320px;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--muted);
    border: 1px solid var(--border);
}
.map-placeholder-v2 i { font-size: 36px; opacity: .2; margin-bottom: 10px; }
.location-info-v2 { display: flex; flex-direction: column; gap: 0; }
.loc-item-v2 { padding: 16px 0; border-bottom: 1px solid var(--border); }
.loc-item-v2:first-child { padding-top: 0; }
.loc-item-v2:last-child  { border-bottom: none; }
.loc-item-v2 h4 { font-size: 10px; font-weight: 600; letter-spacing: .12em; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; }
.loc-item-v2 p  { font-size: 14px; color: var(--text); line-height: 1.7; }
.loc-item-v2 p small { color: var(--muted); font-size: 13px; }

/* ── Contact & Booking v2 ── */
.contact-v2 { padding: 88px 0; background: var(--cream); }
.contact-v2-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}
.contact-form-v2 {
    background: #fff;
    border-radius: 12px;
    padding: 36px;
    border: 1px solid var(--border);
}
.contact-form-v2 h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 4px;
}
.contact-form-v2 .form-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.field-v2 { display: flex; flex-direction: column; gap: 5px; margin-bottom: 14px; }
.field-v2 label { font-size: 11px; letter-spacing: .1em; color: var(--navy); font-weight: 600; text-transform: uppercase; }
.field-v2 input,
.field-v2 select,
.field-v2 textarea {
    border: 1px solid var(--border);
    padding: 10px 13px;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    border-radius: 6px;
    outline: none;
    width: 100%;
    transition: border-color .2s;
}
.field-v2 input:focus,
.field-v2 select:focus,
.field-v2 textarea:focus { border-color: var(--accent); }
.field-v2 textarea { min-height: 80px; resize: vertical; }
.field-v2 select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2364748b'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.upload-field {
    border: 1.5px dashed var(--border);
    border-radius: 6px;
    padding: 16px;
    text-align: center;
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    background: var(--cream);
}
.upload-field:hover { border-color: var(--accent); background: #eff6ff; }
.upload-field input[type=file] { display: none; }
.upload-field i { font-size: 20px; display: block; margin-bottom: 6px; color: var(--accent); }
.privacy-v2 { display: flex; align-items: flex-start; gap: 8px; margin: 14px 0 18px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.privacy-v2 input { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.btn-submit-v2 {
    width: 100%;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 6px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    cursor: pointer;
    transition: background .2s;
}
.btn-submit-v2:hover { background: #2563eb; }
.form-guar-v2 { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; font-size: 11.5px; color: var(--muted); }
.form-guar-v2 i { color: var(--green); font-size: 12px; }
.book-ok-v2 { display: none; text-align: center; padding: 28px 16px; }
.book-ok-v2 i { font-size: 40px; color: var(--green); display: block; margin-bottom: 14px; }
.book-ok-v2 h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.book-ok-v2 p { font-size: 13px; color: var(--muted); line-height: 1.75; }

/* Fast contact options 패널 */
.fast-contact-panel {
    background: var(--navy);
    border-radius: 12px;
    padding: 28px 24px;
    color: #fff;
}
.fast-contact-panel h4 {
    font-size: 11px;
    letter-spacing: .15em;
    color: #93c5fd;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}
.fc-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.fc-item:last-child { margin-bottom: 0; }
.fc-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}
.fc-ico.wa  { background: rgba(37,211,102,.15); color: #4ade80; }
.fc-ico.kk  { background: rgba(254,240,0,.1); color: #fcd34d; }
.fc-ico.em  { background: rgba(59,130,246,.15); color: #93c5fd; }
.fc-ico.tel { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
.fc-name { font-size: 12px; font-weight: 600; color: #fff; margin-bottom: 2px; }
.fc-desc { font-size: 11.5px; color: rgba(255,255,255,.4); line-height: 1.5; }

/* ── 긴급 하단 배너 ── */
.urgent-banner {
    background: #25D366;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.urgent-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.urgent-banner p { font-size: 14px; font-weight: 600; color: #fff; display: flex; align-items: center; gap: 8px; }
.urgent-banner p i { font-size: 18px; }
.urgent-banner span { font-size: 13px; color: rgba(255,255,255,.75); }
.btn-urgent {
    background: #fff;
    color: #15803d;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: all .2s;
}
.btn-urgent:hover { background: #f0fdf4; color: #15803d; }

/* ── 반응형 ── */
@media (max-width: 1024px) {
    .hero-v2-grid, .ins-v2-grid, .about-v2-grid,
    .contact-v2-grid, .location-v2-grid { grid-template-columns: 1fr; }
    .how-v2-flow { grid-template-columns: 1fr; }
    .how-arrow-v2 { transform: rotate(90deg); }
    .stories-v2-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .trust-v2-inner { grid-template-columns: 1fr 1fr; }
    .trust-v2-item:nth-child(odd) { border-right: 1px solid var(--border); }
    .trust-v2-item:nth-child(even){ border-right: none; }
    .svc-v2-grid { grid-template-columns: 1fr 1fr; }
    .clinic-photos-row { grid-template-columns: 1fr; }
    .urgent-banner .container { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
    .svc-v2-grid { grid-template-columns: 1fr; }
    .ba-pair { grid-template-columns: 1fr; }
    .hero-v2-grid { gap: 36px; }
}