:root {
  --bg: #f3f0e9;
  --bg-deep: #0b1220;
  --surface: #fffaf1;
  --surface-strong: #ffffff;
  --surface-soft: #ebe5da;
  --text: #101828;
  --heading: #08111f;
  --muted: #667085;
  --muted-dark: #435064;
  --line: rgba(17, 24, 39, 0.12);
  --line-strong: rgba(17, 24, 39, 0.18);
  --accent: #0f7a5a;
  --accent-dark: #07543d;
  --accent-soft: #dff4eb;
  --gold: #c9a45c;
  --gold-soft: #f3e7cf;
  --shadow: 0 24px 80px rgba(15, 23, 42, 0.11);
  --shadow-soft: 0 16px 44px rgba(15, 23, 42, 0.075);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% -10%, rgba(201, 164, 92, 0.24), transparent 34%),
    radial-gradient(circle at 92% 8%, rgba(15, 122, 90, 0.14), transparent 30%),
    linear-gradient(180deg, #f8f5ef 0%, var(--bg) 42%, #f7f3ec 100%);
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(11, 18, 32, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 18, 32, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.46), transparent 58%);
  z-index: -1;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 245, 239, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.09);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--heading);
  font-weight: 900;
  font-size: 21px;
  letter-spacing: -0.045em;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: linear-gradient(145deg, #07101e 0%, #132236 100%);
  color: #f4d795;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 14px 28px rgba(8, 17, 31, 0.18);
  font-size: 13px;
  letter-spacing: -0.06em;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 800;
}

.header-nav a,
.header-cta,
.footer-inner a,
.contacts a {
  transition: color 0.18s ease, opacity 0.18s ease;
}

.header-nav a:hover,
.header-cta:hover,
.footer-inner a:hover,
.contacts a:hover {
  color: var(--accent);
}

.header-cta {
  padding: 11px 17px;
  border: 1px solid rgba(15, 122, 90, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.68);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.hero {
  padding-top: 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
}

.hero-content::before {
  content: "";
  position: absolute;
  width: 124px;
  height: 4px;
  left: 0;
  top: -28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(15, 122, 90, 0.2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 16px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.15);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7.4vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.085em;
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.25vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.07em;
  font-weight: 900;
}

h3 {
  margin-bottom: 11px;
  font-size: 22px;
  line-height: 1.16;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.hero-text {
  max-width: 750px;
  margin-bottom: 32px;
  color: var(--muted-dark);
  font-size: 20.5px;
  line-height: 1.62;
  font-weight: 560;
}

.hero-actions,
.final-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-actions p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 27px;
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: -0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0f7a5a 0%, #07543d 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(7, 84, 61, 0.24), inset 0 1px 0 rgba(255,255,255,0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #118664 0%, #063f31 100%);
  color: #fff;
  box-shadow: 0 22px 48px rgba(7, 84, 61, 0.28), inset 0 1px 0 rgba(255,255,255,0.18);
}

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

.benefits-row span,
.niche-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.78);
  color: #263244;
  font-size: 14px;
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.045);
}

.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.chart-card {
  position: relative;
  width: 100%;
  min-height: 446px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%),
    radial-gradient(circle at 84% 0%, rgba(201, 164, 92, 0.28), transparent 30%),
    linear-gradient(145deg, #08111f 0%, #111d31 100%);
  box-shadow: 0 34px 90px rgba(8, 17, 31, 0.24);
  color: #fff;
  overflow: hidden;
}

.chart-card::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius-xl) - 1px);
  border: 1px solid rgba(244, 215, 149, 0.12);
  pointer-events: none;
}

.chart-topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.chart-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #e7c776;
  box-shadow: 0 0 0 7px rgba(231, 199, 118, 0.13), 0 0 28px rgba(231, 199, 118, 0.58);
}

.bar-chart {
  position: relative;
  z-index: 1;
  height: 278px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background:
    repeating-linear-gradient(to top, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 1px, transparent 1px, transparent 56px),
    rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.1);
}

