:root {
            --sky:    #3a9bd5;
            --sky-l:  #6dbdec;
            --sky-ll: #e8f6ff;
            --coral:  #f07b5a;
            --coral-l:#fdddd4;
            --coral-ll:#fff5f2;
            --gold:   #f5c842;
            --gold-l: #fff8db;
            --white:  #ffffff;
            --offwhite: #f9fcff;
            --ink:    #1a2d42;
            --mid:    #3d5a75;
            --muted:  #6b87a0;
            --line:   #ddeaf4;
            --shadow: 0 20px 50px rgba(58,155,213,0.13);
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Noto Sans KR', sans-serif;
            color: var(--ink);
            background: var(--offwhite);
            overflow-x: hidden;
            line-height: 1.7;
            padding-top: 53px;
        }
        a { color: inherit; text-decoration: none; }

        /* ── NAV ───────────── */
        .tab-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 900;
            display: flex;
            background: rgba(249,252,255,0.92);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--line);
        }
        .tab-btn {
            flex: 1;
            min-height: 52px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 800;
            color: #9ab3c8;
            position: relative;
        }
        .tab-btn.active { color: var(--sky); }
        .tab-btn.active::after {
            content: '';
            position: absolute;
            left: 20%;
            right: 20%;
            bottom: 0;
            height: 3px;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(90deg, var(--sky), var(--sky-l));
        }

        .tab-btn--highlight {
            color: #2f7099;
            background: linear-gradient(90deg, rgba(226, 244, 255, 0.96) 0%, rgba(192, 229, 252, 0.98) 45%, rgba(126, 198, 241, 0.95) 55%, rgba(226, 244, 255, 0.96) 100%);
            background-size: 300% 100%;
            animation: tab-blue-bg-flow 1.1s linear infinite;
            overflow: hidden;
            box-shadow: inset 0 0 0 1px rgba(58, 155, 213, 0.2), 0 0 16px rgba(58, 155, 213, 0.2);
        }
        .tab-btn--highlight::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(
                110deg,
                rgba(255,255,255,0) 0%,
                rgba(255,255,255,0) 38%,
                rgba(255,255,255,1) 50%,
                rgba(255,255,255,0) 62%,
                rgba(255,255,255,0) 100%
            );
            transform: translateX(-130%);
            animation: tab-blue-shine 0.95s ease-out infinite;
            z-index: 0;
        }
        .tab-btn--highlight::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%) scaleX(1);
            width: 72%;
            bottom: 0;
            height: 4px;
            border-radius: 3px 3px 0 0;
            background: linear-gradient(90deg, #8fd7ff, var(--sky), var(--sky-l));
            box-shadow: 0 0 18px rgba(58, 155, 213, 0.75), 0 0 26px rgba(58, 155, 213, 0.45);
            z-index: 0;
        }
        .tab-btn--highlight span {
            position: relative;
            z-index: 1;
            background: linear-gradient(90deg, #1d5f89 0%, #2f9ddd 32%, #8ed6ff 50%, #2f9ddd 68%, #1d5f89 100%);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: tab-blue-text-flow 0.95s linear infinite;
            text-shadow: 0 0 14px rgba(58,155,213,0.35);
            font-weight: 900;
        }
        @keyframes tab-blue-shine {
            0% { transform: translateX(-130%); }
            60% { transform: translateX(145%); }
            100% { transform: translateX(145%); }
        }
        @keyframes tab-blue-bg-flow {
            0% { background-position: 0% 0; }
            100% { background-position: 300% 0; }
        }
        @keyframes tab-blue-text-flow {
            0% { background-position: 0% 0; }
            100% { background-position: 300% 0; }
        }
        .tab-divider { width: 1px; background: var(--line); margin: 12px 0; }

        /* ── HERO ──────────── */
        .hero {
            padding: 0;
            background: var(--white);
            overflow: hidden;
        }
        /* Split hero: left text | right visual */
        .hero-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            min-height: 100svh;
        }
        .hero-left {
            padding: 72px 48px 72px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #fff;
        }
        .hero-right {
            position: relative;
            background:
                radial-gradient(circle at 30% 70%, rgba(240,123,90,0.22), transparent 45%),
                radial-gradient(circle at 80% 20%, rgba(58,155,213,0.28), transparent 40%),
                linear-gradient(145deg, #d6eefa 0%, #c0e2f5 40%, #a8d4ef 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-right-deco {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }
        /* Animated wave circles */
        .wave-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.35);
            animation: pulse 5s ease-in-out infinite;
        }
        .wave-circle:nth-child(1) { width: 300px; height: 300px; top: 10%; left: 10%; animation-delay: 0s; }
        .wave-circle:nth-child(2) { width: 480px; height: 480px; top: -5%; left: -5%; animation-delay: 1.2s; }
        .wave-circle:nth-child(3) { width: 660px; height: 660px; top: -15%; left: -15%; animation-delay: 2.4s; }
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.04); opacity: 0.25; }
        }
        .hero-card-stack {
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 14px;
            padding: 32px;
        }
        .mini-card {
            background: rgba(255,255,255,0.88);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.7);
            border-radius: 18px;
            padding: 16px 18px;
            box-shadow: 0 10px 28px rgba(30,90,140,0.12);
            display: flex;
            align-items: center;
            gap: 14px;
            min-width: 240px;
        }
        .mini-card .mc-icon { font-size: 28px; }
        .mini-card .mc-title { font-weight: 900; font-size: 14px; color: #1a3455; }
        .mini-card .mc-sub { font-size: 12px; color: var(--muted); margin-top: 2px; }
        .mini-card:nth-child(2) { transform: translateX(28px); }

        .hero-eyebrow {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: var(--sky);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .hero-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--sky); }
        .hero h1 {
            font-size: clamp(28px, 4vw, 52px);
            line-height: 1.2;
            letter-spacing: -0.04em;
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 14px;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .h1-svc-row {
            display: flex;
            align-items: baseline;
            gap: 6px;
            flex-wrap: wrap;
        }
        .svc-name {
            font-style: normal;
            font-size: clamp(42px, 7.5vw, 80px);
            font-weight: 900;
            letter-spacing: -0.06em;
            line-height: 1;
        }
        .svc-name.s1 { color: var(--sky); }
        .svc-name.s2 { color: var(--coral); }
        .svc-name.s3 { color: #2ea86d; }
        .svc-dot {
            font-size: clamp(28px, 4vw, 48px);
            color: #ccc;
            font-weight: 300;
        }
        .h1-sub {
            font-size: clamp(18px, 2.6vw, 28px);
            font-weight: 700;
            color: var(--ink);
            letter-spacing: -0.03em;
            line-height: 1.3;
        }
        .h1-hint {
            font-size: clamp(13px, 1.6vw, 17px);
            font-weight: 600;
            letter-spacing: -0.01em;
            opacity: 0.85;
        }
        .hero h1 .sky {
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero h1 .coral {
            background: linear-gradient(135deg, var(--coral), #f5a080);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 15px;
            color: var(--muted);
            max-width: 440px;
            margin-bottom: 24px;
            word-break: keep-all;
        }
        .tag-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 26px;
        }
        .tag {
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
        }
        .tag-sky  { background: var(--sky-ll); color: var(--sky); border: 1px solid #b8dff4; }
        .tag-coral{ background: var(--coral-ll); color: var(--coral); border: 1px solid #f8c8b8; }
        .tag-gold { background: var(--gold-l); color: #a07820; border: 1px solid #f0d878; }
        .hero-btns { display: flex; flex-wrap: wrap; gap: 10px; }
        .btn-sky {
            min-height: 50px;
            padding: 0 24px;
            border-radius: 999px;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            color: #fff;
            font-weight: 900;
            font-size: 14px;
            border: 0;
            box-shadow: 0 10px 24px rgba(58,155,213,0.28);
            cursor: pointer;
            display: inline-flex;
            align-items: center;
        }
        .btn-line {
            min-height: 50px;
            padding: 0 20px;
            border-radius: 999px;
            border: 1.5px solid var(--line);
            background: #fff;
            color: var(--mid);
            font-weight: 800;
            font-size: 13px;
            display: inline-flex;
            align-items: center;
        }

        /* ── SECTIONS ──────── */
        .section { padding: 80px 24px; }
        .section.sky-bg { background: var(--sky-ll); }
        .section.coral-bg { background: var(--coral-ll); }
        .section.gold-bg { background: var(--gold-l); }
        .section.dark {
            background: linear-gradient(150deg, #0f2a42, #1a4060);
            color: #fff;
        }
        .inner { max-width: 1060px; margin: 0 auto; }
        .kicker {
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            color: var(--sky);
            margin-bottom: 6px;
        }
        .section.dark .kicker { color: var(--sky-l); }
        .section.coral-bg .kicker { color: var(--coral); }
        .title {
            font-size: clamp(28px, 5.2vw, 44px);
            line-height: 1.22;
            letter-spacing: -0.045em;
            font-weight: 900;
            color: var(--ink);
            margin-bottom: 14px;
        }
        .section.dark .title { color: #fff; }
        .title .sky  { color: var(--sky); }
        .title .coral { color: var(--coral); }
        .body-text { font-size: 15px; color: var(--muted); max-width: 720px; word-break: keep-all; }
        .section.dark .body-text { color: rgba(255,255,255,0.65); }

        /* ── SPLIT SECTION ── */
        .split-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            border-radius: 26px;
            overflow: hidden;
            margin-top: 32px;
            box-shadow: var(--shadow);
        }
        .split-left, .split-right {
            padding: 44px 36px;
        }
        .split-left {
            background: linear-gradient(160deg, var(--sky-ll), #d4eefa);
            border-right: 1px solid rgba(58,155,213,0.14);
        }
        .split-right {
            background: linear-gradient(160deg, var(--coral-ll), #fde8de);
        }
        .split-icon { font-size: 44px; margin-bottom: 14px; }
        .split-title { font-size: 24px; font-weight: 900; color: var(--ink); letter-spacing: -0.04em; margin-bottom: 10px; }
        .split-desc { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.8; }
        .check-list { list-style: none; display: grid; gap: 8px; }
        .check-list li { font-size: 14px; color: #395870; display: flex; align-items: flex-start; gap: 8px; }
        .check-list li::before {
            content: '✓';
            display: inline-flex;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 900;
            flex-shrink: 0;
        }
        .split-left .check-list li::before { background: var(--sky); color: #fff; }
        .split-right .check-list li::before { background: var(--coral); color: #fff; }

        /* ── STEP FLOW ──────── */
        .flow {
            margin-top: 36px;
            display: grid;
            grid-template-columns: repeat(5, minmax(0, 1fr));
            gap: 0;
            position: relative;
        }
        .flow::before {
            content: '';
            position: absolute;
            top: 32px;
            left: 10%;
            right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--sky-l), var(--coral-l));
            z-index: 0;
        }
        .flow-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            z-index: 1;
            padding: 0 8px;
        }
        .flow-dot {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            margin-bottom: 14px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
        }
        .flow-step:nth-child(1) .flow-dot,
        .flow-step:nth-child(2) .flow-dot { background: linear-gradient(135deg, var(--coral), #f5a080); }
        .flow-step:nth-child(3) .flow-dot { background: linear-gradient(135deg, var(--gold), #f0d060); }
        .flow-step:nth-child(4) .flow-dot,
        .flow-step:nth-child(5) .flow-dot { background: linear-gradient(135deg, var(--sky), var(--sky-l)); }
        .flow-step h3 { font-size: 14px; font-weight: 900; color: var(--ink); margin-bottom: 4px; }
        .flow-step p { font-size: 12px; color: var(--muted); }

        /* ── PLAN CARD ──────── */

        .plan h4 { font-size: 15px; color: var(--mid); margin-bottom: 10px; }
        .p-row { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
        .p-row:last-child { border-bottom: 0; }
        .p-row strong { color: var(--ink); }
        .p-row .minus { color: var(--coral); }
        .p-result {
            margin-top: 10px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            color: #fff;
            padding: 12px 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .p-result strong { font-size: 22px; letter-spacing: -0.04em; }


        /* ── REVIEW ──────────── */
        .review-grid {
            margin-top: 32px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }
        .review-card {
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 18px;
            padding: 20px;
        }
        .stars { color: var(--gold); font-size: 13px; margin-bottom: 8px; }
        .review-card h4 { font-size: 15px; margin-bottom: 6px; color: #fff; }
        .review-card p { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.7; }
        .reviewer { margin-top: 10px; font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 700; }
        .review-card.review-enter {
            opacity: 0;
            transform: translateY(24px);
            animation: reviewFadeInUp 0.55s ease forwards;
        }
        .review-card.review-leave {
            animation: reviewFadeOutUp 0.42s ease forwards;
        }
        @keyframes reviewFadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes reviewFadeOutUp {
            from { opacity: 1; transform: translateY(0); }
            to { opacity: 0; transform: translateY(-20px); }
        }

        /* ── FAQ ──────────────── */
        .faq-list { margin-top: 26px; display: grid; gap: 10px; }
        .faq-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            overflow: hidden;
        }
        .faq-q {
            padding: 14px 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            font-size: 14px;
            font-weight: 800;
            color: var(--ink);
        }
        .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
        .faq-a p { padding: 0 18px 16px; color: var(--muted); font-size: 13px; }
        .faq-item.open .faq-a { max-height: 180px; }
        .faq-icon { color: var(--sky); font-weight: 900; transition: transform 0.22s; }
        .faq-item.open .faq-icon { transform: rotate(45deg); }

        /* ── FORM SECTION ────── */
        .form-wrap {
            margin-top: 32px;
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 28px;
            align-items: center;
        }
        .form-copy h2 {
            font-size: clamp(26px, 5vw, 42px);
            line-height: 1.2;
            letter-spacing: -0.045em;
            color: #fff;
            margin-bottom: 12px;
        }
        .form-copy h2 .sky { color: var(--gold); }
        .form-copy p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 22px; }
        .form-copy .tel-chip {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 18px;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            font-size: 14px;
            color: #fff;
            font-weight: 800;
        }
        .form-box {
            background: rgba(255,255,255,0.96);
            border-radius: 24px;
            padding: 26px;
            box-shadow: 0 24px 60px rgba(10,30,60,0.25);
        }
        .form-box h3 { font-size: 18px; color: var(--ink); font-weight: 900; margin-bottom: 14px; }
        .f-field {
            width: 100%;
            height: 44px;
            border: 1px solid var(--line);
            border-radius: 10px;
            padding: 0 12px;
            margin-bottom: 9px;
            font-size: 14px;
            color: var(--ink);
            background: #fff;
            outline: none;
        }
        .f-field:focus { border-color: var(--sky); }
        .chk-agree {
            display: flex;
            align-items: center;
            gap: 7px;
            font-size: 12px;
            color: var(--muted);
            margin: 4px 0 12px;
        }
        .f-submit {
            width: 100%;
            height: 48px;
            border: 0;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            color: #fff;
            font-size: 15px;
            font-weight: 900;
            cursor: pointer;
        }

        /* ── CTA ──────────────── */
        .cta {
            padding: 88px 24px 112px;
            text-align: center;
            background: linear-gradient(180deg, var(--offwhite) 0%, #e8f6ff 100%);
        }
        .cta .title { margin: 0 auto 14px; }
        .cta .body-text { margin: 0 auto 28px; }

        /* ── FOOTER ──────────── */
        .footer {
            padding: 28px 24px;
            background: #0f2030;
            text-align: center;
            font-size: 11px;
            color: rgba(255,255,255,0.4);
        }

        /* ── STICKY ──────────── */
        .sticky {
            position: fixed;
            left: 0; right: 0; bottom: 0;
            z-index: 1000;
            display: flex;
            background: rgba(255,255,255,0.96);
            border-top: 1px solid var(--line);
            box-shadow: 0 -10px 28px rgba(58,155,213,0.1);
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        .sticky.visible { transform: translateY(0); }
        .sticky a {
            width: 50%;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 14px;
            gap: 6px;
        }
        .sticky .call { color: var(--mid); border-right: 1px solid var(--line); }
        .sticky .apply {
            width: 50%;
            min-height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 900;
            font-size: 14px;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            color: #fff;
            border: 0;
            cursor: pointer;
            font-family: inherit;
        }

        /* ── REVEAL ──────────── */
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }

        /* ── BENEFIT BAR ── */
        .benefit-bar {
            padding: 0 24px 0;
            background: var(--offwhite);
        }
        .benefit-bar-inner {
            max-width: 1060px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            transform: translateY(-28px);
        }
        .ben-card {
            border-radius: 18px;
            padding: 20px 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 14px 36px rgba(0,0,0,0.1);
        }
        .ben-card.appliance {
            background: linear-gradient(135deg, #f07b5a, #f5a07a);
            color: #fff;
        }
        .ben-card.refund {
            background: linear-gradient(135deg, #2ea86d, #62c99a);
            color: #fff;
        }
        .ben-card .ben-icon { font-size: 36px; flex-shrink: 0; }
        .ben-card strong {
            display: block;
            font-size: clamp(18px, 3vw, 24px);
            line-height: 1.25;
            letter-spacing: -0.03em;
            margin-bottom: 3px;
        }
        .ben-card span { font-size: 12px; opacity: 0.88; }

        /* ── URGENT CALLOUT ── */
        .urgent-section {
            background: #0f1f38;
            padding: 60px 24px;
        }
        .urgent-inner {
            max-width: 860px;
            margin: 0 auto;
            text-align: center;
        }
        .urgent-label {
            display: inline-block;
            background: rgba(255,90,90,0.18);
            color: #ff6b6b;
            border: 1px solid rgba(255,90,90,0.4);
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 5px 14px;
            border-radius: 30px;
            margin-bottom: 22px;
        }
        .urgent-title {
            color: #fff;
            font-size: clamp(22px, 4.5vw, 36px);
            font-weight: 900;
            line-height: 1.4;
            letter-spacing: -0.03em;
            margin-bottom: 18px;
        }
        .urgent-title em {
            font-style: normal;
            color: #ff8a65;
        }
        .urgent-title .u-green {
            color: #5de6a0;
        }
        .urgent-desc {
            color: rgba(255,255,255,0.72);
            font-size: 15px;
            line-height: 1.75;
            max-width: 600px;
            margin: 0 auto 28px;
        }
        .urgent-compare {
            display: flex;
            gap: 12px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 24px;
        }
        .uc-box {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: 16px;
            padding: 18px 24px;
            min-width: 180px;
            flex: 1;
            max-width: 220px;
        }
        .uc-box .uc-label {
            font-size: 11px;
            color: rgba(255,255,255,0.5);
            margin-bottom: 8px;
            letter-spacing: 0.05em;
        }
        .uc-box .uc-value {
            font-size: 20px;
            font-weight: 900;
            color: #fff;
            letter-spacing: -0.03em;
        }
        .uc-box.bad .uc-value { color: #ff6b6b; }
        .uc-box.good .uc-value { color: #5de6a0; }
        .uc-arrow {
            display: flex;
            align-items: center;
            color: rgba(255,255,255,0.4);
            font-size: 22px;
        }

        /* ── REFUND CALLOUT ── */
        .refund-callout {
            margin-top: 18px;
            margin-bottom: 18px;
            border-radius: 16px;
            background: linear-gradient(135deg, #2ea86d, #62c99a);
            color: #fff;
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .refund-callout .rc-label {
            font-size: 12px;
            opacity: 0.82;
            margin-bottom: 3px;
        }
        .refund-callout strong {
            font-size: clamp(20px, 3.5vw, 28px);
            letter-spacing: -0.04em;
            font-weight: 900;
        }
        .refund-callout .rc-note {
            font-size: 12px;
            opacity: 0.75;
            white-space: nowrap;
        }

        /* ── FORM MODAL ── */
        .form-modal-overlay {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 2000;
            background: rgba(10, 28, 50, 0.6);
            backdrop-filter: blur(4px);
            align-items: center;
            justify-content: center;
            padding: 16px;
        }
        .form-modal-overlay.open { display: flex; }
        .form-modal {
            background: #fff;
            border-radius: 22px;
            padding: 28px 26px;
            width: 100%;
            max-width: 460px;
            box-shadow: 0 32px 80px rgba(10,28,50,0.25);
            position: relative;
            animation: modalIn 0.28s ease;
        }
        @keyframes modalIn {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }
        .modal-close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: 0;
            background: var(--sky-ll);
            border-radius: 50%;
            font-size: 18px;
            color: var(--mid);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        .modal-badge {
            display: flex;
            gap: 6px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }
        .modal-badge span {
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 800;
        }
        .modal-badge .m-orange { background: rgba(240,123,90,0.12); color: var(--coral); }
        .modal-badge .m-green  { background: rgba(46,168,109,0.12); color: #2ea86d; }
        .form-modal h3 {
            font-size: 20px;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -0.035em;
            margin-bottom: 14px;
        }

        /* ── THREE SERVICE GRID ── */
        .three-grid {
            margin-top: 32px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }
        .svc-card {
            border-radius: 22px;
            padding: 28px 24px;
            overflow: hidden;
            position: relative;
            overflow: hidden;
        }
        .svc-wedding { background: linear-gradient(160deg, #fff5f2, #fde8de); border: 1px solid #f8c8b8; }
        .svc-cruise  { background: linear-gradient(160deg, #e8f6ff, #d4eefa); border: 1px solid #b8dff4; }
        .svc-sangjo  { background: linear-gradient(160deg, #f0f7f0, #dff0df); border: 1px solid #b8d8b8; }
        .svc-card .deco { position: absolute; right: -10px; bottom: -10px; font-size: 80px; opacity: 0.12; }
        .svc-card .svc-icon { font-size: 36px; margin-bottom: 12px; }
        .svc-badge {
            display: inline-flex;
            padding: 4px 10px;
            border-radius: 999px;
            font-size: 11px;
            font-weight: 900;
            margin-bottom: 10px;
        }
        .svc-wedding .svc-badge { background: rgba(240,123,90,0.15); color: var(--coral); }
        .svc-cruise  .svc-badge { background: rgba(58,155,213,0.15); color: var(--sky); }
        .svc-sangjo  .svc-badge { background: rgba(60,160,60,0.12); color: #3c8a3c; }
        .svc-card h3 { font-size: 20px; font-weight: 900; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.03em; }
        .svc-card p  { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
        .svc-card ul { list-style: none; display: grid; gap: 6px; }
        .svc-card li { font-size: 13px; color: #395870; display: flex; align-items: flex-start; gap: 7px; }
        .svc-card li::before {
            content: '✓';
            display: inline-flex;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            font-size: 9px;
            font-weight: 900;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .svc-wedding li::before { background: var(--coral); color: #fff; }
        .svc-cruise  li::before { background: var(--sky);   color: #fff; }
        .svc-sangjo  li::before { background: #4aaa4a;      color: #fff; }

        /* ── APPLIANCE SECTION ── */
        .app-intro {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: center;
            margin-top: 32px;
        }
        .app-intro-text h3 {
            font-size: clamp(22px, 4vw, 34px);
            color: var(--ink);
            letter-spacing: -0.04em;
            margin-bottom: 10px;
        }
        .app-intro-text p { font-size: 14px; color: var(--muted); line-height: 1.8; }
        .app-notice {
            margin-top: 12px;
            font-size: 12px;
            color: #8fa8be;
            padding: 10px 14px;
            background: rgba(58,155,213,0.06);
            border-left: 3px solid var(--sky-l);
            border-radius: 0 8px 8px 0;
        }
        .app-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }
        .app-brand {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 16px;
            padding: 18px;
            display: flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 6px 18px rgba(58,155,213,0.08);
        }
        .app-brand .brand-icon { font-size: 30px; }
        .app-brand .brand-name { font-size: 15px; font-weight: 900; color: var(--ink); }
        .app-brand .brand-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }
        .app-items {
            margin-top: 20px;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 10px;
        }
        .app-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 16px 12px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(58,155,213,0.07);
        }
        .app-item .ai-icon { font-size: 28px; margin-bottom: 8px; }
        .app-item .ai-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
        .app-item .ai-brand { font-size: 11px; color: var(--muted); }

        /* ── SERVICE IMAGE CARDS ── */
        .svc-img-wrap {
            width: calc(100% + 48px);
            height: 190px;
            margin: -28px -24px 20px -24px;
            overflow: hidden;
        }
        .svc-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        /* ── APPLIANCE PRODUCT GRID ── */
        .app-product-section {
            margin-top: 36px;
            border-top: 1px solid var(--line);
            padding-top: 32px;
        }
        .app-product-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 20px;
            text-align: center;
            letter-spacing: -0.02em;
        }
        .app-product-title span { color: var(--coral); }
        .app-mix-img {
            width: 100%;
            border-radius: 16px;
            display: block;
            box-shadow: 0 8px 40px rgba(0,0,0,0.08);
            margin-bottom: 28px;
        }
        .product-grid-simple {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 14px;
        }
        .grid-item {
            background: #fff;
            border: 1px solid var(--line);
            border-radius: 14px;
            padding: 18px 12px;
            text-align: center;
            transition: transform 0.22s, box-shadow 0.22s;
        }
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.1);
        }
        .img-box {
            width: 100%;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
        }
        .img-box img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .grid-item .name {
            font-size: 12px;
            font-weight: 500;
            color: #555;
            margin: 0;
            line-height: 1.4;
        }

        /* ── RESPONSIVE ────── */
        @media (max-width: 960px) {
            .benefit-bar-inner { grid-template-columns: 1fr; transform: translateY(-18px); }
            .hero-split { grid-template-columns: 1fr; }
            .hero-right { min-height: 340px; }
            .split-wrap { grid-template-columns: 1fr; }
            .three-grid { grid-template-columns: 1fr; }
            .flow { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 0; }
            .flow::before { display: none; }
            .plan-grid, .review-grid { grid-template-columns: 1fr; }
            .form-wrap { grid-template-columns: 1fr; }
            .app-intro { grid-template-columns: 1fr; }
            .app-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 560px) {
            .hero-left { padding: 52px 20px 52px; }
            .svc-name { font-size: clamp(36px, 11vw, 60px); }
            .h1-svc-row { gap: 4px; }
            .section { padding: 62px 16px; }
            .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .hero-btns { flex-direction: column; align-items: stretch; }
            .btn-sky, .btn-line { width: 100%; justify-content: center; }
            .app-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
            .app-grid { grid-template-columns: 1fr; }
            .urgent-compare { flex-direction: column; align-items: center; }
            .uc-box { max-width: 100%; width: 100%; }
            .uc-arrow { transform: rotate(90deg); }
        }

/* ── LEAD MODAL (17659419572406 스타일 참고) ── */
        .lead-modal {
            position: fixed;
            inset: 0;
            z-index: 1200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px 16px;
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .lead-modal.is-open {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .lead-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(13, 36, 32, 0.45);
        }
        .lead-modal__dialog {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 460px;
            background: #fff;
            border-radius: 22px;
            padding: 26px 22px 24px;
            box-shadow: 0 32px 80px rgba(10, 28, 50, 0.25);
            border: 1px solid rgba(58, 155, 213, 0.12);
        }
        .lead-modal__close {
            position: absolute;
            top: 14px;
            right: 16px;
            width: 32px;
            height: 32px;
            border: none;
            background: var(--sky-ll);
            font-size: 18px;
            line-height: 1;
            color: var(--mid);
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .lead-modal__close:hover {
            background: #d7eefd;
            color: var(--ink);
        }
        .lead-modal__title {
            display: none;
        }
        .lead-modal__body { text-align: left; }
        .lead-modal-desc {
            font-size: 14px;
            color: #6f8aa3;
            margin: 0 0 12px;
            line-height: 1.6;
        }
        .lead-field {
            display: flex;
            flex-direction: column;
            gap: 6px;
            margin-bottom: 10px;
            font-size: 13px;
            font-weight: 700;
            color: #23405c;
        }
        .lead-field input,
        .lead-field select {
            width: 100%;
            height: 44px;
            padding: 0 14px;
            font-size: 14px;
            border: 1px solid #c7d7e7;
            border-radius: 10px;
            font-family: inherit;
            background: #fff;
            color: var(--ink);
        }
        .lead-field select {
            min-height: 44px;
            padding-right: 40px;
            appearance: none;
            -webkit-appearance: none;
            background-image:
                    linear-gradient(45deg, transparent 50%, #24374a 50%),
                    linear-gradient(135deg, #24374a 50%, transparent 50%);
            background-position:
                    calc(100% - 18px) 53%,
                    calc(100% - 12px) 53%;
            background-size: 5px 5px, 5px 5px;
            background-repeat: no-repeat;
            cursor: pointer;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .lead-modal .lead-field .lead-select {
            display: block !important;
            width: 100% !important;
            height: 44px !important;
            min-height: 44px !important;
            padding: 0 42px 0 14px !important;
            border: 1px solid #c7d7e7 !important;
            border-radius: 10px !important;
            background-color: #fff !important;
            color: var(--ink) !important;
            font-family: inherit !important;
            font-size: 14px !important;
            font-weight: 400 !important;
            line-height: 44px !important;
            box-shadow: none !important;
            appearance: none !important;
            -webkit-appearance: none !important;
            -moz-appearance: none !important;
        }
        .lead-field input:focus,
        .lead-field select:focus {
            outline: none;
            border-color: #88bde6;
            box-shadow: 0 0 0 3px rgba(58, 155, 213, 0.16);
        }
        .lead-terms {
            margin: 4px 0 12px;
            padding: 8px 0 2px;
            border-radius: 0;
            background: transparent;
            border: 0;
        }
        .lead-terms__row {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            color: #6d8397;
            line-height: 1.35;
        }
        .lead-terms__row input {
            width: 16px;
            height: 16px;
            accent-color: var(--gold);
            flex-shrink: 0;
        }
        .lead-terms__row label {
            flex: 1;
            min-width: 0;
            cursor: pointer;
            font-weight: 600;
        }
        .lead-terms__detail {
            border: none;
            background: transparent;
            color: #e5b63d;
            font-size: 12px;
            font-weight: 700;
            text-decoration: underline;
            cursor: pointer;
            padding: 0;
            white-space: nowrap;
            font-family: inherit;
        }
        .required-text {
            color: #e5b63d;
            font-weight: 800;
        }
        .lead-form-headline {
            font-size: 42px;
            font-weight: 900;
            color: var(--ink);
            letter-spacing: -0.04em;
            line-height: 1.12;
            margin: 0 0 8px;
        }
        .lead-modal-submit {
            width: 100%;
            margin-top: 12px;
            height: 48px;
            padding: 0 20px;
            font-size: 15px;
            font-weight: 800;
            color: var(--white);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            box-shadow: 0 10px 24px rgba(58, 155, 213, 0.28);
        }
        .lead-modal-submit:hover { filter: brightness(1.03); }
        @media (max-width: 560px) {
            .lead-modal {
                align-items: flex-end;
                padding: 10px;
            }
            .lead-modal__dialog {
                max-width: 100%;
                border-radius: 20px;
                padding: 24px 16px 18px;
            }
            .lead-modal__close {
                top: 10px;
                right: 10px;
                width: 34px;
                height: 34px;
                font-size: 20px;
            }
            .modal-badge {
                gap: 6px;
                margin-bottom: 10px;
                padding-right: 38px;
            }
            .modal-badge span {
                font-size: 10px;
                padding: 4px 8px;
            }
            .lead-form-headline {
                font-size: 40px;
                margin-bottom: 6px;
            }
            .lead-modal-desc {
                font-size: 13px;
                margin-bottom: 10px;
            }
            .lead-field {
                margin-bottom: 9px;
            }
            .lead-field input,
            .lead-field select,
            .lead-modal .lead-field .lead-select {
                height: 42px !important;
                min-height: 42px !important;
                line-height: 42px !important;
                font-size: 15px !important;
            }
            .lead-terms {
                margin-top: 2px;
            }
            .lead-terms__row label {
                font-size: 12px;
            }
            .lead-modal-submit {
                margin-top: 8px;
                height: 50px;
                font-size: 15px;
                border-radius: 13px;
            }
        }
        .boram-alert-modal {
            position: fixed;
            inset: 0;
            z-index: 1400;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px 16px;
        }
        .boram-alert-modal.is-open {
            display: flex;
        }
        .boram-alert-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(13, 36, 32, 0.5);
        }
        .boram-alert-modal__dialog {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 340px;
            background: var(--white);
            border-radius: 16px;
            padding: 28px 24px 24px;
            text-align: center;
            box-shadow: 0 20px 44px rgba(13, 36, 32, 0.2);
            border: 1px solid var(--border-soft);
        }
        .boram-alert-modal__message {
            margin: 0 0 22px;
            color: var(--ink);
            font-size: 15px;
            font-weight: 700;
            line-height: 1.55;
            word-break: keep-all;
        }
        .boram-alert-modal__button {
            width: 100%;
            border: none;
            border-radius: 12px;
            padding: 13px 18px;
            background: linear-gradient(135deg, var(--gold-l), var(--gold));
            color: var(--white);
            font-family: inherit;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
        }

        /* ── LEGACY COMMON POPUP (showMyConfirmModal) ── */
        .bj-modal-overlay {
            position: fixed;
            inset: 0;
            z-index: 1600;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px 16px;
            background: rgba(13, 36, 32, 0.56);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.25s ease, visibility 0.25s ease;
        }
        .bj-modal-overlay.show {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
        }
        .bj-modal-box {
            width: 100%;
            max-width: 360px;
            background: #fff;
            border: 1px solid rgba(58, 155, 213, 0.14);
            border-radius: 16px;
            box-shadow: 0 24px 48px rgba(10, 28, 50, 0.28);
            padding: 24px 18px 16px;
            text-align: center;
            transform: translateY(10px);
            transition: transform 0.25s ease;
        }
        .bj-modal-overlay.show .bj-modal-box {
            transform: translateY(0);
        }
        .bj-modal-msg {
            color: var(--ink);
            font-size: 16px;
            font-weight: 800;
            line-height: 1.6;
            word-break: keep-all;
            margin-bottom: 18px;
            white-space: normal;
        }
        .bj-modal-btn {
            flex: 1 1 0;
            min-height: 42px;
            border: 0;
            border-radius: 10px;
            background: linear-gradient(135deg, var(--sky), var(--sky-l));
            color: #fff;
            font-size: 14px;
            font-weight: 800;
            cursor: pointer;
            font-family: inherit;
        }
        .bj-modal-btn + .bj-modal-btn {
            margin-left: 8px;
        }
        .privacy-detail-modal {
            position: fixed;
            inset: 0;
            z-index: 1300;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 24px 16px;
        }
        .privacy-detail-modal.is-open {
            display: flex;
        }
        .privacy-detail-modal__backdrop {
            position: absolute;
            inset: 0;
            background: rgba(13, 36, 32, 0.5);
        }
        .privacy-detail-modal__dialog {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 560px;
            max-height: min(76vh, 620px);
            overflow: hidden;
            background: var(--white);
            border-radius: 18px;
            box-shadow: 0 24px 48px rgba(13, 36, 32, 0.2);
            display: flex;
            flex-direction: column;
        }
        .privacy-detail-modal__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 18px 20px;
            border-bottom: 1px solid var(--border-soft);
        }
        .privacy-detail-modal__title {
            margin: 0;
            font-size: 18px;
            font-weight: 900;
            color: var(--ink);
        }
        .privacy-detail-modal__close {
            width: 36px;
            height: 36px;
            border: none;
            border-radius: 10px;
            background: var(--gold-xpale);
            color: var(--ink);
            font-size: 22px;
            line-height: 1;
            cursor: pointer;
        }
        .privacy-detail-modal__body {
            padding: 20px;
            overflow: auto;
            font-size: 13px;
            line-height: 1.7;
            color: var(--ink-light);
        }
