/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:        #1c3051;
  --navy-dark:   #0f1e36;
  --navy-light:  #2a4573;
  --orange:      #e8650a;
  --orange-hov:  #c8520a;
  --bg:          #f4f6fa;
  --text:        #1c2c3e;
  --text-mid:    #46607a;
  --text-lt:     #8099b0;
  --white:       #ffffff;
  --border:      #dbe4f0;
  --green:       #27ae60;
  --r:           12px;
  --sh:          0 4px 20px rgba(28,48,81,.10);
  --sh-lg:       0 8px 40px rgba(28,48,81,.16);
}
html { scroll-behavior: smooth; }
body { font-family: 'Noto Sans JP', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.8; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== Layout ===== */
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
#problems, #pricing, #faq { background: var(--bg); }
#hero, #contact        { background: var(--navy-dark); color: var(--white); }

/* ===== Typography ===== */
.sec-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  color: var(--orange); background: rgba(232,101,10,.1); padding: 4px 12px;
  border-radius: 100px; margin-bottom: 12px;
}
#hero .sec-label, #contact .sec-label { background: rgba(232,101,10,.25); }
.sec-title { font-size: clamp(1.6rem,4vw,2.4rem); font-weight: 900; line-height: 1.35; color: var(--navy); }
#hero .sec-title, #contact .sec-title { color: var(--white); }
.sec-sub  { font-size: 1rem; color: var(--text-mid); margin-top: 10px; }
#contact .sec-sub { color: rgba(255,255,255,.65); }
.sec-head { text-align: center; margin-bottom: 48px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px; font-weight: 700; font-size: 1rem;
  cursor: pointer; transition: all .2s; border: none; text-align: center;
  font-family: inherit;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-hov); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,101,10,.35); }
.btn-ghost { background: rgba(255,255,255,.1); color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.2); }
.btn-sec { background: transparent; border: 2px solid var(--border); color: var(--text-mid); }
.btn-sec:hover { border-color: var(--navy); color: var(--navy); }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-w { width: 100%; }

/* ===== Header ===== */
#hdr {
  position: sticky; top: 0; z-index: 100;
  background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0;
  transition: box-shadow .2s;
}
#hdr .container { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.1rem; font-weight: 900; color: var(--navy); }
.logo span { color: var(--orange); }

/* ===== Hero ===== */
#hero { padding: 96px 0 80px; position: relative; overflow: hidden; }
#hero::before {
  content: ''; position: absolute; top: -50%; right: -5%; width: 55%; height: 200%;
  background: radial-gradient(ellipse, rgba(232,101,10,.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); font-size: .8rem; font-weight: 700;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 20px;
}
.badge-dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(.75)} }
.hero-title { font-size: clamp(2rem,6vw,3.2rem); font-weight: 900; line-height: 1.3; margin-bottom: 20px; color: var(--white); }
.hero-title em { color: var(--orange); font-style: normal; }
.hero-sub { font-size: clamp(1rem,2.5vw,1.15rem); color: rgba(255,255,255,.72); margin-bottom: 36px; max-width: 540px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 20px 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15); }
.stat-num { font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1; }
.stat-num small { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.55); }
.stat-lbl { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 4px; }

/* ===== Problems ===== */
.prob-intro { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.prob-intro p { font-size: 1.05rem; color: var(--text-mid); }
.prob-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(270px,1fr)); gap: 20px; }
.prob-card { background: var(--white); border-radius: var(--r); padding: 28px 24px; border: 1px solid var(--border); box-shadow: var(--sh); }
.prob-icon { font-size: 2rem; margin-bottom: 12px; }
.prob-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.prob-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.7; }
.prob-resolve { text-align: center; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-top: 36px; }
.prob-resolve strong { color: var(--orange); }

/* ===== Features ===== */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 24px; }
.feat-card { padding: 32px 28px; border-radius: var(--r); border: 2px solid var(--border); transition: border-color .2s, box-shadow .2s; }
.feat-card:hover { border-color: var(--orange); box-shadow: var(--sh); }
.feat-num { font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--orange); margin-bottom: 8px; }
.feat-icon { font-size: 2.4rem; margin-bottom: 16px; }
.feat-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.5; }
.feat-card p { font-size: .88rem; color: var(--text-mid); line-height: 1.75; }

