/*
Theme Name: Shapo Media 2025
Theme URI: https://shapo.media
Author: Inbar
Author URI: https://shapo.media
Description: Hebrew RTL digital marketing agency theme for Shapo.Media
Version: 1.0.0
Requires at least: 5.6
Tested up to: 6.5
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shapo-media
*/

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #1a2c5b;
  --navy2:   #0d1b4a;
  --accent:  #f05a7e;
  --accent2: #e04070;
  --accentlt:#fde8ee;
  --white:   #ffffff;
  --bg:      #f7f9ff;
  --muted:   #8898bb;
  --border:  rgba(26,44,91,0.09);
  --shadow:  0 10px 50px rgba(26,44,91,0.11);
  --shadowsm:0 2px 20px rgba(26,44,91,0.07);
  --r: 18px;
  --font: 'Heebo', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
  direction: rtl;
}

/* ── NAV ── */
nav.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 72px; height: 70px;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-logo {
  font-size: 21px; font-weight: 900; color: var(--navy2);
  text-decoration: none; display: flex; align-items: center; gap: 1px; direction: ltr;
}
.nav-logo .dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; display: inline-block; margin: 0 1px 3px;
}
.nav-links {
  display: flex; gap: 32px; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 15px; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--navy2); color: var(--white);
  font-weight: 700; font-size: 14px;
  padding: 11px 26px; border-radius: 50px;
  text-decoration: none; cursor: pointer; border: none;
  font-family: var(--font);
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 18px rgba(13,27,74,0.22);
}
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed; bottom: 28px; left: 28px; z-index: 400;
  background: var(--accent); color: var(--white);
  font-family: var(--font); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  box-shadow: 0 8px 28px rgba(240,90,126,0.45);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  opacity: 0; pointer-events: none;
}
.float-cta.visible { opacity: 1; pointer-events: all; }
.float-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(240,90,126,0.52); }
@media (max-width: 768px) {
  .float-cta { bottom: 16px; left: 16px; font-size: 14px; padding: 12px 22px; }
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(13,27,74,0.6); backdrop-filter: blur(6px);
  z-index: 500; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: 24px; padding: 48px 52px;
  max-width: 520px; width: 90%; position: relative;
  box-shadow: 0 24px 80px rgba(13,27,74,0.22);
  transform: translateY(20px); transition: transform 0.3s ease;
}
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 18px; left: 18px;
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg);
  border: none; cursor: pointer; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--accentlt); color: var(--accent); }
.modal-title {
  font-size: 26px; font-weight: 900; color: var(--navy2);
  margin-bottom: 6px; letter-spacing: -0.8px;
}
.modal-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 28px; }
.modal-form { display: flex; flex-direction: column; gap: 12px; }
.modal-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* ── HERO ── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(150deg, #ffffff 0%, #f5f7ff 50%, #fff0f4 100%);
  padding-top: 70px;
}

