/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:     #0a1628;
  --dark:      #0d1a2d;
  --orange:    #f05a29;
  --red:       #e63b3b;
  --green-wa:  #1DA851;
  --white:     #ffffff;
  --gray:      #c0bdb5;
  --gray-text: #9aa0aa;
  --border:    rgba(255, 255, 255, 0.09);
  --font:      'Secular One', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  direction: rtl;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  padding-top: 100px; /* compensate for fixed nav */
}

a { text-decoration: none; color: inherit; transition: all 0.25s ease; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===========================
   CONTAINER
=========================== */
.w-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===========================
   HELPERS
=========================== */
.w-orange  { color: var(--orange); font-weight: 700; }
.w-red     { color: var(--red);    font-weight: 700; }
.w-centered { text-align: center; }

.w-section-big {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  margin-bottom: 3rem;
  line-height: 1.05;
}

/* ===========================
   BUTTONS
=========================== */
.w-btn-green {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--green-wa);
  color: var(--white);
  padding: 0.95rem 2.8rem;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.w-btn-green:hover {
  background-color: #189845;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.w-btn-full {
  width: 100%;
  justify-content: center;
}

.w-btn-xl {
  font-size: 1.3rem;
  padding: 1.1rem 3.5rem;
}

.w-btn-outline {
  display: inline-block;
  background-color: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.25s ease;
}
.w-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* Outline button inside white cards — needs dark text */
.w-tier-card .w-btn-outline {
  color: #2a2a2a;
  border-color: rgba(0, 0, 0, 0.22);
}

.w-tier-card .w-btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
}

