:root {
  --navy: #0f2d55;
  --orange: #f7941d;
  --white: #ffffff;
  --light: #f4f6f9;
  --muted: #657389;
  --line: #e4e9f0;
  --shadow: 0 20px 40px rgba(15, 45, 85, 0.12);
  --radius: 18px;
}

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

body {
  font-family: "Inter", sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--light);
}

.section__head {
  display: grid;
  gap: 12px;
  margin-bottom: 40px;
}

.section__head h2 {
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
}

.section__head p {
  color: var(--muted);
  max-width: 640px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.nav {
  display: none;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  color: var(--muted);
}

.header__actions {
  display: none;
  gap: 12px;
}

.menu-toggle {
  background: none;
  border: 0;
  display: grid;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 16px 4%;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.mobile-menu a {
  padding: 8px 0;
}

.hero {
  padding-top: 70px;
  padding-bottom: 80px;
}

.hero__grid,
.hero-grid {
  display: grid;
  max-width: 1100px;
  margin: 0 auto;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
}

.hero__content {
  max-width: none;
  width: 100%;
  min-width: 0;
}

.hero-left {
  max-width: none;
  width: 100%;
  min-width: 0;
}

.hero-title{
  text-align: center;
  margin: 0 auto 36px auto;
  max-width: 1000px;
  width: 100%;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 24px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.price-tag {
  display: inline-flex;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.hero__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__card-inner {
  padding: 32px;
  display: grid;
  gap: 16px;
}

.hero__card h3 {
  font-size: 20px;
}

.hero__card ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding-left: 18px;
}

.hero__badge {
  align-self: start;
  background: rgba(247, 148, 29, 0.12);
  color: var(--orange);
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 999px;
  width: fit-content;
}

.risks-summary{
  margin: 48px auto 0;
  max-width: 820px;
  font-size: inherit;
  line-height: 1.6;
  text-align: center;
  color: var(--muted);
  font-weight: 400;
  opacity: 1;
}

.grid {
  display: grid;
  gap: 20px;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
}

.card p {
  color: var(--muted);
}

.card--accent {
  background: linear-gradient(135deg, rgba(15, 45, 85, 0.9), rgba(15, 45, 85, 0.75));
  color: var(--white);
  border: none;
}

.card--accent p {
  color: rgba(255, 255, 255, 0.72);
}

.card__metric {
  font-size: 24px;
  font-weight: 700;
  color: var(--orange);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: grid;
  gap: 6px;
  background: var(--white);
}

.timeline__day {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.steps {
  display: grid;
  gap: 16px;
}

.step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  display: grid;
  gap: 8px;
}

.step__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 600;
}

.cases-section {
  background: var(--navy);
  color: var(--white);
}

#cases h2 {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 28px auto;
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.2vw, 44px);
}

.cases-section .section__head p {
  color: rgba(255, 255, 255, 0.72);
}

.cases-subtitle {
  color: rgba(255, 255, 255, 0.85) !important;
}

.cases-sublead {
  color: var(--orange) !important;
  border-left: 3px solid var(--orange);
  padding-left: 15px;
}

.cases-footnote {
  color: rgba(255, 255, 255, 0.55) !important;
  font-size: 13px;
}

.cases-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.cases-controls {
  display: inline-flex;
  gap: 10px;
  flex-shrink: 0;
}

.cases-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cases-btn:hover,
.cases-btn:focus-visible {
  background: rgba(247, 148, 29, 0.22);
  border-color: rgba(247, 148, 29, 0.75);
  transform: translateY(-1px);
}

.cases-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scroll-padding-left: 2px;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.cases-scroll::-webkit-scrollbar {
  display: none;
}

.case-card {
  flex: 0 0 min(84vw, 360px);
  scroll-snap-align: start;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(15, 45, 85, 0.2));
  backdrop-filter: blur(4px);
  padding: 22px;
  display: grid;
  gap: 12px;
  position: relative;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.case-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, rgba(247, 148, 29, 0.95), rgba(247, 148, 29, 0.3));
}

.case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.65);
  box-shadow: 0 14px 34px rgba(247, 148, 29, 0.22);
}