/* animated decorative dots */
.deco { position: absolute; pointer-events: none; z-index: 1; }
@keyframes floatA { 0%,100%{transform:translateY(0) rotate(30deg)} 50%{transform:translateY(-10px) rotate(30deg)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(-25deg)} 50%{transform:translateY(-8px) rotate(-25deg)} }
@keyframes floatC { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes pulse  { 0%,100%{transform:scale(1)} 50%{transform:scale(1.3)} }
.dl1 { width:14px;height:14px;background:#ffd166;opacity:.85;top:18%;right:8%;border-radius:0 70% 0 70%;animation:floatA 3.2s ease-in-out infinite; }
.dl2 { width:10px;height:10px;background:var(--accent);opacity:.7;top:30%;right:4%;border-radius:50%;animation:pulse 2.8s ease-in-out infinite; }
.dl3 { width:15px;height:15px;background:#00b4d8;opacity:.75;top:58%;right:6%;border-radius:0 70% 0 70%;animation:floatB 3.6s ease-in-out infinite 0.4s; }
.dl4 { width:11px;height:11px;background:#06d6a0;opacity:.65;top:70%;right:3%;border-radius:50%;animation:pulse 3s ease-in-out infinite 0.8s; }
.dl5 { width:20px;height:20px;border:2.5px solid rgba(0,180,216,.4);border-radius:50%;top:24%;right:14%;animation:pulse 4s ease-in-out infinite 0.2s; }
.dl6 { width:9px;height:9px;background:var(--accent);opacity:.55;top:80%;right:10%;border-radius:50%;animation:floatC 2.6s ease-in-out infinite 1s; }
.dl7 { width:13px;height:13px;background:#ffd166;opacity:.65;top:10%;right:18%;border-radius:0 70% 0 70%;animation:floatA 4.2s ease-in-out infinite 0.6s; }
.dl8 { width:12px;height:12px;background:#00b4d8;opacity:.5;top:85%;right:12%;border-radius:0 70% 0 70%;animation:floatB 3s ease-in-out infinite 0.3s; }

.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto; padding: 40px 72px 60px;
  align-items: center; gap: 0; width: 100%; position: relative; z-index: 2;
}
.hero-pretag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.hero-pretag::before { content: '○'; font-size: 10px; }
h1.hero-h1 {
  font-size: clamp(38px, 4.8vw, 66px); font-weight: 900; line-height: 1.1;
  letter-spacing: -2px; color: var(--navy2); margin-bottom: 20px; text-wrap: balance;
}
h1.hero-h1 em { color: var(--accent); font-style: normal; }
.hero-sub {
  font-size: 16.5px; color: var(--muted); line-height: 1.8;
  max-width: 400px; margin-bottom: 36px;
}
.btn-pill {
  display: inline-block; background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 15px; padding: 15px 40px; border-radius: 50px;
  text-decoration: none; box-shadow: 0 8px 28px rgba(240,90,126,0.4);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  font-family: var(--font); cursor: pointer; border: none;
}
.btn-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(240,90,126,0.48);
  background: var(--accent2);
}
.hero-illus {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 500px; transition: transform 0.1s ease-out;
}
.hero-illus svg { width: 100%; max-width: 520px; height: auto; }

/* ── ABOUT ── */
#about-section { background: var(--bg); padding: 100px 0; }
.about-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 72px;
  display: grid; grid-template-columns: 340px 1fr; gap: 60px; align-items: center;
}
.about-lottie { display: flex; align-items: center; justify-content: center; }
.about-lottie lottie-player { width: 100%; max-width: 320px; }
.sec-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 16px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.sec-tag::before { content: '○'; font-size: 10px; }
.sec-h2 {
  font-size: clamp(26px, 3vw, 44px); font-weight: 900; line-height: 1.12;
  letter-spacing: -1.5px; color: var(--navy2); text-wrap: balance;
}
.about-paras { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.about-paras p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.about-paras strong { color: var(--navy); font-weight: 700; }
.about-paras .highlight { font-size: 16px; font-weight: 700; color: var(--navy2); }

/* ── SERVICES ── */
#services-section {
  background: var(--white); padding: 100px 0;
  position: relative; overflow: hidden;
}
.deco-s { position: absolute; pointer-events: none; }
.ds1 { width:16px;height:16px;background:#ffd166;opacity:.8;top:10%;right:10%;transform:rotate(30deg);border-radius:0 70% 0 70%;animation:floatA 3s ease-in-out infinite; }
.ds2 { width:12px;height:12px;background:#00b4d8;opacity:.7;top:10%;left:8%;transform:rotate(-20deg);border-radius:0 70% 0 70%;animation:floatB 3.4s ease-in-out infinite 0.5s; }
.ds3 { width:14px;height:14px;background:var(--accent);opacity:.6;bottom:12%;right:7%;border-radius:50%;animation:pulse 2.8s ease-in-out infinite; }
.ds4 { width:10px;height:10px;background:#06d6a0;opacity:.65;bottom:15%;left:9%;border-radius:50%;animation:pulse 3.2s ease-in-out infinite 0.7s; }
.services-inner { max-width: 1100px; margin: 0 auto; padding: 0 72px; }
.sec-center { text-align: center; margin-bottom: 60px; }
.sec-center .sec-tag { justify-content: center; }
.sec-center .sec-sub {
  max-width: 460px; margin: 12px auto 0;
  font-size: 16px; color: var(--muted); line-height: 1.7;
}
/* staggered 3-col grid */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px 32px; row-gap: 40px; margin-top: 30px; }
.svc-card {
  background: var(--white); border-radius: var(--r); padding: 36px 32px;
  box-shadow: var(--shadowsm); border: 1.5px solid rgba(26,44,91,0.07);
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card.center { margin-top: -28px; padding: 44px 36px; }
.svc-card-header { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.svc-logo-box {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.svc-title { font-size: 18px; font-weight: 800; color: var(--navy2); }
.svc-desc { font-size: 16px; color: var(--muted); line-height: 1.78; }

/* ── PROCESS HORIZONTAL ── */
#process-section {
  background: var(--bg); padding: 80px 0 60px;
  position: relative; overflow: hidden;
}
.road-header { text-align: center; margin-bottom: 10px; }
.road-header .sec-tag { justify-content: center; }
.road-sub {
  max-width: 440px; margin: 10px auto 48px;
  font-size: 16px; color: var(--muted); line-height: 1.7; text-align: center;
}
.hsteps-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 72px;
  display: flex; align-items: flex-start; gap: 0; direction: rtl;
}
.hstep {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hstep.visible { opacity: 1; transform: translateY(0); }
.hstep-connector { display: flex; align-items: center; width: 100%; }
.hstep-line-a, .hstep-line-b {
  flex: 1; height: 3px; position: relative;
  background: rgba(26,44,91,0.10);
}
.hstep-line-a::after, .hstep-line-b::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(to left, var(--accent) 0, var(--accent) 8px, transparent 8px, transparent 20px);
  opacity: 0.3;
}
.hstep:first-child .hstep-line-a { visibility: hidden; }
.hstep:last-child  .hstep-line-b { visibility: hidden; }
.hstep-circle {
  width: 96px; height: 96px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); box-shadow: 0 4px 24px rgba(26,44,91,0.13);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.hstep-circle-inner {
  width: 78px; height: 78px; border-radius: 50%; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.hstep-num { font-size: 32px; font-weight: 900; color: white; font-family: var(--font); line-height: 1; }
.hstep-body { padding: 18px 12px 0; text-align: center; width: 100%; }
.hstep-title { font-size: 16px; font-weight: 900; color: var(--navy2); margin-bottom: 8px; }
.hstep-desc { font-size: 16px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
#contact-section { background: var(--white); padding: 100px 0; }
.contact-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 72px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.contact-form-side .sec-sub {
  font-size: 16px; color: var(--muted); line-height: 1.7; margin-top: 12px;
}
.contact-form { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.form-input {
  width: 100%; padding: 13px 18px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 10px;
  color: var(--navy); font-family: var(--font); font-size: 14.5px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input::placeholder { color: var(--muted); }
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(240,90,126,0.08);
}
textarea.form-input { resize: vertical; min-height: 110px; }
.btn-submit {
  background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 15px;
  padding: 14px 40px; border-radius: 50px; border: none;
  cursor: pointer; font-family: var(--font); align-self: flex-start;
  box-shadow: 0 6px 22px rgba(240,90,126,0.35);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(240,90,126,0.42);
  background: var(--accent2);
}
.contact-illus-col {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.contact-illus-col svg { width: 100%; max-width: 440px; height: auto; }
.cc1{position:absolute;width:13px;height:13px;background:#00b4d8;opacity:.7;top:8%;right:6%;transform:rotate(35deg);border-radius:0 70% 0 70%;animation:floatA 3s ease-in-out infinite;}
.cc2{position:absolute;width:10px;height:10px;background:#ffd166;opacity:.8;bottom:12%;left:8%;border-radius:50%;animation:pulse 2.8s ease-in-out infinite;}
.cc3{position:absolute;width:18px;height:18px;border:2px solid rgba(240,90,126,.4);border-radius:50%;top:22%;left:4%;animation:pulse 4s ease-in-out infinite;}
.cc4{position:absolute;width:11px;height:11px;background:var(--accent);opacity:.4;bottom:25%;right:4%;transform:rotate(-20deg);border-radius:0 70% 0 70%;animation:floatB 3.4s ease-in-out infinite 0.5s;}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy2); color: rgba(255,255,255,0.6); padding: 48px 72px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-size: 20px; font-weight: 900; color: var(--white);
  display: flex; align-items: center; direction: ltr;
}
.footer-logo .dot {
  width: 8px; height: 8px; background: var(--accent);
  border-radius: 50%; display: inline-block; margin: 0 2px 2px;
}
.footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.3); }

/* ── ABOUT PAGE ── */
.page-hero {
  padding: 140px 72px 80px;
  background: linear-gradient(150deg, #ffffff 0%, #f5f7ff 55%, #fff0f4 100%);
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 80% 60%, rgba(240,90,126,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 500px 300px at 20% 40%, rgba(0,180,216,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.page-hero-tag::before { content: '○'; font-size: 10px; }
.page-hero h1 {
  font-size: clamp(40px, 5vw, 72px); font-weight: 900; line-height: 1.08;
  letter-spacing: -2.5px; color: var(--navy2); text-wrap: balance;
  margin-bottom: 20px; position: relative;
}
.page-hero h1 em { color: var(--accent); font-style: normal; }
.page-hero-sub {
  font-size: 17px; color: var(--muted); line-height: 1.8;
  max-width: 540px; margin: 0 auto; position: relative;
}
.about-page-body { max-width: 900px; margin: 0 auto; padding: 90px 40px 120px; }
.about-intro-card {
  background: var(--bg); border-radius: 28px; padding: 56px 64px;
  margin-bottom: 64px;
  display: grid; grid-template-columns: 200px 1fr; gap: 52px; align-items: center;
  position: relative; overflow: hidden;
}
.about-intro-card::after {
  content: ''; position: absolute; top: -40px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(240,90,126,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.about-avatar {
  width: 180px; height: 180px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accentlt) 0%, #e8eeff 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 8px 40px rgba(240,90,126,0.18); position: relative;
}
.about-avatar-initials { font-size: 54px; font-weight: 900; color: var(--accent); letter-spacing: -2px; line-height: 1; }
.about-avatar-ring {
  position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(240,90,126,0.3);
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.values-section { margin-bottom: 64px; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.value-card {
  background: var(--white); border-radius: 20px; padding: 28px 24px;
  box-shadow: var(--shadowsm); border: 1.5px solid rgba(26,44,91,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
  opacity: 0; transform: translateY(16px);
}
.value-card.visible { opacity: 1; transform: translateY(0); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 32px; margin-bottom: 14px; }
.value-title { font-size: 17px; font-weight: 800; color: var(--navy2); margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }
.story-section {
  background: var(--navy2); border-radius: 28px; padding: 56px 64px; margin-bottom: 64px;
  position: relative; overflow: hidden;
}
.story-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(240,90,126,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.story-section .sec-tag { color: var(--accent); }
.story-section .sec-h2 { color: var(--white); }
.story-section p { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.9; margin-top: 20px; }
.about-cta-strip {
  background: var(--accentlt); border-radius: 24px; padding: 48px 56px;
  text-align: center;
}
.about-cta-strip h3 { font-size: 28px; font-weight: 900; color: var(--navy2); margin-bottom: 10px; }
.about-cta-strip p { font-size: 15.5px; color: var(--muted); margin-bottom: 28px; }

/* ── MOBILE ── */
@media (max-width: 1024px) {
  .svc-card.center { margin-top: 0; }
}
@media (max-width: 768px) {
  nav.site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; padding: 40px 20px 60px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-illus { height: 220px; display: flex; justify-content: center; align-items: center; }
  .hero-illus svg { max-width: 220px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr !important; }
  .about-lottie { display: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px; }
  .services-inner { padding: 0 20px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card.center { margin-top: 0; padding: 36px 32px; }
  .deco-s { display: none; }
  .svc-services-lottie { display: none !important; }
  #about-section, #services-section, #contact-section { padding: 56px 0; }
  #process-section { padding: 48px 0 40px; }
  .site-footer { padding: 32px 20px; }
  .modal-box { padding: 32px 24px; }
  .modal-row { grid-template-columns: 1fr; }
  .hsteps-wrap { flex-direction: column; align-items: center; padding: 0 20px; gap: 0; }
  .hstep { flex-direction: row; align-items: flex-start; gap: 16px; width: 100%; }
  .hstep-connector { flex-direction: column; width: auto; }
  .hstep-line-a, .hstep-line-b { width: 3px; height: 32px; flex: none; }
  .hstep-circle { width: 72px; height: 72px; }
  .hstep-circle-inner { width: 58px; height: 58px; }
  .hstep-body { padding: 0; text-align: right; padding-top: 10px; }
  .about-intro-card { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .values-grid { grid-template-columns: 1fr; }
  .story-section { padding: 40px 28px; }
  .about-cta-strip { padding: 40px 28px; }
  .page-hero { padding: 120px 20px 60px; }
  .about-page-body { padding: 60px 20px 80px; }
}
