/* =============================================
   NO GRIND GOLF — Main Stylesheet v2
   ============================================= */

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

:root {
  --black:       #0F0F0F;
  --charcoal:    #2C2C2C;
  --lime:        #A3E635;
  --white:       #FFFFFF;
  --gray-light:  #F8F8F8;
  --off-white:   #FAFAFA;
  --lime-dark:   #86c41c;
  --font-head:   'Archivo', sans-serif;
  --font-sub:    'Archivo', sans-serif;
  --font-body:   'Roboto', sans-serif;
  --max-width:   1140px;
  --radius:      4px;
  --transition:  0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-transform: uppercase;
}
h1 { font-size: clamp(42px, 8vw, 80px); }
h2 { font-size: clamp(32px, 5vw, 54px); }
h3 { font-size: clamp(22px, 3vw, 32px); }
p { font-size: clamp(16px, 1.8vw, 18px); color: var(--charcoal); }

.subhead {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 14px);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }
section.alt-bg { background: var(--gray-light); }
section.off-white { background: var(--off-white); }

.btn {
  display: inline-block;
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 18px 36px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  min-height: 54px;
}
.btn-primary { background: var(--lime); color: var(--black); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-dark); border-color: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(163,230,53,0.35); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--black); }

.lime-divider { width: 60px; height: 4px; background: var(--lime); margin: 20px 0 32px 0; }
.lime-divider.centered { margin: 20px auto 32px auto; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 48px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-sub); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--lime); transform: scaleX(0); transition: transform var(--transition);
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links .nav-cta { background: var(--lime); color: var(--black); padding: 10px 20px; border-radius: var(--radius); }
.nav-links .nav-cta:hover { background: var(--lime-dark); }
.nav-links .nav-cta::after { display: none; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--black); transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile { display: none; flex-direction: column; background: var(--white); border-top: 1px solid rgba(0,0,0,0.07); padding: 20px 24px 28px; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-family: var(--font-sub); font-weight: 700; font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); transition: color var(--transition); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile .nav-cta-mobile { margin-top: 12px; background: var(--lime); color: var(--black); padding: 14px 24px; border-radius: var(--radius); text-align: center; border: none; }