.case-tag {
  display: inline-block;
  width: fit-content;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd6a3;
  border: 1px solid rgba(247, 148, 29, 0.45);
  border-radius: 999px;
  padding: 4px 10px;
}

.case-card h3 {
  font-size: 28px;
  line-height: 1.2;
}

.growth {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: 999px;
  color: #ffbd67;
  font-weight: 600;
  background: rgba(247, 148, 29, 0.12);
  border: 1px solid rgba(247, 148, 29, 0.35);
}

.case-card ul {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 18px;
}

.case-link {
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
}

.case-link:hover,
.case-link:focus-visible {
  color: var(--orange);
}

.cases-dots {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cases-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.cases-dot.is-active {
  width: 25px;
  background: var(--orange);
}

.dashboard {
  display: grid;
  gap: 32px;
}

.dashboard__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
}

.analytics {
  display: grid;
  gap: 16px;
}

.analytics__value {
  font-size: 22px;
  font-weight: 600;
  color: var(--orange);
}

.analytics__meta {
  color: var(--muted);
  font-size: 14px;
}

.dashboard__mockup {
  display: grid;
  gap: 12px;
  align-items: center;
}

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

.mockup__top {
  height: 40px;
  background: var(--navy);
}

.mockup__body {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.mockup__chart {
  height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(15, 45, 85, 0.15), rgba(247, 148, 29, 0.25));
}

.mockup__lines span {
  display: block;
  height: 8px;
  background: var(--light);
  border-radius: 999px;
}

.mockup__lines span + span {
  margin-top: 8px;
}

.mockup__caption {
  color: var(--muted);
  font-size: 14px;
}

.compare {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  display: grid;
  gap: 24px;
}

.compare__table {
  display: grid;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px;
}

.compare__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
}

.compare__row--head {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
}

.download {
  display: grid;
  gap: 20px;
  align-items: center;
}

.download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pricing {
  display: grid;
  gap: 24px;
  align-items: start;
}

.pricing__card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow);
}

.pricing__price {
  font-size: 28px;
  font-weight: 700;
}

.pricing__card ul {
  display: grid;
  gap: 10px;
  color: var(--muted);
  padding-left: 18px;
}

.form {
  display: grid;
  gap: 32px;
}

.form__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}

.form__status {
  min-height: 20px;
  font-size: 14px;
  color: var(--navy);
}

.form__deep {
  font-size: 13px;
  color: var(--muted);
}

.form__cta {
  display: grid;
  gap: 12px;
}

.form__hint {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 40px 0 80px;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 24px;
}

