/* ============================================================
   Sherman Property Experts — shared stylesheet
   Brand: Sherman navy + sky blue (Trust & Authority pattern)
   ============================================================ */
:root {
  --navy: #16233F;
  --navy-2: #1E2F52;
  --navy-3: #0F1A30;
  --blue: #1D8FD6;
  --blue-dark: #1573AE;
  --blue-tint: #E7F3FB;
  --bg: #F4F7FA;
  --white: #FFFFFF;
  --ink: #16233F;
  --muted: #5A6B85;
  --line: #DDE5EF;
  --gold: #F5B301;
  --green: #1E9E5A;
  --radius: 14px;
  --shadow: 0 6px 24px rgba(22, 35, 63, 0.08);
  --shadow-lg: 0 16px 48px rgba(22, 35, 63, 0.14);
  --font-head: "Plus Jakarta Sans", "Inter", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--blue-dark); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; letter-spacing: -0.01em; }

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

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #C7D3E8;
  font-size: 14px;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center;
  min-height: 40px; gap: 16px;
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .loc { display: flex; align-items: center; gap: 6px; }
.topbar svg { width: 15px; height: 15px; vertical-align: -2px; }

/* ---------- Header / nav ---------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand .mark { width: 44px; height: 34px; flex: none; }
.brand .word { line-height: 1.05; border-left: 2px solid var(--blue); padding-left: 12px; }
.brand .word b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 19px; letter-spacing: 0.06em; color: var(--navy);
}
.brand .word span {
  display: block; font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--blue-dark); text-transform: uppercase;
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 9px 14px; border-radius: 8px; color: var(--ink);
  font-weight: 600; font-size: 15px; transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav a:hover { background: var(--blue-tint); color: var(--blue-dark); }
.nav a.active { background: var(--blue-tint); color: var(--blue-dark); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 15.5px;
  padding: 13px 26px; border-radius: 10px; border: 0; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-lg { padding: 16px 34px; font-size: 17px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 26px; height: 26px; stroke: var(--navy); }
.header-cta { flex: none; white-space: nowrap; }
@media (max-width: 1220px) {
  .nav { gap: 2px; }
  .nav a { padding: 8px 10px; font-size: 14px; }
  .header-cta { padding: 11px 18px; font-size: 14.5px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1000px 500px at 85% -10%, rgba(29,143,214,0.25), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff; padding: 72px 0 88px;
}
.hero .container { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(29,143,214,0.16); border: 1px solid rgba(29,143,214,0.4);
  color: #8FCBEF; font-size: 13.5px; font-weight: 700; letter-spacing: 0.04em;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(36px, 4.6vw, 54px); font-weight: 800; margin-bottom: 22px; }
.hero h1 .accent { color: var(--blue); }
.hero .lede { font-size: 18px; color: #C7D3E8; max-width: 54ch; margin-bottom: 30px; }

/* Benefit chips — "make these stand out more" */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(29,143,214,0.55);
  border-radius: 10px; padding: 11px 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 15px; color: #fff;
}
.chip svg { width: 19px; height: 19px; flex: none; }

/* Lead form card */
.lead-card {
  background: var(--white); color: var(--ink);
  border-radius: 18px; box-shadow: var(--shadow-lg); padding: 30px 28px;
}
.lead-card .social-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; font-size: 13.5px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; font-size: 15px; }
.live-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: #E8F7EE; color: #157A43; font-size: 12.5px; font-weight: 700;
  padding: 5px 12px; border-radius: 999px; margin: 8px 0 14px;
}
.live-pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.lead-card h2 { font-size: 24px; margin-bottom: 8px; }
.lead-card .sub { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.field input {
  width: 100%; padding: 13px 14px; font-size: 16px; font-family: var(--font-body);
  border: 1.5px solid var(--line); border-radius: 10px; transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,143,214,0.18); }