/* ===== Pricing ===== */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 28px; max-width: 780px; margin: 0 auto; }
.price-card { background: var(--white); border-radius: var(--r); padding: 36px 28px; border: 2px solid var(--border); box-shadow: var(--sh); position: relative; }
.price-card.featured { border-color: var(--orange); box-shadow: 0 8px 40px rgba(232,101,10,.15); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); font-size: .75rem; font-weight: 700;
  padding: 5px 20px; border-radius: 100px; white-space: nowrap;
}
.price-plan { font-size: .82rem; font-weight: 700; color: var(--text-lt); letter-spacing: .08em; margin-bottom: 8px; }
.price-amount { font-size: 2.4rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.price-amount sub { font-size: .82rem; font-weight: 500; color: var(--text-mid); }
.price-note { font-size: .78rem; color: var(--text-lt); margin-bottom: 20px; }
.price-hr { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.price-list { margin-bottom: 24px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-mid); padding: 5px 0; }
.price-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.price-list li.no { color: var(--text-lt); }
.price-list li.no::before { content: '−'; color: var(--text-lt); }
.price-pay { background: rgba(232,101,10,.08); border-radius: 8px; padding: 12px 14px; font-size: .82rem; color: var(--navy); margin-bottom: 20px; }
.price-pay strong { color: var(--orange); }

/* ===== Pricing: base card ===== */
.price-base {
  background: var(--white); border-radius: var(--r);
  border: 2px solid var(--orange); box-shadow: 0 8px 40px rgba(232,101,10,.12);
  padding: 36px 32px; margin-bottom: 40px;
}
.price-base-head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 24px;
}
.price-base-label {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  color: var(--orange); background: rgba(232,101,10,.1);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 10px;
}
.price-base-catch {
  font-size: .95rem; color: var(--text-mid); line-height: 1.7;
}
.price-base-right { text-align: right; flex-shrink: 0; }
.price-list--cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; margin-bottom: 24px;
}

