:root {
  --bg-top: #f6f6f4;
  --bg-bottom: #f2f1ed;
  --text: #1e1e1c;
  --muted: #5f5f5a;
  --gold: #caa13a;
  --gold-soft: rgba(202, 161, 58, 0.24);
  --gold-line: rgba(202, 161, 58, 0.42);
  --card-border: rgba(30, 30, 28, 0.07);
  --gold-softer: rgba(202, 161, 58, 0.08);
  --line: #ece6db;
  --gold-1: #caa128;
  --gold-2: #e6b843;
  --gold-3: #f5d35f;
  --shadow-soft: 0 30px 60px rgba(0, 0, 0, 0.04);

  --bg: #f6f4ef;
  --card: #fcfbf8;
  --accent: #c8a33a;
  --shadow: 0 14px 34px rgba(20, 20, 20, 0.07);
  --radius: 34px;
  --container: 1120px;
}



* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  color: var(--text);
}

body {
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  width: 34vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.9;
}

body::before {
  left: -8vw;
  background:
    radial-gradient(circle at 30% 35%, var(--gold-soft) 0%, transparent 42%),
    radial-gradient(circle at 55% 70%, var(--gold-softer) 0%, transparent 45%);
}

body::after {
  right: -8vw;
  background:
    radial-gradient(circle at 70% 30%, var(--gold-soft) 0%, transparent 42%),
    radial-gradient(circle at 45% 72%, var(--gold-softer) 0%, transparent 45%);
}

body,
.section-div,
.chat-thread {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(38px, 5vw, 64px);
}

h2 {
  font-size: 42px;
}

p {
  margin: 0;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 50px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wrap {
  width: 100%;
  max-width: 1080px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 300px;
}

.section-div {
  width: 100%;
  max-width: 1300px;
}

.soft-card {
  background: #ffffff;
  border: 1px solid #f0ebe1;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  column-gap: 16px;
  align-items: start;
}

.bullet {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(200, 163, 58, 0.16);
  border: 1px solid rgba(200, 163, 58, 0.22);
  position: relative;
}

.bullet::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c8a33a;
  display: block;
}

.meta-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b98d23;
}

.meta-label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: #b98d23;
  opacity: 0.9;
}

.main-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 40px;
  animation: fadeUp 0.8s ease both;
}

.main-div {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.8s ease both;
}

.logo {
  width: 130px;
  height: auto;
  display: block;
  margin: 0 auto 30px;
}

.title {
  margin: 0;
  max-width: 980px;
  font-weight: 500;
  font-size: clamp(64px, 7.1vw, 92px);
  letter-spacing: -0.065em;
  text-wrap: balance;
}

.subtitle {
  margin: 34px auto 0;
  max-width: 1080px;
  font-weight: 400;
  text-wrap: balance;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
  color: #373b43;
}

.subtitle2 {
  max-width: 980px;
  font-size: 20px;
  line-height: 1.42;
  letter-spacing: -0.02em;
  font-weight: 400;
  color: var(--muted);
  text-wrap: balance;
}

.divider {
  width: min(920px, 62vw);
  height: 1px;
  margin: 28px auto 10px;
  /*background: linear-gradient(
    90deg,
    rgba(183, 138, 45, 0) 0%,
    rgba(183, 138, 45, 0.18) 18%,
    rgba(183, 138, 45, 0.18) 82%,
    rgba(183, 138, 45, 0) 100%
  );*/
  background: linear-gradient(
    90deg,
    rgba(183, 138, 45, 0) 0%,
    rgba(230, 184, 67, 0.7) 50%,
    rgba(183, 138, 45, 0) 100%
  );
}

.join-link {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  padding: 15px 30px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: all 0.2s ease;
}

.join-link:hover {
  background: rgba(202, 161, 58, 0.06);
  box-shadow: 0 8px 24px rgba(202, 161, 58, 0.12);
  transform: translateY(-1px);
}

/* ========================= SECTION 1 — THE REAL PROBLEM ========================= */

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.problem-compare-wrap {
  max-width: var(--container);
  margin: 0 auto;
}

