﻿:root {
    --nav-height: 74px;
    --bg: #fff8f1;
    --surface: #ffffff;
    --ink: #1a1b34;
    --muted: #565b78;
    --line: #e8dece;
    --navy: #203a63;
    --navy-strong: #132846;
    --coral: #f06543;
    --mint: #13a89e;
    --sand: #ffd9b2;
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 14px;
    --shadow-soft: 0 18px 45px rgba(19, 40, 70, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "SUIT", "Pretendard", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    scroll-padding-top: calc(var(--nav-height) + 10px);
    overflow-x: hidden;
    overflow-x: clip;
}

body {
    color: var(--ink);
    overflow-x: hidden;
    overflow-x: clip;
    background:
        radial-gradient(circle at 12% 14%, rgba(240, 101, 67, 0.16), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(19, 168, 158, 0.14), transparent 36%),
        radial-gradient(circle at 70% 72%, rgba(255, 217, 178, 0.35), transparent 44%),
        var(--bg);
}

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

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    z-index: 9999;
    background: linear-gradient(90deg, var(--coral), var(--mint));
}

.container {
    width: min(1160px, 92vw);
    margin: 0 auto;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #12284a, #1a3967);
    border-bottom: 1px solid rgba(238, 245, 255, 0.24);
    box-shadow: 0 12px 28px rgba(8, 15, 28, 0.36);
}

.nav-inner {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand img {
    width: auto;
    height: 44px;
    aspect-ratio: 253.2 / 66.3;
    object-fit: contain;
}

.nav-cta {
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    color: #102442;
    background: linear-gradient(135deg, #ffd7a7, #ffe8cb);
    box-shadow: 0 10px 22px rgba(10, 20, 37, 0.3);
}

.section {
    min-height: calc(100svh - var(--nav-height));
    padding: 56px 0;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.section-hero {
    position: relative;
    padding-top: 26px;
}

.hero-noise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(31, 44, 71, 0.05) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
    opacity: 0.45;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 24px;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(32, 58, 99, 0.1);
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

h1 {
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.brush-underline {
    position: relative;
    display: inline-block;
    z-index: 0;
    padding: 0 1px;
}

.brush-underline::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: 0.03em;
    height: 0.38em;
    border-radius: 22px 12px 18px 14px;
    z-index: -1;
    background:
        radial-gradient(120% 90% at 4% 70%, rgba(240, 101, 67, 0.28), rgba(240, 101, 67, 0) 70%),
        linear-gradient(90deg, rgba(240, 101, 67, 0.22), rgba(246, 198, 140, 0.36), rgba(240, 101, 67, 0.24));
    transform: rotate(-1deg);
}

.marker-highlight {
    display: inline;
    padding: 0 4px;
    border-radius: 6px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 58%,
        rgba(246, 198, 140, 0.45) 58%,
        rgba(240, 101, 67, 0.28) 100%
    );
}

h2 {
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(20px, 2.2vw, 25px);
    line-height: 1.28;
    letter-spacing: -0.01em;
}

p {
    color: var(--muted);
    line-height: 1.65;
}

.hero-desc {
    max-width: 640px;
    font-size: clamp(16px, 2vw, 19px);
}

.hero-offer {
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(32, 58, 99, 0.14);
    font-weight: 800;
    color: var(--navy);
    box-shadow: 0 8px 18px rgba(20, 33, 60, 0.1);
}

.hero-actions {
    margin-top: 26px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--navy-strong));
    box-shadow: 0 12px 24px rgba(19, 40, 70, 0.28);
}

.btn-ghost {
    color: var(--navy);
    border: 1px solid rgba(32, 58, 99, 0.28);
    background: rgba(255, 255, 255, 0.85);
}

