/* ═══════════════════════════════════════════════════════
   MJP AGEN LANDING PAGE — Professional Edition
   Editorial real estate aesthetic
   ═══════════════════════════════════════════════════════ */

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, sans-serif;
  background: #fafaf7;
  color: #0d1a14;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:root {
  --ink: #0d1a14;
  --ink-2: #2a3e33;
  --ink-3: #556864;
  --ink-4: #8d9b95;
  --ink-5: #b8c2bd;
  
  --bg: #fafaf7;
  --bg-2: #f2efe6;
  --bg-card: #ffffff;
  
  --brand: #064E3B;
  --brand-2: #047857;
  --brand-dark: #022C22;
  --brand-deeper: #020f08;
  --accent: #D97706;
  --accent-2: #F59E0B;
  --accent-3: #f0d793;
  
  --border: #e3e0d3;
  --border-dark: #1c2d24;
  
  --success: #16a34a;
  --error: #dc2626;
  
  --display: 'Fraunces', Georgia, serif;
  --sans: 'Inter', sans-serif;
  
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

::selection {
  background: var(--accent);
  color: var(--brand-dark);
}

/* ═══ TYPE SYSTEM ═══ */

h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
  padding: 6px 12px;
  background: rgba(6, 78, 59, 0.06);
  border-radius: 100px;
  margin-bottom: 24px;
}
.eyebrow-center {
  display: table;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.eyebrow-light { color: var(--accent); background: rgba(217, 119, 6, 0.15); }
.eyebrow-accent { color: var(--accent); background: rgba(217, 119, 6, 0.15); }

.section {
  padding: 72px 0;
  position: relative;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.section-title-center { text-align: center; }
.section-title-light { color: #fff; }

.section-lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 580px;
  margin-bottom: 48px;
}
.section-lead-center { margin-left: auto; margin-right: auto; text-align: center; }
.section-lead-light { color: rgba(255,255,255,0.7); }

/* ═══ STICKY CTA ═══ */
.sticky-cta {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(6, 78, 59, 0.97);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 12px 0;
  transform: translateY(-100%);
  transition: transform 400ms var(--ease);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.sticky-text {
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sticky-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(217,119,6,0.8);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(217,119,6,0.6); }
  50% { box-shadow: 0 0 0 10px rgba(217,119,6,0); }
}

/* ═══ HERO ═══ */

.hero {
  position: relative;
  min-height: 100vh;
  background: var(--brand-deeper);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, rgba(0,0,0,1) 0%, transparent 70%);
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(217,119,6,0.12), transparent 60%);
  filter: blur(60px);
}

/* Top nav inside hero */
.top-nav {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-mark {
  width: 42px;
  height: 42px;
  background: var(--accent);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  border-radius: 8px;
  letter-spacing: -0.5px;
  box-shadow: 0 4px 20px rgba(217,119,6,0.3);
}
.nav-name {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  line-height: 1.2;
}
.nav-login {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  transition: all 200ms;
}
.nav-login:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
  width: fit-content;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  animation: fadeUp 800ms var(--ease) 0ms backwards;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 7.5vw, 88px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  max-width: 900px;
  animation: fadeUp 900ms var(--ease) 150ms backwards;
}
.title-em {
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(120deg, var(--accent) 20%, var(--accent-2) 50%, var(--accent-3) 80%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.title-muted {
  color: rgba(255,255,255,0.45);
  font-size: 0.55em;
  line-height: 1.1;
  font-family: var(--sans);
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  margin-top: 18px;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 48px;
  max-width: 580px;
  line-height: 1.55;
  animation: fadeUp 900ms var(--ease) 300ms backwards;
}

.hero-highlights {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
  width: fit-content;
  max-width: 100%;
  animation: fadeUp 900ms var(--ease) 450ms backwards;
}
.hl-item { display: flex; flex-direction: column; gap: 4px; }
.hl-num {
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hl-small { font-size: 0.6em; color: var(--accent); font-weight: 500; }
.hl-lbl {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.3;
}
.hl-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.12);
}
@media (max-width: 600px) {
  .hero-highlights { padding: 18px; gap: 14px; }
  .hl-divider { height: 36px; }
  .hl-lbl { font-size: 9px; }
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 900ms var(--ease) 600ms backwards;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--brand-dark);
  border: none;
  border-radius: 100px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: all 280ms var(--ease);
  box-shadow: 0 10px 40px rgba(217,119,6,0.25), 0 4px 12px rgba(217,119,6,0.15);
  letter-spacing: -0.01em;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 50px rgba(217,119,6,0.35), 0 6px 16px rgba(217,119,6,0.2);
  background: var(--accent-2);
}
.btn-hero:active { transform: translateY(0); }
.btn-arrow {
  display: inline-block;
  transition: transform 280ms var(--ease);
}
.btn-hero:hover .btn-arrow { transform: translateX(4px); }