.problem-compare {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.problem-card {
  padding: 30px 28px;
  min-height: 100%;
}

.problem-card .meta-label {
  margin-bottom: 20px;
}

.problem-card .item-text,
.why-different-copy p,
.strength-text,
.what-you-get__header p,
.header p {
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0;
  color: #373b43;
}

.problem-card .bullet {
  width: 7px;
  height: 7px;
  margin-top: 10px;
  margin-bottom: 0;
  border: none;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(200, 163, 58, 0.15);
  justify-self: center;
  flex: none;
}

.problem-card .bullet::after {
  display: none;
}

.separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.separator-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 260px;
  gap: 16px;
  width: 100%;
}

.separator-line {
  width: 1px;
  flex: 1;
  min-height: 76px;
  background: var(--line);
}

.separator-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #faf6ea;
  border: 1px solid #e8dcb8;
  color: #aa8425;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(200, 163, 58, 0.06);
}

.problem-highlight {
  margin-top: 26px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
  width: 100%;
}

.problem-highlight .muted-line {
  font-size: 22px;
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: #373b43;
  /*color: #505762*/
}

.problem-highlight .strong-line {
  margin-top: 14px;
  font-size: 24px;
  line-height: 1.32;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text);
}

/* ========================= SECTION 2 — CHAT DEMO ========================= */

.chat-demo-full {
  padding: 18px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid #0f172a24;
  display: flex;
  flex-direction: column;
}

.chat-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px 10px;
  border-bottom: 1px solid #0f172a24;
  margin-bottom: 18px;
}

.chat-demo-logo-image {
  display: block;
  width: 150px;
  height: auto;
  object-fit: contain;
}

.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 1;
  padding: 14px 14px 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #fbf7ec 100%);
}

.chat-bubble {
  border-radius: 26px;
}

.chat-bubble-label {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text);
}

.chat-bubble-user {
  align-self: flex-end;
  background: #efefef;
  border: 1px solid #e7e7e7;
  padding: 18px 20px;
  box-shadow: 0 3px 10px rgba(20, 20, 20, 0.03);
}

.chat-bubble-text {
  margin: 0;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--text);
}

.chat-bubble-agent {
  width: 100%;
  align-self: flex-start;
  background: transparent;
  border: none;
  padding: 6px 4px 2px;
}

.chat-agent-head {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}

.chat-agent-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d2ab45 0%, #ead8a0 100%);
}

.chat-agent-title {
  margin-bottom: 15px;
  margin-top: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  max-width: 760px;
}

.chat-agent-subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
}

.chat-agent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  max-width: 760px;
}

.chat-agent-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 6px 14px rgba(20, 20, 20, 0.04);
  font-size: 18px;
  line-height: 1.2;
  /*color: #66707a;*/
  color: #373b43;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.chat-agent-tag:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(20, 20, 20, 0.08);
  border-color: #e2d4af;
}

/* ========================= SECTION 3 — HOW IT WORKS ========================= */

.how-it-works-section {
  width: 100%;
}

.how-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.how-nav h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.how-arrows {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.how-arrow {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(28, 35, 64, 0.72);
  background: rgba(255, 255, 255, 0.42);
  color: rgba(28, 35, 64, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0;
}

.how-arrow span {
  font-size: 46px;
  line-height: 1;
  transform: translateY(-2px);
  font-weight: 300;
}

.how-arrow:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.steps-slider {
 overflow: hidden;
  width: 100%;
  margin-top: 38px;
}

.steps-track {
  display: flex;
  align-items: stretch;
  gap: 22px;
  margin-top: 45px;
}

.steps-track .goal-card {
  flex: 0 0 calc(100% / 3);
  max-width: calc(100% / 3);
  min-width: 0;
}

.arrow-between {
  flex: 0 0 44px;
  width: 40px;
  align-self: center;
  opacity: 0.88;
  transform: translateY(-2px);
  user-select: none;
  pointer-events: none;
}

.steps-track .goal-title,
.block-title,
.scenario-title,
.form-panel h2 {
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  font-weight: 700;
}

.steps-track .lead,
.steps-track .item-text,
.steps-track .solution-text,
.block-intro {
  font-size: 22px;
  line-height: 1.45;
}

.steps-track .list {
  gap: 18px;
}

.steps-track .list li {
  grid-template-columns: 18px 1fr;
  column-gap: 14px;
}

.steps-track .bullet {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  margin-bottom: 0;
}

.steps-track .bullet::after {
  width: 5px;
  height: 5px;
}

/* ========================= SECTION — GOAL CARD ========================= */

.goal-card {
  position: relative;
  width: 390px;
  min-height: 280px;
  margin: 0 auto;
  padding: 82px 28px 28px;
  overflow: visible;
}

.goal-icon {
  position: absolute;
  top: -22.5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
}

.goal-icon img {
  width: 90px;
  height: auto;
  display: block;
}

.step-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #9a7720;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step-divider {
  width: 2px;
  height: 14px;
  background: #ddcfac;
}

.step-num {
  font-weight: 800;
  color: var(--accent);
}

.step-name {
  color: #ab8a31;
}

.goal-title {
  margin-bottom: 18px;
}

.lead {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 300px;
}

.solution {
  position: relative;
  margin-top: 28px;
  padding: 18px 0 0 18px;
  border-top: 1px solid var(--line);
}

.solution::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 2px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d4b04a 0%, #e8d4a0 100%);
}