.hero-showcase {
    border-radius: var(--radius-xl);
    padding: 24px;
    background:
        linear-gradient(160deg, rgba(27, 47, 83, 0.93), rgba(22, 40, 74, 0.93) 40%, rgba(13, 33, 66, 0.95)),
        url("./img/img_01.jpg") center/cover no-repeat;
    color: #e8f1ff;
    box-shadow: 0 20px 40px rgba(19, 40, 70, 0.34);
}

.showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.showcase-head h2 {
    font-size: clamp(22px, 2.5vw, 30px);
    color: #f2f7ff;
}

.showcase-head span {
    font-size: 13px;
    color: #93b2dc;
}

.showcase-grid {
    display: grid;
    gap: 12px;
}

.showcase-grid article {
    border-radius: 16px;
    padding: 16px;
    border: 1px solid rgba(208, 223, 249, 0.22);
    background: rgba(197, 216, 245, 0.08);
}

.showcase-grid i {
    display: inline-flex;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: #0f2548;
    background: linear-gradient(140deg, #f6c68c, #f2e9db);
}

.showcase-grid h3 {
    color: #eef5ff;
    font-size: 19px;
    margin-bottom: 6px;
}

.showcase-grid p {
    color: #bdd0ea;
    font-size: 14px;
}

.section-points {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 44px;
    display: block;
}

.points-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.point-chip {
    border-radius: 16px;
    min-height: 68px;
    padding: 16px 18px;
    border: 1px solid rgba(32, 58, 99, 0.14);
    background: rgba(255, 255, 255, 0.86);
    color: var(--navy);
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(20, 33, 60, 0.08);
}

.point-chip i {
    color: var(--coral);
    margin-right: 8px;
}

.section-head {
    text-align: center;
    margin-bottom: 34px;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pain-card,
.process-card,
.faq-card,
.status-card,
.trust-card,
.price-card,
form {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.pain-card {
    padding: 24px;
}

.pain-card i {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(135deg, var(--coral), #ff8d64);
}

.pain-card h3 {
    margin-bottom: 8px;
}

.section-process {
    background:
        linear-gradient(180deg, rgba(255, 248, 241, 0.9), rgba(255, 248, 241, 0.9)),
        url("./img/img_03.jpg") center/cover no-repeat;
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.process-card {
    padding: 22px;
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -44px;
    top: -44px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19, 168, 158, 0.18), transparent 70%);
}

.process-card span {
    font-size: 12px;
    letter-spacing: 0.09em;
    font-weight: 800;
    color: var(--mint);
}

.process-card h3 {
    margin: 10px 0 8px;
}

.section-faq .faq-grid {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.section-trust {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 248, 241, 0.2));
}

.trust-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 16px;
    align-items: stretch;
}

.trust-visual {
    min-height: 420px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background:
        linear-gradient(160deg, rgba(16, 34, 66, 0.34), rgba(16, 34, 66, 0.46)),
        url("./img/img_02.jpg") center/cover no-repeat;
    box-shadow: var(--shadow-soft);
}

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

.trust-card {
    padding: 20px;
}

.trust-card span {
    display: inline-flex;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-weight: 800;
    color: var(--mint);
    margin-bottom: 8px;
}

.trust-card h3 {
    margin-bottom: 8px;
    font-size: clamp(18px, 2vw, 22px);
}

.section-price {
    min-height: calc(100svh - var(--nav-height));
    display: flex;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
    margin-top: 0;
    border-top: 1px solid rgba(32, 58, 99, 0.14);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 248, 241, 0.18));
}

.section-price-compare {
    min-height: calc(100svh - var(--nav-height));
    display: flex;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
    background:
        radial-gradient(circle at 20% 20%, rgba(246, 198, 140, 0.14), transparent 38%),
        rgba(255, 255, 255, 0.42);
}

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

.compare-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
    padding: 24px;
}

.compare-card h3 {
    font-size: clamp(21px, 2.2vw, 26px);
    margin-bottom: 12px;
}

.compare-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.compare-card li {
    color: var(--muted);
    line-height: 1.55;
    padding-left: 18px;
    position: relative;
}

