/* =====================================================
   Saesol Custom — front-page.css  (Light + Gold)
   ===================================================== */

/* ─── 홈 레이아웃 초기화 ─── */
.home #sc-main { padding: 0; }
.home #sc-main > .sc-container { max-width: none; padding: 0; }

/* ─── 홈 헤더 로고 이미지 숨김 (데스크탑만: 히어로에 별도 표시) ─── */
@media (min-width: 769px) {
    .home .sc-logo { display: none; }
}

/* ─── 변수 ─── */
.home {
    --fp-gold:   #c9a84c;
    --fp-gold2:  #e8c97a;
    --fp-gold3:  #b5912a;
    --fp-ivory:  #fcfcf9;
    --fp-ivory2: #f5f3ec;
    --fp-card:   #ffffff;
    --fp-text:   #2d2f36;
    --fp-muted:  #6b6f7d;
    --fp-border: rgba(201,168,76,.15);
    --fp-radius: 20px;
    --fp-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* ─── 컨테이너 ─── */
.fp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ─── 공통 레이블 ─── */
.fp-label {
    display: block;
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--fp-gold);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.fp-label-dark { color: rgba(255,255,255,.7); }

/* ─── 공통 섹션 헤드 ─── */
.fp-section-head  { text-align: center; margin-bottom: 56px; }
.fp-section-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--fp-text);
    line-height: 1.35;
    margin: 0 0 14px;
}
.fp-section-title em { font-style: normal; color: var(--fp-gold); }
.fp-section-desc  { font-size: 15px; color: var(--fp-muted); line-height: 1.8; margin: 0; }

/* ─── 버튼 ─── */
.fp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2px;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    border: none;
}
.fp-btn-gold {
    background: var(--fp-gold);
    color: #fff;
    box-shadow: 0 4px 20px rgba(201,168,76,.35);
}
.fp-btn-gold:hover {
    background: var(--fp-gold3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201,168,76,.45);
}
.fp-btn-ghost {
    background: transparent;
    color: var(--fp-text);
    border: 1.5px solid rgba(45,47,54,.2);
}
.fp-btn-ghost:hover {
    border-color: var(--fp-gold);
    color: var(--fp-gold);
}

/* ─── 진입 애니메이션 (.fp-anim → .is-in) ─── */
.fp-anim {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.fp-anim.is-in { opacity: 1; transform: translateY(0); }

/* ─── 스크롤 reveal (.fp-reveal → .is-visible) ─── */
.fp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease;
}
.fp-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ─── 키프레임 ─── */
@keyframes fp-spin    { to { transform: rotate(360deg); } }
@keyframes fp-spin-rv { to { transform: rotate(-360deg); } }
@keyframes fp-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}
@keyframes fp-ring-pulse {
    0%, 100% { opacity: .12; }
    50%       { opacity: .22; }
}
@keyframes fp-line-pulse {
    0%, 100% { opacity: .35; }
    50%       { opacity: .8; }
}
@keyframes fp-marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
@keyframes fp-scroll-anim {
    0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50%  { opacity: 1; transform: scaleY(1); }
    100% { opacity: 0; transform: scaleY(1); }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.fp-hero {
    position: relative;
    min-height: 100vh;
    background: var(--fp-ivory);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 100px;
}

/* 배경 이미지 (opacity 30%) */
.fp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fp-hero-bg-url, none) center/cover no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

/* 데코 요소들 */
.fp-deco { position: absolute; pointer-events: none; z-index: 1; }

