*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  background:#F2EEE8;
  color:#171717;
}

.container{
  width:1100px;
  max-width:calc(100% - 64px);
  margin:0 auto;
}

.hero{
  background:#0D1233;
  min-height:100vh;
  color:#fff;
  padding:24px 0 120px;
  position:relative;
  overflow:hidden;
}

.hero::before{
  content:'';
  position:absolute;
  width:55%;
  height:140%;
  top:-10%;
  left:42%;
  background:#121846;
  transform:skewX(-8deg);
}

.nav{
  width:1100px;
  max-width:calc(100% - 64px);
  margin:0 auto 120px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
  z-index:2;
}

.logo{
  font-weight:800;
  letter-spacing:4px;
}

.nav nav{
  display:flex;
  gap:32px;
}

.nav a, footer a{
  color:#B8BACE;
  text-decoration:none;
  font-size:14px;
}

button{
  border:none;
  cursor:pointer;
  transition:.25s;
}

.nav button,
.primary{
  background:#D46D52;
  color:#fff;
  padding:14px 28px;
  border-radius:2px;
  font-weight:600;
}

.secondary{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.25);
  padding:14px 28px;
}

.hero-content{
  width:1100px;
  max-width:calc(100% - 64px);
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:relative;
  z-index:2;
}

.hero-text{
  max-width:560px;
}

.mini{
  color:#D46D52;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:2px;
  display:block;
  margin-bottom:22px;
}

h1{
  font-size:68px;
  line-height:1.02;
  margin-bottom:24px;
}

h1 span{
  color:#D46D52;
}

.hero p,
.lead{
  color:#B8BACE;
  line-height:1.7;
  font-size:17px;
}

.hero-actions{
  display:flex;
  gap:14px;
  margin-top:36px;
}

.stats-card{
  width:320px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  padding:32px;
}

.stat{
  margin-bottom:20px;
}

.stat span,
.metric span,
.author-stats strong,
.banner strong{
  font-size:48px;
  font-weight:800;
  color:#D46D52;
}

.stat p{
  color:#B8BACE;
}

.divider{
  width:100%;
  height:1px;
  background:rgba(255,255,255,.08);
  margin:24px 0;
}

section{
  padding:120px 0;
}

.light{
  background:#F2EEE8;
}

.dark{
  background:#0D1233;
  color:#fff;
}

h2{
  font-size:48px;
  line-height:1.1;
  margin-bottom:22px;
}

.cards{
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
}

.grid{
  display:grid;
}

.card,
.feature,
.program-item,
.metric,
.price-card{
  background:#fff;
  padding:28px;
  border:1px solid #DDD7D0;
}

.dark .feature,
.dark .program-item,
.dark{
  background:#121846;
  border-color:rgba(255,255,255,.08);
}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:48px;
}

.two-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  margin-top:48px;
}

.bordered{
  border-top:2px solid #D46D52;
  padding-top:24px;
}

ul{
  margin-top:18px;
  padding-left:18px;
}

li{
  margin-bottom:12px;
}

.program{
  margin-top:48px;
}

.program-item{
  color:#fff;
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:14px;
}

.program-item span{
  color:#D46D52;
  font-weight:700;
}

.metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:42px;
}

.banner{
  margin-top:18px;
  background:#171E54;
  color:#fff;
  padding:32px;
  display:flex;
  align-items:center;
  gap:24px;
}

.author-wrap{
  display:flex;
  gap:48px;
  align-items:flex-start;
}

.avatar{
  width:160px;
  height:160px;
  border-radius:12px;
  background:#171E54;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:42px;
  font-weight:800;
  color:#D46D52;
}

.author-stats{
  display:flex;
  gap:48px;
  margin-top:32px;
}

.author-stats div{
  display:flex;
  flex-direction:column;
}

.author-stats span{
  color:#B8BACE;
}

.investment{
  background:#F2EEE8;
  text-align:center;
}

.price-card{
  width:380px;
  margin:48px auto 0;
  text-align:left;
}

.price-card h3{
  font-size:56px;
  margin:18px 0;
}

.full{
  width:100%;
  margin-top:18px;
}

.faq-item{
  color:#fff;
  margin-bottom:12px;
}

.cta{
  background:#D46D52;
  color:#fff;
  text-align:center;
}

