/* ============================================
   RANI THERAPEUTICS — DESIGN SYSTEM
   Brand-aligned with PPT template system
   ============================================ */

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

:root {
  --plum-deep: #7B246D;
  --plum: #7B246D;
  --plum-light: #B270A7;
  --plum-muted: #B270A7;

  --teal: #82CCD4;
  --teal-light: #A3DBE2;
  --teal-bright: #96D5DD;
  --teal-dark: #6BB8C2;

  --white: #FFFFFF;
  --off-white: #F8F6FA;
  --cream: #FAF7F5;
  --gray-100: #E7E6E6;
  --gray-200: #E7E6E6;
  --gray-300: #B2B4B2;
  --gray-500: #6E6F72;
  --gray-700: #44546A;
  --gray-900: #1E1228;

  --gradient-hero: linear-gradient(135deg, #7B246D 0%, #B270A7 100%);
  --gradient-teal: linear-gradient(135deg, #6BB8C2 0%, #82CCD4 50%, #A3DBE2 100%);
  --gradient-subtle: linear-gradient(180deg, #F8F6FA 0%, #FFFFFF 100%);

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;

  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
  --container-narrow: 900px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav--transparent { background: transparent; }

.nav--solid {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(123, 36, 109, 0.08);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
  height: 44px;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s;
}

.nav__logo-img--white {
  position: absolute;
  top: 0;
  left: 0;
}

.nav--transparent .nav__logo-img--white { opacity: 1; }
.nav--transparent .nav__logo-img--color { opacity: 0; }
.nav--solid .nav__logo-img--white { opacity: 0; }
.nav--solid .nav__logo-img--color { opacity: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}

.nav--transparent .nav__link { color: rgba(255,255,255,0.85); }
.nav--transparent .nav__link:hover { color: var(--teal-bright); }
.nav--solid .nav__link { color: var(--gray-700); }
.nav--solid .nav__link:hover { color: var(--plum); }

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.3s;
}
.nav__link:hover::after { width: 100%; }

.nav__link--active::after { width: 100%; }
.nav--solid .nav__link--active { color: var(--plum); }
.nav--transparent .nav__link--active { color: var(--teal-bright); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.nav--transparent .nav__cta {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}
.nav--transparent .nav__cta:hover {
  background: var(--teal);
  border-color: var(--teal);
}
.nav--solid .nav__cta {
  background: var(--plum);
  color: white;
  border: 1px solid var(--plum);
}
.nav--solid .nav__cta:hover {
  background: var(--plum-deep);
  border-color: var(--plum-deep);
}

.nav__pathways {
  display: flex;
  gap: 8px;
  margin-left: 12px;
}

.nav__pathway {
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.nav--transparent .nav__pathway {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.15);
}
.nav--transparent .nav__pathway:hover {
  background: rgba(130, 204, 212, 0.25);
  border-color: var(--teal);
  color: white;
}
.nav--solid .nav__pathway {
  background: var(--gray-100);
  color: var(--gray-500);
  border: 1px solid var(--gray-200);
}
.nav--solid .nav__pathway:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

/* Mobile menu toggle */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav--transparent .nav__hamburger span { background: white; }
.nav--solid .nav__hamburger span { background: var(--gray-700); }

/* ============================================
   INVESTORS DROPDOWN — nested flyouts
   ============================================ */
.nav__item--investors {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav__cta .nav__cta-chevron {
  margin-left: -2px;
  transition: transform 0.25s ease;
}
.nav__item--investors.is-open .nav__cta-chevron {
  transform: rotate(180deg);
}
@media (hover: hover) {
  .nav__item--investors:hover .nav__cta-chevron,
  .nav__item--investors:focus-within .nav__cta-chevron {
    transform: rotate(180deg);
  }
}

/* First-level panel: appears below the Investors CTA */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 240px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(21, 13, 42, 0.18), 0 2px 8px rgba(21, 13, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  list-style: none;
  margin: 0;
  z-index: 1001;
}

/* Invisible bridge so the mouse can cross the gap without closing */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav__item--investors:hover > .nav__dropdown,
.nav__item--investors:focus-within > .nav__dropdown,
.nav__item--investors.is-open > .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__dropdown-item {
  position: relative;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown-link:hover,
.nav__dropdown-item:hover > .nav__dropdown-link,
.nav__dropdown-item:focus-within > .nav__dropdown-link {
  background: var(--off-white, #f7f5f9);
  color: var(--plum);
}

.nav__dropdown-link-chevron {
  flex-shrink: 0;
  opacity: 0.5;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__dropdown-item:hover > .nav__dropdown-link .nav__dropdown-link-chevron {
  opacity: 1;
  transform: translateX(2px);
}

/* Second-level flyout: opens to the left of the first panel */
.nav__submenu {
  position: absolute;
  top: -8px;
  right: calc(100% + 8px);
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(21, 13, 42, 0.18), 0 2px 8px rgba(21, 13, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  list-style: none;
  margin: 0;
  z-index: 1002;
}

/* Invisible bridge between first and second panels */
.nav__submenu::before {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  width: 8px;
  height: 100%;
}

.nav__dropdown-item:hover > .nav__submenu,
.nav__dropdown-item:focus-within > .nav__submenu,
.nav__dropdown-item.is-open > .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile: dropdown becomes an inline accordion inside the mobile panel */
@media (max-width: 1070px) {
  .nav__item--investors {
    width: 100%;
    display: block;
  }
  /* On mobile, render Investors as a regular nav item (not a pill), centered */
  .nav__item--investors { text-align: center; }
  .nav--open .nav__links .nav__item--investors .nav__cta {
    background: transparent;
    color: var(--gray-700);
    border: none;
    padding: 0;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }
  .nav--open .nav__links .nav__item--investors .nav__cta:hover,
  .nav--open .nav__links .nav__item--investors.is-open .nav__cta {
    color: var(--plum);
    background: transparent;
  }
  .nav__item--investors .nav__cta-chevron { margin-left: 4px; }

  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 8px 0 0;
    border-radius: 0;
    min-width: 0;
    display: none;
  }
  .nav__item--investors.is-open > .nav__dropdown { display: block; }
  .nav__dropdown::before { display: none; }

  .nav__dropdown-link {
    padding: 10px 16px;
    font-size: 0.85rem;
    color: var(--gray-700);
  }

  .nav__submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 4px 0 4px 16px;
    border-radius: 0;
    min-width: 0;
    display: none;
  }
  .nav__dropdown-item.is-open > .nav__submenu { display: block; }
  .nav__submenu::before { display: none; }

  .nav__submenu .nav__dropdown-link {
    font-size: 0.8rem;
    color: var(--gray-500);
    padding: 8px 16px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
}

.btn--primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 4px 20px rgba(130, 204, 212, 0.4);
}
.btn--primary:hover {
  background: var(--teal-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(130, 204, 212, 0.5);
}

.btn--plum {
  background: var(--plum);
  color: white;
  box-shadow: 0 4px 20px rgba(123, 36, 109, 0.3);
}
.btn--plum:hover {
  background: var(--plum-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 36, 109, 0.4);
}

.btn--ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--ghost:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--gray-200);
}
.btn--outline:hover {
  border-color: var(--plum);
  background: var(--off-white);
}

.btn--white {
  background: white;
  color: var(--plum-deep);
}
.btn--white:hover {
  background: var(--teal-bright);
  color: white;
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn--outline-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn__arrow {
  transition: transform 0.3s;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

/* ============================================
   SECTION EYEBROW
   ============================================ */
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 20px;
}

.section__eyebrow-line {
  width: 32px;
  height: 2px;
  background: var(--teal);
}

.section__title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--plum-deep);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.7;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--gradient-hero);
  overflow: hidden;
}

.page-hero__capsules {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.12;
}

.page-hero__capsule {
  position: absolute;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
}
.page-hero__capsule--1  { width: 260px; height: 104px; top: 5%;  right: -60px; transform: rotate(-35deg); }
.page-hero__capsule--2  { width: 200px; height: 80px;  bottom: 10%; left: 5%;  transform: rotate(-35deg); }
.page-hero__capsule--3  { width: 150px; height: 60px;  top: 25%; left: 55%;    transform: rotate(-35deg); }
.page-hero__capsule--4  { width: 180px; height: 72px;  bottom: 5%; right: 8%;  transform: rotate(-35deg); }
.page-hero__capsule--5  { width: 130px; height: 52px;  top: 60%; left: -40px;  transform: rotate(-35deg); }
.page-hero__capsule--6  { width: 120px; height: 48px;  top: 8%;  left: 20%;   transform: rotate(-35deg); }
.page-hero__capsule--7  { width: 160px; height: 64px;  bottom: 25%; right: 30%; transform: rotate(-35deg); }
.page-hero__capsule--8  { width: 100px; height: 40px;  top: 45%; left: 35%;   transform: rotate(-35deg); }
.page-hero__capsule--9  { width: 140px; height: 56px;  top: 15%; right: 25%;  transform: rotate(-35deg); }
.page-hero__capsule--10 { width: 110px; height: 44px;  bottom: 18%; left: 42%; transform: rotate(-35deg); }

.page-hero__glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 204, 212, 0.2) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 8px;
  background: rgba(130, 204, 212, 0.2);
  border: 1px solid rgba(130, 204, 212, 0.4);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.page-hero__label-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: dot-pulse 2s ease-in-out infinite;
}

.page-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.1;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.page-hero__title em {
  font-style: normal;
  color: var(--teal-bright);
}

.page-hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 760px;
}
.page-hero__subtitle + .page-hero__subtitle {
  margin-top: 14px;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
  background: white;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123, 36, 109, 0.08);
  border-color: var(--teal);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-padding) 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.cta-section__capsules {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.08;
}