.fp-deco-ring1 {
    width: 620px; height: 620px;
    border: 1px solid rgba(201,168,76,.12);
    border-radius: 50%;
    top: calc(50% - 310px);
    right: -180px;
    animation: fp-ring-pulse 6s ease-in-out infinite;
}
.fp-deco-ring2 {
    width: 430px; height: 430px;
    border: 1.5px solid rgba(201,168,76,.1);
    border-radius: 50%;
    top: calc(50% - 215px);
    right: 20px;
    animation: fp-ring-pulse 8s ease-in-out infinite reverse;
}
.fp-deco-ring3 {
    width: 260px; height: 260px;
    border: 1px solid rgba(201,168,76,.1);
    border-radius: 50%;
    top: 8%;
    left: -80px;
    animation: fp-ring-pulse 5s ease-in-out infinite;
}
.fp-deco-dot1 {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--fp-gold);
    opacity: .55;
    top: 22%;
    right: 240px;
    animation: fp-float 4s ease-in-out infinite;
}
.fp-deco-dot2 {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--fp-gold);
    opacity: .35;
    bottom: 28%;
    right: 380px;
    animation: fp-float 5.5s ease-in-out infinite reverse;
}
.fp-deco-dot3 {
    width: 14px; height: 14px;
    border-radius: 50%;
    background: rgba(201,168,76,.25);
    top: 62%;
    left: 70px;
    animation: fp-float 3.8s ease-in-out infinite;
}
.fp-deco-line1 {
    width: 1px; height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,.4), transparent);
    top: 12%;
    right: 500px;
    animation: fp-line-pulse 3.5s ease-in-out infinite;
}
.fp-deco-line2 {
    width: 80px; height: 1px;
    background: linear-gradient(to right, transparent, rgba(201,168,76,.4), transparent);
    bottom: 22%;
    left: 120px;
    animation: fp-line-pulse 4.5s ease-in-out infinite reverse;
}

.fp-hero .fp-container { position: relative; z-index: 2; width: 100%; }

/* 히어로 레이아웃 */
.fp-hero-inner {
    display: flex;
    align-items: center;
    gap: 60px;
}
.fp-hero-text { flex: 1; min-width: 0; }

/* 로고 + Eyebrow 래퍼 */
.fp-hero-logo-wrap {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    margin-top: -100px;
}
.fp-hero-logo-img {
    height: 52px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.08));
}
.fp-hero-logo-svg {
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(201,168,76,.2));
}

/* Eyebrow 뱃지 */
.fp-hero-logo-wrap .fp-eyebrow {
    margin-bottom: 0;
}
.fp-eyebrow {
    display: inline-block;
    font-size: 22px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fp-gold);
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 50px;
    padding: 10px 28px;
    margin-bottom: 22px;
    font-weight: 700;
}

/* 타이틀 */
.fp-hero-title {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(28px, 3.8vw, 48px);
    font-weight: 700;
    color: var(--fp-text);
    line-height: 1.3;
    margin: 0 0 20px;
}
.fp-hero-title em { font-style: normal; color: var(--fp-gold); white-space: nowrap; }

/* 서브 카피 */
.fp-hero-sub {
    font-size: 15px;
    color: var(--fp-muted);
    line-height: 1.85;
    margin: 0 0 36px;
}

/* 통계 박스 */
.fp-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 40px;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: 16px;
    padding: 20px 28px;
    box-shadow: var(--fp-shadow);
    width: fit-content;
}
.fp-stat {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    column-gap: 2px;
    row-gap: 4px;
    align-items: end;
    justify-content: center;
    padding: 0 28px;
}
.fp-stat:first-child { padding-left: 0; }
.fp-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201,168,76,.2);
    flex-shrink: 0;
    align-self: center;
}
.fp-stat-num, .fp-stat-text {
    font-family: 'Noto Serif KR', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--fp-gold);
    line-height: 1;
    grid-column: 1;
    grid-row: 1;
}
.fp-stat-unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--fp-gold);
    line-height: 1;
    padding-bottom: 3px;
    grid-column: 2;
    grid-row: 1;
}
.fp-stat-label {
    font-size: 11px;
    color: var(--fp-muted);
    letter-spacing: .5px;
    grid-column: 1 / span 2;
    grid-row: 2;
    text-align: center;
    margin-top: 2px;
}

/* 버튼 행 */
.fp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* 히어로 오른쪽 카드 */
.fp-hero-card {
    flex: 0 0 540px;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: 24px;
    padding: 22px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,.07);
    position: relative;
    left: 160px;
}
.fp-hero-card-inner { display: flex; flex-direction: column; }

.fp-card-emblem {
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--fp-gold);
    letter-spacing: 8px;
    text-align: center;
    margin-bottom: 12px;
}
.fp-card-divider {
    height: 1px;
    background: rgba(201,168,76,.15);
    margin-bottom: 14px;
}