.bar {
  display: block;
  border-radius: 16px 16px 8px 8px;
  background: linear-gradient(180deg, #f1cf7d 0%, #16a274 8%, #0f7a5a 100%);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18), 0 0 34px rgba(22, 162, 116, 0.12);
}

.bar-1 { height: 28%; opacity: 0.44; }
.bar-2 { height: 42%; opacity: 0.58; }
.bar-3 { height: 57%; opacity: 0.74; }
.bar-4 { height: 72%; opacity: 0.9; }
.bar-5 { height: 90%; }

.chart-caption {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 13px;
  font-weight: 850;
}

.narrow {
  max-width: 900px;
}

.goal-section .narrow {
  position: relative;
  padding: 58px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.96) 0%, #fff 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.goal-section .narrow::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -54px;
  bottom: -70px;
  border-radius: 999px;
  background: rgba(201, 164, 92, 0.14);
}

.goal-section p:last-child,
.final-card p,
.section-head + p {
  color: var(--muted-dark);
  font-size: 19px;
  font-weight: 560;
}

.muted-section {
  background: linear-gradient(180deg, rgba(235, 229, 218, 0.82) 0%, rgba(247, 243, 236, 0.76) 100%);
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}

.section-head {
  max-width: 800px;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  gap: 18px;
}

.three-columns {
  grid-template-columns: repeat(3, 1fr);
}

.two-columns {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  min-height: 214px;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,250,241,0.88) 100%);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 164, 92, 0.34);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
}

.card p,
.step p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-weight: 560;
}

.number,
.step span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.business-grid {
  grid-template-columns: 1.18fr 1fr 1fr;
}

.featured-card {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  min-height: 446px;
  background:
    radial-gradient(circle at 90% 8%, rgba(201, 164, 92, 0.15), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #fff8ea 100%);
}

.mini-chart {
  height: 196px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  background:
    repeating-linear-gradient(to top, rgba(67, 80, 100, 0.1) 0, rgba(67, 80, 100, 0.1) 1px, transparent 1px, transparent 46px),
    #f5efe4;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.mini-bar {
  display: block;
  border-radius: 13px 13px 7px 7px;
  background: linear-gradient(180deg, #d5b15e 0%, #0f7a5a 12%, #07543d 100%);
  box-shadow: 0 12px 22px rgba(7, 84, 61, 0.12);
}

.mini-1 { height: 25%; opacity: 0.46; }
.mini-2 { height: 40%; opacity: 0.6; }
.mini-3 { height: 55%; opacity: 0.76; }
.mini-4 { height: 73%; opacity: 0.9; }
.mini-5 { height: 92%; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: steps;
}

.step {
  position: relative;
  min-height: 256px;
  padding: 30px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 241, 0.82);
  box-shadow: var(--shadow-soft);
}

.step::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 28px;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

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

.niche-list span {
  min-height: 50px;
  padding: 12px 19px;
  background: rgba(255, 250, 241, 0.88);
  font-size: 15px;
}

.final-section {
  padding-bottom: 68px;
}

.final-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 42px;
  align-items: end;
  padding: 54px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 86% 6%, rgba(201, 164, 92, 0.26), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(15, 122, 90, 0.24), transparent 32%),
    linear-gradient(145deg, #07101e 0%, #121f33 100%);
  color: #fff;
  box-shadow: 0 32px 90px rgba(8, 17, 31, 0.26);
  overflow: hidden;
}

.final-card .eyebrow {
  color: #e8c978;
}

.final-card h2 {
  color: #fff;
}

.final-card p {
  max-width: 700px;
  color: rgba(255,255,255,0.72);
}

.final-actions {
  margin: 30px 0 0;
}

.contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 22px;
  background: rgba(255,255,255,0.065);
  color: #eef3f8;
  font-style: normal;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.contacts span {
  color: #fff;
}

.contacts a {
  color: rgba(255,255,255,0.72);
}

.site-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.09);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-dark);
  font-size: 14px;
  font-weight: 800;
}

