/* 맞춤 축구화 영문 랜딩(custom-en.php) 전용 — custom.php 인라인 스타일에서 영문 페이지에 쓰는 규칙만 옮김 */
:root {
    --black:   #000000;
    --gray:    #f5f5f7;
    --white:   #ffffff;
    --label:   #1d1d1f;
    --label-s: rgba(0,0,0,0.80);
    --label-t: rgba(0,0,0,0.48);
    --sep:     rgba(0,0,0,0.10);
    --accent:    #e31b23;
    --accent-hot: #ff453a;
    --dk-card: #272729;
    --shadow:  rgba(0,0,0,0.22) 3px 5px 30px 0px;
    --green:   #32d74b;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'SF Pro Text', 'SF Pro Display',
                 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont,
                 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    background: var(--white); color: var(--label);
    -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ── HERO ─ 좌(텍스트) / 우(이미지) 분할 ──── */
.hero {
    background: var(--black);
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex; align-items: stretch;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1400px; margin: 0 auto;
    width: 100%; align-items: stretch;
}
.hero-text {
    padding: 140px 52px 80px 60px;
    display: flex; flex-direction: column; justify-content: center;
}
.hero-eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: -0.12px;
    color: rgba(255,255,255,0.48); text-transform: uppercase;
    margin-bottom: 12px;
}
.hero-h1 {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: clamp(34px, 4.5vw, 64px); font-weight: 600;
    line-height: 1.07; letter-spacing: -0.28px;
    color: #fff; margin-bottom: 18px;
}
.hero-h1 span { color: rgba(255,255,255,0.38); }
.hero-sub {
    font-size: clamp(15px, 1.5vw, 19px); font-weight: 400;
    line-height: 1.47; letter-spacing: -0.374px;
    color: rgba(255,255,255,0.56); margin-bottom: 36px;
}
.hero-btns {
    display: flex; gap: 12px; flex-wrap: wrap;
}
.btn-red {
    background: var(--accent); color: #fff;
    font-size: 17px; font-weight: 400; letter-spacing: -0.374px;
    padding: 9px 22px; border-radius: 8px;
    text-decoration: none; transition: opacity 0.2s;
}
.btn-red:hover { opacity: 0.86; }
.btn-pill {
    color: #fff; font-size: 17px; font-weight: 400; letter-spacing: -0.374px;
    padding: 8px 20px;
    border: 2px solid rgba(255,255,255,0.75); border-radius: 980px;
    text-decoration: none; transition: background 0.2s, border-color 0.2s;
}
.btn-pill:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
.btn-pill--phone { font-weight: 600; border-color: #fff; }
/* 히어로 우측 이미지 — 누끼 PNG, 검은 배경 위 자연스럽게 띄우기 */
.hero-img {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* 신발 뒤에 아주 은은한 빛 */
    background: radial-gradient(ellipse 90% 70% at 50% 65%,
        rgba(255,255,255,0.045) 0%,
        transparent 65%);
}
.hero-img img {
    /* 컨테이너 너비보다 크게 키워 꽉 채우는 느낌 */
    width: 108%;
    height: auto;
    max-width: none;
    display: block;
    position: relative;
    /* 밑창이 검은 배경에 묻히지 않도록 바닥 glow + 신발 위에 은은한 빛 */
    filter:
        drop-shadow(0 -6px 36px rgba(255,255,255,0.10))
        drop-shadow(0 32px 60px rgba(0,0,0,0.95))
        brightness(1.05) contrast(1.06);
    /* 살짝 우측으로 치우쳐 텍스트 쪽과 시각적 여백 */
    transform: translateX(4%);
}

/* ── 갤러리 — 컬러웨이 ───────────────────────── */
.gallery {
    background: var(--black);
    padding: 4px 8px 80px;
}
.gallery-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
    max-width: 1200px; margin: 0 auto;
}
.gallery-item img {
    width: 100%; height: auto; display: block;
    border-radius: 4px;
}
.gallery-caption {
    text-align: center; margin-top: 20px;
    font-size: 12px; font-weight: 400; letter-spacing: -0.12px;
    color: rgba(255,255,255,0.40);
}