.fp-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fp-card-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.fp-card-icon { font-size: 33px; flex-shrink: 0; margin-top: 2px; }
.fp-card-item strong {
    display: block;
    font-size: 21px;
    font-weight: 700;
    color: var(--fp-text);
    margin-bottom: 5px;
}
.fp-card-item p {
    font-size: 18px;
    color: var(--fp-muted);
    line-height: 1.6;
    margin: 0;
}

.fp-card-link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    color: var(--fp-gold);
    text-decoration: none;
    border-top: 1px solid rgba(201,168,76,.12);
    padding-top: 12px;
    transition: letter-spacing .2s, color .2s;
}
.fp-card-link:hover { letter-spacing: 1px; color: var(--fp-gold3); }

/* 플로팅 배지 */
.fp-float-badge {
    position: absolute;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fp-text);
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    z-index: 4;
}
.fp-badge-tl { top: -18px; left: -22px; animation: fp-float 4.2s ease-in-out infinite; }
.fp-badge-br { bottom: -18px; right: -22px; animation: fp-float 3.6s ease-in-out infinite reverse; }
.fp-badge-emoji { font-size: 16px; }

/* 스크롤 힌트 */
.fp-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.fp-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(201,168,76,.6), transparent);
    animation: fp-scroll-anim 2.2s ease-in-out infinite;
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.fp-marquee {
    background: var(--fp-gold);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.fp-marquee-track {
    display: inline-flex;
    gap: 0;
    animation: fp-marquee 28s linear infinite;
    white-space: nowrap;
}
.fp-marquee-track span {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    padding: 0 16px;
    letter-spacing: .5px;
}
.fp-diamond { color: rgba(255,255,255,.45) !important; padding: 0 6px !important; }

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.fp-services {
    background: var(--fp-ivory2);
    padding: 100px 0;
}
.fp-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.fp-svc-card {
    background: var(--fp-card);
    border: 1px solid rgba(201,168,76,.12);
    border-top: 3px solid var(--fp-gold);
    border-radius: var(--fp-radius);
    padding: 40px 36px 36px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 310px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}
.fp-svc-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(201,168,76,.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
}
.fp-svc-card:hover {
    border-color: rgba(201,168,76,.5);
    border-top-color: var(--fp-gold);
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,.11);
}
.fp-svc-card:hover::before { opacity: 1; }