.hero-cta-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 8px;
}
.meta-dot {
  width: 4px;
  height: 4px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (max-width: 600px) {
  .hero-scroll-hint { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══ REVEAL ANIMATION (scroll-triggered) ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ═══ PROBLEM SECTION ═══ */

.section-problem {
  background: var(--bg);
  padding: 80px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
@media (max-width: 600px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 400ms var(--ease);
  position: relative;
}
.problem-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(6,78,59,0.08);
}
.problem-num {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.problem-card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

.problem-insight {
  text-align: center;
  padding: 64px 32px;
  background: #fff;
  border-radius: 24px;
  position: relative;
  border: 1px solid var(--border);
}
.insight-mark {
  font-family: var(--display);
  font-size: 80px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 16px;
  font-style: italic;
}
.problem-insight p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.problem-insight s { color: var(--ink-4); opacity: 0.6; }
.insight-em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

/* ═══ TRANSITION BAND ═══ */

.transition-band {
  background: var(--brand-dark);
  color: #fff;
  padding: 72px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.transition-title {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.1;
}
.transition-em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}
.transition-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.65);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}

/* ═══ PRODUCT SECTION ═══ */

.section-product {
  background: var(--bg-2);
}

.product-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin: 48px 0 80px;
}
@media (max-width: 760px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid var(--border);
}
.product-card-main {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border: none;
  position: relative;
  overflow: hidden;
}
.product-card-main::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(217,119,6,0.12), transparent 60%);
  pointer-events: none;
}