/* ── 섹션 공통 ────────────────────────────────── */
.sec { padding: 88px 22px; }
.sec-black { background: var(--black); }
.sec-gray  { background: var(--gray); }
.sec-white { background: var(--white); }
.inner { max-width: 980px; margin: 0 auto; }
.eyebrow {
    font-size: 12px; font-weight: 600; letter-spacing: -0.12px;
    color: var(--accent); text-transform: uppercase; margin-bottom: 8px;
}
.sec-black .eyebrow { color: rgba(255,255,255,0.48); }
.sec-title {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 600;
    line-height: 1.07; letter-spacing: -0.28px; margin-bottom: 14px;
}
.sec-black .sec-title { color: #fff; }
.sec-body {
    font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: var(--label-s); max-width: 620px; margin-bottom: 52px;
}
.sec-black .sec-body { color: rgba(255,255,255,0.56); }

/* ── 캥거루 가죽 — 빌보드 스탯 ───────────────── */
.kang-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
}
.kang-block {
    background: var(--dk-card); padding: 44px 36px;
}
.kang-block:first-child { border-radius: 12px 0 0 0; }
.kang-block:nth-child(2) { border-radius: 0 12px 0 0; }
.kang-block:nth-child(3) { border-radius: 0; }
.kang-block:last-child { border-radius: 0 0 12px 0; }
.kang-stat {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 64px; font-weight: 600; line-height: 1; letter-spacing: -0.28px;
    color: #fff; margin-bottom: 6px;
}
.kang-stat span {
    font-size: 28px; font-weight: 400; letter-spacing: -0.28px;
    color: rgba(255,255,255,0.56);
}
.kang-label {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 21px; font-weight: 600; line-height: 1.19; letter-spacing: 0.231px;
    color: #fff; margin-bottom: 10px;
}
.kang-desc {
    font-size: 15px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: rgba(255,255,255,0.56);
}
.kang-wide {
    background: var(--dk-card); padding: 44px 36px; margin-top: 2px;
    border-radius: 0 0 12px 12px;
}
.kang-wide-title {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 28px; font-weight: 600; line-height: 1.14; letter-spacing: 0.196px;
    color: #fff; margin-bottom: 12px;
}
.kang-wide-body {
    font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: rgba(255,255,255,0.56); max-width: 720px;
}

/* ── 가격 — 테이블 행 스타일, 카드 없음 ─────── */
.price-table { max-width: 680px; margin: 0 auto; }
.price-row {
    display: grid; grid-template-columns: 1fr auto;
    align-items: baseline; gap: 16px;
    padding: 28px 0;
    border-bottom: 0.5px solid var(--sep);
}
.price-row:last-child { border-bottom: none; }
.price-row.rec .p-name { color: var(--label); }
.price-row.rec .p-amount-num { color: var(--accent); }
.p-name {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 28px; font-weight: 600; line-height: 1.14; letter-spacing: 0.196px;
    color: var(--label-s);
}
.p-sub {
    font-size: 14px; font-weight: 400; letter-spacing: -0.224px;
    color: var(--label-t); margin-top: 4px;
}
.p-features {
    list-style: none; margin-top: 10px;
}
.p-features li {
    font-size: 14px; font-weight: 400; letter-spacing: -0.224px;
    color: var(--label-t); line-height: 1.6;
    padding-left: 14px; position: relative;
}
.p-features li::before {
    content: "—"; position: absolute; left: 0;
    color: var(--label-t); font-size: 12px;
}
.price-row.rec .p-features li,
.price-row.rec .p-features li::before { color: var(--label-s); }
.p-rec-badge {
    display: inline-block; margin-left: 10px;
    font-size: 11px; font-weight: 600; letter-spacing: -0.12px;
    color: var(--accent);
    border: 1px solid var(--accent); border-radius: 4px;
    padding: 1px 8px; vertical-align: middle;
}
.p-amount {
    text-align: right; white-space: nowrap;
}
.p-amount-num {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 40px; font-weight: 600; line-height: 1; letter-spacing: -0.28px;
    color: var(--label-s);
}
.p-amount-unit {
    font-size: 16px; font-weight: 400; letter-spacing: -0.374px;
    color: var(--label-t); margin-left: 2px;
}
.price-note {
    margin-top: 28px; padding-top: 20px;
    border-top: 0.5px solid var(--sep);
    font-size: 14px; font-weight: 400; letter-spacing: -0.224px;
    color: var(--label-t); line-height: 1.6; text-align: center;
}