.fp-svc-num {
    font-size: 11px;
    font-weight: 700;
    color: rgba(201,168,76,.5);
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.fp-svc-icon {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 20px;
}
.fp-svc-title {
    font-family: 'Noto Serif KR', serif;
    font-size: 21px;
    font-weight: 700;
    color: var(--fp-text);
    margin: 0 0 14px;
}
.fp-svc-desc {
    font-size: 14px;
    color: var(--fp-muted);
    line-height: 1.85;
    flex: 1;
    margin: 0 0 24px;
}
.fp-svc-arrow {
    color: var(--fp-gold);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    border-top: 1px solid rgba(201,168,76,.12);
    padding-top: 18px;
    margin-top: auto;
    transition: gap .2s;
}
.fp-svc-arrow::before {
    content: '자세히 보기';
    font-family: 'Noto Sans KR', sans-serif;
}
.fp-svc-card:hover .fp-svc-arrow { gap: 10px; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.fp-about {
    background: var(--fp-ivory);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.fp-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--fp-about-bg-url, none) center/cover no-repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}
.fp-about-inner { position: relative; z-index: 1; }
.fp-about-inner {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* 비주얼 컬럼 */
.fp-about-visual {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.fp-about-orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(201,168,76,.18);
    width: 350px; height: 350px;
    animation: fp-spin 36s linear infinite;
}
.fp-orb2 {
    width: 230px; height: 230px;
    border-color: rgba(201,168,76,.28);
    animation: fp-spin-rv 22s linear infinite;
}

.fp-about-center {
    position: relative;
    z-index: 2;
    text-align: center;
}
.fp-about-emblem {
    width: 130px; height: 130px;
    background: linear-gradient(135deg, var(--fp-gold), var(--fp-gold2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Serif KR', serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 10px;
    box-shadow: 0 0 50px rgba(201,168,76,.3);
}
.fp-about-emblem-sub {
    font-size: 12px;
    color: var(--fp-muted);
    letter-spacing: 3px;
    margin: 0;
}

/* about 부유 배지 */
.fp-about-badge {
    position: absolute;
    background: var(--fp-card);
    border: 1px solid var(--fp-border);
    border-radius: 14px;
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    z-index: 3;
    min-width: 96px;
}
.fp-ab-tl { top: 30px;    left: 6px;   animation: fp-float 4.5s ease-in-out infinite; }
.fp-ab-br { bottom: 30px; right: 6px;  animation: fp-float 3.8s ease-in-out infinite reverse; }
.fp-ab-bl { bottom: 30px; left: 6px;   animation: fp-float 5.2s ease-in-out infinite; }

.fp-ab-num {
    display: block;
    font-family: 'Noto Serif KR', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--fp-gold);
    line-height: 1;
}
.fp-ab-num small { font-size: 14px; }
.fp-about-badge span {
    display: block;
    font-size: 11px;
    color: var(--fp-muted);
    margin-top: 4px;
}

/* 텍스트 컬럼 */
.fp-about-content .fp-section-title { text-align: left; }
.fp-about-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}
.fp-about-point {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 26px 24px;
    background: var(--fp-card);
    border: 1px solid rgba(201,168,76,.08);
    border-radius: 14px;
    transition: all .25s;
}
.fp-about-point:hover {
    border-color: rgba(201,168,76,.35);
    box-shadow: 0 6px 20px rgba(0,0,0,.06);
    transform: translateX(4px);
}
.fp-point-num {
    flex: 0 0 52px;
    height: 52px;
    background: rgba(201,168,76,.1);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--fp-gold);
    font-family: 'Noto Serif KR', serif;
}
.fp-point-body h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--fp-text);
    margin: 0 0 7px;
}
.fp-point-body p {
    font-size: 17px;
    color: var(--fp-muted);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════
   CALCULATORS
════════════════════════════════════════ */
.fp-calcs {
    background: var(--fp-ivory2);
    padding: 100px 0;
}
.fp-calcs-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}
.fp-calc-card {
    background: var(--fp-card);
    border: 1px solid rgba(201,168,76,.1);
    border-radius: var(--fp-radius);
    padding: 28px 24px;
    text-decoration: none;
    text-align: center;
    width: 196px;
    position: relative;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.fp-calc-card:hover {
    border-color: var(--fp-gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(201,168,76,.18);
}
.fp-soon-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(201,168,76,.12);
    color: var(--fp-gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 3px 10px;
    border: 1px solid rgba(201,168,76,.25);
}
.fp-calc-emoji { font-size: 36px; margin-bottom: 4px; }
.fp-calc-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--fp-text);
    line-height: 1.4;
    margin: 0;
}
.fp-calc-hint { font-size: 12px; color: var(--fp-muted); margin: 0; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.fp-contact {
    background: linear-gradient(135deg, var(--fp-gold3) 0%, var(--fp-gold) 50%, var(--fp-gold2) 100%);
    padding: 80px 0;
}
.fp-contact-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}
.fp-contact-text { flex-shrink: 0; }
.fp-contact-text h2 {
    font-family: 'Noto Serif KR', serif;
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    margin: 0 0 0;
}
.fp-contact-text h2 em { font-style: normal; color: rgba(255,255,255,.8); }