.product-tag {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  position: relative;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
}
.price-prefix {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-amount {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.035em;
  line-height: 1;
}
.price-amount small {
  font-size: 0.5em;
  color: var(--accent);
  font-weight: 500;
}

.product-financing {
  position: relative;
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fin-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  gap: 16px;
}
.fin-label {
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.fin-value {
  color: #fff;
  font-weight: 700;
}
.fin-value small {
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  font-size: 11px;
}
.fin-badge {
  padding: 4px 10px;
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.product-location {
  padding: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.loc-pin {
  font-size: 32px;
  flex-shrink: 0;
}
.loc-title {
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 6px;
}
.loc-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.loc-desc {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
}

.features-title {
  font-family: var(--display);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 500;
  font-style: italic;
  color: var(--brand);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: transform 300ms var(--ease);
}
.feature-item:hover { transform: translateY(-3px); }
.feature-ico {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.feature-name {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

/* ═══ WHY SECTION ═══ */

.section-why { background: #fff; }

.why-list-pro {
  display: grid;
  gap: 8px;
  margin-top: 48px;
}
.why-item-pro {
  display: flex;
  gap: 24px;
  padding: 28px;
  align-items: flex-start;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 300ms var(--ease);
}
.why-item-pro:hover {
  background: var(--bg-2);
  border-color: var(--border);
}
.why-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
}
.why-name {
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.why-desc {
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 560px;
}

/* ═══ POTENTIAL ═══ */

.section-potential {
  background: linear-gradient(180deg, #fff 0%, var(--bg-2) 100%);
}

.potential-card {
  background: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  margin-top: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(6,78,59,0.04);
}
.pot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
@media (max-width: 680px) {
  .pot-grid { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
}
.pot-item { text-align: center; }
.pot-ico {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1;
}
.pot-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.pot-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.5;
}

.pot-insight { text-align: center; }
.pot-insight p {
  margin: 0 0 14px;
  font-size: clamp(16px, 1.5vw, 17px);
  color: var(--ink-2);
  line-height: 1.6;
}
.pot-insight p:last-child { margin: 0; }
.pot-tagline {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 30px) !important;
  font-weight: 500 !important;
  color: var(--ink) !important;
  line-height: 1.2 !important;
  font-style: italic;
  margin-top: 24px !important;
  letter-spacing: -0.02em;
}
.pot-em {
  color: var(--accent);
  font-weight: 600;
}

/* ═══ TOOLS SECTION ═══ */

.section-tools {
  background: var(--brand-deeper);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-tools::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,119,6,0.08), transparent 60%);
  pointer-events: none;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.tool-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  border-radius: 20px;
  transition: all 400ms var(--ease);
}
.tool-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(217,119,6,0.3);
  transform: translateY(-4px);
}
.tool-ico {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}
.tool-name {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.tool-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ═══ STEPS ═══ */

.section-steps { background: var(--bg); }

.steps-timeline {
  max-width: 680px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-pro {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding-bottom: 12px;
}
.step-pro:last-child .step-line { display: none; }

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-circle {
  width: 48px;
  height: 48px;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
  transition: all 300ms var(--ease);
  flex-shrink: 0;
}
.step-pro:hover .step-circle {
  background: var(--brand);
  color: #fff;
  transform: scale(1.1);
}
.step-line {
  flex: 1;
  width: 2px;
  background: var(--border);
  margin: 8px 0;
}
.step-content {
  flex: 1;
  padding-bottom: 32px;
  padding-top: 8px;
}
.step-heading {
  font-family: var(--display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.step-content p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 480px;
}

/* ═══ CLOSING ═══ */

.section-closing {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.closing-card {
  background: var(--brand-deeper);
  color: #fff;
  border-radius: 32px;
  padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 60px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217,119,6,0.15), transparent 60%);
  pointer-events: none;
}

.closing-title {
  font-family: var(--display);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
  position: relative;
}

.closing-divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
  position: relative;
}

.closing-question {
  font-family: var(--display);
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  margin: 0 0 40px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  position: relative;
}
.closing-question s { color: rgba(255,255,255,0.35); }
.closing-em {
  color: var(--accent);
  font-style: italic;
  font-weight: 600;
}

.urgency-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  text-align: left;
  padding: 24px 28px;
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 16px;
  margin-top: 32px;
  position: relative;
}
.urgency-ico {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}
.urgency-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}
.urgency-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* ═══ FORM ═══ */

.section-form { background: var(--bg-2); }

.form-wrapper {
  max-width: 620px;
  margin: 48px auto 0;
  background: #fff;
  border-radius: 24px;
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid var(--border);
  box-shadow: 0 30px 80px rgba(6,78,59,0.06);
}

.form-pro { display: grid; gap: 18px; }
.form-row-pro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 520px) {
  .form-row-pro { grid-template-columns: 1fr; gap: 0; }
  .form-row-pro .form-group-pro { margin-bottom: 18px; }
}

.form-group-pro label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--ink-2);
  letter-spacing: 0.01em;
}
.form-group-pro small {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--ink-4);
  margin-top: 6px;
}

.req { color: var(--error); }

.form-group-pro input,
.form-group-pro textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 16px;
  color: var(--ink);
  transition: all 200ms;
}
.form-group-pro input:focus,
.form-group-pro textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 78, 59, 0.08);
}
.form-group-pro textarea { resize: vertical; min-height: 70px; }

