/* =========================================
   OLLIRUM — Landing Page
   @frontend-dev (Finn)
   ========================================= */

/* === DESIGN TOKENS === */
:root {
  --color-dark:    #0F0F1A;
  --color-dark-2:  #080810;
  --color-purple:  #6C63FF;
  --color-green:   #00E5A0;
  --color-white:   #F5F5F7;
  --color-gray:    #8B8B9E;
  --color-gray-2:  #3A3A4A;
  --color-border:  rgba(108, 99, 255, 0.15);

  --gradient-main: linear-gradient(135deg, #6C63FF 0%, #00E5A0 100%);
  --gradient-text: linear-gradient(135deg, #6C63FF, #00E5A0);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --text-hero:   clamp(2.25rem, 5.5vw, 3.75rem);
  --text-h2:     clamp(1.75rem, 3.5vw, 2.375rem);
  --text-h3:     1.125rem;
  --text-body:   1rem;
  --text-sm:     0.875rem;

  --radius-card: 1rem;
  --radius-pill: 100px;
  --radius-btn:  100px;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.15);

  --transition: 0.25s ease;
  --section-py: clamp(4rem, 8vw, 6.5rem);
}

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

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-py) 0; }
.section-light  { background: #F0F0F5; }
.section-white  { background: #ffffff; }
.section-dark   { background: var(--color-dark); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--color-dark);
}
.section-header p {
  color: var(--color-gray);
  font-size: 1.0625rem;
}
.section-header-light h2 { color: var(--color-white); }
.section-header-light p  { color: var(--color-gray); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.75rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gradient-main);
  color: var(--color-dark);
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}
.btn-primary:hover { box-shadow: 0 6px 28px rgba(108, 99, 255, 0.5); }

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(245, 245, 247, 0.25);
}
.btn-ghost:hover { border-color: rgba(245, 245, 247, 0.5); background: rgba(255,255,255,0.05); }

.btn-nav {
  background: var(--color-green);
  color: var(--color-dark);
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
}
.btn-nav:hover { box-shadow: 0 4px 16px rgba(0, 229, 160, 0.4); }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15, 15, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}
.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-icon { display: flex; align-items: center; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.tag-pill {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(108, 99, 255, 0.5);
  color: var(--color-purple);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  background: rgba(108, 99, 255, 0.08);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--color-gray);
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-gray);
  font-size: 0.875rem;
}
.strip-icon { margin-right: 0.25rem; }
.strip-divider { opacity: 0.35; }
.hero-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #F0F0F5);
  z-index: 1;
}

/* === PAIN SECTION === */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.pain-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.pain-card:hover {
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.12);
  border-color: rgba(108, 99, 255, 0.25);
  transform: translateY(-3px);
}
.pain-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.875rem;
}
.pain-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.6;
}
.pain-cta-text {
  text-align: center;
  font-size: 1.0625rem;
  color: var(--color-gray);
}
.pain-cta-text strong { color: var(--color-dark); }

/* === SOLUTION === */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.solution-content h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.solution-sub {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.solution-bullets { display: flex; flex-direction: column; gap: 0.875rem; }
.solution-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-white);
  font-size: 0.9375rem;
  line-height: 1.5;
}
.bullet-icon {
  color: var(--color-green);
  flex-shrink: 0;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* Before/After */
.before-after {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.ba-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 1.5rem;
}
.ba-card.ba-after {
  border-color: rgba(0, 229, 160, 0.3);
  background: rgba(0, 229, 160, 0.05);
}
.ba-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray);
  margin-bottom: 1rem;
}
.ba-label-after { color: var(--color-green); }
.ba-flow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ba-step {
  padding: 0.375rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  font-size: 0.8125rem;
  color: var(--color-gray);
  border: 1px solid rgba(255,255,255,0.08);
}
.ba-step-green {
  background: rgba(0, 229, 160, 0.1);
  color: var(--color-green);
  border-color: rgba(0, 229, 160, 0.3);
}
.ba-arrow { color: var(--color-gray); font-size: 0.75rem; }
.ba-arrow-green { color: var(--color-green); font-size: 1.25rem; }
.ba-time {
  display: block;
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--color-gray);
}
.ba-time-green { color: var(--color-green); }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: #ffffff;
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(108, 99, 255, 0.14);
  border-color: rgba(108, 99, 255, 0.3);
  transform: translateY(-4px);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-card {
  text-align: center;
  padding: 0 1rem;
}
.step-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-purple);
  background: rgba(108, 99, 255, 0.1);
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.875rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.step-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.625rem;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 2px;
  background: var(--gradient-main);
  margin-top: 3.5rem;
  flex-shrink: 0;
  border-radius: 2px;
}

