/* =========================================================
   코코로마치전화 — style.css
   ========================================================= */

:root {
  --green-950: #07211a;
  --green-900: #0b3d2e;
  --green-800: #0f4c39;
  --green-700: #146245;
  --green-600: #1c7a52;
  --green-500: #2a9463;
  --green-100: #e6f2ea;
  --green-50:  #f2f8f4;

  --gold-600: #a9821f;
  --gold-500: #c9a227;
  --gold-400: #dcb94a;
  --gold-100: #faf3d9;

  --ink-900: #16241d;
  --ink-700: #33433b;
  --ink-500: #5c6b62;
  --ink-300: #98a49c;

  --bg: #fbfaf6;
  --white: #ffffff;
  --border: #e7e2d3;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 30, 22, .06);
  --shadow-md: 0 8px 24px rgba(15, 30, 22, .08);
  --shadow-lg: 0 24px 56px rgba(15, 30, 22, .16);

  --container: 1160px;
  --header-h: 76px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Noto Sans KR", system-ui, sans-serif;
  color: var(--ink-900);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
}
h1, h2, h3, h4, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
svg { display: block; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--green-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  z-index: 999;
}
.skip-link:focus { left: 0; }

.text-gold { color: var(--gold-500); }
.only-desktop { display: inline; }
.only-mobile { display: none; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--green-600); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--ink-900);
}
.btn-ghost:hover { border-color: var(--green-700); color: var(--green-700); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 250, 246, .85);
  backdrop-filter: blur(10px);
  z-index: 500;
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--green-800);
  flex-shrink: 0;
}
.brand-text b { color: var(--gold-600); font-weight: 800; }

.main-nav {
  display: flex;
  gap: 26px;
  margin-left: 12px;
  flex: 1;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-700);
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover { color: var(--green-800); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  font-weight: 700;
  color: var(--green-800);
  font-size: 15px;
  letter-spacing: .2px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-800);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 64px) 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1100px 620px at 82% -10%, var(--green-100) 0%, transparent 60%),
    radial-gradient(700px 500px at -10% 30%, var(--gold-100) 0%, transparent 55%);
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.28;
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -.5px;
}
.hero-desc {
  margin-top: 22px;
  font-size: 17px;
  color: var(--ink-500);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  margin-top: 30px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.hero-trust li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  padding-left: 20px;
  position: relative;
}
.hero-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 800;
}

/* Hero visual card */
.hero-visual { position: relative; }
.phone-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  max-width: 400px;
  margin: 0 auto;
}
.phone-card-top { display: flex; gap: 6px; margin-bottom: 18px; }
.phone-card-top .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); }
.phone-card-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--green-800);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  color: #fff;
}
.ring-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--green-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  animation: ring 1.4s infinite;
}
@keyframes ring {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(18deg); }
  40% { transform: rotate(-14deg); }
  60% { transform: rotate(9deg); }
  80% { transform: rotate(-4deg); }
}
.pc-title { font-size: 14px; font-weight: 700; margin: 0 0 2px; }
.pc-sub { font-size: 12px; opacity: .8; margin: 0; }
.pc-badge {
  margin-left: auto;
  background: var(--gold-500);
  color: var(--green-950);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}
.phone-card-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin: 18px 4px;
}
.phone-card-wave span {
  flex: 1;
  background: var(--green-500);
  border-radius: 3px;
  animation: wave 1.2s ease-in-out infinite;
}
.phone-card-wave span:nth-child(1) { height: 30%; animation-delay: 0s; }
.phone-card-wave span:nth-child(2) { height: 70%; animation-delay: .1s; }
.phone-card-wave span:nth-child(3) { height: 45%; animation-delay: .2s; }
.phone-card-wave span:nth-child(4) { height: 90%; animation-delay: .3s; }
.phone-card-wave span:nth-child(5) { height: 55%; animation-delay: .4s; }
.phone-card-wave span:nth-child(6) { height: 75%; animation-delay: .5s; }
.phone-card-wave span:nth-child(7) { height: 35%; animation-delay: .6s; }
@keyframes wave {
  0%, 100% { transform: scaleY(.5); }
  50% { transform: scaleY(1); }
}
.phone-card-list { display: flex; flex-direction: column; gap: 10px; }
.pc-list-item {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-700);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-check {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-700);
}
.fb1 { top: -8px; left: -18px; }
.fb2 { bottom: 10px; right: -22px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--green-800);
  padding: 30px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 26px;
  color: var(--gold-400);
  font-weight: 800;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .82);
  font-weight: 500;
}

