/* ===== AUTOMATE EVERYTHING — SHARED STYLES ===== */
:root {
  --bg-light: #FFFBF0;
  --bg-alt: #FFF4D6;
  --gold: #FFB300;
  --gold-light: #FFD54F;
  --amber: #E8890A;
  --brown: #1A0E00;
  --muted: #7A5C2E;
  --card-bg: #FFFFFF;
  --footer-bg: #1A0E00;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--brown);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAVIGATION ===== */
.ae-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,251,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,179,0,0.2);
  padding: 0 24px;
}

.ae-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.ae-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brown);
  font-weight: 700;
  font-size: 16px;
}

.ae-nav-logo {
  height: 36px;
  width: auto;
}

.ae-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.ae-nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.ae-nav-links a:hover,
.ae-nav-links a.active {
  color: var(--amber);
  background: rgba(232,137,10,0.08);
}

.ae-nav-cta {
  background: var(--brown) !important;
  color: var(--gold) !important;
  border-radius: 8px !important;
  padding: 8px 18px !important;
}

.ae-nav-cta:hover {
  background: #2e1a00 !important;
  color: var(--gold) !important;
}

.ae-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.ae-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 680px) {
  .ae-nav-toggle { display: flex; }
  .ae-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-light);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(255,179,0,0.2);
    gap: 4px;
    align-items: flex-start;
  }
  .ae-nav-links.open { display: flex; }
  .ae-nav-links a { width: 100%; }
}

/* ===== HERO ===== */
.ae-hero {
  background: linear-gradient(150deg, #FFFBF0 0%, #FFF4D6 100%);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ae-hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,0,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.ae-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,137,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hc-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,179,0,0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.ae-hero-logo {
  margin: 0 auto 32px;
  width: 200px;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 28px rgba(232,137,10,0.2));
}

.ae-hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--brown);
  max-width: 680px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
}

.ae-hero h1 .accent { color: var(--amber); }
.ae-hero .sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.stack-tags {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.ae-tag {
  background: rgba(232,137,10,0.1);
  border: 1px solid rgba(232,137,10,0.3);
  color: var(--amber);
  padding: 4px 14px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
}

.ae-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== BUTTONS ===== */
.ae-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  font-family: inherit;
}

.ae-btn-primary { background: var(--brown); color: var(--gold); }
.ae-btn-primary:hover { background: #2e1a00; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,14,0,0.22); }
.ae-btn-outline { background: transparent; color: var(--brown); border: 1.5px solid rgba(26,14,0,0.2); }
.ae-btn-outline:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,137,10,0.12); }

/* ===== SECTION LABELS ===== */
.ae-section-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 12px;
}

.ae-section-headline {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}

.ae-section-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 48px;
}

/* ===== STATS ===== */
.ae-stats { background: var(--bg-alt); padding: 56px 24px; }
.ae-stats-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.ae-stats .ae-section-headline { max-width: 600px; margin: 0 auto 48px; }
.ae-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 40px; }
@media (max-width:600px) { .ae-stats-grid { grid-template-columns: 1fr; } }

.ae-stat-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,179,0,0.25);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 16px rgba(232,137,10,0.08);
}

.ae-stat-num { font-size: 52px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 12px; letter-spacing: -1px; }
.ae-stat-desc { font-size: 14px; color: var(--muted); line-height: 1.5; }
.ae-stats-quote { font-style: italic; color: var(--muted); font-size: 15px; }

/* ===== SERVICES ===== */
.ae-services-preview { background: var(--bg-light); padding: 72px 24px; }
.ae-services-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.ae-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; text-align: left; }
@media (max-width:720px) { .ae-services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width:480px) { .ae-services-grid { grid-template-columns: 1fr; } }

.ae-service-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,179,0,0.18);
  border-radius: 12px;
  padding: 24px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.ae-service-card:hover { border-color: rgba(255,179,0,0.7); transform: translateY(-6px); box-shadow: 0 20px 56px rgba(232,137,10,0.18); }
.ae-service-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.ae-service-title { font-size: 15px; font-weight: 700; color: var(--brown); margin-bottom: 10px; }
.ae-service-list { list-style: none; }
.ae-service-list li { font-size: 13px; color: var(--muted); padding: 3px 0; border-bottom: 1px solid rgba(26,14,0,0.06); }
.ae-service-list li:last-child { border-bottom: none; }
.ae-service-list li::before { content: '→ '; color: var(--amber); font-weight: 600; }

/* ===== HOW IT WORKS ===== */
.ae-how { background: var(--bg-alt); padding: 72px 24px; }
.ae-how-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.ae-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 48px; }
@media (max-width:600px) { .ae-steps { grid-template-columns: 1fr; } }