.footer-inner span {
  color: var(--heading);
  font-weight: 950;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  .section {
    padding: 70px 0;
  }

  .hero-grid,
  .final-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: stretch;
  }

  .three-columns,
  .two-columns,
  .business-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .featured-card {
    grid-row: auto;
    grid-column: span 2;
  }

  .header-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 68px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-content::before {
    width: 92px;
    top: -22px;
  }

  h1 {
    font-size: clamp(44px, 15vw, 60px);
    letter-spacing: -0.08em;
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-text,
  .goal-section p:last-child,
  .final-card p {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .benefits-row span,
  .niche-list span {
    width: 100%;
    border-radius: 17px;
  }

  .chart-card {
    min-height: auto;
    padding: 22px;
  }

  .bar-chart {
    height: 220px;
    gap: 10px;
    padding: 14px;
  }

  .chart-caption {
    flex-direction: column;
    gap: 8px;
  }

  .goal-section .narrow,
  .final-card {
    padding: 32px 22px;
  }

  .three-columns,
  .two-columns,
  .business-grid,
  .steps,
  .featured-card {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .card,
  .step {
    min-height: auto;
    padding: 25px;
  }

  .mini-chart {
    height: 160px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}

/* Premium emphasis pass */
h1 {
  background: linear-gradient(92deg, #08111f 0%, #103a32 50%, #0f7a5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 18px 48px rgba(8, 17, 31, 0.08);
}

.section-head h2,
.goal-section h2 {
  color: #08111f;
  text-shadow: 0 14px 34px rgba(8, 17, 31, 0.08);
}

.section-head h2::after,
.goal-section h2::after {
  content: "";
  display: block;
  width: 118px;
  height: 4px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 65%, transparent 100%);
  box-shadow: 0 8px 22px rgba(15, 122, 90, 0.15);
}

.card,
.step,
.goal-section .narrow {
  box-shadow:
    0 22px 70px rgba(8, 17, 31, 0.10),
    0 1px 0 rgba(255, 255, 255, 0.86) inset;
}

.card,
.step {
  position: relative;
  overflow: hidden;
}

.card::before,
.step::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--accent) 55%, rgba(15, 122, 90, 0) 100%);
  opacity: 0.95;
}

.card h3,
.step h3 {
  display: inline;
  color: #08111f;
  background: linear-gradient(180deg, transparent 60%, rgba(201, 164, 92, 0.24) 0);
  text-shadow: 0 9px 24px rgba(8, 17, 31, 0.07);
}

.card p,
.step p {
  margin-top: 12px;
}

.number,
.step span {
  min-width: 44px;
  min-height: 30px;
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(223, 244, 235, 0.95), rgba(243, 231, 207, 0.92));
  color: var(--accent-dark);
  box-shadow: 0 10px 26px rgba(15, 122, 90, 0.10), inset 0 1px 0 rgba(255,255,255,0.86);
}

.benefits-row span,
.niche-list span {
  border-color: rgba(201, 164, 92, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 241, 0.86));
  color: #102033;
  box-shadow:
    0 14px 32px rgba(8, 17, 31, 0.07),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.benefits-row span::before,
.niche-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--accent));
  box-shadow: 0 0 0 5px rgba(201, 164, 92, 0.12);
}

.featured-card {
  border-color: rgba(201, 164, 92, 0.32);
  box-shadow:
    0 28px 84px rgba(8, 17, 31, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.92);
}

.chart-card,
.final-card {
  box-shadow:
    0 38px 100px rgba(8, 17, 31, 0.32),
    0 0 0 1px rgba(244, 215, 149, 0.10) inset;
}

.chart-topline span:first-child,
.final-card h2 {
  text-shadow: 0 16px 42px rgba(0,0,0,0.25);
}

.contacts {
  gap: 14px;
  padding: 16px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 20px 55px rgba(0,0,0,0.16);
}

.contact-person {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13);
}

.contact-role {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 2px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(244, 215, 149, 0.14);
  color: #f2d486 !important;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-person strong {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.contact-person a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 640px) {
  .section-head h2::after,
  .goal-section h2::after {
    width: 86px;
    margin-top: 16px;
  }

  .contact-person {
    padding: 16px;
  }
}
