/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #7A4A2E;
  --primary-light: #A06A4A;
  --primary-dark: #5B3420;
  --accent: #F28C38;
  --accent-soft: #FFE4D2;
  --bg: #FFFDF9;
  --bg-warm: #F6F1EB;
  --surface: #FFFFFF;
  --surface-variant: #F3ECE7;
  --text: #3A2E2A;
  --text-secondary: #A89B94;
  --text-disabled: #CFC6C1;
  --border: #F1E7E2;
  --card-shadow: 0 3px 10px rgba(0,0,0,0.05);
  --radius: 16px;
  --radius-sm: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* Screen reader only */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* Focus visible (keyboard navigation) */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
a:focus-visible, .btn:focus-visible, input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Navigation ───────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav.scrolled { border-bottom-color: var(--border); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 18px; color: var(--primary);
}
.nav-logo img { border-radius: 8px; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--primary) !important; color: white !important;
  padding: 8px 20px; border-radius: 100px;
  font-weight: 600 !important; font-size: 13px !important;
  box-shadow: 0 2px 8px rgba(122, 74, 46, 0.25);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(122, 74, 46, 0.35);
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px; border: none;
  font-family: inherit; font-size: 16px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: white;
  box-shadow: 0 4px 16px rgba(122, 74, 46, 0.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 24px rgba(122, 74, 46, 0.4);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 17px; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: linear-gradient(160deg, var(--bg-warm) 0%, var(--bg) 40%, #F6F1EB 100%);
  display: flex; align-items: center; padding-top: 64px; padding-bottom: 80px;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: linear-gradient(180deg, transparent 0%, var(--bg-warm) 100%);
  pointer-events: none; z-index: 0;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute; border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}
.shape-1 {
  width: 400px; height: 400px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(122,74,46,0.08) 0%, transparent 70%);
}
.shape-2 {
  width: 300px; height: 300px; bottom: 10%; left: -50px;
  background: radial-gradient(circle, rgba(242,140,56,0.06) 0%, transparent 70%);
  animation-delay: 3s;
}
.shape-3 {
  width: 200px; height: 200px; top: 40%; right: 20%;
  background: radial-gradient(circle, rgba(122,74,46,0.05) 0%, transparent 70%);
  animation-delay: 5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -30px) scale(1.05); }
}

.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  display: flex; align-items: center; gap: 60px;
  position: relative; z-index: 1;
}

.hero-content { flex: 1; }

.hero-badge {
  display: inline-block; padding: 6px 16px;
  background: rgba(122, 74, 46, 0.12); color: var(--primary-dark);
  border-radius: 100px; font-size: 13px; font-weight: 700;
  margin-bottom: 24px; letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px); font-weight: 900;
  line-height: 1.18; letter-spacing: -0.02em;
  margin-bottom: 20px; word-break: keep-all;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px); color: var(--text-secondary);
  line-height: 1.65; margin-bottom: 32px; word-break: keep-all;
}
.hero-sub strong { color: var(--text); }

.hero-cta-note {
  margin-top: 12px; font-size: 13px; color: var(--text-secondary);
}

.hero-mockup { flex-shrink: 0; }

/* Phone frame */
.phone-frame {
  width: 280px; background: #2A221D; border-radius: 36px;
  padding: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.1) inset;
  position: relative;
}
.phone-frame img { border-radius: 26px; width: 100%; }
.phone-frame::before {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 28px; background: #2A221D; border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-frame-sm {
  width: 244px; border-radius: 30px; padding: 11px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(255,255,255,0.08) inset;
}
.phone-frame-sm img { border-radius: 22px; }
.phone-frame-sm::before { width: 86px; height: 24px; top: 11px; border-radius: 0 0 13px 13px; }

.hero-scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: block;
  opacity: 0.7;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-scroll-indicator { display: none; }
}
.scroll-arrow {
  width: 24px; height: 24px; border-right: 2px solid var(--text-disabled);
  border-bottom: 2px solid var(--text-disabled);
  transform: rotate(45deg); animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
  40% { transform: rotate(45deg) translateY(8px); }
  60% { transform: rotate(45deg) translateY(4px); }
}