.solution-text {
  font-size: 17px;
  line-height: 1.5;
  /*color: #373b43;*/
  color: var(--text);
  margin-top: 0;
  max-width: 320px;
}

/* ========================= SECTION 4 — WHY DIFFERENT ========================= */

.why-different-section {
  margin-top: 8px;
}

.why-different-head {
  margin-bottom: 30px;
}

.why-different-copy {
  position: relative;
  gap: 12px;
  margin: 0 auto;
  padding: 30px 30px 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 100%);
  border: 1px solid rgba(229, 215, 183, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.why-different-copy p {
  font-size: 24px;
}

.why-different-copy strong,
.strengths-label {
  color: var(--text);
  font-weight: 700;
  font-size: 24px;
}

.strengths-topline {
  width: 100%;
  height: 1px;
  margin-bottom: 18px;
  background: linear-gradient(
    90deg,
    rgba(200, 163, 58, 0.08) 0%,
    rgba(200, 163, 58, 0.32) 18%,
    rgba(200, 163, 58, 0.12) 55%,
    rgba(200, 163, 58, 0.03) 100%
  );
  border-radius: 999px;
}

.strengths-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.strengths-timeline {
  position: relative;
  display: grid;
  gap: 24px;
  padding-left: 0;

}

.strengths-timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cfaa43 0%, #e6cf89 100%);
}

.strength-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 20px;
  align-items: center;
}

.strength-marker {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(180deg, #d2ab45 0%, #c79f2f 100%);
  box-shadow:
    0 8px 18px rgba(200, 163, 58, 0.18),
    0 0 0 7px rgba(200, 163, 58, 0.08);
  z-index: 1;
}

.strength-marker::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 6px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -58%) rotate(-45deg);
}

/* ========================= SECTION 5 — IDEAL FOR / SCENARIOS ========================= */

.sigma-wrap {
  position: relative;
  padding: 36px 34px 34px;
  overflow: hidden;
}

.sigma-wrap::before,
.sigma-wrap::after {
  content: "";
  position: absolute;
  width: 84px;
  height: 84px;
  border: 2px solid rgba(200, 163, 58, 0.38);
  pointer-events: none;
}

.sigma-wrap::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-radius: 16px 0 0 0;
}

.sigma-wrap::after {
  right: 0;
  bottom: 0;
  border-left: none;
  border-top: none;
  border-radius: 0 0 16px 0;
}

.sigma-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 40px;
  align-items: stretch;
  position: relative;
}

.sigma-grid::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: calc(44% + 20px);
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(200, 163, 58, 0.05) 0%,
    rgba(200, 163, 58, 0.25) 18%,
    rgba(200, 163, 58, 0.18) 50%,
    rgba(200, 163, 58, 0.25) 82%,
    rgba(200, 163, 58, 0.05) 100%
  );
  pointer-events: none;
}