.compare-card li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.58em;
    background: #b6c1d3;
}

.compare-fit {
    border-color: rgba(240, 101, 67, 0.35);
    background: linear-gradient(180deg, #fff7f1, #ffffff);
}

.compare-fit li::before {
    background: var(--coral);
}

.compare-note {
    margin-top: 14px;
    text-align: center;
    font-size: clamp(16px, 1.9vw, 21px);
    font-weight: 800;
    color: var(--navy);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.price-card {
    padding: 24px;
}

.price-card h3 {
    font-size: clamp(19px, 2vw, 23px);
    margin-bottom: 8px;
}

.price-card strong {
    display: inline-block;
    font-size: clamp(26px, 3vw, 34px);
    color: var(--navy);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.price-card.featured {
    border-color: rgba(240, 101, 67, 0.42);
    background: linear-gradient(180deg, #fff6f2, #ffffff);
}

.price-note {
    margin-top: 14px;
    text-align: center;
    font-size: 14px;
}

.section-structure-check {
    min-height: calc(100svh - var(--nav-height));
    display: flex;
    align-items: center;
    padding-top: 56px;
    padding-bottom: 56px;
    background:
        radial-gradient(circle at 85% 18%, rgba(19, 168, 158, 0.09), transparent 40%),
        rgba(255, 255, 255, 0.36);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.structure-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 22px;
}

.structure-card h3 {
    font-size: clamp(19px, 2.1vw, 24px);
    margin-bottom: 8px;
}

.structure-note {
    margin-top: 14px;
    text-align: center;
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 800;
    color: var(--navy);
}

.structure-actions {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.section-structure-check .structure-actions .btn-primary {
    background: linear-gradient(135deg, #2a4672, #1e3559);
    box-shadow: 0 8px 16px rgba(19, 40, 70, 0.2);
}

.faq-card {
    padding: 20px 22px;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    border-color: #dac8b5;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--ink);
}

.faq-title {
    flex: 1;
}

.faq-arrow {
    margin-left: auto;
    color: #7a849d;
    font-size: 12px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.faq-q,
.faq-a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.faq-q {
    background: rgba(240, 101, 67, 0.18);
    color: #b6462b;
}

.faq-a {
    background: rgba(19, 168, 158, 0.18);
    color: #0f706a;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin-top: 0;
    display: flex;
    gap: 10px;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.faq-card.active .faq-answer {
    max-height: 240px;
    opacity: 1;
    margin-top: 12px;
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}

.section-status {
    background:
        radial-gradient(circle at 80% 20%, rgba(19, 168, 158, 0.12), transparent 45%),
        rgba(255, 255, 255, 0.45);
}

.consult-status {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.status-card {
    padding: 24px;
    text-align: center;
}

.status-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.status-card strong {
    font-size: clamp(34px, 4vw, 44px);
    color: var(--navy);
}

.consultSwiper {
    margin-top: 20px;
    height: 200px;
}

.consult-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.consult-card span {
    color: var(--coral);
    font-weight: 700;
}

.section-consult {
    display: block;
    padding-bottom: 16px;
}

form {
    max-width: 530px;
    margin: 0 auto;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

input {
    width: 100%;
    height: 50px;
    border: 1px solid #d9cfbf;
    border-radius: 11px;
    padding: 0 14px;
    font-size: 15px;
    background: #fffdf8;
}

input:focus {
    outline: 2px solid rgba(240, 101, 67, 0.2);
    border-color: #e29779;
}

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    padding: 0;
    accent-color: var(--navy);
}

.agree-box {
    font-size: 13px;
    color: var(--muted);
}

.agree-box label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.policy-link {
    margin-left: 8px;
    color: #b84b2f;
    text-decoration: underline;
}

footer {
    width: 100%;
    margin-top: 56px;
    padding: 34px 16px;
    text-align: center;
    line-height: 1.7;
    color: #d7e5ff;
    background: linear-gradient(145deg, #0f2242, #172f57);
}

.floating-buttons {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.consult-btn,
.kakao-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(15, 20, 30, 0.2);
}

.consult-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--coral), #ff7f56);
}

.kakao-btn {
    color: #1f1f1f;
    background: #fee500;
}

.policy-layer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 14px;
}

.policy-content {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
}

.policy-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111827;
}

.policy-text {
    max-height: 320px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.policy-content .btn {
    width: 100%;
    height: 46px;
    margin-top: 0;
    border-radius: 10px;
    box-shadow: none;
    font-size: 15px;
}

@media (min-width: 1200px) {
    .section {
        padding: 72px 0;
    }

    .hero-layout {
        gap: 34px;
    }

    .hero-copy h1 {
        font-size: clamp(46px, 4.8vw, 74px);
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-desc {
        max-width: 700px;
        font-size: 20px;
        line-height: 1.72;
    }

    .hero-offer {
        margin-top: 12px;
        padding: 10px 16px;
        font-size: 17px;
    }

    .hero-showcase {
        padding: 30px;
    }

    .showcase-grid article {
        padding: 18px;
    }

    .showcase-grid h3 {
        font-size: 21px;
    }

    .section-price-compare .section-head h2,
    .section-faq .section-head h2,
    .section-structure-check .section-head h2 {
        font-size: clamp(34px, 3vw, 52px);
    }

    .compare-card {
        padding: 30px;
    }

    .compare-card h3 {
        font-size: clamp(24px, 2vw, 30px);
        margin-bottom: 14px;
    }

    .compare-card li {
        font-size: 16px;
        line-height: 1.7;
    }

    .structure-card {
        padding: 28px;
    }

    .structure-card h3 {
        font-size: clamp(21px, 2vw, 28px);
    }

    .structure-card p {
        font-size: 16px;
        line-height: 1.7;
    }

    .structure-note {
        margin-top: 18px;
        font-size: clamp(18px, 1.9vw, 24px);
    }

    .section-faq .faq-grid {
        max-width: 1080px;
        gap: 16px;
    }

    .faq-card {
        padding: 24px 26px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 1.72;
    }
}

@media (max-width: 1080px) {
    html {
        scroll-snap-type: none;
        scroll-padding-top: 68px;
    }

    .section {
        min-height: auto;
        display: block;
    }

    .hero-layout,
    .pain-grid,
    .process-line,
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .points-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-layout {
        grid-template-columns: 1fr;
    }

    .trust-visual {
        min-height: 300px;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }

    .structure-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 68px;
    }

    .section {
        padding: 52px 0;
    }

    .section-head h2 {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.25;
    }

    .brand img {
        width: auto;
        height: 36px;
    }

    .hero-layout,
    .pain-grid,
    .process-line,
    .consult-status,
    .points-wrap,
    .price-grid,
    .trust-grid,
    .structure-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .btn {
        text-align: center;
    }

    .brush-underline::after {
        height: 0.34em;
        bottom: 0.02em;
    }

    .marker-highlight {
        padding: 0 2px;
    }

    .hero-offer {
        font-size: 14px;
        padding: 7px 12px;
    }

    .compare-card,
    .structure-card,
    .faq-card {
        padding: 18px;
    }

    .compare-card li,
    .structure-card p,
    .faq-answer {
        font-size: 14px;
        line-height: 1.6;
    }

    form {
        padding: 18px;
    }

    .consultSwiper {
        height: 188px;
    }

    .floating-buttons {
        right: 10px;
        bottom: 10px;
    }

    .consult-btn,
    .kakao-btn {
        padding: 11px 13px;
        font-size: 14px;
    }

    /* 모바일 초기 로딩 시 AOS 좌우 이동으로 생기는 임시 가로 오버플로우 방지 */
    [data-aos="fade-left"] {
        transform: translate3d(24px, 0, 0);
    }

    [data-aos="fade-right"] {
        transform: translate3d(-24px, 0, 0);
    }
}