.center{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.light-btn{
  border-color:#fff;
  margin-top:24px;
}

footer{
  background:#0D1233;
  color:#fff;
  padding:64px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:32px;
}

footer h4{
  margin-bottom:18px;
}

footer a{
  display:block;
  margin-bottom:10px;
}

@media(max-width:900px){
  .hero-content,
  .author-wrap,
  .two-cols,
  .metrics,
  .features,
  .cards,
  .footer-grid{
    grid-template-columns:1fr;
    display:grid;
  }

  .hero-content{
    gap:48px;
  }

  h1{
    font-size:48px;
  }

  h2{
    font-size:36px;
  }

  .nav nav{
    display:none;
  }

  .stats-card,
  .price-card{
    width:100%;
  }
}

.pain-section {
  background: #f3f0ea;
  padding: 110px 0;
}

.pain-container {
  width: 1080px;
  margin: 0 auto;
}

.pain-label {
  display: inline-block;
  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #cf7157;
}

.pain-title {
  font-size: 72px;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: #141414;

  margin: 0 0 28px;
}

.pain-subtitle {
  width: 920px;

  font-size: 20px;
  line-height: 1.5;
  color: #77736f;

  margin-bottom: 70px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pain-card {
  background: #ffffff;

  border-radius: 4px;

  padding: 26px 28px 30px;

  min-height: 170px;

  position: relative;

  transition: 0.25s ease;
}

.pain-card::before {
  content: "";
  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 4px;

  border-radius: 4px 4px 0 0;
}

.pain-card.navy::before {
  background: #1d234f;
}

.pain-card.orange::before {
  background: #cf7157;
}

.pain-card.green::before {
  background: #648a76;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
}

.pain-card-label {
  display: block;

  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;

  color: #8e8b88;
}

.pain-card p {
  margin: 0;

  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;

  color: #313131;
}

@media (max-width: 1200px) {
  .pain-container {
    width: calc(100% - 48px);
  }

  .pain-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pain-subtitle {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .pain-section {
    padding: 80px 0;
  }

  .pain-title {
    font-size: 52px;
    line-height: 1;
  }

  .pain-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .pain-card {
    min-height: auto;
  }
}

.promise-section {
  background: #171b4d;
  padding: 120px 0 110px;
  overflow: hidden;
}

.promise-container {
  width: 1080px;
  margin: 0 auto;
}

.promise-label {
  display: inline-block;
  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #d36e57;
}

.promise-title {
  margin: 0;

  font-size: 72px;
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 700;

  color: #f5f5f7;

  max-width: 900px;
}

.promise-title span {
  color: #d36e57;
}

.promise-text {
  margin-top: 38px;
  max-width: 930px;
}

.promise-text p {
  margin: 0 0 34px;

  font-size: 22px;
  line-height: 1.65;
  font-weight: 400;

  color: rgba(255,255,255,0.68);
}

.promise-grid {
  margin-top: 78px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(255,255,255,0.12);
}

.promise-card {
  padding: 34px 32px 30px;

  min-height: 220px;

  position: relative;
}

.promise-card:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.12);
}

.promise-card-top {
  display: block;

  margin-bottom: 18px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;

  color: #d36e57;
}

.promise-card h3 {
  margin: 0 0 16px;

  font-size: 34px;
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -0.03em;

  color: #ffffff;
}

.promise-card p {
  margin: 0;

  font-size: 18px;
  line-height: 1.7;

  color: rgba(255,255,255,0.52);
}

@media (max-width: 1200px) {
  .promise-container {
    width: calc(100% - 48px);
  }

  .promise-grid {
    grid-template-columns: 1fr;
  }

  .promise-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
  }
}

@media (max-width: 768px) {
  .promise-section {
    padding: 90px 0;
  }

  .promise-title {
    font-size: 52px;
    line-height: 1;
  }

  .promise-text p {
    font-size: 18px;
    line-height: 1.6;
  }

  .promise-card {
    min-height: auto;
  }

  .promise-card h3 {
    font-size: 28px;
  }
}

.audience-section {
  background: #f3f0ea;
  padding: 115px 0 120px;
}

.audience-container {
  width: 1100px;
  margin: 0 auto;
}

