/* ============================================================
   JK Plastic Surgery – OC Medical Seminar Landing Page
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Inter:wght@400;500;600;700&display=swap');
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/woff2/Pretendard-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/woff2/Pretendard-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/woff2/Pretendard-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/woff2/Pretendard-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root{
  --jk-bronze: #A67C42;
  --jk-bronze-dark: #6B4E28;
  --jk-bronze-light: #C9A66B;
  --oc-orange: #E8895A;
  --oc-orange-deep: #C85A32;
  --oc-orange-soft: #FBE4D6;
  --ivory: #FAF6F0;
  --ivory-deep: #F1E9DD;
  --charcoal: #2B2420;
  --charcoal-soft: #5A5049;
  --white: #FFFFFF;
  --line: #E4DACB;
  --success: #4C7A5A;
  --error: #C0392B;

  --font-display: 'Playfair Display', 'Noto Serif KR', serif;
  --font-body: 'Pretendard', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-utility: 'Inter', 'Pretendard', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 40px rgba(43,36,32,0.10);
  --shadow-strong: 0 20px 60px rgba(43,36,32,0.22);

  --header-h: 76px;
  --max-w: 1180px;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; }
body{
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor:pointer; border:none; background:none; }
button, .btn, a.btn{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
ul{ list-style:none; }
.container{ max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 3px solid var(--oc-orange); outline-offset: 2px; }

/* ---------- Header ---------- */
.site-header{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  height: var(--header-h);
  display:flex; align-items:center;
  background: rgba(250,246,240,0.0);
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.is-scrolled{
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 24px rgba(43,36,32,0.08);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between; width:100%;
}
.logo-link{ display:flex; align-items:center; height:44px; }
.logo-link img{ height: 40px; width:auto; }

.header-right{
  display:flex; align-items:center; gap:12px;
}

.header-apply-btn{
  position: relative;
  overflow: hidden;
  display:flex; align-items:center; justify-content:center;
  background: var(--oc-orange);
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  padding: 10px 20px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(232,137,90,0.4);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease, background .2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
.header-apply-btn.visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-apply-btn:hover{ background: var(--oc-orange-deep); }

.shine-effect{
  position: relative;
  overflow: hidden;
}
.shine-effect::after{
  content:"";
  position:absolute; top:0; left:-60%;
  width:35%; height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  animation: jk-shine 3.2s ease-in-out infinite;
}
@keyframes jk-shine{
  0%{ left:-60%; }
  45%{ left:130%; }
  100%{ left:130%; }
}

.lang-toggle{
  display:flex; align-items:center; gap:2px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  box-shadow: var(--shadow-soft);
}
.lang-toggle button{
  font-family: var(--font-utility);
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 7px 16px; border-radius: 999px; color: var(--charcoal-soft);
  transition: background .25s ease, color .25s ease;
}
.lang-toggle button.active{
  background: var(--jk-bronze-dark); color: var(--white);
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center;
  padding: calc(var(--header-h) + 40px) 24px 100px;
  background:
    radial-gradient(ellipse 65% 55% at 50% 40%, rgba(15,12,10,0.68) 0%, rgba(15,12,10,0) 68%),
    linear-gradient(180deg, rgba(20,16,14,0.62) 0%, rgba(20,16,14,0.4) 42%, rgba(200,90,50,0.58) 100%),
    url('../img/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow:hidden;
}
.hero-eyebrow{
  font-family: var(--font-utility);
  font-size: 13px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--oc-orange-soft);
  margin-bottom: 18px;
}
.hero-eyebrow br.eyebrow-break{ display: none; }
@media (max-width: 480px){
  .hero-eyebrow br.eyebrow-break{ display: inline; }
}
.hero-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 5.2vw, 54px);
  line-height: 1.28;
  max-width: 760px;
  margin-bottom: 20px;
  text-shadow: 0 6px 28px rgba(0,0,0,0.55), 0 2px 8px rgba(0,0,0,0.4);
}
.hero-sub{
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  opacity: .95;
  margin-bottom: 8px;
}
.hero-meta{
  font-family: var(--font-utility);
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 34px;
}
.hero-meta .dot{ color: var(--oc-orange); margin: 0 8px; }