/* ===========================
   SHARED NAV
=========================== */
.top-social-bar {
  display: none;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.social-btn:hover { transform: translateY(-2px); opacity: 0.85; }
.social-btn.spotify   { background-color: #1DB954; color: #fff; }
.social-btn.whatsapp  { background-color: #25D366; color: #fff; }
.social-btn.youtube   { background-color: #FF0000; color: #fff; }
.social-btn.facebook  { background-color: #1877F2; color: #fff; }
.social-btn.instagram { background-color: #E1306C; color: #fff; }
.social-btn.linkedin  { background-color: #0A66C2; color: #fff; }

.header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
  background-color: rgba(10, 22, 40, 0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links li {
  display: flex;
  align-items: center;
}

.nav-links li:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-links a {
  display: block;
  padding: 0.4rem 1.1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.nav-cta {
  background-color: #15703a !important;
  color: var(--white) !important;
  border: 1px solid #15703a;
  padding: 0.4rem 1.4rem;
  border-radius: 4px;
  margin-right: 1.1rem;
  white-space: nowrap;
}

.nav-cta:hover {
  background-color: #189845 !important;
  border-color: #189845 !important;
  color: var(--white) !important;
}

.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Dropdown --- */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a .nav-chevron {
  font-size: 0.55rem;
  margin-right: 0.3rem;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover > a .nav-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 240px;
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  background-color: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  border-left: none !important;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--white);
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: rgba(240, 90, 41, 0.15);
  color: var(--orange);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-right: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===========================
   HERO
=========================== */
.w-hero {
  background-color: var(--black);
  min-height: calc(100vh - 100px);
  overflow: hidden;
}

.w-hero-inner {
  display: flex;
  min-height: calc(100vh - 100px);
}

.w-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 11vh 3rem 80px;
  position: relative;
  z-index: 1;
}

.w-hero-photo {
  flex: 0 0 48%;
  position: relative;
  overflow: hidden;
}
.w-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.w-hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, var(--black) 100%);
}

.w-hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 340px;
}
.w-hero-line {
  flex: 1;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}
.w-hero-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.w-hero-pre {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.1rem;
}

.w-hero-title {
  font-size: clamp(3.5rem, 8.5vw, 7rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.w-hero-subtitle {
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

/* ===========================
   INTRO (עם סרטון)
=========================== */
.w-intro {
  padding: 100px 0;
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.w-intro-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.5rem;
}

.w-intro-text {
  width: 100%;
  max-width: 820px;
}

.w-intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0;
}

.w-intro-sub {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  border-right: 3px solid var(--orange);
  padding-right: 1rem;
}

.w-intro-video {
  width: 100%;
  max-width: 900px;
}

.w-intro-video-player {
  width: 100%;
  display: block;
  border-radius: 8px;
  background-color: #000;
  outline: none;
}

/* ===========================
   BENEFITS
=========================== */
.w-benefits {
  padding: 100px 0;
  background-color: var(--black);
  border-bottom: 1px solid var(--border);
}

.w-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.w-benefit-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--black);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.w-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(240, 90, 41, 0.2);
}

.w-benefit-icon-wrap {
  font-size: 4.5rem;
  margin-bottom: 1.25rem;
  color: #111;
}

.w-benefit-card h3 {
  font-size: 1.9rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: #000000;
}

.w-benefit-card p {
  font-size: 1.1rem;
  color: #111111;
  margin: 0;
}

/* ===========================
   TRAINING TIERS
=========================== */
.w-tiers {
  padding: 100px 0;
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.w-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 22px; /* space for the floating ribbon above featured card */
}

.w-tier-card {
  background-color: #ffffff;
  border: none;
  border-radius: 12px;
  overflow: visible; /* allows ribbon to float above the card */
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.w-tier-featured {
  border: 3px solid #1DA851;
  box-shadow: 0 16px 48px rgba(29, 168, 81, 0.25);
}

.w-tier-badge {
  position: absolute;
  top: -18px;           /* floats above the card top edge */
  right: 50%;
  transform: translateX(50%);
  background-color: #1DA851;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 1.3rem;
  border-radius: 20px;  /* full pill shape — exactly like the screenshot */
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.45);
}

.w-tier-top {
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: none;
  background-color: #8B1A1A;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

/* Bright yellow — הרצאה (first/right) */
.w-tiers-grid .w-tier-card:first-child .w-tier-top {
  background-color: #F5C000;
}

.w-tier-top-featured {
  background-color: var(--orange);
  border-color: transparent;
}

.w-tier-name {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.25rem;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.w-tier-subtitle {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0.5rem 0 0.75rem;
  line-height: 1.35;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.w-tier-duration {
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}


.w-tier-list {
  list-style: none;
  padding: 1.5rem 1.75rem;
  flex: 1;
}

.w-tier-list li {
  color: #2a2a2a;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}
.w-tier-list li:last-child { border-bottom: none; }

.w-tier-card > a {
  margin: 0 1.75rem 1.75rem;
  text-align: center;
}

/* ===========================
   AUDIENCE
=========================== */
.w-audience {
  padding: 100px 0;
  background-color: var(--black);
  border-bottom: 1px solid var(--border);
}

.w-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 3rem;
}

.w-audience-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem 1rem;
  border-bottom: 1px solid var(--border);
}

.w-check {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 0.05rem;
  line-height: 1.2;
}

.w-audience-item h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 0.35rem;
}

.w-audience-item p {
  font-size: 1rem;
  color: var(--white);
  margin: 0;
  line-height: 1.5;
}

.w-audience-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ===========================
   BONUS
=========================== */
.w-bonus {
  padding: 100px 0;
  background-color: var(--dark);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.w-bonus-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  max-width: 750px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.w-bonus-icon {
  font-size: 7rem;
  color: var(--green-wa);
  display: block;
}

/* ===========================
   ABOUT
=========================== */
.w-about {
  padding: 100px 0;
  background-color: var(--black);
  border-bottom: 1px solid var(--border);
}

.w-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.w-about-photo {
  order: 2;
}
.w-about-text {
  order: 1;
}

.w-about-photo img {
  width: 100%;
  border-radius: 6px;
  filter: grayscale(20%) contrast(1.05);
}

.w-about-p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.8;
}

.w-about-closing {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.5;
  margin-top: 1.5rem;
  margin-bottom: 0;
}

.w-about-closing .w-red {
  font-size: 1.5rem;
  display: inline-block;
}

/* ===========================
   PROOF
=========================== */
.w-proof {
  padding: 100px 0;
  background-color: var(--dark);
  border-bottom: 1px solid var(--border);
}

.w-podcast-block {
  background-color: var(--black);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

.w-podcast-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.w-podcast-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 50%;
}

.w-podcast-info h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 0.25rem;
}

.w-podcast-avail {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.w-platform-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.w-platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--white);
  transition: all 0.25s ease;
}
.w-platform-pill:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.w-proof-text-big {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.w-podcast-block .w-podcast-header {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.w-social-row {
  display: flex;
  gap: 0.6rem;
}

.w-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 1.2rem;
  color: var(--white);
  transition: all 0.25s ease;
}
.w-social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.w-s-facebook  { background-color: #1877F2; }
.w-s-instagram { background-color: #E1306C; }
.w-s-linkedin  { background-color: #0A66C2; }
.w-s-spotify   { background-color: #1DB954; }
.w-s-youtube   { background-color: #FF0000; }
.w-s-apple     { background-color: #555555; }

.w-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.w-proof-collage {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.w-proof-collage img {
  width: 100%;
  display: block;
}


/* ===========================
   CTA
=========================== */
.w-cta {
  padding: 130px 0;
  background-color: var(--black);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.w-cta-title {
  font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.w-cta-sub {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.w-quote {
  margin-top: 3.5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 3.5rem 0;
  background-color: var(--dark);
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.72rem;
  color: #9aa0aa;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: #9aa0aa;
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal-links a {
  font-size: 0.7rem;
  color: #8a8f99;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--orange);
}

.footer-sep {
  color: #8a8f99;
  font-size: 0.7rem;
}

/* ===========================
   MOBILE
=========================== */
@media (max-width: 900px) {
  .w-tiers-grid {
    grid-template-columns: 1fr;
  }
  .w-tier-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  body { padding-top: 100px; }
  .social-btn { width: 28px; height: 28px; font-size: 0.85rem; }
  .nav-socials { display: none; }
  .social-icons { gap: 0.4rem; }
  .nav { justify-content: center; gap: 0; position: relative; }
  .hamburger { display: flex; position: absolute; right: 1.5rem; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    background-color: #0a1628;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 0.9rem; }
  .nav-links > li { text-align: center; display: block; }
  .nav-links > li > a { display: block; text-align: center; }

  .nav-dropdown { position: static; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0;
    min-width: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    text-align: center;
  }
  .nav-dropdown.open .dropdown-menu {
    max-height: 500px;
  }
  .dropdown-menu a {
    padding: 0.4rem 1.5rem;
    font-size: 0.8rem;
    color: var(--gray-text, #9aa0aa);
    display: block;
    text-align: center;
  }

  .w-hero-inner {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .w-hero-photo {
    flex: 0 0 auto;
    height: 55vw;
    min-height: 220px;
  }
  .w-hero-photo::after {
    background: linear-gradient(to top, var(--black) 0%, transparent 60%);
  }
  .w-hero-text {
    padding: 2.5rem 1.5rem 3rem;
  }

  .w-about-grid,
  .w-proof-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .w-about-photo { order: 1; }
  .w-about-text  { order: 2; }

  .w-benefits-grid,
  .w-tiers-grid,
  .w-audience-grid {
    grid-template-columns: 1fr;
  }

  .w-tier-featured { transform: none; }

  .w-proof-photos {
    grid-template-columns: 1fr 1fr;
  }
  .w-podcast-header {
    flex-direction: column;
    text-align: center;
  }

  .w-intro,
  .w-benefits,
  .w-tiers,
  .w-audience,
  .w-bonus,
  .w-about,
  .w-proof,
  .w-cta {
    padding: 70px 0;
  }

  .w-container { padding: 0 1.25rem; }
  .w-section-big { margin-bottom: 2rem; }
}