.ae-step { text-align: center; }
.ae-step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--gold);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ae-step-title { font-size: 18px; font-weight: 700; color: var(--brown); margin-bottom: 12px; }
.ae-step-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ===== ROI ===== */
.ae-roi { background: var(--gold); padding: 72px 24px; }
.ae-roi-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.ae-roi-inner .ae-section-label { color: var(--brown); opacity: 0.6; }
.ae-roi-inner .ae-section-headline { color: var(--brown); }
.ae-roi-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin: 48px 0 40px; }
@media (max-width:720px) { .ae-roi-grid { grid-template-columns: repeat(2,1fr); } }

.ae-roi-card {
  background: var(--card-bg);
  border: none;
  border-top: 3px solid var(--brown);
  border-radius: 12px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26,14,0,0.12);
}

.ae-roi-num { font-size: 38px; font-weight: 800; color: var(--amber); line-height: 1; margin-bottom: 10px; letter-spacing: -0.5px; }
.ae-roi-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.ae-roi-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  max-width: 520px;
  margin: 0 auto;
  border-left: 3px solid var(--brown);
  padding-left: 20px;
  text-align: left;
  font-style: italic;
  opacity: 0.8;
}

/* ===== CTA BAND ===== */
.ae-cta-band { background: var(--bg-light); padding: 80px 24px; text-align: center; }
.ae-cta-band-inner { max-width: 600px; margin: 0 auto; }
.ae-cta-band h2 { font-size: clamp(28px,5vw,44px); font-weight: 800; color: var(--brown); margin-bottom: 16px; letter-spacing: -0.5px; }
.ae-cta-band p { color: var(--muted); font-size: 16px; margin-bottom: 36px; }

/* ===== PAGE HERO (inner pages) ===== */
.ae-page-hero {
  background: linear-gradient(150deg, #FFFBF0 0%, #FFF4D6 100%);
  padding: 64px 24px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ae-page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.ae-page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: var(--brown);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.ae-page-hero h1 .accent { color: var(--amber); }

.ae-page-hero p {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT FORM ===== */
.ae-contact-section { background: var(--bg-light); padding: 72px 24px; }
.ae-contact-wrap { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
@media (max-width: 720px) { .ae-contact-wrap { grid-template-columns: 1fr; gap: 40px; } }

.ae-contact-info h2 { font-size: 28px; font-weight: 800; color: var(--brown); margin-bottom: 12px; }
.ae-contact-info p { color: var(--muted); font-size: 15px; line-height: 1.7; margin-bottom: 32px; }

.ae-contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ae-contact-detail .icon {
  width: 40px; height: 40px;
  background: rgba(232,137,10,0.1);
  border: 1px solid rgba(232,137,10,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ae-contact-detail span { font-size: 14px; color: var(--muted); }
.ae-contact-detail a { color: var(--amber); text-decoration: none; font-weight: 500; }
.ae-contact-detail a:hover { text-decoration: underline; }

.ae-form-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,179,0,0.22);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(232,137,10,0.08);
}

@media (max-width: 480px) { .ae-form-card { padding: 24px; } }

.ae-form-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 24px;
}

.ae-field {
  margin-bottom: 20px;
}

.ae-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ae-field input,
.ae-field select,
.ae-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(26,14,0,0.15);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--brown);
  background: #FFFBF0;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.ae-field input:focus,
.ae-field select:focus,
.ae-field textarea:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(232,137,10,0.1);
}

.ae-field textarea { resize: vertical; min-height: 120px; }

.ae-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .ae-field-row { grid-template-columns: 1fr; } }

.ae-form-submit {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 15px;
}

.ae-form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.ae-form-success {
  display: none;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 8px;
  padding: 16px;
  text-align: center;
  color: #166534;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

/* ===== ABOUT PAGE ===== */
.ae-about-section { background: var(--bg-light); padding: 72px 24px; }
.ae-about-wrap { max-width: 860px; margin: 0 auto; }

.ae-about-lead {
  font-size: 19px;
  color: var(--brown);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 500;
}

.ae-about-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.ae-values { background: var(--bg-alt); padding: 72px 24px; }
.ae-values-inner { max-width: 860px; margin: 0 auto; text-align: center; }
.ae-values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; text-align: left; }
@media (max-width: 600px) { .ae-values-grid { grid-template-columns: 1fr; } }

.ae-value-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,179,0,0.2);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 28px 24px;
}

.ae-value-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.ae-value-title { font-size: 16px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.ae-value-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ===== SERVICES PAGE ===== */
.ae-services-full { background: var(--bg-light); padding: 72px 24px; }
.ae-services-full-inner { max-width: 980px; margin: 0 auto; }

.ae-service-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,179,0,0.2);
}

.ae-service-section:last-child { border-bottom: none; margin-bottom: 0; }