/* ── Stats Bar ────────────────────────────────────────────── */
.stats {
  background: var(--bg-warm);
  position: relative;
}
.stats-inner {
  max-width: 900px; margin: 0 auto; padding: 56px 24px;
  display: flex; align-items: center; justify-content: center; gap: 72px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(40px, 5vw, 56px); font-weight: 900; color: var(--primary);
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
  line-height: 1; display: inline-block;
}
.stat-suffix { font-size: 24px; font-weight: 800; color: var(--primary); margin-left: 2px; }
.stat-label {
  display: block; font-size: 13px; color: var(--text-secondary);
  margin-top: 10px; letter-spacing: 0.2px;
}
.stat-divider { display: none; }

/* ── Section Common ───────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 16px;
  background: rgba(122, 74, 46, 0.10); color: var(--primary-dark);
  border-radius: 100px; font-size: 13px; font-weight: 700;
  margin-bottom: 16px; letter-spacing: 0.2px;
}
.section-header h2 {
  font-size: clamp(24px, 4vw, 36px); font-weight: 800;
  line-height: 1.4; word-break: keep-all;
}

/* ── Features ─────────────────────────────────────────────── */
.features { background: var(--bg); }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.feature-card {
  padding: 32px; border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid rgba(122, 74, 46, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(122, 74, 46, 0.09);
  border-color: rgba(122, 74, 46, 0.15);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 10px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ── Screenshots ──────────────────────────────────────────── */
.screenshots {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.screenshots::before {
  content: ''; position: absolute; left: 50%; top: 40%;
  width: 720px; height: 420px; transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(122,74,46,0.10) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.screenshots .section-inner { position: relative; z-index: 1; }
.screenshots-carousel {
  display: flex; gap: 28px; justify-content: center;
  overflow-x: auto; padding: 24px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.screenshots-carousel::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex-shrink: 0; text-align: center; scroll-snap-align: center;
}
.screenshot-label {
  display: block; margin-top: 20px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  letter-spacing: 0.2px;
}

/* ── Pain Points / Solutions ──────────────────────────────── */
.pain-section { background: var(--surface); }
.pain-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pain-card {
  position: relative;
  min-height: 212px;
  padding: 30px 28px; border-radius: var(--radius-lg);
  background: var(--bg); border: 1px solid rgba(122, 74, 46, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(122, 74, 46, 0.08);
  border-color: rgba(122, 74, 46, 0.14);
}
.pain-index {
  display: inline-flex; align-items: center; justify-content: center;
  height: 28px; padding: 0 12px; margin-bottom: 18px;
  border-radius: 100px; background: rgba(242, 140, 56, 0.12);
  color: var(--accent); font-size: 12px; font-weight: 800;
  letter-spacing: 0.4px;
  transition: background var(--transition), color var(--transition);
}
.pain-card:hover .pain-index {
  background: var(--accent); color: white;
}
.pain-card h3 {
  font-size: 20px; font-weight: 800; line-height: 1.35;
  color: var(--text); margin-bottom: 12px; word-break: keep-all;
}
.pain-card p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-secondary); word-break: keep-all;
}
.solution-panel {
  margin-top: 28px; padding: 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-radius: var(--radius-lg);
  background: var(--bg-warm);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.solution-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(122, 74, 46, 0.07);
  border-color: rgba(122, 74, 46, 0.12);
}
.solution-panel h3 {
  flex-shrink: 0;
  font-size: 18px; font-weight: 800; line-height: 1.4;
  color: var(--primary-dark); word-break: keep-all;
}
.solution-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px;
}
.solution-pill {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 40px; padding: 9px 15px;
  border-radius: 100px; background: var(--surface);
  border: 1px solid rgba(122, 74, 46, 0.08);
  color: var(--text); font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 6px rgba(122, 74, 46, 0.04);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.solution-pill::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.solution-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 140, 56, 0.35);
  box-shadow: 0 8px 18px rgba(122, 74, 46, 0.08);
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(160deg, #F6F1EB 0%, var(--bg) 100%);
}
.cta-card {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: 60px 40px; background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}
.cta-icon { margin: 0 auto 20px; border-radius: 16px; }
.cta-content h2 { font-size: 28px; font-weight: 800; margin-bottom: 12px; }
.cta-content > p {
  font-size: 15px; color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 28px; word-break: keep-all;
}

.cta-form { width: 100%; }
.input-group {
  display: flex; gap: 8px;
  background: var(--bg); border-radius: 100px;
  padding: 6px; border: 1px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.input-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(122, 74, 46, 0.12);
}
.input-group input:focus-visible { outline: none; }
.input-group input {
  flex: 1; border: none; background: transparent;
  padding: 12px 16px; font-family: inherit; font-size: 15px;
  outline: none; color: var(--text);
  min-width: 0;
}
.input-group input::placeholder { color: var(--text-disabled); }
.input-group .btn { padding: 12px 24px; font-size: 14px; white-space: nowrap; }
.form-note { margin-top: 12px; font-size: 12px; color: var(--text-secondary); }

.form-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #FFF1EE;
  border: 1px solid #F2A88C;
  border-radius: var(--radius-sm);
  color: #8C2A0E;
  font-size: 14px;
  line-height: 1.55;
  text-align: left;
}

.cta-success { padding: 20px; }
.success-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #4CAF50, #66BB6A);
  color: white; font-size: 28px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.cta-success p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ── Footer ───────────────────────────────────────────────── */
.footer { background: #2A221D; color: rgba(255,255,255,0.7); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 60px 24px 30px; }
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 40px;
}
.footer-brand img { border-radius: 10px; }
.footer-brand strong { color: white; font-size: 18px; display: block; }
.footer-brand p { font-size: 13px; margin-top: 2px; }

.footer-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px; margin-bottom: 40px;
}
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 14px; }
.footer-col a {
  display: block; font-size: 13px; margin-bottom: 10px;
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ── Animations ───────────────────────────────────────────── */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Stagger children */
.features-grid .feature-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.3s; }
.screenshots-carousel .screenshot-item:nth-child(2) { transition-delay: 0.1s; }
.screenshots-carousel .screenshot-item:nth-child(3) { transition-delay: 0.2s; }
.screenshots-carousel .screenshot-item:nth-child(4) { transition-delay: 0.3s; }
.pain-grid .pain-card:nth-child(2) { transition-delay: 0.1s; }
.pain-grid .pain-card:nth-child(3) { transition-delay: 0.2s; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { flex-direction: column; gap: 40px; text-align: center; padding: 40px 20px; }
  .hero-mockup { order: -1; }
  .phone-frame { width: 220px; margin: 0 auto; }
  .hero-cta-group { display: flex; flex-direction: column; align-items: center; }

  .stats-inner { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1; min-width: 100px; }

  .section-inner { padding: 60px 20px; }

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

  .screenshots-carousel {
    justify-content: flex-start;
    padding: 20px 20px;
    gap: 20px;
  }
  .phone-frame-sm { width: 180px; }

  .cta-card { padding: 40px 24px; }
  .input-group { flex-direction: column; border-radius: var(--radius); padding: 8px; }
  .input-group input { text-align: center; }
  .input-group .btn { border-radius: var(--radius-sm); width: 100%; justify-content: center; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .nav-links { gap: 10px; }
  .nav-links a:not(.nav-cta):not(.nav-biz) { display: none; }
  .nav-biz {
    display: inline-flex; align-items: center;
    min-height: 44px; padding: 0 8px;
    font-size: 14px; font-weight: 700;
    color: var(--text); white-space: nowrap;
  }

  .pain-card { min-height: auto; padding: 28px 24px; }
  .solution-panel {
    align-items: flex-start; flex-direction: column;
    padding: 26px 22px;
  }
  .solution-list { justify-content: flex-start; width: 100%; }
  .solution-pill { white-space: normal; word-break: keep-all; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; line-height: 1.25; }
  .stat-number { font-size: 32px; }
  .stat-suffix { font-size: 18px; }
  .stats-inner { gap: 16px; padding: 40px 20px; }
  .screenshots-carousel { gap: 16px; }
  .phone-frame-sm { width: 176px; }

  .pain-grid { grid-template-columns: 1fr; }
  .solution-pill { width: 100%; }
}

/* ── Biz Section (댕플레이스 입점) ────────────────────────── */
.biz-section {
  padding: 100px 24px;
  background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg) 100%);
}
.biz-section .section-inner { max-width: 1200px; margin: 0 auto; }
.biz-section .section-header { text-align: center; margin-bottom: 56px; }
.biz-section .section-sub {
  color: var(--text-secondary);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}