/* ---------- Generic section ---------- */
.section { padding: 100px 0; }
.section.alt-bg { background: var(--green-50); }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head h2 {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -.3px;
}
.section-sub {
  margin-top: 16px;
  font-size: 16px;
  color: var(--ink-500);
}
.pain .section-head, .about .about-copy { text-align: left; margin: 0; }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Pain points ---------- */
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}
.pain-icon { font-size: 30px; margin-bottom: 14px; }
.pain-card p { font-size: 15px; color: var(--ink-700); }
.pain-card strong { color: var(--green-800); }

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.about-copy h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; line-height: 1.4; margin-bottom: 20px; }
.about-copy p { color: var(--ink-700); font-size: 15.5px; margin-bottom: 14px; }
.about-audience {
  margin-top: 26px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.about-audience-title { font-weight: 800; color: var(--green-800); margin-bottom: 12px; }
.about-audience ul li {
  font-size: 14.5px;
  color: var(--ink-700);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}
.about-audience ul li:last-child { margin-bottom: 0; }
.about-audience ul li::before {
  content: "●";
  font-size: 7px;
  position: absolute;
  left: 2px;
  top: 7px;
  color: var(--gold-500);
}

.diagram-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 32px 24px;
}
.diagram-title { text-align: center; font-weight: 800; color: var(--ink-900); margin-bottom: 24px; }
.diagram-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}
.diagram-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: var(--radius-md);
  padding: 16px 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-700);
  text-align: center;
}
.diagram-node.node-cloud { background: var(--gold-100); border-color: #f0e3ad; }
.diagram-emoji { font-size: 26px; }
.diagram-arrow { color: var(--gold-500); font-size: 20px; font-weight: 800; flex-shrink: 0; }
.diagram-note {
  margin-top: 20px;
  text-align: center;
  font-size: 12.5px;
  color: var(--ink-500);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 18px;
  margin-bottom: 56px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
}
.step-num {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--green-950);
  background: var(--gold-500);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; color: var(--ink-500); }
.step-arrow {
  align-self: center;
  color: var(--gold-500);
  font-size: 22px;
  font-weight: 800;
}
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 22px;
}
.mini-card h4 { font-size: 15.5px; font-weight: 800; margin-bottom: 10px; }
.mini-card p { font-size: 14px; color: var(--ink-500); }

/* ---------- Features ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-100); }
.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--green-50);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 16px; font-weight: 800; margin-bottom: 8px; }
.feature-card p { font-size: 13.5px; color: var(--ink-500); }

/* ---------- Dashboard ---------- */
.dashboard-inner {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.dash-window {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-window-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--ink-900);
}
.dash-window-bar span:not(.dash-title) {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}
.dash-title {
  margin-left: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: 12.5px;
  font-weight: 700;
}
.dash-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.dash-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
}
.dash-tag {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: 999px;
  flex-shrink: 0;
}
.dash-tag.live { background: #e6f2ea; color: var(--green-700); }
.dash-tag.done { background: var(--gold-100); color: var(--gold-600); }
.dash-tag.miss { background: #fbe9e7; color: #b3492f; }
.dash-name { font-weight: 700; color: var(--ink-900); }
.dash-time { margin-left: auto; color: var(--ink-500); font-variant-numeric: tabular-nums; }
.dash-note {
  margin-top: 4px;
  font-size: 12.5px;
  color: var(--ink-500);
  background: var(--green-50);
  border-radius: 10px;
  padding: 12px 14px;
}
.dashboard-copy h2 { font-size: clamp(26px, 3.2vw, 36px); font-weight: 800; line-height: 1.4; }
.dashboard-copy > p { color: var(--ink-500); margin: 14px 0 22px; font-size: 14px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-700);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list li span {
  color: var(--green-700);
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- Security ---------- */
.security-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
}
.security-num {
  font-size: 30px;
  font-weight: 800;
  color: var(--green-100);
  -webkit-text-stroke: 1.5px var(--green-500);
  margin-bottom: 12px;
}
.security-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.security-card p { font-size: 14px; color: var(--ink-500); }

/* ---------- Addon ---------- */
.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.addon-card h3 { font-size: 17px; font-weight: 800; margin-bottom: 18px; }
.simple-list li {
  font-size: 14.5px;
  color: var(--ink-700);
  padding: 10px 0 10px 22px;
  position: relative;
  border-bottom: 1px dashed var(--border);
}
.simple-list li:last-child { border-bottom: none; }
.simple-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-700);
  font-weight: 800;
}