.sigma-col {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.sigma-left {
  padding: 8px 8px 8px 6px;
}

.sigma-right {
  padding: 8px 4px 8px 14px;
}

.ideal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 34px;
  max-width: 430px;
}

.ideal-list li {
  position: relative;
  padding: 14px 16px 14px 50px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(229, 215, 183, 0.75);
  /*color: #3f4752;*/
  color: rgb(55, 59, 67);
  font-size: 20px;
  line-height: 1.45;
  box-shadow: 0 5px 14px rgba(20, 20, 20, 0.02);
  backdrop-filter: blur(2px);
}

.ideal-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: linear-gradient(180deg, #fffdfa 0%, #f8f1e2 100%);
  border: 1px solid #ddcda8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.ideal-list li::after {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-65%) rotate(-45deg);
}

.scenario-head {
  margin-bottom: 18px;
}

.scenario-title {
  margin-bottom: 0;
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.scenario-card {
  position: relative;
  min-height: 196px;
  padding: 22px 22px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(229, 215, 183, 0.65);
  box-shadow: 0 6px 18px rgba(20, 20, 20, 0.02);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
  backdrop-filter: blur(2px);
}

.scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 24px rgba(20, 20, 20, 0.06);
  border-color: rgba(200, 163, 58, 0.42);
  background: rgba(255, 255, 255, 0.62);
}

.scenario-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.18;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.02em;
  max-width: 280px;
}

.scenario-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.54;
  /*color: #4b5360;*/
  color: rgb(55, 59, 67);
  max-width: 290px;
}

/* ========================= SECTION 6 — WHAT YOU GET ========================= */

.container {
  margin: 0 auto;
  padding: 0 44px;
}

.what-you-get__header {
  margin-bottom: 45px;
}


.what-you-get__text {
  max-width: 220px;
  font-size: clamp(24px, 1.8vw, 27px);
  line-height: 1.06;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #050505;
  text-wrap: balance;
}

.what-you-get__item:hover {
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
}

.what-you-get__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #ead9b8;
  border-bottom: 1px solid #ead9b8;
}

.what-you-get__item {
  position: relative;
  padding: 34px 20px 42px;
  min-height: 170px;

  border-right: 1px dashed #ead9b8;
  border-bottom: 1px dashed #ead9b8;
  transition: background 0.28s ease, transform 0.28s ease;
}

.what-you-get__item:nth-child(5n) {
  border-right: none;
}

.what-you-get__item:last-child {
  border-bottom: none;
}

/* ========================= SECTION 7 — WAITLIST FORM ========================= */

.header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.form-panel {
  border-radius: 26px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.form-panel h2 {
  /*font-size: 34px; line-height: 1.02; letter-spacing: -0.03em;*/
  text-align: center;
}

.sub {
  margin: 0 auto 18px;
  max-width: 420px;
  text-align: center;
  color: rgb(55, 59, 67);
  font-size: 18px;
  line-height: 1.5;
}

.field,
.select,
.textarea {
  width: 100%;
  margin-top: 5px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(15, 23, 42, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 10px 24px rgba(15, 23, 42, 0.08);
  color: #111;
  font-family: inherit;
  font-size: 15px;
  outline: none;
}

.textarea {
  min-height: 112px;
  resize: vertical;
  margin-top: 10px;
  margin-bottom: 10px;
}

.field:focus,
.select:focus,
.textarea:focus {
  border-color: var(--gold-2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.35),
    0 0 0 3px rgba(230, 184, 67, 0.15),
    0 10px 24px rgba(15, 23, 42, 0.1);
}

.form-label {
  display: block;
  margin: 5px;
  font-size: 15px;
  font-weight: 600;
  color: #5f5f5a;
  letter-spacing: 0.02em;
  text-align: left;
}

.error-text {
  margin: 5px;
  font-size: 14px;
  color: #e5484d;
  text-align: left;
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.topmark {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 6px auto 30px;
}

.topmark .line {
  height: 1px;
  flex: 1;
  background: linear-gradient(
    to right,
    rgba(15, 23, 42, 0.08),
    rgba(15, 23, 42, 0.14),
    rgba(15, 23, 42, 0.08)
  );
  border-radius: 999px;
  opacity: 0.75;
}

.topmark img {
  width: auto;
  height: 20px;
  object-fit: contain;
  display: block;
}

.upload-box {
  border: 2px dashed rgba(200, 163, 58, 0.6);
  border-radius: 14px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  background: rgba(200, 163, 58, 0.03);
  position: relative;
}

.upload-box:hover {
  border-color: #c8a33a;
  background: rgba(200, 163, 58, 0.08);
}

.upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.file-icon img {
  width: 36px;
  height: 42px;
}

.upload-text {
  font-size: 13px;
  letter-spacing: 1px;
  color: #c8a33a;
  font-weight: 600;
}

.file-name {
  margin-top: 10px;
  font-size: 14px;
  color: #c8a33a;
  font-weight: 600;
}

.btn {
  color: rgba(255, 255, 255, 0.96);
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2), var(--gold-3));
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
  font-weight: 600;
}

#submitBtn {
  height: 46px;
  padding: 0 22px;
  width: 100%;
}