.fp-contact-info {
    flex: 1;
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}
.fp-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.fp-contact-icon-wrap { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.fp-contact-item small {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    display: block;
    margin-bottom: 3px;
}
.fp-contact-item p {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.fp-contact-item a { color: #fff; }
.fp-contact-item a:hover { text-decoration: underline; }

.fp-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--fp-gold3);
    border-radius: 50px;
    padding: 14px 30px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    transition: all .2s;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.fp-contact-btn:hover {
    background: var(--fp-ivory);
    color: var(--fp-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

/* ════════════════════════════════════════
   반응형
════════════════════════════════════════ */
/* ── 태블릿 ── */
@media (max-width: 1024px) {
    .fp-services-grid { grid-template-columns: repeat(2, 1fr); }
    .fp-hero-card { flex: 0 0 420px; left: 0; }   /* left 오프셋 리셋 */
    .fp-about-inner { gap: 40px; }
    .fp-deco-ring1, .fp-deco-ring2 { opacity: .5; }
}

/* ── 모바일 ── */
@media (max-width: 768px) {
    /* 히어로 */
    .fp-hero { padding: 80px 0 56px; min-height: auto; }
    .fp-hero::before { opacity: 0.25; }
    .fp-hero-inner { flex-direction: column; gap: 32px; }

    /* 로고 래퍼 margin-top 리셋 */
    .fp-hero-logo-wrap { margin-top: 0; gap: 10px; }
    .fp-eyebrow { font-size: 14px; padding: 7px 16px; letter-spacing: 2px; }

    /* 히어로 카드: left 오프셋 리셋 + 전체폭 */
    .fp-hero-card {
        flex: 0 0 auto;
        width: 100%;
        left: 0;
        padding: 20px 22px;
    }
    .fp-badge-tl, .fp-badge-br { display: none; }

    /* 카드 내부 텍스트 크기 축소 */
    .fp-card-emblem { font-size: 20px; letter-spacing: 5px; }
    .fp-card-icon   { font-size: 24px; }
    .fp-card-item strong { font-size: 16px; }
    .fp-card-item p      { font-size: 14px; }
    .fp-card-link        { font-size: 15px; }

    /* 통계 */
    .fp-stats { width: 100%; justify-content: center; padding: 14px 16px; }
    .fp-stat  { padding: 0 14px; }
    .fp-stat-num, .fp-stat-text { font-size: 24px; }

    /* 서비스 */
    .fp-services { padding: 60px 0; }
    .fp-services-grid { grid-template-columns: 1fr; }
    .fp-svc-card { min-height: auto; padding: 28px 24px; }
    .fp-svc-icon  { font-size: 40px; margin-bottom: 14px; }
    .fp-svc-title { font-size: 18px; }
    .fp-svc-desc  { font-size: 13px; }

    /* 어바웃 */
    .fp-about { padding: 60px 0; }
    .fp-about-inner { grid-template-columns: 1fr; gap: 40px; }
    .fp-about-visual { height: 280px; }
    .fp-about-orb { width: 240px; height: 240px; }
    .fp-orb2      { width: 160px; height: 160px; }
    .fp-about-emblem { width: 96px; height: 96px; font-size: 17px; }
    .fp-point-body h4 { font-size: 17px; }
    .fp-point-body p  { font-size: 15px; }

    /* 계산기 */
    .fp-calcs { padding: 60px 0; }
    .fp-calcs-grid { gap: 12px; }
    .fp-calc-card { width: calc(50% - 6px); }

    /* 연락처 */
    .fp-contact { padding: 52px 0; }
    .fp-contact-inner { flex-direction: column; gap: 24px; }
    .fp-contact-info  { flex-direction: column; gap: 14px; }

    /* 공통 */
    .fp-section-head { margin-bottom: 36px; }
    .fp-section-title { font-size: 22px; }
    .fp-deco { opacity: .4; }
}

/* ── 소형 모바일 (480px 이하) ── */
@media (max-width: 480px) {
    .fp-hero { padding: 70px 0 48px; }
    .fp-hero-logo-svg { width: 38px; height: 38px; }
    .fp-hero-logo-img { height: 38px; }
    .fp-eyebrow { font-size: 12px; padding: 6px 12px; }
    .fp-hero-title { font-size: 24px !important; }
    .fp-hero-sub { font-size: 14px; }

    .fp-hero-btns { flex-direction: column; }
    .fp-btn { justify-content: center; }

    .fp-stat-divider { display: none; }
    .fp-stats { flex-wrap: wrap; row-gap: 12px; justify-content: flex-start; }
    .fp-stat  { padding: 0 10px; }

    .fp-services-grid { gap: 14px; }

    .fp-calc-card { width: 100%; }

    .fp-ab-bl { display: none; }

    .fp-contact h2 { font-size: 20px; }
}