.form-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.form-error { text-align: center; font-size: 14px; color: #B42318; background: #FEF3F2; border: 1px solid #FECDCA; border-radius: 8px; padding: 10px 14px; margin-top: 14px; }
.form-error a { color: #B42318; font-weight: 700; }
.form-note svg { width: 14px; height: 14px; }
.form-success { display: none; text-align: center; padding: 36px 8px; }
.form-success svg { width: 52px; height: 52px; margin: 0 auto 14px; }
.form-success h3 { font-size: 21px; margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 15px; }

/* ---------- Ticker ---------- */
.ticker { background: var(--blue); color: #fff; overflow: hidden; padding: 13px 0; }
.ticker-track { display: flex; gap: 44px; white-space: nowrap; animation: scroll 36s linear infinite; width: max-content; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker span { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 700; font-size: 14.5px; }
.ticker svg { width: 16px; height: 16px; }
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; flex-wrap: wrap; white-space: normal; width: auto; justify-content: center; }
  .live-pill .dot { animation: none; }
}

/* ---------- Stats band ---------- */
.stats-band { background: var(--navy); color: #fff; }
.stats-band .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 42px 16px; border-right: 1px solid rgba(255,255,255,0.08); }
.stat:last-child { border-right: 0; }
.stat b { display: block; font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--blue); font-variant-numeric: tabular-nums; }
.stat span { font-size: 14.5px; color: #C7D3E8; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section.alt { background: var(--bg); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.kicker {
  font-family: var(--font-head); font-size: 13px; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue-dark); margin-bottom: 14px;
}
.section-head h2, .split h2 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* Option cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow); transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card.featured { border: 2px solid var(--blue); position: relative; }
.card .tag {
  position: absolute; top: -13px; left: 28px; background: var(--blue); color: #fff;
  font-size: 12px; font-weight: 800; letter-spacing: 0.06em; padding: 4px 12px; border-radius: 999px;
}
.card .icon {
  width: 52px; height: 52px; border-radius: 12px; background: var(--blue-tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card .icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 21px; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card ul { list-style: none; margin-top: 16px; }
.card ul li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; font-size: 15px; }
.card ul svg { width: 18px; height: 18px; flex: none; margin-top: 3px; }

/* ---------- Split (how it works / about blocks) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .lede { color: var(--muted); font-size: 17px; margin-bottom: 30px; }

.steps { list-style: none; }
.steps li { display: flex; gap: 18px; padding: 14px 0; position: relative; }
.steps li:not(:last-child)::before {
  content: ""; position: absolute; left: 21px; top: 58px; bottom: -8px; width: 2px; background: var(--line);
}
.steps .num {
  width: 43px; height: 43px; flex: none; border-radius: 50%;
  background: var(--blue); color: #fff; font-family: var(--font-head); font-weight: 800;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  box-shadow: 0 0 0 5px var(--blue-tint);
}
.steps h3 { font-size: 18px; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 15px; }

/* Photo placeholder — original photos to be dropped in */
.photo-ph {
  border-radius: 16px; background: linear-gradient(150deg, var(--navy-2), var(--navy-3));
  min-height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; color: #8FA4C6; text-align: center; padding: 32px; border: 1px dashed rgba(143,164,198,0.4);
}
.photo-ph svg { width: 48px; height: 38px; opacity: 0.7; }
.photo-ph b { color: #C7D3E8; font-family: var(--font-head); font-size: 15px; }
.photo-ph span { font-size: 13px; max-width: 34ch; }
.photo-badge {
  background: var(--white); border-radius: 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px; padding: 16px 20px;
  margin: -34px 0 0 -28px; position: relative; width: max-content;
}
.photo-badge .check { width: 40px; height: 40px; border-radius: 50%; background: #E8F7EE; display: flex; align-items: center; justify-content: center; }
.photo-badge .check svg { width: 20px; height: 20px; }
.photo-badge b { display: block; font-family: var(--font-head); font-size: 17px; }
.photo-badge span { font-size: 13.5px; color: var(--muted); }

/* ---------- Founder quote ---------- */
.quote-card {
  background: linear-gradient(150deg, var(--navy-2), var(--navy-3));
  color: #fff; border-radius: 20px; padding: 52px; box-shadow: var(--shadow-lg);
}
.quote-card blockquote { font-family: var(--font-head); font-size: clamp(19px, 2.2vw, 24px); font-style: italic; line-height: 1.5; color: #E4EBF6; margin-bottom: 34px; }
.quote-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.quote-person { display: flex; align-items: center; gap: 16px; }
.avatar {
  width: 54px; height: 54px; border-radius: 50%; background: var(--blue);
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.quote-person b { display: block; font-size: 16.5px; }
.quote-person span { font-size: 14px; color: #9DB0CE; }
.quote-stats { display: flex; gap: 36px; }
.quote-stats div { text-align: center; }
.quote-stats b { display: block; font-family: var(--font-head); font-size: 26px; color: var(--blue); }
.quote-stats span { font-size: 13px; color: #9DB0CE; }

/* ---------- Testimonials ---------- */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.t-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: 16px; }
.t-card p { font-size: 15.5px; color: #3A4A66; flex: 1; }
.t-person { display: flex; align-items: center; gap: 12px; }
.t-person .avatar { width: 44px; height: 44px; font-size: 15px; background: var(--blue-tint); color: var(--blue-dark); }
.t-person b { display: block; font-size: 15px; }
.t-person span { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--muted); }
.t-person svg { width: 13px; height: 13px; }
.rating-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 40px; font-size: 15px; color: var(--muted); flex-wrap: wrap; }
.rating-line b { font-family: var(--font-head); font-size: 22px; color: var(--ink); }

/* Video testimonials */
.v-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.v-card { border-radius: var(--radius); overflow: hidden; background: var(--navy-2); position: relative; aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: transform 0.2s; }
.v-card:hover { transform: translateY(-4px); }
.v-card .play {
  width: 62px; height: 62px; border-radius: 50%; background: rgba(255,255,255,0.94);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg);
}
.v-card .play svg { width: 22px; height: 22px; margin-left: 3px; }
.v-card .v-label { position: absolute; left: 16px; bottom: 14px; color: #fff; font-size: 13.5px; font-weight: 600; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }

/* ---------- Timeline (About) ---------- */
.timeline { list-style: none; }
.timeline li { position: relative; padding: 0 0 34px 40px; }
.timeline li::before {
  content: ""; position: absolute; left: 8px; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--navy); box-shadow: 0 0 0 4px var(--blue-tint), 0 0 0 5px var(--blue);
}
.timeline li:not(:last-child)::after {
  content: ""; position: absolute; left: 13px; top: 26px; bottom: 4px; width: 2px; background: var(--line);
}
.timeline .year { font-family: var(--font-head); font-weight: 800; color: var(--blue-dark); font-size: 15px; letter-spacing: 0.04em; }
.timeline h3 { font-size: 18.5px; margin: 3px 0 6px; }
.timeline p { color: var(--muted); font-size: 15.5px; max-width: 58ch; }

/* Expertise panel */
.panel { background: var(--navy); color: #fff; border-radius: 18px; padding: 40px 36px; box-shadow: var(--shadow-lg); }
.panel .kicker { color: var(--blue); }
.panel h3 { font-size: 23px; margin-bottom: 20px; }
.panel ul { list-style: none; }
.panel ul li { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; font-size: 15.5px; color: #DDE6F4; }
.panel ul svg { width: 18px; height: 18px; flex: none; margin-top: 4px; }

/* ---------- Team ---------- */
.founder-card { display: grid; grid-template-columns: 1.05fr 0.95fr; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.founder-info { background: var(--navy); color: #fff; padding: 56px 48px; }
.founder-info .eyebrow { margin-bottom: 18px; }
.founder-info h2 { font-size: 36px; margin-bottom: 6px; }
.founder-info .role { color: var(--blue); font-weight: 700; font-family: var(--font-head); margin-bottom: 24px; }
.founder-info p { color: #C7D3E8; font-size: 15.5px; margin-bottom: 18px; }
.founder-contact { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 30px; }
.founder-contact span {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px; padding: 9px 15px; font-size: 14px;
}
.founder-contact svg { width: 15px; height: 15px; }
.founder-stats { display: flex; gap: 44px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; }
.founder-stats b { display: block; font-family: var(--font-head); font-size: 30px; color: var(--blue); }
.founder-stats span { font-size: 13.5px; color: #9DB0CE; }
.founder-photo { background: linear-gradient(150deg, var(--navy-2), var(--navy-3)); min-height: 420px; }
.founder-photo .photo-ph { min-height: 100%; border-radius: 0; border: 0; }

/* ---------- Reviews page ---------- */
.review-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; padding: 76px 0; text-align: center; }
.review-hero h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 16px; }
.review-hero p { color: #C7D3E8; max-width: 60ch; margin: 0 auto 24px; font-size: 17px; }
.google-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 34px; display: flex; align-items: center; gap: 28px;
  justify-content: center; flex-wrap: wrap; text-align: center;
}
.google-card .g-score b { font-family: var(--font-head); font-size: 46px; display: block; }
.google-card .g-meta { text-align: left; max-width: 44ch; }
.google-card .g-meta p { color: var(--muted); font-size: 14.5px; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 14px; background: var(--white); box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center;
  gap: 16px; padding: 20px 24px; font-family: var(--font-head); font-weight: 700; font-size: 16.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; flex: none; transition: transform 0.25s; }
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(800px 400px at 15% 110%, rgba(29,143,214,0.3), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%);
  color: #fff; text-align: center; padding: 90px 0;
}
.cta-band h2 { font-size: clamp(30px, 3.8vw, 44px); margin-bottom: 16px; }
.cta-band p { color: #C7D3E8; font-size: 17px; max-width: 56ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: #A9B8D2; padding: 72px 0 0; font-size: 14.5px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 48px; padding-bottom: 52px; }
.site-footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.site-footer ul { list-style: none; }
.site-footer ul li { padding: 5px 0; }
.site-footer a { color: #A9B8D2; transition: color 0.2s; }
.site-footer a:hover { color: #fff; }
.footer-brand .word b { color: #fff; }
.footer-brand p { margin: 18px 0; max-width: 40ch; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; flex: none; margin-top: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13.5px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-3) 100%); color: #fff; padding: 68px 0; text-align: center; }
.page-hero h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 14px; }
.page-hero p { color: #C7D3E8; max-width: 62ch; margin: 0 auto; font-size: 17px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); flex-direction: column; align-items: stretch;
    padding: 12px 20px 20px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav a { white-space: normal; }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .header-cta { display: none; }
  .hero .container, .split, .founder-card { grid-template-columns: 1fr; }
  .grid-3, .t-grid, .v-grid { grid-template-columns: 1fr 1fr; }
  .stats-band .container { grid-template-columns: 1fr 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-photo { min-height: 320px; }
}
@media (max-width: 720px) {
  .grid-3, .t-grid, .v-grid, .footer-grid { grid-template-columns: 1fr; }
  .topbar .container { justify-content: center; }
  .topbar .loc { display: none; }
  .section { padding: 64px 0; }
  .hero { padding: 52px 0 64px; }
  .quote-card { padding: 34px 26px; }
  .founder-info { padding: 40px 28px; }
}