#submitBtn:hover {
  transform: translateY(-1px);
}

.divider-form {
  opacity: 1;
  transform: translateY(0);
  height: 1px;
  margin: 0 auto 15px;
  border-radius: 1px;
  background: linear-gradient(to right, transparent, #e6b843, transparent);
}

.success-text {
  display: inline-block;
  text-align: center;
}

.success-state {
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  animation: fadeSlideUp 0.8s cubic-bezier(.2, .8, .2, 1) forwards;
}

/* ========================= ANIMATIONS ========================= */

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.reveal-section {
  /* min-height:80vh;*/
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.2, .8, .2, 1);
  will-change: opacity, transform;
}

/* =========================================
   TABLET
========================================= */
@media (max-width: 1024px) {
  .page {
    padding: 36px 20px;
  }

  .wrap {
    gap: 180px;
  }

  .section-div {
    max-width: 100%;
  }

  .title {
    /*font-size: clamp(52px, 6vw, 72px);*/
    max-width: 820px;
  }

  .subtitle,
  .problem-card .item-text,
  .why-different-copy p,
  .strength-text,
  .what-you-get__header p,
  .header p,
  .steps-track .lead,
  .steps-track .item-text,
  .steps-track .solution-text,
  .block-intro,
  .scenario-card p {
    font-size: 18px;
    line-height: 1.5;
  }

  .problem-compare {
    grid-template-columns: 1fr 64px 1fr;
    gap: 18px;
  }

  .separator-badge {
    width: 48px;
    height: 48px;
    font-size: 12px;
  }

  .chat-demo-full {
    padding: 14px;
    border-radius: 28px;
  }

  .chat-thread {
    padding: 12px;
    gap: 18px;
    border-radius: 22px;
  }

  .chat-agent-title {
    font-size: clamp(20px, 2.8vw, 30px);
  }

  .chat-agent-tag {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 16px;
  }

  .how-nav h1 {
    font-size: clamp(34px, 5vw, 56px);
  }

  .how-arrow {
    width: 52px;
    height: 52px;
  }

  .how-arrow span {
    font-size: 34px;
  }

  .steps-track .goal-card {
    flex: 0 0 calc(50% - 11px);
    max-width: calc(50% - 11px);
  }

  .goal-card {
    width: 100%;
    min-height: auto;
    padding: 74px 22px 24px;
  }

  .sigma-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sigma-grid::before {
    display: none;
  }

  .sigma-left,
  .sigma-right {
    padding: 0;
  }

  .ideal-list {
    max-width: 100%;
    gap: 18px;
  }

  .scenario-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .container {
    padding: 0 20px;
  }



  .form-panel {
    padding: 22px;
  }


    .what-you-get__grid {
    grid-template-columns: repeat(2, 1fr);
  }

      .what-you-get__text {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.15;
  }

  .what-you-get__item {
    min-height: 160px;
    padding: 30px 18px 36px;
    border-right: 1px dashed #ead9b8;
    border-bottom: 1px dashed #ead9b8;
  }

  .what-you-get__item:nth-child(5n) {
    border-right: 1px dashed #ead9b8;
  }

  .what-you-get__item:nth-child(2n) {
    border-right: none;
  }

  .what-you-get__item:last-child {
    border-bottom: none;
  }
}