.audience-label {
  display: inline-block;

  margin-bottom: 26px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.audience-title {
  margin: 0 0 28px;

  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;

  color: #171717;
}

.audience-subtitle {
  margin: 0;

  max-width: 1100px;

  font-size: 22px;
  line-height: 1.6;

  color: #77736f;
}

.audience-grid {
  margin-top: 78px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.audience-column {
  position: relative;
}

.audience-topline {
  width: 100%;
  height: 4px;

  margin-bottom: 28px;
}

.audience-topline.navy {
  background: #202755;
}

.audience-topline.orange {
  background: #cf7058;
}

.audience-column h3 {
  margin: 0 0 34px;

  font-size: 42px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;

  color: #1f1f1f;
}

.audience-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-list li {
  position: relative;

  padding-left: 30px;
  margin-bottom: 28px;

  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;

  color: #303030;
}

.audience-list li::before {
  content: "→";

  position: absolute;
  left: 0;
  top: 1px;

  font-size: 18px;
  font-weight: 500;

  color: #cf7058;
}

.audience-note {
  margin-top: 26px;

  background: rgba(0,0,0,0.03);

  padding: 28px 30px;

  font-size: 18px;
  line-height: 1.7;

  color: #77736f;
}

@media (max-width: 1200px) {
  .audience-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

@media (max-width: 768px) {
  .audience-section {
    padding: 90px 0;
  }

  .audience-title {
    font-size: 52px;
    line-height: 1;
  }

  .audience-subtitle {
    font-size: 18px;
  }

  .audience-column h3 {
    font-size: 32px;
  }

  .audience-list li {
    font-size: 17px;
  }

  .audience-note {
    font-size: 16px;
  }
}

.program-section {
  background: #12163f;
  padding: 120px 0 110px;
}

.program-container {
  width: 1140px;
  margin: 0 auto;
}

.program-label {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.program-title {
  margin: 0 0 28px;

  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;

  color: #f4f4f7;
}

.program-subtitle {
  margin: 0;

  font-size: 22px;
  line-height: 1.6;

  color: rgba(255,255,255,0.55);
}

.program-list {
  margin-top: 72px;
}

.program-row {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 88px;

  padding: 0 26px 0 24px;

  background: rgba(255,255,255,0.015);

  border: 1px solid rgba(255,255,255,0.06);

  transition: 0.25s ease;
}

.program-row + .program-row {
  margin-top: 6px;
}

.program-row:hover {
  background: rgba(255,255,255,0.03);
}

.program-left {
  display: flex;
  align-items: center;
}

.program-number {
  width: 44px;

  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;

  color: #cf7058;
}

.program-name {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;

  color: #ffffff;
}

.program-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.program-time {
  font-size: 18px;
  font-weight: 400;

  color: rgba(255,255,255,0.42);
}

.program-arrow {
  font-size: 14px;

  color: rgba(255,255,255,0.28);

  transform: translateY(-1px);
}

@media (max-width: 1200px) {
  .program-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .program-row {
    flex-direction: column;
    align-items: flex-start;

    padding: 24px;
    gap: 18px;
  }

  .program-right {
    width: 100%;
    justify-content: space-between;
  }

  .program-name {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .program-section {
    padding: 90px 0;
  }

  .program-title {
    font-size: 52px;
    line-height: 1;
  }

  .program-subtitle {
    font-size: 18px;
  }

  .program-name {
    font-size: 20px;
  }

  .program-time {
    font-size: 16px;
  }
}
.included-section {
  background: #f3f0ea;
  padding: 115px 0 120px;
}

.included-container {
  width: 1100px;
  margin: 0 auto;
}

.included-label {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.included-title {
  margin: 0 0 46px;

  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.045em;
  font-weight: 700;

  color: #171717;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.included-card {
  position: relative;

  background: #ffffff;

  padding: 34px 30px 32px;

  min-height: 300px;

  border-radius: 4px;

  overflow: hidden;
}

.included-card::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 4px;
}

.included-card.navy::before {
  background: #202755;
}

.included-card.orange::before {
  background: #cf7058;
}

.included-card.green::before {
  background: #648a76;
}

.included-number {
  margin-bottom: 18px;

  font-size: 82px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;

  color: #cf7058;
}

.included-number.infinity {
  font-size: 76px;
}

.included-card h3 {
  margin: 0 0 18px;

  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;

  color: #232323;
}

.included-card p {
  margin: 0;

  font-size: 19px;
  line-height: 1.7;

  color: #77736f;
}

.included-banner {
  margin-top: 18px;

  background: #1c2156;

  min-height: 190px;

  display: flex;
  align-items: center;

  border-radius: 4px;

  overflow: hidden;

  position: relative;
}

.included-banner::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 4px;
  height: 100%;

  background: #cf7058;
}

.included-banner-number {
  width: 240px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 104px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.06em;

  color: #cf7058;
}

.included-banner-content {
  flex: 1;

  padding: 38px 42px 38px 0;
}

.included-banner-content h3 {
  margin: 0 0 14px;

  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 600;

  color: #ffffff;
}

.included-banner-content p {
  margin: 0;

  font-size: 18px;
  line-height: 1.7;
  font-style: italic;

  color: rgba(255,255,255,0.52);
}

@media (max-width: 1200px) {
  .included-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .included-grid {
    grid-template-columns: 1fr;
  }

  .included-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .included-banner-number {
    width: 100%;

    justify-content: flex-start;

    padding: 34px 34px 0;
  }

  .included-banner-content {
    padding: 24px 34px 38px;
  }
}

@media (max-width: 768px) {
  .included-section {
    padding: 90px 0;
  }

  .included-title {
    font-size: 52px;
    line-height: 1;
  }

  .included-card {
    min-height: auto;
  }

  .included-number {
    font-size: 64px;
  }

  .included-card h3 {
    font-size: 28px;
  }

  .included-card p {
    font-size: 17px;
  }

  .included-banner-content h3 {
    font-size: 28px;
  }

  .included-banner-content p {
    font-size: 16px;
  }
}
.author-section {
  background: #171b4d;
  padding: 120px 0 115px;
}

.author-container {
  width: 1120px;
  margin: 0 auto;
}

.author-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.author-photo {
  width: 320px;
  height: 430px;

  background: rgba(255,255,255,0.05);

  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 4px;
}

.author-photo-circle {
  width: 112px;
  height: 112px;

  border-radius: 50%;

  border: 2px solid rgba(207,112,88,0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 16px;
}

.author-photo span {
  font-size: 16px;
  color: rgba(255,255,255,0.28);
}

.author-label {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.author-title {
  margin: 0 0 18px;

  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 700;

  color: #f4f4f7;
}

.author-position {
  margin-bottom: 44px;

  font-size: 20px;
  line-height: 1.45;

  color: rgba(255,255,255,0.48);
}

.author-text p {
  margin: 0 0 34px;

  font-size: 22px;
  line-height: 1.75;

  color: rgba(255,255,255,0.72);
}

.author-stats {
  margin-top: 52px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border: 1px solid rgba(255,255,255,0.08);

  background: rgba(0,0,0,0.14);
  gap:0;
}

.author-stat {
  padding: 32px 30px 28px;
}

.author-stat:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.author-stat-number {
  margin-bottom: 10px;

  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;

  color: #cf7058;
}

.author-stat-text {
  font-size: 17px;
  line-height: 1.55;

  color: rgba(255,255,255,0.42);
}

.author-companies {
  margin-top: 34px;

  font-size: 16px;
  line-height: 1.6;

  color: rgba(255,255,255,0.28);
}

.author-quote {
  margin-top: 28px;

  background: rgba(255,255,255,0.04);

  border-left: 4px solid #cf7058;

  padding: 24px 28px;

  font-size: 26px;
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.02em;

  color: rgba(255,255,255,0.88);
}

@media (max-width: 1200px) {
  .author-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 980px) {
  .author-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .author-photo {
    width: 100%;
    max-width: 320px;
  }

  .author-stats {
    grid-template-columns: 1fr;
  }

  .author-stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
}

@media (max-width: 768px) {
  .author-section {
    padding: 90px 0;
  }

  .author-title {
    font-size: 50px;
    line-height: 1;
  }

  .author-position {
    font-size: 18px;
  }

  .author-text p {
    font-size: 18px;
    line-height: 1.7;
  }

  .author-stat-number {
    font-size: 42px;
  }

  .author-quote {
    font-size: 20px;
  }
}

.positioning-section {
  background: #f3f0ea;
  padding: 115px 0 120px;
}

.positioning-container {
  width: 1100px;
  margin: 0 auto;
}

.positioning-label {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.positioning-title {
  margin: 0 0 46px;

  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-weight: 700;

  color: #171717;
}

.positioning-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.positioning-card {
  position: relative;

  background: #ffffff;

  padding: 34px 34px 32px;

  min-height: 250px;

  border-radius: 4px;

  overflow: hidden;
}

.positioning-card::before {
  content: "";

  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 4px;
}

.positioning-card.navy::before {
  background: #202755;
}

.positioning-card.orange::before {
  background: #cf7058;
}

.positioning-card.green::before {
  background: #648a76;
}

.positioning-top {
  display: inline-block;

  margin-bottom: 22px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;

  color: #cf7058;
}

.positioning-card h3 {
  margin: 0 0 18px;

  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 600;

  color: #232323;
}

.positioning-card p {
  margin: 0;

  font-size: 19px;
  line-height: 1.72;

  color: #77736f;
}

@media (max-width: 1200px) {
  .positioning-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 900px) {
  .positioning-grid {
    grid-template-columns: 1fr;
  }

  .positioning-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .positioning-section {
    padding: 90px 0;
  }

  .positioning-title {
    font-size: 52px;
    line-height: 1;
  }

  .positioning-card h3 {
    font-size: 30px;
  }

  .positioning-card p {
    font-size: 17px;
    line-height: 1.7;
  }
}

.price-section {
  background: #f3f0ea;
  padding: 115px 0 120px;

  text-align: center;
}

.price-container {
  width: 1100px;
  margin: 0 auto;
}

.price-label {
  display: inline-block;

  margin-bottom: 24px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.price-title {
  margin: 0 0 56px;

  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;

  color: #171717;
}

.price-card {
  width: 540px;

  margin: 0 auto;

  background: #ffffff;

  border-radius: 4px;

  overflow: hidden;

  position: relative;
}

.price-card-topline {
  width: 100%;
  height: 4px;

  background: #cf7058;
}

.price-card-inner {
  padding: 42px 42px 38px;

  text-align: left;
}

.price-card-label {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;

  color: #cf7058;
}

.price-card-title {
  margin: 0 0 34px;

  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;

  color: #1f1f1f;
}

.price-value {
  margin-bottom: 42px;

  font-size: 88px;
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 700;

  color: #1f2353;
}

.price-list {
  list-style: none;

  margin: 0 0 38px;
  padding: 0;
}

.price-list li {
  position: relative;

  padding-left: 24px;
  margin-bottom: 20px;

  font-size: 20px;
  line-height: 1.6;

  color: #303030;
}

.price-list li::before {
  content: "→";

  position: absolute;
  left: 0;
  top: 0;

  color: #cf7058;

  font-size: 17px;
  font-weight: 600;
}

.price-button {
  width: 100%;
  height: 68px;

  border: none;
  border-radius: 3px;

  background: #c8654d;

  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;

  color: #ffffff;

  cursor: pointer;

  transition: 0.25s ease;
}

.price-button:hover {
  background: #ba5b45;
}

.price-note {
  margin-top: 18px;

  text-align: center;

  font-size: 15px;
  line-height: 1.6;

  color: rgba(0,0,0,0.38);
}

.price-benefits {
  margin-top: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.price-benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.price-benefit-icon {
  margin-bottom: 12px;

  font-size: 26px;

  color: #1f2353;
}

.price-benefit-text {
  font-size: 16px;
  line-height: 1.4;

  color: rgba(0,0,0,0.48);
}

.price-bottom-note {
  margin-top: 42px;

  font-size: 18px;
  line-height: 1.7;
  font-style: italic;

  color: rgba(0,0,0,0.42);
}

@media (max-width: 1200px) {
  .price-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .price-section {
    padding: 90px 0;
  }

  .price-title {
    font-size: 52px;
    line-height: 1;
  }

  .price-card {
    width: 100%;
  }

  .price-card-inner {
    padding: 34px 26px 30px;
  }

  .price-value {
    font-size: 62px;
  }

  .price-card-title {
    font-size: 34px;
  }

  .price-list li {
    font-size: 17px;
  }

  .price-benefits {
    flex-direction: column;
    gap: 30px;
  }

  .price-bottom-note {
    font-size: 16px;
  }
}
.faq-section {
  background: #12163f;
  padding: 120px 0 120px;
}

.faq-container {
  width: 1100px;
  margin: 0 auto;
}

.faq-label {
  display: block;

  margin-bottom: 24px;

  text-align: center;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.faq-title {
  margin: 0 0 74px;

  text-align: center;

  font-size: 72px;
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;

  color: #f4f4f7;
}

.faq-list {
  width: 960px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.faq-question {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  background: transparent;
  border: none;

  padding: 28px 0;

  text-align: left;

  cursor: pointer;
}

.faq-question span:first-child {
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  font-weight: 500;

  color: rgba(255,255,255,0.88);
}

.faq-icon {
  flex-shrink: 0;

  font-size: 16px;

  color: #cf7058;

  transition: 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  padding-right: 60px;

  font-size: 18px;
  line-height: 1.8;

  color: rgba(255,255,255,0.52);

  transition:
    max-height 0.35s ease,
    padding-bottom 0.35s ease;

  padding-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 28px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 1200px) {
  .faq-container {
    width: calc(100% - 48px);
  }

  .faq-list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 90px 0;
  }

  .faq-title {
    font-size: 52px;
    line-height: 1;
    margin-bottom: 56px;
  }

  .faq-question {
    padding: 24px 0;
  }

  .faq-question span:first-child {
    font-size: 20px;
    line-height: 1.45;
  }

  .faq-answer {
    font-size: 16px;
    line-height: 1.7;

    padding-right: 0;
  }
}
.final-cta-section {
  background: #c7664f;

  padding: 110px 0 115px;

  overflow: hidden;
}

.final-cta-container {
  width: 1100px;

  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.final-cta-title {
  margin: 0 0 34px;

  font-size: 86px;
  line-height: 0.95;
  letter-spacing: -0.055em;
  font-weight: 700;

  color: #ffffff;
}

.final-cta-subtitle {
  margin: 0 0 48px;

  font-size: 30px;
  line-height: 1.55;
  font-weight: 400;

  color: rgba(255,255,255,0.82);
}

.final-cta-button {
  width: 420px;
  height: 82px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #1d2154;

  border-radius: 4px;

  text-decoration: none;

  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;

  color: #ffffff;

  transition: 0.25s ease;
}

.final-cta-button:hover {
  transform: translateY(-2px);

  background: #171b46;
}

@media (max-width: 1200px) {
  .final-cta-container {
    width: calc(100% - 48px);
  }
}

@media (max-width: 768px) {
  .final-cta-section {
    padding: 90px 0;
  }

  .final-cta-title {
    font-size: 52px;
    line-height: 1;
  }

  .final-cta-subtitle {
    font-size: 20px;
    line-height: 1.6;
  }

  .final-cta-button {
    width: 100%;
    max-width: 360px;

    height: 70px;

    font-size: 16px;
  }
}

.site-footer {
  background: #090c2c;

  padding: 78px 0 54px;

  overflow: hidden;
}

.footer-container {
  width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;

  gap: 140px;

  align-items: start;
}

.footer-logo {
  margin-bottom: 12px;

  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 700;

  color: #ffffff;
}

.footer-description {
  font-size: 20px;
  line-height: 1.6;

  color: rgba(255,255,255,0.32);
}

.footer-nav,
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav a,
.footer-links a {
  width: fit-content;

  text-decoration: none;

  font-size: 20px;
  line-height: 1.5;

  color: rgba(255,255,255,0.34);

  transition: 0.25s ease;
}

.footer-nav a:hover,
.footer-links a:hover {
  color: rgba(255,255,255,0.85);
}

.footer-divider {
  width: 100%;
  height: 1px;

  margin: 72px 0 34px;

  background: rgba(255,255,255,0.06);
}

.footer-bottom {
  font-size: 18px;
  line-height: 1.6;

  color: rgba(255,255,255,0.2);
}

@media (max-width: 1200px) {
  .footer-container {
    width: calc(100% - 48px);
  }

  .footer-top {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-divider {
    margin: 54px 0 28px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 70px 0 42px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer-description,
  .footer-nav a,
  .footer-links a,
  .footer-bottom {
    font-size: 16px;
  }
}

.hero-section {
  position: relative;

  min-height: 960px;

  background: #10132f;

  overflow: hidden;

  color: #ffffff;
}

.top-nav {
  position: relative;
  z-index: 10;

  height: 64px;

  background: #10132f;

  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.top-nav-container {
  width: 1600px;
  max-width: calc(100% - 220px);
  height: 64px;

  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav-logo {
  text-decoration: none;

  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 700;

  color: #ffffff;
}

.top-nav-menu {
  display: flex;
  align-items: center;
  gap: 38px;

  margin-left: 210px;
}

.top-nav-menu a {
  text-decoration: none;

  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.12em;
  font-weight: 500;

  color: rgba(255,255,255,0.52);

  transition: 0.25s ease;
}

.top-nav-menu a:hover {
  color: #ffffff;
}

.top-nav-button {
  width: 150px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #cf7058;

  border-radius: 4px;

  text-decoration: none;

  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;

  color: #ffffff;

  transition: 0.25s ease;
}

.top-nav-button:hover {
  background: #bf624c;
}

.hero-bg-shape {
  position: absolute;
  z-index: 1;

  left: 0;
  top: 64px;

  width: 59.5%;
  height: calc(100% - 64px);

  background: #20244f;

  clip-path: polygon(0 0, 100% 0, 93.8% 100%, 0 100%);
}

.hero-container {
  position: relative;
  z-index: 3;

  width: 1140px;

  margin: 0 auto;
}

.hero-content {
  min-height: 896px;

  display: grid;
  grid-template-columns: 560px 440px;
  gap: 130px;
  align-items: center;
}

.hero-left {
  padding-top: 20px;
}

.hero-label {
  display: inline-block;

  margin-bottom: 34px;

  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;

  color: #cf7058;
}

.hero-title {
  margin: 0 0 28px;

  font-size: 72px;
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 700;

  color: #ffffff;
}

.hero-title span {
  color: #cf7058;
}

.hero-subtitle {
  margin: 0 0 34px;

  max-width: 560px;

  font-size: 22px;
  line-height: 1.65;
  font-weight: 400;

  color: rgba(255,255,255,0.66);
}

.hero-subtitle strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-button {
  width: 340px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #cf7058;

  border-radius: 3px;

  text-decoration: none;

  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;

  color: #ffffff;

  transition: 0.25s ease;
}

.hero-button:hover {
  background: #bf624c;
}

.hero-note {
  margin-top: 18px;

  font-size: 15px;
  line-height: 1.6;

  color: rgba(255,255,255,0.28);
}

.hero-card {
  width: 440px;

  align-self: center;

  background: rgba(255,255,255,0.035);

  border: 1px solid rgba(255,255,255,0.11);

  border-radius: 4px;

  overflow: hidden;

  transform: translateY(30px);
}

.hero-card-head {
  height: 40px;

  display: flex;
  align-items: center;

  padding: 0 30px;

  background: rgba(255,255,255,0.035);

  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 600;

  color: rgba(255,255,255,0.22);
}

.hero-card-main {
  min-height: 110px;

  display: flex;
  align-items: center;
  gap: 22px;

  padding: 26px 30px 24px;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-big-number,
.hero-card-number {
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 700;

  color: #cf7058;
}

.hero-card-title {
  margin-bottom: 4px;

  font-size: 17px;
  line-height: 1.3;
  font-weight: 600;

  color: rgba(255,255,255,0.58);
}

.hero-card-text {
  font-size: 15px;
  line-height: 1.45;

  color: rgba(255,255,255,0.38);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-card-cell {
  min-height: 92px;

  padding: 24px 30px 20px;
}

.hero-card-cell:first-child {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-card-number {
  font-size: 36px;

  margin-bottom: 4px;
}

.hero-card-footer {
  min-height: 78px;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 18px 30px 22px;
}

.hero-card-footer strong {
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;

  color: rgba(255,255,255,0.58);
}

.hero-card-footer span {
  font-size: 15px;
  line-height: 1.35;

  color: rgba(255,255,255,0.35);
}

@media (max-width: 1400px) {
  .top-nav-container {
    max-width: calc(100% - 64px);
  }

  .top-nav-menu {
    margin-left: 0;
  }
}

@media (max-width: 1200px) {
  .hero-container {
    width: calc(100% - 48px);
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;

    padding: 110px 0 90px;
  }

  .hero-card {
    width: 100%;
    max-width: 440px;

    transform: none;
  }

  .hero-bg-shape {
    width: 100%;
    clip-path: none;
  }
}

@media (max-width: 900px) {
  .top-nav-menu {
    display: none;
  }

  .top-nav-container {
    max-width: calc(100% - 36px);
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;

    padding: 90px 0 70px;
  }

  .hero-title {
    font-size: 26px;
    line-height: 1;
  }
  .hero-label{
    font-size: 11px;
  }
  .pain-title{
    font-size: 26px;
  }
  .promise-title{
    font-size: 26px;
  }
  .audience-title{
    font-size: 26px;
  }
  .program-title{
    font-size: 26px;
  }
  .included-title{
    font-size: 26px;
  }
  .author-title{
    font-size: 26px;
  }
  .positioning-title{
    font-size: 26px;
  }
  .price-title{
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-button {
    width: 100%;
    max-width: 340px;
    font-size: 13px;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-cell:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .top-nav-button {
    width: 126px;
  }
  .faq-title{
    font-size: 26px;
  }
  .final-cta-title{
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  /* Глобальные уменьшения */
  body {
    font-size: 14px;
  }

  .container {
    max-width: calc(100% - 32px);
  }

  section {
    padding: 60px 0 !important;
  }

  /* Шрифты заголовков — компактно */
  h1, .hero-title {
    font-size: 36px !important;
    line-height: 1.1 !important;
  }

  h2, .section-title, .pain-title, .promise-title,
  .audience-title, .program-title, .included-title,
  .author-title, .positioning-title, .price-title,
  .faq-title, .final-cta-title {
    font-size: 32px !important;
    line-height: 1.1 !important;
    margin-bottom: 16px !important;
  }

  /* Текстовые блоки */
  .hero-subtitle, .pain-subtitle, .promise-text p,
  .audience-subtitle, .program-subtitle, .included-card p,
  .author-text p, .positioning-card p, .price-list li,
  .faq-answer, .hero p, .lead {
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  /* Карточки и сетки */
  .cards, .features, .metrics, .pain-grid,
  .promise-grid, .included-grid, .positioning-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .card, .feature, .pain-card, .promise-card,
  .included-card, .positioning-card {
    padding: 20px !important;
    min-height: auto !important;
  }

  /* Числа и метрики */
  .stat span, .metric span, .author-stats strong,
  .banner strong,
  .included-number, .author-stat-number, .price-value {
    font-size: 36px !important;
  }

  /* Навигация */
  .nav {
    margin-bottom: 40px !important;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav nav {
    display: none;
  }

  .nav button {
    padding: 8px 16px;
    font-size: 12px;
  }

  /* Hero секция */
  .hero {
    padding: 16px 0 60px !important;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions button,
  .hero-actions .primary,
  .hero-actions .secondary {
    width: 100%;
    text-align: center;
  }

  .stats-card {
    width: 100%;
    padding: 20px;
  }

  /* CTA и кнопки */
  .final-cta-button, .price-button, .hero-button {
    width: 100%;
    max-width: 100%;
    height: 52px;
    font-size: 13px;
  }

  /* Ценовая карточка */
  .price-card {
    width: 100%;
  }

  .price-card-inner {
    padding: 24px;
  }

  .price-value {
    font-size: 48px !important;
  }

  /* Баннеры */
  .included-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .included-banner-number {
    width: 100%;
    justify-content: flex-start;
    padding: 20px 24px 0;
    font-size: 64px;
  }

  .included-banner-content {
    padding: 20px 24px 28px;
  }

  /* Авторская секция */
  .author-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .author-stats {
    grid-template-columns: 1fr;
  }

  .author-stat {
    padding: 20px;
  }

  /* FAQ */
  .faq-question span:first-child {
    font-size: 18px !important;
  }

  .faq-icon {
    font-size: 14px;
  }

  /* Футер */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav a, .footer-links a {
    font-size: 16px;
  }

  .footer-description {
    font-size: 14px;
  }

  /* Дополнительные блоки */
  .two-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .author-wrap {
    flex-direction: column;
    gap: 24px;
  }

  .avatar {
    width: 100px;
    height: 100px;
    font-size: 28px;
  }

  .author-stats {
    flex-direction: column;
    gap: 16px;
  }

  .banner {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .program-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .program-name {
    font-size: 18px !important;
  }

  .program-time {
    font-size: 13px;
  }

  .audience-list li {
    font-size: 15px;
    padding-left: 24px;
    margin-bottom: 16px;
  }

  .audience-note {
    padding: 20px;
    font-size: 14px;
  }

  /* Отступы контейнеров */
  .pain-container,
  .promise-container,
  .audience-container,
  .program-container,
  .included-container,
  .positioning-container,
  .price-container,
  .faq-container,
  .footer-container,
  .hero-container {
    width: calc(100% - 32px) !important;
    padding: 0 !important;
  }

  /* Микротекст */
  .mini, .hero-label, .pain-label, .promise-label,
  .audience-label, .program-label, .included-label,
  .price-label, .faq-label {
    font-size: 10px !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
  }

  /* Подписи */
  .price-note, .hero-note, .price-bottom-note {
    font-size: 12px;
  }

  /* Мелкие карточки героя */
  .hero-card {
    width: 100%;
    transform: none;
  }

  .hero-card-main {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-footer {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}

/* Для совсем маленьких экранов (480px и меньше) */
@media (max-width: 480px) {
  h1, .hero-title {
    font-size: 28px !important;
  }

  h2, .pain-title, .promise-title, .audience-title,
  .program-title, .included-title, .author-title,
  .positioning-title, .price-title, .faq-title,
  .final-cta-title {
    font-size: 26px !important;
  }

  .hero-subtitle, .pain-subtitle, .promise-text p,
  .audience-subtitle, .program-subtitle {
    font-size: 14px !important;
  }

  .card, .feature, .pain-card, .promise-card,
  .included-card, .positioning-card {
    padding: 16px !important;
  }

  .stat span, .metric span, .author-stats strong {
    font-size: 28px !important;
  }

  .hero-actions button,
  .final-cta-button,
  .price-button {
    height: 48px;
    font-size: 13px;
  }
}