.ae-service-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.ae-service-section-icon {
  width: 56px; height: 56px;
  background: rgba(232,137,10,0.1);
  border: 1px solid rgba(232,137,10,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.ae-service-section-header h2 { font-size: 22px; font-weight: 700; color: var(--brown); }
.ae-service-section-header p { font-size: 14px; color: var(--muted); margin-top: 4px; }

.ae-service-feature-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 20px; }
@media (max-width: 600px) { .ae-service-feature-grid { grid-template-columns: 1fr; } }

.ae-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 13px;
  color: var(--muted);
  border-left: 2px solid transparent;
  transition: background 0.2s, border-color 0.2s, padding-left 0.2s;
}

.ae-feature-item:hover {
  background: rgba(232,137,10,0.1);
  border-left-color: var(--amber);
  padding-left: 20px;
}

.ae-feature-item::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
}

.ae-pricing-note {
  background: rgba(255,179,0,0.12);
  border: 1px solid rgba(255,179,0,0.3);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--brown);
  margin-top: 24px;
}

/* ===== FOOTER ===== */
.ae-footer { background: var(--footer-bg); padding: 40px 24px 20px; }

.ae-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,179,0,0.1);
  flex-wrap: wrap;
}

.ae-footer-brand {
  display: flex;
  flex-direction: column;
}

.ae-footer-brand img {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.ae-logo-text { font-size: 16px; color: var(--gold); font-weight: 700; margin-bottom: 6px; display: block; }

.ae-footer-brand p { font-size: 12px; color: #6B4A1A; }

.ae-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ae-footer-links a {
  color: #6B4A1A;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.ae-footer-links a:hover { color: var(--gold); }

.ae-footer-copy {
  max-width: 960px;
  margin: 20px auto 0;
  text-align: center;
}

.ae-footer-copy p { font-size: 12px; color: #6B4A1A; }

/* ===== DIVIDER ===== */
.ae-divider { width: 48px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--amber)); border-radius: 2px; margin: 0 auto 40px; }

/* ===== ENHANCED HOVER EFFECTS ===== */

/* Value cards */
.ae-value-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.ae-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(232,137,10,0.15);
  border-color: rgba(255,179,0,0.5);
}

/* Steps */
.ae-step {
  transition: transform 0.28s ease;
}
.ae-step-num {
  transition: box-shadow 0.28s ease;
}
.ae-step:hover { transform: translateY(-4px); }
.ae-step:hover .ae-step-num { box-shadow: 0 0 0 8px rgba(255,179,0,0.18); }

/* About cards grid */
.ae-about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media (max-width: 560px) { .ae-about-cards-grid { grid-template-columns: 1fr; } }

.ae-about-card {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255,179,0,0.15);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.ae-about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(232,137,10,0.13);
  border-color: rgba(255,179,0,0.4);
}
.ae-about-card-icon { font-size: 24px; margin-bottom: 12px; }
.ae-about-card-title { font-size: 15px; font-weight: 700; color: var(--brown); margin-bottom: 8px; }
.ae-about-card-desc { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Contact details slide on hover */
.ae-contact-detail { transition: transform 0.2s ease; }
.ae-contact-detail:hover { transform: translateX(5px); }

/* ROI cards hover */
.ae-roi-card { transition: transform 0.28s ease, box-shadow 0.28s ease; }
.ae-roi-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(26,14,0,0.18); }

/* Tags hover */
.ae-tag { transition: background 0.2s, border-color 0.2s; cursor: default; }
.ae-tag:hover { background: rgba(232,137,10,0.18); border-color: var(--amber); }

/* Footer links slide */
.ae-footer-links a { display: inline-block; transition: color 0.2s, transform 0.2s; }
.ae-footer-links a:hover { color: var(--gold); transform: translateX(4px); }

/* Nav CTA enhanced */
.ae-nav-cta { transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important; }
.ae-nav-cta:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 14px rgba(26,14,0,0.2) !important; }

/* Service section icon hover */
.ae-service-section-icon { transition: background 0.2s, border-color 0.2s, transform 0.2s; }
.ae-service-section:hover .ae-service-section-icon {
  background: rgba(232,137,10,0.18);
  border-color: rgba(232,137,10,0.5);
  transform: scale(1.05);
}

/* ===== SCROLL ANIMATIONS ===== */
.ae-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ae-animate.ae-visible {
  opacity: 1;
  transform: translateY(0);
}
.ae-delay-1 { transition-delay: 0.08s; }
.ae-delay-2 { transition-delay: 0.16s; }
.ae-delay-3 { transition-delay: 0.24s; }
.ae-delay-4 { transition-delay: 0.32s; }
.ae-delay-5 { transition-delay: 0.40s; }
