@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-primary: #050a0f;
  --bg-secondary: #080e17;
  --bg-tertiary: #0a1420;
  --bg-card: #0d1a26;
  --bg-card-hover: #112233;
  --accent-cyan: #00E5FF;
  --accent-green: #00FF88;
  --accent-red: #FF4D4D;
  --text-primary: #F2F5F7;
  --text-secondary: #8fa3b8;
  --text-muted: #4a6275;
  --border-color: rgba(0, 229, 255, 0.15);
  --border-glow: rgba(0, 229, 255, 0.4);
  --font-heading: 'Orbitron', monospace;
  --font-body: 'Inter', sans-serif;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.fixed { overflow: hidden; }

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

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── PRELOADER ─── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease;
}

#preloader img { width: 64px; }

html.hide #preloader { display: none; }

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(5, 10, 15, 0.95);
  border-bottom: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
}

header > .container {
  width: 100%;
}

header.scrolled {
  background: rgba(5, 10, 15, 0.95);
  border-bottom-color: var(--border-color);
  backdrop-filter: blur(10px);
}

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

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

.logo img {
  height: 36px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.logo-text span {
  display: block;
  font-size: 10px;
  color: var(--accent-cyan);
  font-weight: 400;
  letter-spacing: 0.12em;
}

nav { display: flex; align-items: center; gap: 8px; }

.nav-link {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}

.nav-link:hover { color: var(--accent-cyan); }

.nav-link.cta-nav {
  background: transparent;
  border: 1px solid var(--accent-cyan);
  color: var(--accent-cyan);
  padding: 6px 16px;
}

.nav-link.cta-nav:hover {
  background: rgba(0, 229, 255, 0.1);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.burger-btn {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}

.burger-btn span {
  display: block;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-btn span:nth-child(1) { width: 24px; }
.burger-btn span:nth-child(2) { width: 18px; }
.burger-btn span:nth-child(3) { width: 24px; }

.burger-btn.act span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.burger-btn.act span:nth-child(2) { opacity: 0; }
.burger-btn.act span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

/* ─── MOBILE MENU ─── */
#mobile-menu {
  opacity: 0;
  pointer-events: none;
  position: fixed;
  inset: 0;
  top: var(--header-h);
  background: rgba(5, 10, 15, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.3s ease;
}

#mobile-menu.opened {
  opacity: 1;
  pointer-events: all;
}

#mobile-menu .nav-link {
  font-size: 16px;
  padding: 14px 32px;
  width: 280px;
  text-align: center;
  border-radius: 6px;
}

#mobile-menu .nav-link:hover {
  background: rgba(0, 229, 255, 0.08);
  color: var(--accent-cyan);
}

/* ─── HERO ─── */
#home {
  min-height: 100vh;
  padding-top: var(--header-h);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-bg.webp');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,10,15,0.92) 0%, rgba(5,10,15,0.7) 50%, rgba(5,10,15,0.85) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-content { max-width: 560px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.2);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 28px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title em {
  font-style: normal;
  color: var(--accent-cyan);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.hero-text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, #00E5FF 0%, #00a8c2 100%);
  color: #050a0f;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.4);
}

.hero-actions .btn-primary:hover {
  animation-play-state: paused;
}

.btn-primary svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

@keyframes btn-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 rgba(0, 229, 255, 0); }
  50% { transform: scale(1.04); box-shadow: 0 6px 20px rgba(0, 229, 255, 0.35); }
}

.hero-actions .btn-primary {
  animation: btn-breathe 2.4s ease-in-out infinite;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,229,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-image-wrap img {
  max-height: 520px;
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3));
}

/* ─── SECTION BASE ─── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
}

/* ─── HOW IT WORKS ─── */
#how-it-works {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
  opacity: 0.3;
}

.how-header {
  text-align: center;
  margin-bottom: 20px;
}

.how-intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 64px;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.how-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.how-card-num {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  opacity: 0.7;
}

.how-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(165deg);
}

.how-card h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.how-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.screenshot-item {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s, transform 0.3s;
}

.screenshot-item:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
}

.screenshot-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.how-footer-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ─── FEATURES ─── */
#features {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
}

.features-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.features-content {
  max-width: 720px;
  width: 100%;
}