/* ── 특징 3열 ─────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.feat-block {
    background: var(--dk-card); padding: 40px 32px;
}
.feat-block:first-child { border-radius: 12px 0 0 12px; }
.feat-block:last-child  { border-radius: 0 12px 12px 0; }
.feat-num {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: -0.12px;
    color: rgba(255,255,255,0.30); margin-bottom: 32px;
}
.feat-name {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 21px; font-weight: 700; line-height: 1.19; letter-spacing: 0.231px;
    color: #fff; margin-bottom: 10px;
}
.feat-desc {
    font-size: 15px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: rgba(255,255,255,0.56);
}

/* ── 추천 대상 ────────────────────────────────── */
.target-list { list-style: none; max-width: 680px; }
.target-item {
    display: flex; align-items: baseline; gap: 16px;
    padding: 20px 0;
    border-bottom: 0.5px solid var(--sep);
    font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: var(--label);
}
.target-item:last-child { border-bottom: none; }
.t-idx {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 14px; font-weight: 600; letter-spacing: -0.12px;
    color: var(--accent); flex-shrink: 0; min-width: 24px;
}

/* ── 제작 과정 ─────────────────────────────────── */
.process-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.proc-block {
    background: var(--dk-card); padding: 36px 28px;
}
.proc-block:first-child { border-radius: 12px 0 0 12px; }
.proc-block:last-child  { border-radius: 0 12px 12px 0; }
.proc-num {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: 40px; font-weight: 600; line-height: 1; letter-spacing: -0.28px;
    color: rgba(255,255,255,0.20); margin-bottom: 20px;
}
.proc-name {
    font-size: 17px; font-weight: 600; letter-spacing: -0.374px;
    color: #fff; margin-bottom: 8px;
}
.proc-desc {
    font-size: 14px; font-weight: 400; letter-spacing: -0.224px;
    color: rgba(255,255,255,0.48); line-height: 1.43;
}