.cta-section__content {
  position: relative;
  text-align: center;
}

.cta-section__title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-section__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--gray-900);
  padding: 64px 0 32px;
}

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

.footer__brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}
.footer__social-link:hover { background: var(--teal); }
.footer__social-link svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.6); }
.footer__social-link:hover svg { fill: white; }

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link {
  text-decoration: none;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s;
}
.footer__link:hover { color: var(--teal); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 24px;
}
.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__legal a:hover { color: var(--teal); }

.footer__stock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
}
.footer__stock strong {
  color: var(--teal);
  font-weight: 700;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ring-rotate {
  to { transform: rotate(360deg); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.3; height: 25px; }
}

@keyframes pill-float {
  0%, 100% { transform: rotate(-10deg) translateY(0); }
  50% { transform: rotate(-10deg) translateY(-12px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .nav__pathways { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 1070px) {
  /* Remove nav shadow when open — the whole panel gets one shared shadow */
  .nav--open.nav--solid { box-shadow: none; }

  .nav__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(20px);
    padding: 24px 32px 32px;
    gap: 16px;
    box-shadow: 0 8px 24px rgba(123, 36, 109, 0.08);
  }
  .nav--open .nav__links { display: flex; }
  .nav--open .nav__links .nav__link { color: var(--gray-700); }
  .nav--open .nav__links .nav__link:hover { color: var(--plum); }
  .nav--open .nav__links .nav__cta {
    background: var(--plum);
    color: white;
    border: 1px solid var(--plum);
    text-align: center;
    justify-content: center;
  }

  .nav__hamburger { display: flex; }

  /* Hamburger → X animation */
  .nav--open .nav__hamburger span { background: var(--gray-700); }
  .nav--open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav--open .nav__hamburger span:nth-child(2) { opacity: 0; }
  .nav--open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .page-hero { padding: 140px 0 80px; }
}
