/* ============================================================================
   RanaWallet Landing Page — Brand Stylesheet
   Palette: Navy #00112C / Gold #f7bf12 / Surface #001830
   ============================================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand colors */
  --navy: #00112C;
  --navy-light: #001830;
  --navy-mid: #002244;
  --gold: #f7bf12;
  --gold-light: #f9c93c;
  --gold-pale: rgba(247, 191, 18, 0.15);
  --cyan: #00C3F7;
  --white: #FFFFFF;
  --muted: #8DA4B8;
  --muted-dark: #687B8C;
  --bg-light: #FAFCFD;
  --danger: #ef4444;
  --success: #22c55e;

  /* Typography */
  --font-main: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Spacing */
  --section-pad: 100px 0;
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
}

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

.text-gold {
  color: var(--gold);
}

.text-muted {
  color: var(--muted);
}

.text-gradient {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(247, 191, 18, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(247, 191, 18, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
  border-radius: 10px;
}

/* ---------- Cards ---------- */
.card {
  background: rgba(0, 24, 48, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px;
  transition: all 0.3s var(--ease);
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Section Heading ---------- */
.section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.section-label span {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ============================================================================
   NAVBAR
   ============================================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s var(--ease);
}

.navbar.scrolled {
  background: rgba(0, 17, 44, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================================
   HERO
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
  overflow: hidden;
}


.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}


.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Phone mockup area */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-demo-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 80px rgba(247, 191, 18, 0.08);
}

.phone-mockup {
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, var(--navy-light), var(--navy-mid));
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 80px rgba(247, 191, 18, 0.08);
  overflow: hidden;
  position: relative;
}

.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--navy);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 40px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-header {
  text-align: center;
  margin-bottom: 8px;
}

.phone-header .greeting {
  font-size: 0.75rem;
  color: var(--muted);
}

.phone-header .balance-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 12px;
}

.phone-header .balance {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.phone-action {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 10px 6px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-action .text {
  font-size: 0.65rem;
  color: var(--muted);
  font-weight: 500;
}

.phone-tx-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.phone-tx-list .title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--muted);
}

.phone-tx {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.phone-tx .tx-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.phone-tx .tx-icon.green {
  background: rgba(34, 197, 94, 0.15);
}

.phone-tx .tx-icon.gold {
  background: var(--gold-pale);
}

.phone-tx .tx-details {
  flex: 1;
}

.phone-tx .tx-name {
  font-size: 0.7rem;
  font-weight: 600;
}

.phone-tx .tx-date {
  font-size: 0.6rem;
  color: var(--muted);
}

.phone-tx .tx-amount {
  font-size: 0.75rem;
  font-weight: 700;
}

.phone-tx .tx-amount.credit {
  color: var(--success);
}

.phone-tx .tx-amount.debit {
  color: var(--gold);
}


/* ============================================================================
   FEATURES
   ============================================================================ */
.features {
  padding: var(--section-pad);
  background: var(--navy);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================================
   HOW IT WORKS
   ============================================================================ */
.how-it-works {
  padding: var(--section-pad);
  background: linear-gradient(
    180deg,
    var(--navy) 0%,
    var(--navy-light) 100%
  );
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 191, 18, 0.3),
    rgba(247, 191, 18, 0.3),
    transparent
  );
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--gold-pale);
  border: 2px solid rgba(247, 191, 18, 0.3);
  color: var(--gold);
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================================
   CTA BANNER
   ============================================================================ */
.cta-banner {
  padding: 80px 0;
  background: var(--navy);
}

.cta-inner {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}

.cta-inner p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
  position: relative;
}

.cta-inner .btn {
  position: relative;
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.footer {
  padding: 64px 0 32px;
  background: var(--navy-light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--gold);
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: var(--muted);
}


/* ============================================================================
   ABOUT PAGE — MISSION, TEAM, STORY
   ============================================================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
}

.page-hero .hero-title {
  max-width: 700px;
  margin: 0 auto 16px;
}

.page-hero .hero-subtitle {
  max-width: 560px;
  margin: 0 auto;
}

/* Story / Mission section */
.story {
  padding: var(--section-pad);
  background: var(--navy);
}


.story-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.story-content p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Values */
.values {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ============================================================================
   PRICING PAGE
   ============================================================================ */
.pricing-cards {
  padding: var(--section-pad);
  background: var(--navy);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 64px;
}

.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  border-color: rgba(247, 191, 18, 0.3);
  box-shadow: 0 0 40px rgba(247, 191, 18, 0.08);
}

.pricing-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  margin: 16px 0 8px;
}

.pricing-card .price-sub {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-card .plan-name {
  font-size: 1.3rem;
  font-weight: 700;
}

.pricing-list {
  margin-bottom: 28px;
}

.pricing-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.pricing-list li .check {
  color: var(--success);
  font-weight: bold;
}

/* Fee breakdown table section */
.fee-breakdown {
  padding: 0 0 100px;
  background: var(--navy);
}

.fee-table-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.fee-table th,
.fee-table td {
  text-align: left;
  padding: 16px 20px;
  font-size: 0.95rem;
}

.fee-table thead th {
  background: rgba(247, 191, 18, 0.08);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.fee-table tbody td {
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.fee-table tbody tr:hover td {
  color: var(--white);
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ */
.faq {
  padding: var(--section-pad);
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 14px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(0, 24, 48, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: all 0.2s;
  cursor: pointer;
}

.faq-question:hover {
  border-color: rgba(247, 191, 18, 0.2);
}

.faq-question .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s var(--ease);
  color: var(--gold);
}

.faq-item.open .faq-question {
  border-radius: 14px 14px 0 0;
  border-color: rgba(247, 191, 18, 0.2);
}

.faq-item.open .faq-question .arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  background: rgba(0, 24, 48, 0.4);
  border: 1px solid rgba(247, 191, 18, 0.2);
  border-top: none;
  border-radius: 0 0 14px 14px;
}

.faq-answer-inner {
  padding: 20px 24px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.contact-section {
  padding: var(--section-pad);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.contact-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 24, 48, 0.6);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */
@media (max-width: 1024px) {
  .features-grid,
  .values-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin: 0 auto 36px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 17, 44, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    padding: 80px 24px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-cta {
    display: none;
  }

  .features-grid,
  .values-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 120px 0 60px;
  }

}

/* ============================================================================
   LEGAL PAGES (Terms, Privacy)
   ============================================================================ */
.legal-content {
  padding: 60px 0 100px;
  background: var(--navy);
}

.legal-body {
  max-width: 720px;
  margin: 0 auto;
}

.legal-body h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 40px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 24px 0 8px;
}

.legal-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-body ul {
  margin: 8px 0 16px 20px;
  list-style: disc;
}

.legal-body ul li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  padding: 2px 0;
}

/* ---------- Animations (on load) ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 {
  transition-delay: 0.1s;
}
.fade-up-delay-2 {
  transition-delay: 0.2s;
}
.fade-up-delay-3 {
  transition-delay: 0.3s;
}
.fade-up-delay-4 {
  transition-delay: 0.4s;
}
