:root {
  --bg: #f2f2f0;
  --surface: #ffffff;
  --surface-soft: #fafaf8;
  --text: #111111;
  --text-muted: #6b6b6b;
  --lime: #c6f24e;
  --lime-soft: #e9fbc0;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --border: rgba(17, 17, 17, 0.08);
  --radius: 24px;
  --radius-sm: 16px;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Space Grotesk", "Inter", system-ui, sans-serif;
  --shadow: 0 8px 32px rgba(17, 17, 17, 0.06);
  --shadow-hover: 0 20px 56px rgba(17, 17, 17, 0.14);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

.container {
  width: min(1160px, 100% - 48px);
  margin-inline: auto;
}

section[id] {
  scroll-margin-top: 76px;
}

/* ---------- Icons ---------- */

.i-fill {
  fill: currentColor;
  flex-shrink: 0;
}

.i-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ---------- Reveal on scroll ---------- */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.55s ease-out var(--reveal-delay, 0s),
    transform 0.55s ease-out var(--reveal-delay, 0s);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

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

.btn--accent {
  background: var(--lime);
  color: var(--dark);
  box-shadow: 0 6px 24px rgba(198, 242, 78, 0.45);
}

.btn--accent:hover {
  box-shadow: 0 12px 36px rgba(198, 242, 78, 0.7);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
}

.btn--outline {
  border: 1.5px solid var(--dark);
  color: var(--dark);
  padding: 12px 24px;
}

.btn--outline:hover {
  background: var(--dark);
  color: #fff;
}

.btn--lg {
  padding: 17px 34px;
  font-size: 17px;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(198, 242, 78, 0.45);
  }
  50% {
    box-shadow: 0 6px 42px rgba(198, 242, 78, 0.85);
  }
}

.btn--pulse {
  animation: pulse-glow 2.6s ease-in-out infinite;
}

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

.btn--pulse:active {
  transform: scale(0.97);
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header--scrolled {
  background: rgba(242, 242, 240, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.scroll-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--lime);
  color: var(--dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.5px;
  transition: transform 0.3s var(--ease-out);
}

.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.06);
}

.logo-text {
  background: var(--dark);
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s var(--ease-out);
}

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

.nav a:hover::after {
  transform: scaleX(1);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: 64px 0 32px;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

.hero-blob--1 {
  width: 480px;
  height: 480px;
  top: -160px;
  right: -120px;
  background: rgba(198, 242, 78, 0.35);
  animation: blob-drift 14s ease-in-out infinite alternate;
}

.hero-blob--2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -140px;
  background: rgba(198, 242, 78, 0.18);
  animation: blob-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes blob-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-40px, 40px) scale(1.12);
  }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--lime-soft);
  border: 1px solid rgba(140, 190, 30, 0.35);
  color: #3d5c00;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  animation: rise-in 0.5s ease both;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6fae00;
  animation: dot-blink 1.8s ease-in-out infinite;
}

@keyframes dot-blink {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-line {
  display: block;
}

.hero-word {
  display: inline-block;
  animation: word-in 0.55s var(--ease-out) both;
  animation-delay: calc(0.1s + var(--i, 0) * 0.055s);
}

@keyframes word-in {
  from {
    opacity: 0;
    transform: translateY(0.6em);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero-word--accent {
  background: linear-gradient(120deg, transparent 0%, transparent 2%, var(--lime) 2%, var(--lime) 98%, transparent 98%);
  background-size: 100% 0.42em;
  background-position: 0 88%;
  background-repeat: no-repeat;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  animation: rise-in 0.6s ease 0.5s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  animation: rise-in 0.6s ease 0.62s both;
}

.hero-visual-wrap {
  perspective: 900px;
  animation: visual-in 0.8s var(--ease-out) 0.35s both;
}

@keyframes visual-in {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transform-style: preserve-3d;
  animation: hero-float 7s ease-in-out infinite;
}

@keyframes hero-float {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 12;
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.14) 48%, transparent 62%);
  background-size: 220% 100%;
  animation: glow-sweep 5.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-sweep {
  0% {
    background-position: 130% 0;
  }
  60%,
  100% {
    background-position: -60% 0;
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.hero-stats > div {
  height: 100%;
}

.stat {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 4px;
  height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0 8px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 18px;
  background: var(--surface);
}

.section-label--dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.65);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  max-width: 640px;
}

.section-title--light {
  color: #fff;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 16.5px;
  margin-bottom: 8px;
}

/* ---------- Tariffs ---------- */

.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.tariffs-grid > div {
  height: 100%;
}

.tariff-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 0 24px 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  height: 100%;
}

.tariff-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.tariff-card--popular {
  outline: 2px solid var(--dark);
  outline-offset: -2px;
}

.tariff-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--dark);
  color: var(--lime);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 999px;
}