.footer__links {
  display: grid;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--accent {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(247, 148, 29, 0.25);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
}

.btn:hover {
  transform: translateY(-2px);
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 120;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(15, 45, 85, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 16px 38px rgba(15, 45, 85, 0.28);
}

.sticky-cta-title {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.sticky-cta-sub {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  margin-top: 2px;
}

.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-cta-btn {
  white-space: nowrap;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-orange {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 18px rgba(247, 148, 29, 0.25);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
  .header__actions {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline {
    grid-template-columns: repeat(5, 1fr);
  }
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
  .case-card {
    flex: 0 0 calc(50% - 8px);
  }
  .dashboard {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .download {
    grid-template-columns: 1fr auto;
  }
  .pricing {
    grid-template-columns: 1fr 0.8fr;
  }
  .form {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .case-card {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media (max-width: 767px) {
  .risks-summary {
    margin-top: 32px;
    padding: 0 18px;
  }

  .compare {
    padding: 28px;
  }
  .compare__row {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    bottom: 10px;
  }
  .sticky-cta-inner {
    border-radius: 14px;
    padding: 12px;
  }
  .sticky-cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-cta-btn {
    width: 100%;
  }
  .cases-head {
    flex-direction: column;
    align-items: stretch;
  }
  .cases-controls {
    justify-content: flex-end;
  }
}

@media (max-width: 980px){
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero__grid{
    grid-template-columns: 1fr;
  }
}

.pricing-highlight{
  margin-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;

  padding: 18px 22px;
  border-radius: 16px;

  background: rgba(15,45,85,0.06);
  border: 1px solid rgba(15,45,85,0.12);
}

.pricing-value{
  font-size: 22px;
  font-weight: 800;
  color: #0F2D55;
}

.pricing-note{
  font-size: 13px;
  opacity: 0.7;
  margin-top: 4px;
  color: #0F2D55;
}

.pricing-right{
  font-weight: 600;
  color: #0F2D55;
  opacity: 0.9;
  text-align: right;
}

.pricing-compare{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  padding: 18px 22px;
  border-radius: 18px;

  background: rgba(15,45,85,0.04);
  border: 1px solid rgba(15,45,85,0.10);
}

.compare-left,
.compare-right{
  width: 45%;
}

.compare-title{
  font-size: 13px;
  opacity: 0.7;
  margin-bottom: 6px;
  color: #0F2D55;
}

.compare-value{
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0F2D55;
}

.compare-note{
  font-size: 13px;
  opacity: 0.6;
  color: #0F2D55;
}

.compare-divider{
  font-weight: 800;
  opacity: 0.45;
  color: #0F2D55;
}

@media (max-width: 720px){
  .pricing-highlight{
    flex-direction: column;
    align-items: flex-start;
  }
  .pricing-right{
    text-align: left;
  }

  .pricing-compare{
    flex-direction: column;
    align-items: stretch;
  }
  .compare-left,
  .compare-right{
    width: 100%;
  }
  .compare-divider{
    text-align: center;
    padding: 6px 0;
  }
}

/* Hero текстовые классы (минимально, без изменения общего стиля) */
.hero-subtitle{
  margin-top: 16px;
  font-size: 18px;
  opacity: .8;
  line-height: 1.55;
}
.hero-description{
  margin-top: 14px;
  line-height: 1.6;
}
.hero-access{
  margin-top: 14px;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1.55;
}

/* Брендинг внутри hero-description */
.brand-block{
  font-weight: 700;
}
.brand-ne{
  color: #D32F2F;
}
.brand-terpi{
  color: #0F2D55;
}
.brand-divider{
  opacity: 0.6;
}
.brand-sc{
  color: #F7941D;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.hero-accent{
  color: #F7941D;
}

.header .brand,
.footer .brand{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  white-space: nowrap;
}

.header .brand-ne,
.footer .brand-ne{ color: #D32F2F; }
.header .brand-terpi,
.footer .brand-terpi{ color: #0F2D55; }
.header .brand-divider,
.footer .brand-divider{ opacity: .6; margin: 0 6px; }
.header .brand-sc,
.footer .brand-sc{ color: #F7941D; letter-spacing: 0.3px; }

@media (max-width: 560px){
  .header .brand,
  .footer .brand{ font-size: 15px; }
}

.risk-points{
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.risk-point{
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(15,45,85,0.06);
  border: 1px solid rgba(15,45,85,0.12);
}

.risk-point-title{
  font-weight: 800;
  margin: 0 0 4px 0;
}

.risk-point-desc{
  margin: 0;
  opacity: 0.75;
  font-size: 13px;
  line-height: 1.4;
}

.hero-actions-groups{
  display: grid;
  gap: 14px;
  align-items: start;
}

.hero-actions-group{
  display: grid;
  gap: 8px;
}

.hero-actions-label{
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero-actions-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compare-headline{
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F2D55;
}

.compare-body{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.compare-left,
.compare-right{
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.compare-right{
  border-left: 1px solid rgba(15,45,85,0.10);
  padding-left: 18px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.compare-title{
  margin: 0 0 2px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0F2D55;
  opacity: 0.6;
  font-weight: 700;
}

.compare-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: #0F2D55;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.compare-item{
  min-width: 0;
}

.compare-item--arrow{
  list-style: none;
  margin-left: -18px;
  padding-left: 18px;
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.compare-arrow{
  display: inline-block;
  text-align: center;
  line-height: 1.6;
  color: #0F2D55;
  opacity: 0.75;
}

.compare-total{
  margin-top: auto;
  font-size: 20px;
  font-weight: 700;
  color: #0F2D55;
  line-height: 1.2;
}

.compare-daily{
  font-size: 18px;
  font-weight: 700;
  color: #0F2D55;
  margin: 0;
  line-height: 1.2;
  white-space: nowrap;
}

.compare-daily-amount{
  color: #F7941D;
  font-weight: 700;
  white-space: nowrap;
}

.compare-note{
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  opacity: 0.7;
}

.compare-footer{
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
  align-items: end;
}

.compare-note--footer{
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #0F2D55;
  opacity: 0.7;
  align-self: end;
}

.hero-how{
  border: 1px solid rgba(15,45,85,0.10);
  background: rgba(15,45,85,0.03);
}

.hero-how__head h3{
  margin: 0 0 6px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: #0F2D55;
  text-align: center;
}

.hero-how__head p{
  margin: 0 0 16px 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  color: #657389;
  opacity: 0.6;
  text-align: center;
}

.hero-how__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-how__item{
  display: flex;
  gap: 10px;
  align-items: start;
  min-height: 82px;
  padding: 13px;
  border-radius: 12px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(15,45,85,0.08);
}

.hero-how__num{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(247,148,29,0.18);
  color: #F7941D;
  font-size: 12px;
  font-weight: 800;
}

.hero-how__item p{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  color: #0F2D55;
}

.money-nowrap{
  white-space: nowrap;
}

@media (max-width: 980px){
  .hero-actions-row{
    gap: 8px;
  }

  .hero-how__grid{
    grid-template-columns: 1fr;
  }
}

/* Hero lower-zone layout */
.hero-main{
  display: grid;
  gap: 28px;
}

.hero-lower-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
  grid-column: 1 / -1;
  justify-self: stretch;
  align-self: start;
  width: 100%;
  max-width: none;
  min-width: 0;
}

.hero-lower-grid .pricing-compare,
.hero-lower-grid .hero-how,
.hero-lower-grid .pricing-highlight{
  margin-top: 0;
}

.hero-lower-grid .hero-compare,
.hero-lower-grid .hero-how{
  min-height: 300px;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
}

.hero-lower-grid > *{
  width: 100%;
  min-width: 0;
}

@media (max-width: 1024px){
  .hero-lower-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-lower-grid .hero-compare,
  .hero-lower-grid .hero-how{
    min-height: 0;
    padding: 20px;
  }
}

.hero-price-cta{
  grid-column: 1 / -1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 20px;
  row-gap: 12px;
  padding: 24px 26px;
  gap: 18px;
}

.hero-price-main{
  width: 100%;
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.hero-lower-grid .pricing-value,
.hero-lower-grid .compare-value{
  font-size: 20px;
  font-weight: 700;
}

.hero-lower-grid .compare-value{
  line-height: 1.2;
}

.hero-price-btn{
  white-space: nowrap;
}

.hero-price-main .pricing-right{
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  text-align: center;
  opacity: 0.82;
}

.hero-price-cta .pricing-note{
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
}

.coffee-mark{
  font-size: 16px;
  opacity: 0.8;
  vertical-align: -1px;
}

.hero-benefits .hero__card-inner{
  padding: 34px;
}

.pricing-highlight,
.pricing-compare,
.hero-how,
.hero-benefits{
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(15, 45, 85, 0.08);
}

@media (max-width: 980px){
  .hero-main{
    gap: 24px;
  }

  .hero-lower-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-lower-grid .hero-compare,
  .hero-lower-grid .hero-how{
    padding: 20px;
  }

  .hero-price-cta{
    padding: 20px 22px;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-price-main{
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .hero-price-main .pricing-right{
    text-align: left;
  }

  .hero-price-btn{
    width: 100%;
    justify-content: center;
  }

  .compare-body{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .compare-right{
    border-left: 0;
    border-top: 1px solid rgba(15,45,85,0.10);
    padding-left: 0;
    padding-top: 14px;
    padding-bottom: 0;
  }

  .compare-footer{
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .hero-benefits .hero__card-inner{
    padding: 28px;
  }
}