/* ===== Pricing: main page items ===== */
.pmi-section-ttl {
  font-size: .72rem; font-weight: 700; letter-spacing: .09em;
  color: var(--text-lt); text-transform: uppercase; margin-bottom: 10px;
}
.price-main-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.price-main-item {
  padding: 14px 16px; border-radius: 8px;
  background: rgba(232,101,10,.04); border-left: 3px solid var(--orange);
}
.pmi-name { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.pmi-desc { font-size: .82rem; color: var(--text-mid); line-height: 1.65; }

/* IT included box */
.price-it-incl { background: var(--bg); border-radius: 8px; padding: 14px 16px; margin-bottom: 20px; }
.price-it-ttl { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.price-it-list { display: flex; flex-direction: column; gap: 7px; }
.price-it-list li { font-size: .8rem; color: var(--text-mid); line-height: 1.55; padding-left: 0; }
.price-it-list li::before { display: none; }
.price-it-list li strong { color: var(--navy); }

/* ===== Pricing: options header ===== */
.price-options-hd { text-align: center; margin-bottom: 24px; }
.price-options-sub { font-size: .9rem; color: var(--text-mid); margin-top: 6px; }

@media(max-width:640px){
  .price-base { padding: 24px 18px; }
  .price-base-head { flex-direction: column; gap: 16px; }
  .price-base-right { text-align: left; }
  .price-list--cols { grid-template-columns: 1fr; }
}

/* ===== Process ===== */
.proc-list { max-width: 660px; margin: 0 auto; }
.proc-item { display: flex; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.proc-item:last-child { border-bottom: none; }
.proc-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.proc-num {
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .88rem;
}
.proc-item.hl .proc-num { background: var(--orange); }
.proc-line { width: 2px; flex: 1; background: var(--border); margin-top: 6px; }
.proc-item:last-child .proc-line { display: none; }
.proc-body h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.proc-body p { font-size: .875rem; color: var(--text-mid); line-height: 1.7; }
.proc-tag {
  display: inline-block; font-size: .7rem; font-weight: 700; background: var(--bg);
  color: var(--text-lt); padding: 2px 10px; border-radius: 100px; margin-top: 6px;
  border: 1px solid var(--border);
}
.proc-tag.warn { background: rgba(232,101,10,.1); color: var(--orange); border-color: rgba(232,101,10,.2); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border-radius: var(--r); border: 1px solid var(--border); overflow: hidden; box-shadow: var(--sh); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; cursor: pointer; user-select: none; }
.faq-qtxt { display: flex; align-items: flex-start; gap: 10px; font-weight: 700; color: var(--navy); font-size: .93rem; line-height: 1.5; }
.faq-qlbl { color: var(--orange); font-weight: 900; font-size: 1.1rem; flex-shrink: 0; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s; color: var(--text-lt); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-ans { max-height: 400px; }
.faq-ans-inner { padding: 0 22px 18px 42px; font-size: .88rem; color: var(--text-mid); line-height: 1.8; }
.faq-ans-inner strong { color: var(--navy); }

/* ===== Contact Form ===== */
#contact { padding: 80px 0 96px; }
.form-wrap { max-width: 560px; margin: 0 auto; }

/* Progress bar */
.f-progress { display: flex; align-items: flex-start; justify-content: center; margin-bottom: 32px; }
.f-prog-step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.f-prog-dot {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.5); display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 700; transition: all .3s;
}
.f-prog-dot.active { background: var(--orange); border-color: var(--orange); color: var(--white); }
.f-prog-dot.done  { background: rgba(39,174,96,.25); border-color: var(--green); color: var(--green); }
.f-prog-lbl { font-size: .68rem; color: rgba(255,255,255,.45); white-space: nowrap; }
.f-prog-step:nth-child(2) .f-prog-lbl,
.f-prog-step:nth-child(4) .f-prog-lbl,
.f-prog-step:nth-child(6) .f-prog-lbl { display: none; }
.f-prog-line { flex: 1 1 32px; max-width: 72px; height: 2px; background: rgba(255,255,255,.18); margin-top: 17px; }

/* Form card */
.f-card { background: var(--white); border-radius: 16px; padding: 32px 28px; box-shadow: var(--sh-lg); }
.f-step { display: none; }
.f-step.active { display: block; }
.f-step-ttl { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--bg); }
.f-step-ttl span { background: var(--orange); color: var(--white); font-size: .72rem; padding: 3px 10px; border-radius: 100px; margin-right: 8px; vertical-align: middle; }

/* Fields */
.f-field { margin-bottom: 18px; }
.f-lbl { display: block; font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.f-lbl .req { color: var(--orange); font-size: .72rem; margin-left: 4px; font-weight: 500; }
.f-lbl .opt { color: var(--text-lt); font-size: .72rem; margin-left: 4px; font-weight: 400; }
.f-input {
  width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 8px;
  font-size: 1rem; font-family: inherit; color: var(--text); background: var(--white);
  transition: border-color .2s; -webkit-appearance: none;
}
.f-input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,10,.1); }
.f-hint { font-size: .76rem; color: var(--text-lt); margin-top: 5px; }

/* Radio */
.radio-grp { display: flex; flex-direction: column; gap: 10px; }
.radio-lbl {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 2px solid var(--border); border-radius: 8px; cursor: pointer; transition: all .2s;
}
.radio-lbl:hover, .radio-lbl.sel { border-color: var(--orange); background: rgba(232,101,10,.04); }
.radio-lbl input[type="radio"] { flex-shrink: 0; margin-top: 3px; accent-color: var(--orange); width: 18px; height: 18px; cursor: pointer; }
.r-name { font-weight: 700; color: var(--navy); font-size: .95rem; }
.r-desc { font-size: .8rem; color: var(--text-mid); margin-top: 2px; }
.r-price { font-size: .95rem; font-weight: 900; color: var(--orange); margin-top: 4px; }

/* Form section headers */
.f-section-hd { margin: 24px 0 14px; }
.f-section-hd h5 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.f-section-hd p { font-size: .8rem; color: var(--text-mid); line-height: 1.65; }
.f-section-hd:first-child { margin-top: 0; }

/* Consent */
.consent-box {
  background: #fff8f5; border: 2px solid rgba(232,101,10,.2);
  border-radius: 8px; padding: 18px;
  transition: border-color .25s, background .25s;
}
.consent-box.info { background: #f0f5ff; border-color: rgba(28,48,81,.15); }
.consent-box:has(input:checked) { border-color: var(--green); background: rgba(39,174,96,.04); }
.consent-box:has(input:checked) .consent-ttl { color: var(--green); }
.consent-ttl { font-size: .85rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; transition: color .25s; }
.consent-body { font-size: .8rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 14px; }

/* Custom checkbox */
.cb-lbl { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; padding: 10px 12px; border-radius: 6px; background: rgba(0,0,0,.03); transition: background .2s; }
.cb-lbl:hover { background: rgba(0,0,0,.06); }
.cb-lbl input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; pointer-events: none; }
.cb-custom {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 6px;
  border: 2px solid var(--border); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all .2s; margin-top: 1px;
}
.cb-custom::after {
  content: ''; display: none;
  width: 6px; height: 11px;
  border-right: 2.5px solid var(--white); border-bottom: 2.5px solid var(--white);
  transform: rotate(45deg) translate(-1px, -2px);
}
.cb-lbl input:checked ~ .cb-custom { background: var(--green); border-color: var(--green); }
.cb-lbl input:checked ~ .cb-custom::after { display: block; }
.cb-text { font-size: .875rem; font-weight: 700; color: var(--navy); line-height: 1.55; }

/* Form actions */
.f-actions { display: flex; gap: 10px; margin-top: 24px; }
.f-actions .btn-w { flex: 1; }

/* Error */
.f-err {
  background: #fef0f0; color: #c0392b; font-size: .8rem;
  padding: 10px 14px; border-radius: 6px; border-left: 3px solid #c0392b;
  margin-top: 12px; display: none;
}
.f-err.show { display: block; }

/* Thanks */
#thanks { display: none; }
.thanks-card { background: var(--white); border-radius: 16px; padding: 44px 28px; text-align: center; box-shadow: var(--sh-lg); }
.thanks-ico {
  width: 72px; height: 72px; border-radius: 50%; background: rgba(39,174,96,.12);
  color: var(--green); font-size: 2rem; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.thanks-card h3 { font-size: 1.35rem; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.thanks-card p { font-size: .92rem; color: var(--text-mid); line-height: 1.8; }
.thanks-next { background: var(--bg); border-radius: 10px; padding: 18px; margin: 22px 0; text-align: left; }
.thanks-next-ttl { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.thanks-step { display: flex; align-items: flex-start; gap: 10px; font-size: .82rem; color: var(--text-mid); padding: 5px 0; }
.thanks-step-num {
  width: 22px; height: 22px; border-radius: 50%; background: var(--navy); color: var(--white);
  font-size: .68rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.btn-line {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #06C755; color: var(--white); padding: 14px 24px;
  border-radius: 8px; font-weight: 700; font-size: 1rem;
  transition: all .2s; width: 100%; margin-top: 4px;
}
.btn-line:hover { background: #05a847; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(6,199,85,.3); }

/* ===== Footer ===== */
#ftr { background: var(--navy-dark); color: rgba(255,255,255,.45); padding: 40px 0; text-align: center; font-size: .8rem; line-height: 2; }
#ftr a { color: rgba(255,255,255,.45); transition: color .2s; }
#ftr a:hover { color: var(--white); }
.ftr-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px; margin-bottom: 14px; }
.ftr-logo { font-size: 1.05rem; font-weight: 900; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.ftr-logo span { color: var(--orange); }

/* ===== Scroll Reveal ===== */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media(max-width:640px){
  /* Layout */
  section { padding: 56px 0; }

  /* Header */
  #hdr .btn { display: none; }

  /* Hero */
  #hero { padding: 72px 0 56px; }
  .hero-title { font-size: 2rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px 28px; }
  .stat-num { font-size: 1.5rem; }

  /* Grids → 1カラムに */
  .feat-grid,
  .price-grid { grid-template-columns: 1fr; }

  /* Cards */
  .f-card { padding: 24px 18px; }
  .price-card { padding: 28px 20px; }
  .feat-card { padding: 24px 18px; }

  /* Process */
  .proc-item { gap: 14px; }
  .proc-body h4 { font-size: .95rem; }

  /* Form: プログレスバー */
  .f-prog-lbl { font-size: .62rem; }
  .f-prog-line { max-width: 40px; }

  /* Form: アクションボタン */
  .f-actions { flex-wrap: wrap; }
  .f-actions button[onclick*="goStep"] { flex: 1; min-width: 80px; }

  /* 料金サマリー */
  .order-confirm-total { gap: 4px; }
  .ps-amount, .oc-amount { font-size: 1rem; }

  /* サンクス */
  .thanks-card { padding: 32px 18px; }

  /* Footer */
  .ftr-nav { gap: 4px 14px; }
}
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }

/* ===== Price Summary ===== */
.price-summary {
  background: var(--bg); border-radius: 8px; padding: 14px 16px; margin: 16px 0 4px;
}
.price-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--text-mid); padding: 3px 0;
}
.price-summary-total {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--navy);
  padding-top: 10px; margin-top: 8px; border-top: 2px solid var(--border);
}
.price-summary-total .ps-amount { color: var(--orange); font-size: 1.15rem; }

/* ===== Order Confirm (Step 3) ===== */
.order-confirm {
  background: rgba(232,101,10,.06); border: 1.5px solid rgba(232,101,10,.25);
  border-radius: 8px; padding: 14px 16px; margin-bottom: 16px;
}
.order-confirm-ttl { font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.order-confirm-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .85rem; color: var(--text-mid); padding: 2px 0;
}
.order-confirm-total {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--navy);
  padding-top: 8px; margin-top: 6px; border-top: 1px solid rgba(232,101,10,.2);
}
.order-confirm-total .oc-amount { color: var(--orange); font-size: 1.05rem; }

/* ===== Design Samples ===== */
#samples { background: var(--bg); }
.samples-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}
.sample-card {
  flex: 0 0 calc(20% - 14px);
  min-width: 130px;
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: block;
  background: var(--white);
}
.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: var(--navy);
}
.sample-thumb {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
}
.sample-body { padding: 11px 13px 13px; }
.sample-name { font-size: .88rem; font-weight: 800; color: var(--navy); margin-bottom: 3px; }
.sample-tone { font-size: .72rem; color: var(--text-lt); }
.sample-view {
  display: block;
  margin-top: 8px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--orange);
}
.samples-note {
  font-size: .78rem;
  color: var(--text-lt);
  text-align: center;
  margin-top: 4px;
}
@media (max-width: 680px) {
  .sample-card { flex: 0 0 calc(50% - 8px); }
}