.hero-badge{
  display:inline-flex; align-items:center; gap:2px;
  background: var(--oc-orange);
  color: var(--white);
  font-family: var(--font-utility);
  font-weight: 700;
  font-size: clamp(14px, 2vw, 17px);
  letter-spacing: .02em;
  padding: 15px 34px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(232,137,90,0.45);
  margin-bottom: 8px;
}
.hero-badge .dot{ color: rgba(255,255,255,0.7); margin: 0 9px; }

@media (max-width: 480px){
  .hero-badge{
    padding: 10px 22px !important;
    font-size: 11px !important;
  }
  .hero-badge .dot{ margin: 0 5px !important; }
}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family: var(--font-body);
  font-weight: 600; font-size: 16px;
  padding: 16px 38px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-primary{
  background: var(--oc-orange);
  color: var(--white);
  box-shadow: 0 10px 30px rgba(232,137,90,0.45);
}
.btn-primary:hover{ background: var(--oc-orange-deep); transform: translateY(-2px); box-shadow: 0 14px 36px rgba(200,90,50,0.5); }
.btn-primary:disabled{ background:#D8CFC2; color:#8A8175; box-shadow:none; cursor:not-allowed; transform:none; }
.btn-outline{
  background: transparent;
  border: 1.5px solid var(--jk-bronze);
  color: var(--jk-bronze-dark);
  padding: 14px 34px;
}
.btn-outline:hover{ background: var(--jk-bronze); color:var(--white); }

.hero-line-wrap{
  width: 100%; max-width: 560px;
  margin: 36px auto 0;
  pointer-events:none;
}
.hero .btn-primary{
  position: relative;
  z-index: 5;
}
.hero-line{ width:100%; height:auto; opacity:.85; }

.hero-foot{
  position:absolute; left:0; right:0; bottom: 22px;
  display:flex; flex-direction:column; align-items:center; gap:16px;
  padding: 0 24px;
  pointer-events: none;
}
.hero-host{
  font-size: 11.5px; letter-spacing:.03em; opacity:.85; text-align:center;
  max-width: 640px; line-height:1.6;
}

.scroll-guide{
  display:flex; flex-direction:column; align-items:center; gap:6px;
  color: var(--white); font-family: var(--font-utility); font-size:11px;
  letter-spacing:.14em; text-transform:uppercase; opacity:.85;
}
.scroll-guide .chevron{
  width:18px; height:18px; border-right:2px solid currentColor; border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  animation: bounce-down 1.6s infinite;
}
@keyframes bounce-down{
  0%,100%{ transform: rotate(45deg) translate(0,0); opacity:.5;}
  50%{ transform: rotate(45deg) translate(6px,6px); opacity:1;}
}

/* ---------- Section generic ---------- */
section{ padding: 96px 0; }
.section-tag{
  font-family: var(--font-utility);
  font-size:12px; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color: var(--oc-orange-deep);
  margin-bottom: 14px;
  display:flex; align-items:center; gap:10px;
}
.section-tag::before{ content:""; width:26px; height:2px; background: var(--oc-orange-deep); display:inline-block; }
.section-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 4vw, 40px);
  color: var(--charcoal);
  margin-bottom: 18px;
  line-height:1.3;
}
.section-desc{
  font-size: 16px; color: var(--charcoal-soft); max-width: 620px; line-height:1.75;
}
.section-head{ margin-bottom: 48px; }
.section-head.center{ text-align:center; margin-left:auto; margin-right:auto; }
.section-head.center .section-tag{ justify-content:center; }
.section-head.center .section-desc{ margin-left:auto; margin-right:auto; }