.biz-tag {
  background: linear-gradient(135deg, var(--accent), var(--primary-light));
  color: #fff;
  border: none;
}
.biz-counter {
  max-width: 720px;
  margin: -28px auto 40px;
  padding: 18px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--card-shadow);
  text-align: center;
}
.biz-counter strong {
  display: block;
  color: var(--primary);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.biz-counter span {
  display: block;
  margin-top: 6px;
  color: var(--text-secondary);
  font-size: 13.5px;
  line-height: 1.6;
}
.biz-counter-mini {
  margin-bottom: 20px;
  padding: 12px 14px;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.biz-counter-mini strong {
  display: block;
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
}
.biz-counter-mini span {
  display: block;
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 12.5px;
}
.biz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.biz-benefits {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}
.biz-benefits h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}
.biz-perks { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.biz-perks li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.perk-icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
}
.biz-perks li strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.biz-perks li p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.biz-fineprint {
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.biz-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 8px 28px rgba(122, 74, 46, 0.08);
  border: 1px solid var(--border);
}
.biz-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}
.biz-form-note {
  color: var(--text-secondary);
  font-size: 13px;
  margin-bottom: 24px;
}
.biz-form { display: flex; flex-direction: column; gap: 16px; }
.biz-form label { display: flex; flex-direction: column; gap: 6px; }
.biz-form label > span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
}
.biz-form label > span em {
  color: var(--accent);
  font-style: normal;
  margin-left: 2px;
}
.biz-form input,
.biz-form select,
.biz-form textarea {
  font-family: inherit;
  font-size: 14.5px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: var(--transition);
  width: 100%;
}
.biz-form input:focus,
.biz-form select:focus,
.biz-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--surface);
  box-shadow: 0 0 0 3px rgba(242, 140, 56, 0.12);
}
.biz-form textarea { resize: vertical; min-height: 72px; }
.biz-consent,
.form-consent {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  cursor: pointer;
}
.form-consent { margin-top: 14px; justify-content: center; text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; }
.biz-consent input[type="checkbox"],
.form-consent input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
  flex-shrink: 0;
}
.biz-consent span,
.form-consent span { font-weight: 400; }
.form-consent a { color: var(--primary); text-decoration: underline; }
.btn-block { width: 100%; justify-content: center; margin-top: 4px; }
.biz-success {
  text-align: center;
  padding: 40px 20px;
}
.biz-success .success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  font-size: 36px;
}
.biz-success p { color: var(--text); font-size: 15px; line-height: 1.7; }

@media (max-width: 860px) {
  .biz-section { padding: 72px 20px; }
  .biz-counter { margin: -20px 0 28px; text-align: left; }
  .biz-grid { grid-template-columns: 1fr; gap: 24px; }
  .biz-benefits, .biz-form-wrap { padding: 28px 22px; }
}

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .shape { animation: none !important; }
  .scroll-arrow { animation: none !important; }
  .fade-in { opacity: 1 !important; transform: none !important; }
}