.form-divider-pro {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.form-divider-pro::before,
.form-divider-pro::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.consent-pro {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  cursor: pointer;
  margin-top: 4px;
}
.consent-pro input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex-shrink: 0;
  accent-color: var(--brand);
  cursor: pointer;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 24px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  cursor: pointer;
  margin-top: 10px;
  transition: all 250ms var(--ease);
  box-shadow: 0 10px 30px rgba(6,78,59,0.2);
}
.btn-submit:hover {
  background: var(--brand-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(6,78,59,0.3);
}
.btn-submit:hover .btn-arrow { transform: translateX(4px); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--accent);
  color: var(--brand-dark);
  border-radius: 100px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: all 200ms;
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--ink-4);
  margin: 10px 0 0;
}

/* ═══ SUCCESS STATE ═══ */
.success-state {
  text-align: center;
  padding: 20px 0;
}
.success-icon-pro {
  width: 72px;
  height: 72px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pop 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(22, 163, 74, 0.3);
}
@keyframes pop {
  0% { transform: scale(0.3); opacity: 0; }
  70% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); }
}
.success-title {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.success-text {
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  margin: 0 0 24px;
}
.success-meta {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 24px;
  background: var(--bg-2);
  border-radius: 12px;
  margin-bottom: 20px;
}
.success-meta span {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}
.success-meta strong {
  font-family: var(--display);
  font-size: 22px;
  color: var(--brand);
  font-weight: 700;
}
.btn-ghost-pro {
  display: inline-block;
  padding: 12px 24px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 200ms;
}
.btn-ghost-pro:hover {
  background: var(--bg);
  border-color: var(--brand);
  color: var(--brand);
}

/* ═══ FOOTER ═══ */

.footer-pro {
  background: var(--brand-deeper);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 600px) {
  .footer-brand { justify-content: center; }
}
.nav-mark-footer { width: 48px; height: 48px; }
.footer-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.footer-tag {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer-links { justify-content: center; }
}
.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms;
}
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom p { margin: 0; }

/* ═══ TOAST ═══ */
.toast-pro {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  padding: 14px 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 280ms var(--ease);
  z-index: 9999;
  max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.toast-pro.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast-pro.error { background: var(--error); }
.toast-pro.success { background: var(--success); }

/* ═══ MOBILE REFINE ═══ */
@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .section-title { font-size: 32px; }
  .container, .container-narrow { padding: 0 20px; }
  .top-nav { padding: 20px 16px; }
  .nav-name { display: none; }
  .hero-inner { padding: 20px 20px 60px; }
  .sticky-inner { padding: 0 16px; }
}


/* ═══ OPENING SECTION (rename of problem) ═══ */

.section-opening {
  background: var(--bg);
  padding: 80px 0;
}

.opening-lead {
  text-align: center;
  font-size: clamp(17px, 2vw, 19px);
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 48px;
}

.opening-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
@media (max-width: 760px) {
  .opening-grid { grid-template-columns: 1fr; gap: 14px; }
}

.opening-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: all 400ms var(--ease);
  position: relative;
}
.opening-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand);
  box-shadow: 0 20px 40px rgba(6,78,59,0.08);
}
.opening-num {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.opening-card p {
  margin: 0;
  font-size: 16px;
  color: var(--ink-2);
  line-height: 1.55;
}

.opening-stop {
  text-align: center;
  position: relative;
  padding: 24px 0;
}
.stop-line {
  width: 1px;
  height: 32px;
  background: var(--ink-4);
  margin: 0 auto 24px;
  opacity: 0.3;
}
.opening-stop p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-style: italic;
}
.stop-em {
  color: var(--accent);
  font-weight: 600;
}

/* Product closer text */
.product-closer {
  text-align: center;
  margin-top: 48px;
  padding: 28px 24px;
  font-family: var(--display);
  font-size: clamp(19px, 2.5vw, 24px);
  font-weight: 500;
  color: var(--ink-2);
  font-style: italic;
  line-height: 1.4;
  letter-spacing: -0.02em;
  border-top: 1px solid var(--border);
}
.closer-em {
  color: var(--brand);
  font-weight: 600;
}

/* ============ MOBILE_POLISH_START ============ */
@media (max-width: 640px) {
  input, select, textarea {
    font-size: 16px !important;
  }
  button, .btn {
    min-height: 44px;
  }
}
/* ============ MOBILE_POLISH_END ============ */