/* ---------- Benefits Section ---------- */
.benefits{ background: var(--white); }
.benefit-block{
  background: var(--ivory-deep);
  border-radius: var(--radius-lg);
  padding: 40px clamp(20px,4vw,56px);
  margin-bottom: 40px;
}
.benefit-block h3{
  font-family: var(--font-display);
  font-size: 22px; font-weight:600; margin-bottom:14px; color: var(--jk-bronze-dark);
}
.benefit-block p{ color: var(--charcoal-soft); font-size:15.5px; }
.benefit-block ul{ margin-top:14px; }
.benefit-block li{
  position:relative; padding-left:22px; margin-bottom:8px; color: var(--charcoal-soft); font-size:15px;
}
.benefit-block li::before{
  content:""; position:absolute; left:0; top:9px; width:8px; height:8px; border-radius:50%;
  background: var(--jk-bronze);
}

.perk-grid{
  display:grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  margin-bottom: 48px;
}
.perk-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align:center;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.perk-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-4px); border-color: var(--oc-orange); }
.perk-icon{
  width:56px; height:56px; margin:0 auto 16px;
  display:flex; align-items:center; justify-content:center;
  background: var(--oc-orange-soft); border-radius:50%;
}
.perk-icon svg{ width:26px; height:26px; stroke: var(--oc-orange-deep); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.perk-card h4{ font-size:15px; font-weight:700; margin-bottom:6px; color: var(--charcoal); }
.perk-card p{ font-size:13px; color: var(--charcoal-soft); }

.cta-center{ text-align:center; }

/* ---------- Hospital Intro ---------- */
.intro{ background: var(--ivory); }
.intro-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
  margin-bottom: 56px;
}
.intro-stats{
  display:grid; grid-template-columns: repeat(4,1fr); gap:20px;
  padding-top: 40px; border-top: 1px solid var(--line);
}
.stat-num{
  font-family: var(--font-display); font-weight:700; color: var(--jk-bronze-dark);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
}
.stat-label{ font-size:13.5px; color: var(--charcoal-soft); margin-top:6px; }

.intro-media img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-soft); }
.intro-media img.transparent-img{
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  animation: jk-float 5s ease-in-out infinite;
  will-change: transform;
}
@keyframes jk-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-14px); }
}

.video-wrap{
  position: relative; width:100%; padding-top:56.25%;
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-soft);
  background:#000;
}
.video-wrap iframe{
  position:absolute; top:0; left:0; width:100%; height:100%; border:0;
}

.subfeature-grid{
  display:grid; grid-template-columns: repeat(3,1fr); gap: 22px;
  margin: 40px 0 36px;
}
.subfeature-card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
}
.subfeature-card:hover{ box-shadow: var(--shadow-soft); transform: translateY(-4px); border-color: var(--oc-orange); }
.subfeature-icon{
  width:48px; height:48px; margin-bottom:16px;
  display:flex; align-items:center; justify-content:center;
  background: var(--oc-orange-soft); border-radius:50%;
}
.subfeature-icon svg{ width:22px; height:22px; stroke: var(--oc-orange-deep); fill:none; stroke-width:1.6; stroke-linecap:round; stroke-linejoin:round; }
.subfeature-card h4{ font-size:16px; font-weight:700; margin-bottom:8px; color: var(--jk-bronze-dark); }
.subfeature-card p{ font-size:13.5px; color: var(--charcoal-soft); line-height:1.65; }

.program-section{
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--jk-bronze-dark);
  color: var(--white);
  overflow: hidden;
}
.program-section::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(26,21,18,0.80) 0%, rgba(26,21,18,0.58) 45%, rgba(26,21,18,0.86) 100%);
}
.program-section::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(166,124,66,0.35) 0%, rgba(232,137,90,0.22) 55%, rgba(43,36,32,0.15) 100%);
  mix-blend-mode: color;
  pointer-events: none;
}
.program-section .container{ position:relative; z-index:1; }
.program-section .section-tag{ color: var(--oc-orange-soft); }
.program-section .section-tag::before{ background: var(--oc-orange-soft); }
.program-section .section-title{ color: var(--white); }
.program-section .section-desc{ color: rgba(255,255,255,0.85); }
.program-section::-webkit-scrollbar{ display:none; }

.program-topline{
  position:absolute; top:0; left:0; right:0; height:3px; z-index:2;
  background: linear-gradient(90deg, transparent 0%, var(--oc-orange) 20%, var(--jk-bronze-light) 50%, var(--oc-orange) 80%, transparent 100%);
  opacity:.85;
}