/* ---------- Setup ---------- */
.setup-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
}
.setup-icon { font-size: 32px; margin-bottom: 14px; }
.setup-card h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.setup-card p { font-size: 14px; color: var(--ink-500); margin-bottom: 14px; }
.setup-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-700);
  background: var(--green-50);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Pricing ---------- */
.price-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.price-cards-secondary { margin-top: 26px; grid-template-columns: 1fr; }
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
}
.price-card-main { border: 2px solid var(--green-700); box-shadow: var(--shadow-md); position: relative; }
.price-badge {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 800;
  color: #fff;
  background: var(--green-700);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.price-badge-alt { background: var(--gold-500); color: var(--green-950); }
.price-card-main h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.price-row-main { border-bottom: none; padding-top: 16px; }
.price-label { font-size: 14.5px; color: var(--ink-500); font-weight: 600; }
.price-value { font-weight: 800; font-size: 16px; }
.price-value em { font-style: normal; font-weight: 600; font-size: 12.5px; color: var(--ink-500); margin-left: 4px; }
.price-big { font-size: 26px; color: var(--green-800); }
.price-note { font-size: 12px; color: var(--ink-300); margin: 4px 0 18px; }
.price-card-main .simple-list { margin-top: 6px; }

.price-table { width: 100%; border-collapse: collapse; margin-top: 4px; }
.price-table th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--ink-500);
  padding: 10px 6px;
  border-bottom: 2px solid var(--ink-900);
}
.price-table th:last-child, .price-table td:last-child { text-align: right; }
.price-table td {
  font-size: 14px;
  padding: 12px 6px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-700);
}
.price-table td small { color: var(--ink-300); }
.price-table tr:last-child td { border-bottom: none; }

.price-terms {
  margin-top: 34px;
  max-width: 760px;
  margin-inline: auto;
}
.price-terms li {
  font-size: 13px;
  color: var(--ink-500);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}
.price-terms li::before { content: "※"; position: absolute; left: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 20px 22px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink-900);
}
.faq-toggle {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--green-700); color: #fff; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-a p { padding: 0 22px 20px; font-size: 14.5px; color: var(--ink-500); }
.faq-item.open .faq-a { max-height: 260px; }

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-copy h2 { font-size: clamp(26px, 3vw, 34px); font-weight: 800; line-height: 1.4; margin-bottom: 12px; }
.contact-copy > p { color: var(--ink-500); font-size: 15px; }
.contact-direct { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.contact-direct-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  font-size: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.contact-direct-item:hover { border-color: var(--green-700); transform: translateY(-2px); }
.contact-direct-icon { font-size: 20px; }
.contact-direct-item strong { display: block; font-size: 13px; color: var(--ink-500); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row label { font-size: 13.5px; font-weight: 700; color: var(--ink-700); }
.form-row input, .form-row textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink-900);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px var(--green-100);
}
.form-hint { text-align: center; font-size: 12.5px; color: var(--ink-300); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(255, 255, 255, .82); padding: 60px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}
.footer-brand-text { font-size: 19px; font-weight: 800; color: #fff; }
.footer-brand-text b { color: var(--gold-400); }
.footer-brand p { margin-top: 10px; font-size: 13.5px; color: rgba(255, 255, 255, .55); }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 14px; }
.footer-links a:hover { color: var(--gold-400); }
.footer-contact p { font-size: 14px; margin-bottom: 10px; }
.footer-contact a:hover { color: var(--gold-400); }
.footer-bottom { padding: 22px 0; font-size: 12.5px; color: rgba(255, 255, 255, .45); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--green-800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 400;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .about-inner, .dashboard-inner, .contact-inner { grid-template-columns: 1fr; }
  .dashboard-visual { order: 2; }
  .dashboard-copy { order: 1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .step-arrow { transform: rotate(90deg); margin: -6px 0; }
  .price-cards { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 18px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .main-nav a:last-child { border-bottom: none; }
  .only-desktop { display: none; }
  .only-mobile { display: inline; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { padding-top: calc(var(--header-h) + 40px); padding-bottom: 60px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .diagram-flow { flex-direction: column; }
  .diagram-arrow { transform: rotate(90deg); }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1; }
  .fb1, .fb2 { position: static; margin-top: 12px; display: inline-block; }
  .floating-badge { margin-right: 8px; }
}
