*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f0f0f;
  --ink-2: #3d3d3d;
  --ink-3: #6b6b6b;
  --ink-4: #9b9b9b;
  --paper: #fafaf8;
  --paper-2: #f2f1ed;
  --paper-3: #e8e6e0;
  --line: #e2e0da;
  --accent: #e84e1b;
  --accent-2: #ff6b3d;
  --accent-bg: #fff3ef;
  --accent-line: #fbd5c8;
  --green: #16a34a;
  --green-bg: #f0fdf4;
  --green-line: #bbf7d0;
  --red-bg: #fff1f1;
  --red-line: #fecaca;
  --red: #dc2626;
  --blue: #2563eb;
  --blue-bg: #eff6ff;
  --font-head: "Fraunces", serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
  --r: 12px;
  --max: 1120px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.logo em {
  font-style: normal;
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-btn {
  background: var(--ink);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.nav-btn:hover {
  background: #222;
  transform: translateY(-1px);
}

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

section {
  padding: 96px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.tag::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.tag-center {
  justify-content: center;
}

.tag-white {
  color: rgba(255, 255, 255, 0.8);
}

.tag-white::before {
  background: rgba(255, 255, 255, 0.5);
}

h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  color: var(--ink);
  margin-bottom: 18px;
}

h2 em {
  font-style: italic;
  color: var(--accent);
}

.lead {
  font-size: 18px;
  color: var(--ink-2);
  line-height: 1.65;
  font-weight: 400;
  max-width: 560px;
}

.btn-dark,
.btn-ghost,
.btn-white,
.btn-white-outline {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  transition: all 0.2s;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-dark:hover {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--ink-2);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 24px;
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink-3);
  color: var(--ink);
}

.btn-white {
  background: white;
  color: var(--accent);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--paper);
  transform: translateY(-2px);
}

.btn-white-outline {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-white-outline:hover {
  border-color: white;
  color: white;
}

/* HERO */
.hero {
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: radial-gradient(circle, #0f0f0f 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  padding: 7px 15px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(44px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 38px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-proof {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
}

.proof-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-bg);
  border: 1.5px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
}

.phone-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  margin: 0 auto;
}

.phone-bar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-dots {
  display: flex;
  gap: 5px;
}

.phone-dot,
.dash-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f57;
}

.dot-yellow {
  background: #febc2e;
}

.dot-green {
  background: #28c840;
}

.phone-url {
  flex: 1;
  background: white;
  border-radius: 5px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--ink-4);
  border: 1px solid var(--line);
}

.phone-screen {
  background: var(--paper);
  min-height: 460px;
}

.ps-header {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ps-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent);
}

.ps-order-btn {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 7px;
}