.features-content .section-text {
  margin-left: auto;
  margin-right: auto;
}

.features-list {
  text-align: left;
}

.features-image-wrap {
  position: relative;
}

.features-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  pointer-events: none;
}

.features-image-wrap img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

.features-content .section-text {
  margin-bottom: 36px;
}

.features-list { display: flex; flex-direction: column; gap: 16px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: border-color 0.3s, background 0.3s;
}

.feature-item:hover {
  border-color: var(--border-glow);
  background: var(--bg-card-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-cyan);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ─── CHALLENGE / PRESSURE ─── */
#pressure {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#pressure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.pressure-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pressure-note {
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  padding-left: 16px;
  border-left: 2px solid var(--accent-cyan);
}

.pressure-cards { display: flex; flex-direction: column; gap: 20px; }

.pressure-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.pressure-card:hover {
  border-color: var(--border-glow);
  transform: translateX(4px);
}

.pressure-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pressure-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pressure-card-icon.red { background: rgba(255, 77, 77, 0.12); }
.pressure-card-icon.cyan { background: rgba(0, 229, 255, 0.1); }
.pressure-card-icon.green { background: rgba(0, 255, 136, 0.1); }

.pressure-card h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-primary);
}

.pressure-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─── FAQ ─── */
#faq {
  padding: 100px 0;
  background: var(--bg-primary);
}

.faq-header { text-align: center; margin-bottom: 56px; }

.faq-list { display: flex; flex-direction: column; gap: 16px; max-width: 860px; margin: 0 auto; }

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--border-glow); }

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  cursor: pointer;
}

.faq-num {
  font-family: var(--font-heading);
  font-size: 11px;
  color: var(--accent-cyan);
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  opacity: 0.7;
}

.faq-q h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
  line-height: 1.4;
}

.faq-arrow {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--accent-cyan);
}

.faq-item.open .faq-arrow { background: var(--accent-cyan); color: var(--bg-primary); border-color: var(--accent-cyan); transform: rotate(180deg); }

.faq-a {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 0 28px 22px 28px;
  padding-left: calc(28px + 30px + 16px);
  display: none;
}

.faq-item.open .faq-a { display: block; }

/* ─── CONTACT ─── */
#contact {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,229,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.contact-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-content {
  max-width: 640px;
  width: 100%;
}

.contact-content .section-text {
  margin-left: auto;
  margin-right: auto;
}

.contact-email-block {
  justify-content: center;
}

.contact-image img {
  width: 100%;
  border-radius: 12px;
  opacity: 0.7;
  filter: saturate(0.7);
}

.contact-content .section-text {
  margin-bottom: 36px;
}

.contact-email-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 32px;
}

.contact-email-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-email-block p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  text-align: left;
}

.contact-email-block a {
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-cyan);
  transition: text-shadow 0.3s;
}

.contact-email-block a:hover {
  text-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  padding: 32px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  white-space: nowrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-links a {
  font-size: 12px;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent-cyan); }

/* ─── LEGAL ─── */
.legal-page {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 100px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.legal-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-date::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 1px;
  background: var(--accent-cyan);
}

.legal-content section { margin-bottom: 40px; }

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
  margin-bottom: 14px;
}

.legal-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 12px 0 12px 20px;
}

.legal-content ul li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-cyan);
  font-size: 10px;
  top: 4px;
}

.legal-content a { color: var(--accent-cyan); }
.legal-content a:hover { text-decoration: underline; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content { max-width: 100%; }
  .hero-text { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { justify-content: center; }
  .hero-image-wrap img { max-height: 360px; }

  .features-inner { grid-template-columns: 1fr; gap: 48px; }
  .features-image-wrap { display: none; }

  .pressure-inner { grid-template-columns: 1fr; gap: 48px; }

  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-image { display: none; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 768px) {
  .how-grid { grid-template-columns: 1fr 1fr; }
  .screenshots-grid { grid-template-columns: 1fr 1fr; }

  nav { display: none; }
  .burger-btn { display: flex; }
}

@media (max-width: 640px) {
  .how-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 26px; }
  #home, #how-it-works, #features, #pressure, #faq, #contact { padding: 64px 0; }
}