/* =========================================
   MOBILE
========================================= */
@media (max-width: 768px) {
  body::before,
  body::after {
    width: 25vw;
    filter: blur(34px);
    opacity: 0.55;
  }



  h1 {
    font-size: clamp(30px, 8vw, 44px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(26px, 6vw, 34px);
    line-height: 1.05;
  }

  .page {
    padding: 50px 14px 50px 14px;
  }

  .wrap {
    gap: 150px;
  }

  .main-section {
    min-height: auto;
    padding: 110px 0 10px;
  }

  .logo {
    width: 72px;
    margin-bottom: 22px;
  }

  .title {
    font-size: clamp(52px, 9vw, 52px);
    line-height: 0.96;
    max-width: 100%;
    letter-spacing: -0.05em;
  }

  .subtitle {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.5;
    max-width: 100%;
  }

  .subtitle2 {
    font-size: 15px;
    line-height: 1.5;
    max-width: 100%;
  }

  .divider {
    width: 100%;
    margin: 20px auto 12px;
  }

  .join-link {
    margin-top: 24px;
    min-width: auto;
    width: 100%;
    max-width: 280px;
    padding: 14px 22px;
    font-size: 14px;
  }

  .section-heading {
    margin-bottom: 25px;
  }

  .problem-compare {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .problem-card {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .problem-card .meta-label {
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }

  .problem-card .item-text {
    font-size: 16px;
    line-height: 1.45;
  }

  .problem-highlight {
    margin-top: 18px;
    padding-top: 18px;
  }

  .problem-highlight .muted-line {
    font-size: 16px;
    line-height: 1.45;
  }

  .problem-highlight .strong-line {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.35;
  }

  .separator-inner {
    min-height: auto;
    flex-direction: row;
    gap: 12px;
  }

  .separator-line {
    width: 100%;
    min-height: 1px;
    height: 1px;
  }

 .separator-badge {
    width: 42px;
    height: 42px;
    font-size: 11px;
    flex-shrink: 0;
  }

  .chat-demo-full {
    padding: 10px;
    border-radius: 22px;
  }

  .chat-demo-topbar {
    padding: 0 6px 10px;
    margin-bottom: 10px;
  }

  .chat-demo-logo-image {
    width: 92px;
  }

  .chat-thread {
    padding: 10px;
    gap: 30px;
    border-radius: 18px;
  }

  .chat-bubble-user {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .chat-bubble-label {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .chat-bubble-text {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.02em;
  }

  .chat-agent-head {
    /*padding-left: 12px;*/
    margin-bottom: 30px;
  }

  .chat-agent-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .chat-agent-subtitle {
    font-size: 15px;
    line-height: 1.45;
  }

  .chat-agent-tags {
    gap: 8px;
    margin-bottom: 8px;
  }

  .chat-agent-tag {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1.3;
  }

  .how-nav {
    align-items: flex-start;
    gap: 15px;
    /*flex-direction: column;*/
  }

  .how-nav h1 {
    font-size: clamp(30px, 8vw, 42px);
  }

  .how-arrows {
    gap: 10px;
    align-self: flex-end;
  }

  .how-arrow {
    width: 42px;
    height: 42px;
  }

  .how-arrow span {
    font-size: 28px;
  }

  .steps-slider {
    margin-top: 50px;
     overflow: visible;
  }

  .steps-track {
    gap: 14px;
    margin-top: 10px;
  }

  .steps-track .goal-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .arrow-between {
    display: none;
  }

  .goal-card {
    padding: 64px 18px 20px;
    border-radius: 22px;
  }

  .goal-icon img {
    width: 72px;
  }

  .step-meta {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .goal-title,
  .block-title,
  .scenario-title,
  .form-panel h2 {
    font-size: 32px;
    line-height: 0.98;
    margin-bottom: 14px;
  }

  .lead,
  .solution-text,
  .block-intro,
  .scenario-card p {
    font-size: 18px;
    line-height: 1.5;
  }

  .steps-track .list li {
    grid-template-columns: 14px 1fr;
    column-gap: 10px;
  }

  .why-different-head {
    margin-bottom: 22px;
  }

  .why-different-copy {
    padding: 20px 18px;
    border-radius: 22px;
  }

  .why-different-copy p,
  .why-different-copy strong,
  .strengths-label,
  .strength-text {
    font-size: 18px !important;
    line-height: 1.5;
  }

    .strength-text {
    font-size: 18px !important;
  }

  .strengths-timeline {
    gap: 20px;
  }

  .strength-item {
    grid-template-columns: 28px 1fr;
    column-gap: 14px;
    align-items: start;
  }

  .strengths-timeline::before {
    left: 13px;
    top: 8px;
    bottom: 8px;
  }

  .strength-marker {
    width: 28px;
    height: 28px;
    box-shadow:
      0 6px 12px rgba(200, 163, 58, 0.16),
      0 0 0 5px rgba(200, 163, 58, 0.07);
  }

  .strength-marker::before {
    width: 7px;
    height: 4px;
  }

  .sigma-wrap {
    padding: 35px 18px;
    border-radius: 22px;
  }

  .sigma-wrap::before,
  .sigma-wrap::after {
    width: 44px;
    height: 44px;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .scenario-card {
    min-height: auto;
    padding: 18px 16px;
    border-radius: 18px;
  }

  .scenario-card h3 {
    font-size: 20px;
    line-height: 1.2;
    max-width: 100%;
  }

  .ideal-list li {
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.45;
    padding: 12px 14px 12px 42px;
  }

  .ideal-list li::before {
    left: 13px;
    width: 18px;
    height: 18px;
  }

  .ideal-list li::after {
    left: 18px;
    width: 8px;
    height: 5px;
  }

  .container {
    padding: 0;
  }






  .header {
    gap: 10px;
    margin-bottom: 40px;
  }

  .form-panel {
    padding: 18px 14px;
    border-radius: 20px;
  }
.sub {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .form-label {
    font-size: 14px;
    margin: 0 0 6px;
  }

  .field,
  .select,
  .textarea {
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 16px;
  }

  .textarea {
    min-height: 100px;
  }

  .upload-box {
    padding: 22px 14px;
  }

  .file-icon img {
    width: 28px;
    height: 34px;
  }

  #submitBtn {
    height: 48px;
    font-size: 15px;
  }

  .what-you-get__header{
    margin-bottom:25px;
    text-align: center;
  }

  .what-you-get__text{
    font-size:20px;
    line-height:1.2;
    max-width:120px;
  }

  .what-you-get__grid{
    grid-template-columns:1fr;
    border-top:none;
    border-bottom:none;
    width:min(300px, 100%);
    margin:0 auto;
    justify-items:stretch;
  }

  .what-you-get__item{
    min-height:auto;
    width:100%;
    max-width:none;
    padding:26px 18px 30px;
    box-sizing:border-box;
    border-left:1px dashed #ead9b8;
    border-right:1px dashed #ead9b8;
    border-bottom:1px dashed #ead9b8;
  }

  .what-you-get__item:nth-child(2n){
    border-right:1px dashed #ead9b8;
  }

  .what-you-get__item:last-child{
    border-bottom:none;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */
@media (max-width: 480px) {
    body::before,
body::after {
  width: 10vw;
}


    .page {
        padding-left: 12px;
        padding-right: 12px;
    }

  /*  .wrap {
        gap: 88px;
    }*/

    .title {
        font-size: 35px;
    }

    .subtitle,
    .subtitle2 {
        font-size: 15px;
    }

    .problem-card,
    .why-different-copy,
    .sigma-wrap,
    .form-panel {
        border-radius: 18px;
    }


    .why-different-copy{
      text-align: center;
    }



    .meta-label {
        font-size: 11px;
        gap: 8px;
    }

    .meta-label::before {
        width: 14px;
    }

    .chat-agent-title {
        font-size: 21px;
    }

    .chat-agent-tag {
        width: 100%;
        justify-content: flex-start;
    }

    .block-title,
    .scenario-title,
    .form-panel h2 {
        font-size: 32px;
    }

    .scenario-card h3 {
        font-size: 18px;
    }

    .what-you-get__text {
        font-size: 18px;
    }

}