/* === WHY === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-card);
  padding: 2rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
}
.why-card:hover {
  border-color: rgba(108, 99, 255, 0.4);
  background: rgba(108, 99, 255, 0.06);
  transform: translateY(-3px);
}
.why-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}
.why-card p {
  font-size: 0.9rem;
  color: var(--color-gray);
  line-height: 1.65;
}

/* === FAQ === */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(108, 99, 255, 0.35); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--color-purple); }
.faq-chevron {
  font-size: 1.375rem;
  font-weight: 400;
  color: var(--color-gray);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}
.faq-item.open .faq-chevron {
  transform: rotate(45deg);
  color: var(--color-purple);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--color-gray);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; }

/* === CTA FINAL === */
.cta-final {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-final > p {
  color: var(--color-gray);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

/* Form */
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: 1.25rem;
  padding: 2.25rem;
  text-align: left;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.form-group-full { margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gray);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 0.625rem;
  padding: 0.75rem 1rem;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(139, 139, 158, 0.6); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-purple);
  background: rgba(108, 99, 255, 0.06);
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B8B9E' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: #1a1a2e; color: var(--color-white); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-group.error input,
.form-group.error select,
.form-group.error textarea { border-color: #FF6B6B; }
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.form-privacy {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--color-gray);
}

/* === FOOTER === */
.footer {
  background: var(--color-dark-2);
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-tagline {
  font-size: 0.8125rem;
  color: var(--color-gray);
  padding-left: 0.25rem;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--color-gray);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--color-white); }
.footer-copy {
  font-size: 0.8125rem;
  color: rgba(139, 139, 158, 0.5);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1.25rem;
}

/* === CTA INTERMEDIÁRIO === */
.section-cta-mid {
  background: var(--gradient-main);
  padding: 2.25rem 0;
}
.cta-mid-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-mid-text p {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0.25rem;
}
.cta-mid-sub {
  font-size: 0.875rem;
  color: rgba(15, 15, 26, 0.65);
  font-weight: 500;
}
.section-cta-mid .btn-primary {
  background: var(--color-dark);
  color: var(--color-white);
  box-shadow: none;
  flex-shrink: 0;
}
.section-cta-mid .btn-primary:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

/* === URGENCY === */
.cta-urgency {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 229, 160, 0.1);
  border: 1px solid rgba(0, 229, 160, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
  color: var(--color-green);
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.urgency-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

/* === GUARANTEE === */
.form-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  background: rgba(0, 229, 160, 0.07);
  border: 1px solid rgba(0, 229, 160, 0.2);
  border-radius: 0.625rem;
  padding: 0.875rem 1rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  color: rgba(245, 245, 247, 0.8);
  line-height: 1.5;
}
.guarantee-badge {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-top: 0.1rem;
}

/* === LABEL OPTIONAL === */
.label-optional {
  font-weight: 400;
  color: rgba(139, 139, 158, 0.6);
  font-size: 0.75rem;
}

/* === FAB CTA (mobile) === */
.fab-cta {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: var(--gradient-main);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 24px rgba(108, 99, 255, 0.45);
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 32px rgba(108, 99, 255, 0.6);
}
.fab-icon { font-size: 1.1rem; }

/* =========================================
   RESPONSIVE
   ========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0 auto;
    background: var(--gradient-main);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .fab-cta { display: flex; }
  .cta-mid-inner { flex-direction: column; text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .footer-content { flex-direction: column; align-items: flex-start; }
  .contact-form { padding: 1.5rem; }
  .hero { padding-top: 6rem; }
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeInUp 0.7s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
