/* ============================================================
   TORA SALES GROUP — Global Styles
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

/* --- CSS Variables --- */
:root {
  --navy:      #0A1F44;
  --navy-dark: #071530;
  --gold:      #D4AF37;
  --gold-dark: #b8971f;
  --grey:      #2B2B2B;
  --grey-mid:  #444444;
  --grey-light:#F4F4F4;
  --white:     #FFFFFF;

  --font-headline: 'Montserrat', sans-serif;
  --font-body:     'Open Sans', sans-serif;

  --max-width: 1200px;
  --nav-height: 76px;
  --section-pad: 96px 24px;
  --section-pad-sm: 64px 24px;
  --radius: 4px;
  --transition: 0.2s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-headline);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; line-height: 1.75; }

/* --- Layout Utilities --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold  { color: var(--gold); }
.bg-navy    { background: var(--navy); }
.bg-dark    { background: var(--grey); }
.bg-light   { background: var(--grey-light); }

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  line-height: 1;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  font-size: 0.9rem;
  padding: 18px 42px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--navy);
  border-bottom: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 1.3rem;
  border-radius: 3px;
  line-height: 1;
}
.nav__logo-text {
  font-family: var(--font-headline);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.2;
}
.nav__logo-text span { color: var(--gold); display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__ctas .btn {
  font-size: 0.72rem;
  padding: 10px 20px;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.25s ease;
  border-radius: 2px;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: var(--navy-dark);
  padding: 24px;
  border-top: 1px solid rgba(212,175,55,0.2);
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--gold); }
.nav__mobile-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.nav__mobile-ctas .btn { text-align: center; }

/* page offset for fixed nav */
.page-top { padding-top: var(--nav-height); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero__eyebrow {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 44px;
  line-height: 1.7;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero--center {
  text-align: center;
}
.hero--center .hero__headline,
.hero--center .hero__sub { margin-left: auto; margin-right: auto; }
.hero--center .hero__ctas { justify-content: center; }

/* ============================================================
   SECTIONS — GENERIC
   ============================================================ */
.section { padding: var(--section-pad); }
.section--sm { padding: var(--section-pad-sm); }
.section--navy { background: var(--navy); color: var(--white); }
.section--dark { background: var(--grey); color: var(--white); }
.section--light { background: var(--grey-light); }
.section--white { background: var(--white); }

.section__label {
  font-family: var(--font-headline);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__heading {
  margin-bottom: 20px;
}
.section__sub {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 620px;
  color: inherit;
  opacity: 0.8;
}
.section__sub--wide { max-width: 780px; }
.section-header { margin-bottom: 56px; }
.section-header--center { text-align: center; }
.section-header--center .section__sub { margin: 0 auto; }

/* ============================================================
   GRID SYSTEMS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.08);
}
.card--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.card--navy {
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.2);
  color: var(--white);
}
.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}
.card__number {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.4;
}
.card__title {
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.card__body {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.8;
}

/* ============================================================
   HOW IT WORKS — STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.step {
  padding: 40px 32px;
  position: relative;
  border-right: 1px solid rgba(212,175,55,0.15);
}
.step:last-child { border-right: none; }
.step__num {
  font-family: var(--font-headline);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(212,175,55,0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.step__title {
  font-family: var(--font-headline);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}
.step__body {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.step__connector {
  position: absolute;
  top: 52px;
  right: -12px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   INDUSTRY GRID
   ============================================================ */
.industries { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.industry-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.industry-card:hover {
  border-color: rgba(212,175,55,0.4);
  background: rgba(212,175,55,0.05);
}
.industry-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}
.industry-card__name {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.8);
}

/* ============================================================
   PARTNER LOGOS
   ============================================================ */
.partners-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}
.partner-logo {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 40px;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.65);
  transition: border-color var(--transition), color var(--transition);
  min-width: 180px;
  text-align: center;
}
.partner-logo:hover {
  border-color: rgba(212,175,55,0.4);
  color: var(--white);
}
.partner-logo--placeholder {
  border-style: dashed;
  opacity: 0.35;
}