/* HERO */
.hero { min-height: 100vh; background: var(--black); display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 72px; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/Golfer_Header_background.jpg'); background-size: cover; background-position: center 30%; opacity: 0.32; }
.hero-content { position: relative; z-index: 2; max-width: 780px; padding: 80px 24px; }
.hero-logo { width: clamp(180px, 28vw, 240px); margin-bottom: 40px; }
.hero-eyebrow { font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; }
.hero h1 { color: var(--white); margin-bottom: 24px; font-size: clamp(22px, 3.2vw, 38px); line-height: 1.15; }
.hero-sub { font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,0.78); margin-bottom: 16px; font-weight: 400; max-width: 560px; }
.hero-tagline { font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); margin-bottom: 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-brand-stamp {
  font-family: var(--font-sub);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 20px 0 32px 0;
  border-left: 3px solid var(--lime);
  padding-left: 12px;
}
.hero-scroll { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-family: var(--font-sub); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; animation: scrollBounce 2s infinite; }
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* TRUST BAR */
.trust-bar { background: var(--black); border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.trust-item span.accent { color: var(--lime); }

/* VISION */
.vision { background: var(--white); text-align: center; }
.vision-inner { max-width: 760px; margin: 0 auto; }
.vision p { font-size: clamp(16px, 2vw, 19px); line-height: 1.8; }

/* PILLARS */
.pillars { background: var(--gray-light); }
.pillars-header { text-align: center; margin-bottom: 56px; }
.pillars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pillar-card { background: var(--white); padding: 32px 28px; border-radius: var(--radius); border-top: 3px solid var(--lime); transition: transform var(--transition), box-shadow var(--transition); }
.pillar-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.pillar-number { font-family: var(--font-head); font-size: 48px; color: var(--lime); line-height: 1; margin-bottom: 12px; }
.pillar-card h3 { font-size: 20px; margin-bottom: 10px; }
.pillar-card p { font-size: 15px; line-height: 1.65; }

/* WHO IT'S FOR */
.who { background: var(--white); }
.who-header { text-align: center; margin-bottom: 56px; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.who-col h3 { font-size: 22px; margin-bottom: 24px; }
.who-list li { display: flex; align-items: flex-start; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 16px; line-height: 1.5; }
.who-list li:last-child { border-bottom: none; }
.who-check { width: 22px; height: 22px; border-radius: 50%; background: var(--lime); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.who-check svg { width: 12px; height: 12px; }
.who-x { width: 22px; height: 22px; border-radius: 50%; background: var(--white); border: 1.5px solid #d4d4d4; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.who-x svg { width: 12px; height: 12px; }

/* CTA BAND */
.cta-band { background: var(--black); text-align: center; padding: 80px 24px; }
.cta-band h2 { color: var(--white); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,0.7); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ABOUT */
.about-hero { background: var(--gray-light); padding: 140px 0 80px; }
.about-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-photo { aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* OFFER HERO */
.offer-hero { background: var(--black); padding: 140px 0 80px; text-align: center; }
.offer-hero h1, .offer-hero p { color: var(--white); }
.offer-hero p { max-width: 600px; margin: 0 auto 36px; opacity: 0.8; }

/* PRICING TABLE */
.pricing { background: var(--gray-light); padding: 80px 0; }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pricing-table {
  width: 100%; border-collapse: collapse; background: var(--white);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.pricing-table th {
  background: var(--black); color: var(--white);
  font-family: var(--font-sub); font-weight: 700; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 18px 20px; text-align: left; border-right: 1px solid rgba(255,255,255,0.08);
}
.pricing-table th:last-child { border-right: none; }
.pricing-table th.lime-col { color: var(--lime); }
.pricing-table td {
  padding: 20px; font-size: 15px; line-height: 1.6;
  border-bottom: 1px solid #eee; border-right: 1px solid #eee;
  vertical-align: top;
}
.pricing-table td:last-child { border-right: none; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr.featured-row td { background: #fafff0; }
.pricing-table tr.featured-row td:first-child { border-left: 4px solid var(--lime); }
.tier-name { font-family: var(--font-sub); font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 4px; }
.tier-badge { display: inline-block; background: var(--lime); color: var(--black); font-family: var(--font-sub); font-weight: 700; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; margin-top: 6px; }
.price-main { font-family: var(--font-head); font-size: 32px; color: var(--black); line-height: 1.1; }
.price-alt { font-size: 13px; color: #888; margin-top: 4px; }
.include-list { padding-left: 0; }
.include-list li { font-size: 14px; padding: 3px 0; list-style: none; padding-left: 16px; position: relative; }
.include-list li::before { content: '•'; position: absolute; left: 0; color: var(--lime); font-weight: 700; }

.bonuses-box {
  background: var(--black); color: var(--white); border-radius: var(--radius);
  padding: 36px 40px; margin-top: 40px;
}
.bonuses-box h3 { color: var(--lime); font-size: 22px; margin-bottom: 20px; }
.bonuses-box-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.bonus-item-sm { display: flex; align-items: flex-start; gap: 10px; }
.bonus-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); flex-shrink: 0; margin-top: 8px; }
.bonus-item-sm p { font-size: 14px; color: rgba(255,255,255,0.8); }

/* GUARANTEE */
.guarantee { background: var(--black); padding: 80px 0; }
.guarantee-inner { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; }
.guarantee-badge {
  width: 120px; height: 120px; border-radius: 50%; background: var(--lime);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 11px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--black); text-align: center; line-height: 1.3;
  flex-shrink: 0; border: 4px solid rgba(255,255,255,0.2);
}
.guarantee-badge span { font-size: 28px; line-height: 1; }
.guarantee-content h2 { color: var(--white); margin-bottom: 20px; }
.guarantee-content p { color: rgba(255,255,255,0.8); font-size: 17px; line-height: 1.8; margin-bottom: 16px; }
.guarantee-content p strong { color: var(--lime); }

/* TESTIMONIALS */
.testimonials { background: var(--off-white); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonial-featured {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; display: grid; grid-template-columns: auto 1fr;
  gap: 40px; align-items: start; margin-bottom: 32px;
  border-left: 6px solid var(--lime);
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.testimonial-avatar { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; flex-shrink: 0; border: 3px solid var(--lime); }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-quote { font-size: clamp(16px, 1.8vw, 18px); line-height: 1.8; color: var(--charcoal); margin-bottom: 24px; font-style: italic; }
.testimonial-quote::before { content: '\201C'; font-family: Georgia, serif; font-size: 48px; color: var(--lime); line-height: 0.5; display: block; margin-bottom: 12px; font-style: normal; }
.testimonial-name { font-family: var(--font-sub); font-weight: 700; font-size: 15px; color: var(--black); }
.testimonial-detail { font-size: 14px; color: #888; margin-top: 4px; }
.testimonials-more { background: var(--gray-light); border-radius: var(--radius); padding: 28px 32px; text-align: center; }
.testimonials-more p { font-size: 15px; color: #666; }

/* PLACEHOLDER TESTIMONIAL CARDS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; margin-bottom: 32px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px 28px; border-left: 4px solid var(--lime); }
.testimonial-placeholder { font-family: var(--font-body); font-style: italic; color: #aaa; font-size: 15px; margin-bottom: 20px; min-height: 80px; display: flex; align-items: center; }
.testimonial-author { font-family: var(--font-sub); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); }

/* RESULTS PAGE */
.stats-band { background: var(--black); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 40px; text-align: center; }
.stat-number { font-family: var(--font-head); font-size: 64px; color: var(--lime); line-height: 1; }
.stat-label { font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* APPLY PAGE */
.apply-hero { background: var(--black); padding: 140px 0 80px; text-align: center; }
.apply-hero h1, .apply-hero p { color: var(--white); }
.apply-hero p { max-width: 560px; margin: 20px auto 0; opacity: 0.75; }
.apply-form-section { background: var(--white); padding: 80px 0; }
.apply-form-inner { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 14px 16px; border: 1.5px solid #ddd; border-radius: var(--radius); font-family: var(--font-body); font-size: 16px; color: var(--charcoal); background: var(--white); transition: border-color var(--transition); appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--lime); }
.form-group textarea { resize: vertical; min-height: 120px; }
.calendly-placeholder { background: var(--gray-light); border: 2px dashed #ccc; border-radius: var(--radius); padding: 60px 40px; text-align: center; color: #999; font-family: var(--font-sub); font-size: 14px; }
.apply-steps { background: var(--gray-light); padding: 64px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; max-width: 760px; margin: 0 auto; }
.step-item { padding: 24px 16px; }
.step-num { font-family: var(--font-head); font-size: 52px; color: var(--lime); line-height: 1; margin-bottom: 12px; }
.step-item h4 { font-size: 16px; margin-bottom: 8px; }
.step-item p { font-size: 14px; color: #666; }
.or-divider { text-align: center; margin: 40px 0; }
.or-divider span { font-family: var(--font-sub); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; position: relative; padding: 0 20px; }
.or-divider span::before, .or-divider span::after { content: ''; position: absolute; top: 50%; width: 80px; height: 1px; background: #ddd; }
.or-divider span::before { right: 100%; }
.or-divider span::after { left: 100%; }

/* PAGE HERO */
.page-hero { padding: 140px 0 72px; background: var(--black); text-align: center; }
.page-hero h1 { color: var(--white); }
.page-hero .subhead { color: var(--lime); margin-bottom: 12px; }

/* LEGAL */
.legal-content { max-width: 760px; margin: 0 auto; padding: 100px 24px 80px; }
.legal-content h2 { font-size: 28px; margin: 40px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; margin-bottom: 16px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; font-size: 16px; }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.6); padding: 60px 0 32px; }
.footer-trust { background: rgba(255,255,255,0.04); padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 48px; text-align: center; font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-trust span { color: var(--lime); margin: 0 6px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 44px; margin-bottom: 16px; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-family: var(--font-sub); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; }
.footer-legal a { color: rgba(255,255,255,0.4); margin-left: 20px; transition: color var(--transition); }
.footer-legal a:hover { color: var(--lime); }

/* WHATSAPP */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 999; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.45); transition: transform var(--transition), box-shadow var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .who-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-photo { max-width: 320px; margin: 0 auto; aspect-ratio: 1/1; }
  .guarantee-inner { grid-template-columns: 1fr; text-align: center; }
  .guarantee-badge { margin: 0 auto; }
  .testimonial-featured { grid-template-columns: 1fr; }
  .testimonial-avatar { margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .pricing-table th, .pricing-table td { padding: 14px 12px; font-size: 13px; }
}
@media (max-width: 600px) {
  section { padding: 60px 0; }
  .hero-content { padding: 60px 24px 80px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal a { margin-left: 0; margin-right: 16px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }
  .bonuses-box { padding: 28px 20px; }
  .testimonial-featured { padding: 28px 20px; }
}