.tariff-top {
  height: 5px;
  margin: 0 -24px 22px;
  background: var(--accent);
}

.tariff-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  margin-bottom: 12px;
}

.tariff-fee {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.tariff-fee-note {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
}

.tariff-range {
  font-size: 15px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tariff-spend {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-muted);
}

.custom-card {
  margin-top: 16px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.custom-star {
  color: #e2372b;
  font-size: 26px;
  line-height: 1;
  animation: star-spin 8s linear infinite;
}

@keyframes star-spin {
  to {
    transform: rotate(360deg);
  }
}

.custom-copy {
  flex: 1;
  min-width: 240px;
}

.custom-copy h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 4px;
}

.custom-copy p {
  color: var(--text-muted);
  font-size: 14.5px;
}

/* ---------- Steps ---------- */

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

.steps-grid > div {
  height: 100%;
}

.step-card {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  height: 100%;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--lime);
  color: var(--dark);
  margin-bottom: 40px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-muted);
  font-size: 14.5px;
}

.step-arrow {
  position: absolute;
  top: 30px;
  right: 18px;
  font-size: 20px;
  color: rgba(17, 17, 17, 0.22);
}

/* ---------- Formats ---------- */

.formats-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.formats-main > div,
.formats-grid > div {
  height: 100%;
}

.format-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  height: 100%;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.format-card--main {
  padding: 30px;
  background: linear-gradient(135deg, var(--lime-soft) 0%, #f3fce0 45%, var(--surface) 100%);
}

.format-card--main h3 {
  font-family: var(--font-display);
  font-size: 21px;
  margin: 18px 0 6px;
}

.format-card--main p {
  color: var(--text-muted);
  font-size: 14.5px;
  max-width: 340px;
}

.format-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--lime);
}

.format-icon--sm {
  width: 40px;
  height: 40px;
  background: rgba(17, 17, 17, 0.05);
  color: var(--dark);
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s var(--ease-out);
}

.format-card--item:hover .format-icon--sm {
  background: var(--dark);
  color: var(--lime);
  transform: rotate(-6deg);
}

.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.format-card--item {
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 15px;
}

/* ---------- Why (dark band) ---------- */

.section--dark {
  margin-top: 84px;
  padding: 84px 0;
  background: radial-gradient(1200px 500px at 80% -10%, rgba(198, 242, 78, 0.14), transparent 60%), var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.why-grid > div {
  height: 100%;
}

.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-sm);
  padding: 26px 24px;
  height: 100%;
  transition: background 0.3s ease, transform 0.3s var(--ease-out), border-color 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(198, 242, 78, 0.4);
  transform: translateY(-4px);
}

.why-value {
  display: block;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--lime);
  margin-bottom: 22px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ---------- FAQ ---------- */

.faq-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.faq-head {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item--open {
  box-shadow: var(--shadow-hover);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
}

.faq-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item--open .faq-plus {
  transform: rotate(45deg);
}

.faq-a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.32s var(--ease-out), opacity 0.32s var(--ease-out);
}

.faq-item--open .faq-a-wrap {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-a-clip {
  overflow: hidden;
  min-height: 0;
}

.faq-a {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 560px;
}

/* ---------- CTA ---------- */

.cta-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--dark);
  background-image: url("assets/cta-bg.webp");
  background-size: cover;
  background-position: center;
  padding: clamp(52px, 7vw, 92px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(17, 17, 17, 0.55) 0%, rgba(17, 17, 17, 0.82) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: -0.02em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 12px;
}

/* ---------- Footer ---------- */

.footer {
  margin-top: 84px;
  padding: 32px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-note {
  color: var(--text-muted);
  font-size: 13.5px;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-tg {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}

.footer-tg:hover {
  opacity: 0.7;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual,
  .hero-visual-glow,
  .hero-blob,
  .btn--pulse,
  .custom-star,
  .badge-dot {
    animation: none;
  }

  .badge,
  .hero-word,
  .hero-subtitle,
  .hero-cta,
  .hero-visual-wrap {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-a-wrap {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

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

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

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-head {
    position: static;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: calc(100% - 32px);
  }

  .header-cta-text {
    display: none;
  }

  .btn--sm {
    padding: 9px 12px;
  }

  .tariffs-grid,
  .steps-grid,
  .why-grid,
  .formats-main,
  .formats-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 64px;
  }

  .section--dark {
    margin-top: 64px;
    padding: 64px 0;
  }
}