/* ============================================================
   MARKETS
   ============================================================ */
.markets {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.market-tag {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  background: rgba(212,175,55,0.15);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 3px;
  padding: 10px 24px;
}
.section--navy .market-tag,
.section--dark .market-tag {
  color: var(--gold);
  background: rgba(212,175,55,0.08);
}

/* ============================================================
   VALUES / CORE
   ============================================================ */
.values { display: flex; flex-wrap: wrap; gap: 12px; }
.value-pill {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 12px 24px;
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid rgba(212,175,55,0.25);
}
.section--navy .value-pill {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}
.cta-banner::before {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-banner__headline {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner__sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin-bottom: 40px;
}
.cta-banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   FORMS
   ============================================================ */
.form { display: flex; flex-direction: column; gap: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__group { display: flex; flex-direction: column; gap: 8px; }
.form__label {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
}
.form--light .form__label { color: var(--grey-mid); }

.form__input,
.form__textarea,
.form__select {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  color: var(--white);
  transition: border-color var(--transition);
  outline: none;
  width: 100%;
}
.form--light .form__input,
.form--light .form__textarea,
.form--light .form__select {
  background: var(--white);
  border-color: rgba(0,0,0,0.15);
  color: var(--grey);
}
.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  border-color: var(--gold);
}
.form__input::placeholder,
.form__textarea::placeholder {
  color: rgba(255,255,255,0.3);
}
.form--light .form__input::placeholder,
.form--light .form__textarea::placeholder {
  color: rgba(0,0,0,0.3);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__select { appearance: none; cursor: pointer; }
.form__select option { background: var(--grey); color: var(--white); }
.form--light .form__select option { background: var(--white); color: var(--grey); }
.form__submit { margin-top: 8px; }
.form__success {
  display: none;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-family: var(--font-headline);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-align: center;
}
.form__success.visible { display: block; }

/* ============================================================
   ABOUT — STAT STRIP
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}
.stat {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.2);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat__label {
  font-family: var(--font-headline);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   GROWTH PATH / CAREER LADDER
   ============================================================ */
.career-path {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
}
.career-step {
  flex: 1;
  min-width: 140px;
  padding: 32px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  text-align: center;
  position: relative;
}
.career-step__title {
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 8px;
}
.career-step__sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.career-arrow {
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0 4px;
}

/* ============================================================
   DIVIDERS
   ============================================================ */
.divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 20px 0;
}
.divider--center { margin: 20px auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer__brand-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 260px;
}
.footer__col-title {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer__copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer__tagline {
  font-family: var(--font-headline);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(212,175,55,0.4);
}

/* ============================================================
   PAGE INTRO (non-home hero replacement)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 100px 24px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
}
.page-hero__inner { max-width: var(--max-width); margin: 0 auto; }
.page-hero__headline { color: var(--white); margin-bottom: 16px; }
.page-hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================================
   QUOTE / PULLOUT
   ============================================================ */
.pullout {
  border-left: 4px solid var(--gold);
  padding: 24px 32px;
  background: rgba(212,175,55,0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--white);
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav__links { gap: 22px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.15); }
  .step:last-child { border-bottom: none; }
  .industries { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  :root { --section-pad: 72px 24px; }
  .nav__links { display: none; }
  .nav__ctas  { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.2); }
  .stat:last-child { border-bottom: none; }
  .career-path { flex-direction: column; }
  .career-arrow { transform: rotate(90deg); }
}

@media (max-width: 600px) {
  :root { --section-pad: 56px 20px; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 80px 20px 72px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { text-align: center; }
  .cta-banner__ctas { flex-direction: column; }
  .cta-banner__ctas .btn { text-align: center; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
  .steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease forwards; }
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