#anti-aging{ background-image: url('../img/anti-aging-bg.jpg'); }
#wellness{ background-image: url('../img/wellness-bg.jpg'); }
#drjk{ background-image: url('../img/drjk-bg.jpg'); }

@media (min-width: 961px){
  #anti-aging, #wellness, #drjk{ background-attachment: fixed; }
}

.subfeature-card{
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.subfeature-card:hover{ border-color: var(--oc-orange); background: rgba(255,255,255,0.13); }
.subfeature-icon{ background: rgba(255,255,255,0.16); }
.subfeature-icon svg{ stroke: var(--oc-orange-soft); }
.subfeature-card h4{ color: var(--white); }
.subfeature-card p{ color: rgba(255,255,255,0.78); }

.program-section .btn-outline{
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.program-section .btn-outline:hover{ background: var(--white); color: var(--jk-bronze-dark); }

.program-video{ margin: 8px 0 32px; }
.program-video h3{
  font-family: var(--font-display); font-size:18px; font-weight:600; margin-bottom:16px; color: var(--white);
}

/* ---------- Footer ---------- */
.site-footer{
  background: linear-gradient(150deg, var(--charcoal) 0%, var(--jk-bronze-dark) 55%, var(--oc-orange-deep) 145%);
  color: var(--white);
  padding: 56px 0 36px;
}
.footer-inner{
  display:flex; flex-direction:column; align-items:center; text-align:center; gap:14px;
}
.footer-logo{ height: 30px; width:auto; opacity:.92; filter: brightness(0) invert(1); margin-bottom: 6px; }
.footer-address{ font-size: 14.5px; font-weight:600; letter-spacing:.01em; }
.footer-hours{ font-size: 13.5px; opacity:.82; }
.footer-copy{ font-size: 12px; opacity:.55; margin-top: 18px; }

/* ---------- Floating widgets ---------- */
.float-contact{
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  display:flex; flex-direction:column; align-items:flex-end; gap:12px;
}
.float-contact-panel{
  display:flex; flex-direction:column; gap:10px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  padding: 16px;
  min-width: 220px;
  transform-origin: bottom right;
  transform: scale(0.9) translateY(10px);
  opacity:0; pointer-events:none;
  transition: transform .22s ease, opacity .22s ease;
}
.float-contact-panel.open{ transform: scale(1) translateY(0); opacity:1; pointer-events:auto; }
.float-contact-panel a{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px; border-radius: var(--radius-sm);
  font-size:14px; font-weight:600; color: var(--charcoal);
  transition: background .2s ease;
}
.float-contact-panel a:hover{ background: var(--ivory-deep); }
.float-contact-panel a .dot-icon{
  width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background: var(--oc-orange-soft); color: var(--oc-orange-deep); font-size:16px; flex-shrink:0;
}



.fab{
  width:58px; height:58px; border-radius:50%;
  background: var(--oc-orange);
  color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-strong);
  font-size: 24px;
  transition: transform .2s ease, background .2s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
.fab:hover{ background: var(--oc-orange-deep); transform: translateY(-3px); }

.to-top{
  position: fixed; left: 22px; bottom: 22px; z-index: 400;
  width:48px; height:48px; border-radius:50%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top svg{ width:18px; height:18px; }

/* ---------- Modal (shared) ---------- */
.modal-overlay{
  position: fixed; inset:0; z-index: 900;
  background: rgba(43,36,32,0.55);
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  opacity:0; pointer-events:none;
  transition: opacity .25s ease;
}
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal-box{
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 640px; width:100%;
  max-height: 88vh; overflow-y:auto;
  padding: 36px clamp(20px,4vw,44px) 32px;
  position: relative;
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
  box-shadow: var(--shadow-strong);
}
.modal-overlay.open .modal-box{ transform: translateY(0) scale(1); }
.modal-close{
  position:absolute; top:18px; right:18px;
  width:34px; height:34px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--ivory-deep); font-size:16px; color: var(--charcoal-soft);
}
.modal-box h2{
  font-family: var(--font-display); font-size: 22px; font-weight:700; margin-bottom:18px; color: var(--jk-bronze-dark);
  padding-right: 30px;
}
.modal-box h3{ font-size:15px; font-weight:700; margin: 18px 0 8px; }
.modal-box p{ font-size:14px; color: var(--charcoal-soft); margin-bottom:10px; line-height:1.75; }
.modal-agree-row{
  margin-top: 24px; padding-top:20px; border-top:1px solid var(--line);
  display:flex; align-items:flex-start; gap:10px;
}
.modal-agree-row input{ margin-top:3px; width:18px; height:18px; accent-color: var(--jk-bronze); }
.modal-agree-row label{ font-size:14px; font-weight:600; }

.marketing-modal-actions{
  display:flex; gap:12px; margin-top:24px; padding-top:20px; border-top:1px solid var(--line);
}
.marketing-modal-actions .btn{ flex:1; padding:14px 10px; font-size:14.5px; }
.btn-agree{ background: var(--jk-bronze); color:var(--white); }
.btn-agree:hover{ background: var(--jk-bronze-dark); }
.btn-decline{ background: var(--ivory-deep); color: var(--charcoal); }
.btn-decline:hover{ background: var(--line); }

/* ---------- Application Form Modal ---------- */
.form-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap: 16px 14px;
}
.form-field{ display:flex; flex-direction:column; gap:6px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size:13px; font-weight:600; color: var(--charcoal); }
.form-field .hint{ font-size:11.5px; color: var(--charcoal-soft); font-weight:400; }
.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.form-field select,
.form-field textarea{
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--ivory);
  transition: border-color .2s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{ border-color: var(--jk-bronze); background:var(--white); }
.form-field textarea{ resize: vertical; min-height: 64px; }

.chip-group{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px; font-weight:600; color: var(--charcoal-soft);
  background: var(--ivory);
  transition: all .2s ease;
}
.chip.selected{ background: var(--jk-bronze); border-color: var(--jk-bronze); color: var(--white); }

.consent-block{
  margin-top: 22px; padding-top:20px; border-top:1px solid var(--line);
  display:flex; flex-direction:column; gap:12px;
}
.consent-row{ display:flex; align-items:center; gap:10px; }
.consent-row input[type="checkbox"]{ width:18px; height:18px; accent-color: var(--jk-bronze); flex-shrink:0; }
.consent-row .consent-text{ font-size:13.5px; }
.consent-row .consent-text button{ color: var(--oc-orange-deep); font-weight:700; text-decoration: underline; }
.consent-row .req-mark{ color: var(--error); margin-left:2px; }

.form-submit-row{ margin-top:24px; }
.form-submit-row .btn{ width:100%; }

.form-msg{
  margin-top: 14px; padding: 12px 14px; border-radius: var(--radius-sm);
  font-size: 13.5px; display:none;
}
.form-msg.show{ display:block; }
.form-msg.success{ background:#E7F1EA; color: var(--success); }
.form-msg.error{ background:#FBEAE7; color: var(--error); }

/* ---------- Responsive ---------- */
@media (max-width: 960px){
  .intro-grid{ grid-template-columns: 1fr; gap: 36px; }
  .subfeature-grid{ grid-template-columns: 1fr; }
  .perk-grid{ grid-template-columns: repeat(2,1fr); }
  .contact-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px){
  section{ padding: 64px 0; }
  .perk-grid{ grid-template-columns: 1fr 1fr; gap:14px; }
  .intro-stats{ grid-template-columns: repeat(2,1fr); gap:24px 16px; }
  .contact-grid{ grid-template-columns: 1fr; }
  .form-grid{ grid-template-columns: 1fr; }
  .hero-title{ max-width: 100%; }
  .modal-box{ padding: 28px 18px 26px; }
  .float-contact{ right:14px; bottom:14px; }
  .to-top{ left:14px; bottom:14px; }
  .apply-fab{ right:14px; bottom:84px; width:54px; height:54px; }
}