.ps-hero-img {
  background: linear-gradient(160deg, #1a1008 0%, #2d1a0e 50%, #1a1008 100%);
  padding: 22px 18px;
}

.ps-badge {
  background: rgba(232, 78, 27, 0.2);
  color: #ffb090;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ps-htitle {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.ps-hsub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.ps-cats {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  overflow-x: hidden;
  background: white;
  border-bottom: 1px solid var(--line);
}

.ps-cat {
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.ps-cat.active {
  background: var(--accent);
  color: white;
}

.ps-cat:not(.active) {
  background: var(--paper-2);
  color: var(--ink-3);
}

.ps-items {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--paper);
}

.ps-item {
  background: white;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.ps-item-img {
  width: 52px;
  height: 52px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.bg-soft-orange {
  background: #fff5f0;
}

.bg-soft-yellow {
  background: #fffbf0;
}

.ps-item-content {
  flex: 1;
}

.ps-item-name {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--ink);
}

.ps-item-desc {
  font-size: 11px;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.ps-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ps-price {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.ps-add {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 6px;
}

.badge-float {
  position: absolute;
  top: -16px;
  right: -20px;
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.badge-float-2 {
  position: absolute;
  bottom: 20px;
  left: -28px;
  background: var(--green-bg);
  border: 1.5px solid var(--green-line);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* PROBLEM */
.problem {
  background: var(--ink);
  color: white;
}

.problem .tag {
  color: rgba(255, 255, 255, 0.5);
}

.problem .tag::before {
  background: rgba(255, 255, 255, 0.3);
}

.problem h2 {
  color: white;
}

.problem h2 em {
  color: var(--accent-2);
}

.problem .lead {
  color: rgba(255, 255, 255, 0.6);
  max-width: 580px;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r);
  padding: 20px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, background 0.2s;
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.pain-ic {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pain-t {
  font-weight: 700;
  font-size: 14px;
  color: white;
  margin-bottom: 4px;
}

.pain-d {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
}

.fee-visual {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
}

.fee-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.fee-r {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.fee-r:last-of-type {
  border-bottom: none;
}

.fee-good {
  color: #4ade80;
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 16px;
}

.fee-total {
  margin-top: 18px;
  background: rgba(232, 78, 27, 0.15);
  border: 1px solid rgba(232, 78, 27, 0.3);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.fee-total-l {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.fee-total-n {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-2);
}

/* SOLUTION */
.solution {
  background: var(--paper);
}

.solution-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.solution-steps {
  display: flex;
  flex-direction: column;
}

.step {
  display: flex;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.step:first-child {
  padding-top: 0;
}

.step:last-child {
  border-bottom: none;
}

.step-n {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  min-width: 28px;
  margin-top: 2px;
}

.step-t {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 5px;
}

.step-d {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.6;
}

.dash-frame {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.dash-topbar {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dash-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  margin-left: 8px;
}

.dash-body {
  padding: 18px;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.dash-stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
}

.dash-stat-n {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.dash-stat-l {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 2px;
}

.dash-stat-d {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

.dash-sect-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.dash-orders {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dash-order {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.dash-order-l {
  font-size: 12px;
  color: var(--ink-2);
}

.dash-order-sub {
  font-size: 11px;
  color: var(--ink-4);
  margin-top: 2px;
}

.dot-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  white-space: nowrap;
}

.db-green {
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-line);
}

.db-amber {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fde68a;
}

.db-blue {
  background: var(--blue-bg);
  color: var(--blue);
  border: 1px solid #bfdbfe;
}

.mini-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
}

/* BENEFITS */
.benefits {
  background: var(--paper-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.bcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px;
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.bcard::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}

.bcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.bcard:hover::after {
  transform: scaleX(1);
}

.bcard-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}

.bcard-t {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}

.bcard-d {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.6;
}

.bcard-feature {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* HIGHLIGHTS / PROOF */
.highlights {
  background: white;
}

.shots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 56px;
}

.shot-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}

.shot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.shot-card-wide {
  grid-column: span 2;
}

.shot-image-wrap {
  background: var(--paper-2);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qr-wrap {
  background: #f7f7f7;
}

.payments-wrap {
  background: #f3f3f3;
}

.shot-image {
  width: 100%;
  display: block;
  border-radius: 12px;
}

.qr-image-large {
  max-width: 320px;
}

.payments-image {
  max-width: 700px;
}

.shot-content {
  padding: 20px 22px 24px;
}

.shot-content-full {
  padding-top: 26px;
}

.shot-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.shot-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-3);
}

.shot-text-margin {
  margin-bottom: 10px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:last-child {
  border-bottom: none;
}

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid var(--green-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-row strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  margin-bottom: 2px;
}

.feature-row p {
  font-size: 13px;
  color: var(--ink-3);
}

/* COMPARISON */
.comparison {
  background: var(--paper-2);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.cmp-col {
  border-radius: 16px;
  overflow: hidden;
}

.cmp-head {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 16px;
}

.cmp-bad .cmp-head {
  background: var(--red-bg);
  border: 1px solid var(--red-line);
  border-bottom: none;
  color: var(--red);
}

.cmp-good .cmp-head {
  background: var(--green-bg);
  border: 1px solid var(--green-line);
  border-bottom: none;
  color: var(--green);
}

.cmp-body {
  border-radius: 0 0 16px 16px;
}

.cmp-bad .cmp-body {
  border: 1px solid var(--red-line);
  border-top: none;
}

.cmp-good .cmp-body {
  border: 1px solid var(--green-line);
  border-top: none;
}

.cmp-row {
  padding: 14px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
}

.cmp-bad .cmp-row {
  border-bottom: 1px solid rgba(220, 38, 38, 0.08);
  color: var(--ink-2);
}

.cmp-good .cmp-row {
  border-bottom: 1px solid rgba(22, 163, 74, 0.08);
  color: var(--ink-2);
}

.cmp-row:last-child {
  border-bottom: none;
}

.cmp-row strong {
  color: var(--ink);
}

.cmp-ic {
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* TRUST */
.trust {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.tcard {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.tcard:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.tcard-ic {
  font-size: 30px;
  margin-bottom: 14px;
}

.tcard-t {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}

.tcard-d {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.55;
}

/* CTA */
.fcta {
  background: var(--accent);
  color: white;
  text-align: center;
}

.fcta h2 {
  color: white;
  font-size: clamp(32px, 4vw, 52px);
}

.fcta h2 em {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
}

.cta-container {
  max-width: 700px;
  text-align: center;
}

.cta-lead {
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 40px;
}

.fcta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 36px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-4);
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
}

.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.footer-logo em {
  font-style: normal;
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--ink-4);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* responsive */
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  section {
    padding: 72px 0;
  }

  .hero {
    padding: 110px 0 60px;
  }

  .hero-inner,
  .problem-grid,
  .solution-inner,
  .shots-grid,
  .compare-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .shot-card-wide {
    grid-column: span 1;
  }

  .hero-visual {
    display: none;
  }

  .dash-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .benefits-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  h2 {
    letter-spacing: -1px;
  }

  .fee-total {
    flex-direction: column;
    align-items: flex-start;
  }

  footer {
    padding: 28px 20px;
  }
}
.hero-real-image {
  width: 100%;
  max-width: 390px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}
.contact-section {
  background: white;
  padding: 90px 0;
}

.contact-top {
  max-width: 760px;
  margin-bottom: 30px;
}

.contact-lead {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

.contact-card,
.contact-info-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 28px;
}

.contact-card-head {
  margin-bottom: 24px;
}

.contact-card-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.contact-card-text {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.7;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232, 78, 27, 0.08);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-info-card {
  padding: 24px;
}

.contact-side-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 18px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
}

.contact-value.plain {
  color: var(--ink-2);
  font-weight: 500;
}

.mini-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.mini-step:last-child {
  border-bottom: none;
}

.mini-step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-bg);
  color: var(--accent);
  border: 1px solid var(--accent-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.contact-note {
  background: var(--accent-bg);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}