/* ── FAQ ──────────────────────────────────────── */
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-item {
    background: var(--white);
    border-radius: 12px; margin-bottom: 4px;
    box-shadow: var(--shadow);
}
.faq-q {
    width: 100%; text-align: left; background: none; border: none; cursor: pointer;
    padding: 20px 24px;
    font-size: 17px; font-weight: 400; letter-spacing: -0.374px; color: var(--label);
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-arr { flex-shrink: 0; font-size: 11px; color: var(--label-t); transition: transform 0.22s; }
.faq-item.open .faq-arr { transform: rotate(180deg); }
.faq-a {
    display: none;
    padding: 0 24px 20px;
    font-size: 17px; font-weight: 400; letter-spacing: -0.374px;
    color: var(--label-s); line-height: 1.47;
    border-top: 0.5px solid var(--sep); padding-top: 16px;
}
.faq-item.open .faq-a { display: block; }
/* ── CTA ──────────────────────────────────────── */
.cta-wrap { max-width: 600px; margin: 0 auto; text-align: center; }
.cta-title {
    font-family: 'SF Pro Display', 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
    font-size: clamp(28px, 4vw, 48px); font-weight: 600;
    line-height: 1.07; letter-spacing: -0.28px;
    color: #fff; margin-bottom: 16px;
}
.cta-sub {
    font-size: 17px; font-weight: 400; line-height: 1.47; letter-spacing: -0.374px;
    color: rgba(255,255,255,0.56); margin-bottom: 36px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
/* ── 스크롤 reveal ─────────────────────────────── */
.rv { opacity: 0; transform: translateY(24px); transition: opacity 0.58s ease, transform 0.58s ease; -webkit-transition: opacity 0.58s ease, -webkit-transform 0.58s ease; }
.rv.on { opacity: 1; transform: translateY(0); -webkit-transform: translateY(0); }
.d1 { transition-delay: 0.06s; -webkit-transition-delay: 0.06s; } .d2 { transition-delay: 0.13s; -webkit-transition-delay: 0.13s; }
.d3 { transition-delay: 0.20s; -webkit-transition-delay: 0.20s; } .d4 { transition-delay: 0.27s; -webkit-transition-delay: 0.27s; }
@media (prefers-reduced-motion: reduce) {
    .rv { opacity: 1; transform: none; -webkit-transform: none; transition: none; }
}


/* ── 영문 페이지 전용 ─────────────────────────── */
body.la-landing.la-en { font-family: 'SF Pro Text', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif; word-break: normal; padding-bottom: 0; }
.p-usd { display: block; margin-top: 6px; font-size: 14px; letter-spacing: -0.224px; color: var(--label-t); }
.ship-list { list-style: none; max-width: 680px; }
.ship-list li { padding: 18px 0; border-bottom: 0.5px solid rgba(255,255,255,0.14); font-size: 17px; line-height: 1.47; letter-spacing: -0.374px; color: rgba(255,255,255,0.80); }
.ship-list li:last-child { border-bottom: none; }
.ship-list strong { color: #fff; font-weight: 600; }
.mail-tpl { max-width: 680px; margin-top: 28px; padding: 20px 24px; border-radius: 12px; background: var(--white); box-shadow: var(--shadow); font-size: 15px; line-height: 1.6; color: var(--label-s); white-space: pre-line; }
.en-lang { font-size: 14px; color: #707072; text-decoration: none; }
.en-lang:hover { color: #111; text-decoration: underline; }
section[id] { scroll-margin-top: var(--la-nav-h); }

/* ── 색상별 영문 상품 페이지(product-en.php) ── */
.pd-price { margin: 4px 0 18px; }
.pd-price .p-amount-num { font-size: 28px; font-weight: 600; color: #fff; letter-spacing: -0.28px; }
.pd-price .p-usd { color: rgba(255,255,255,0.60); }
.pd-colors { list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; }
.pd-colors a { display: block; color: var(--label); text-decoration: none; font-size: 15px; font-weight: 600; }
.pd-colors img { width: 100%; height: auto; display: block; border-radius: 8px; margin-bottom: 8px; background: #fff; }
.color-links { text-align: center; margin-top: 10px; font-size: 13px; color: rgba(255,255,255,0.55); }
.color-links a { color: rgba(255,255,255,0.80); display: inline-block; padding: 12px 6px; }
@media (max-width: 600px) { .pd-colors { grid-template-columns: repeat(2, 1fr); } }

/* ── 영문 견적 요청 폼(la-en-quote-form.php) ── */
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 680px; margin-top: 28px; }
.quote-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--label); }
.quote-form input[type=text], .quote-form input[type=email], .quote-form select, .quote-form textarea {
    font: inherit; font-weight: 400; font-size: 16px; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.18);
    border-radius: 10px; background: #fff; color: var(--label); width: 100%; box-sizing: border-box;
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { outline: 2px solid #e31b23; outline-offset: 1px; }
.quote-form .quote-wide { grid-column: 1 / -1; }
.quote-form .quote-agree { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; color: var(--label-s); }
.quote-form .quote-agree input { margin-top: 3px; width: 18px; height: 18px; flex: none; }
.quote-form button { border: 0; cursor: pointer; justify-self: start; }
.quote-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.quote-err { margin-top: 16px; padding: 12px 14px; border-radius: 10px; background: #fff1f1; color: #b5121b; font-size: 15px; }
.quote-done { margin-top: 20px; max-width: 680px; font-size: 17px; line-height: 1.5; color: var(--label-s); }
.quote-done p { margin-bottom: 12px; }
.quote-done .btn-red { display: inline-block; margin-top: 8px; }
@media (max-width: 600px) { .quote-form { grid-template-columns: 1fr; } }
