/* ============================================
   ADAAF ADVISORY SERVICES - STYLESHEET
   Design: Deep navy + warm gold, Cormorant serif display
   ============================================ */

:root {
  --navy: #0D1B2A;
  --navy-mid: #162336;
  --navy-light: #1E3048;
  --gold: #C9A84C;
  --gold-light: #E4C47A;
  --gold-faint: rgba(201, 168, 76, 0.12);
  --cream: #F7F4EE;
  --cream-deep: #EDE9E0;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --white: #FFFFFF;
  --border: rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 8px 48px rgba(13, 27, 42, 0.14);
  --transition: 0.25s ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; font-weight: 600; font-family: 'Inter', sans-serif; }
em { font-style: italic; color: var(--gold); }
p { color: #4A5568; line-height: 1.75; }
strong { font-weight: 600; color: var(--text); }

/* === LAYOUT === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 6rem 0; }
.section-tinted { background: var(--cream); }
.section-dark { background: var(--navy); }

/* === EYEBROW & HEADER === */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header.light h2, .section-header.light .eyebrow { color: var(--gold-light); }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.65); }
.section-subtitle { margin-top: 1rem; font-size: 1.05rem; color: var(--text-muted); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,168,76,0.35); }
.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { background: rgba(255,255,255,0.15); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; padding: 1rem; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(13, 27, 42, 0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo { display: flex; align-items: center; }
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-text em { color: var(--gold); font-style: normal; margin-left: 3px; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.05em; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* === HERO === */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.geo {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}
.geo-1 {
  width: 600px; height: 600px;
  background: var(--gold);
  top: -150px; right: -100px;
}
.geo-2 {
  width: 400px; height: 400px;
  border: 1px solid var(--gold);
  bottom: 80px; left: -80px;
  background: transparent;
  opacity: 0.1;
}
.geo-3 {
  width: 200px; height: 200px;
  background: var(--gold);
  bottom: -50px; right: 200px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  max-width: 720px;
  padding-left: max(1.5rem, calc((100vw - 1200px)/2 + 1.5rem));
}
.hero-badge {
  display: inline-block;
  background: var(--gold-faint);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
}
.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* === STRIP === */
.strip {
  background: var(--navy-light);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}
.strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.strip-item svg { color: var(--gold); flex-shrink: 0; }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p { margin-bottom: 1.25rem; }
.about-content .btn-outline { margin-top: 0.5rem; }
.philosophy-card {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.philosophy-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.philosophy-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-icon {
  width: 44px; height: 44px;
  background: var(--gold-faint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.pillar-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.pillar-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

/* === TEAM === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-lg); }
.featured-card {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow);
}
.team-initial {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.featured-card .team-initial { background: var(--gold); color: var(--navy); }
.team-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.team-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.team-card p { font-size: 0.9rem; }

/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  background: var(--white);
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold-faint);
  color: rgba(201, 168, 76, 0.3);
  line-height: 1;
  margin-bottom: 1rem;
  -webkit-text-stroke: 1px rgba(201, 168, 76, 0.4);
}
.service-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.85rem; }
.service-card p { font-size: 0.9rem; }

/* Services last card full width */
.services-grid .service-card:last-child {
  grid-column: span 1;
}

/* === PLANS === */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.plan-card {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
}
.plan-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201,168,76,0.3), 0 8px 40px rgba(0,0,0,0.3);
}
.plan-badge {
  display: inline-block;
  background: var(--gold-faint);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.featured-badge {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.plan-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.plan-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.plan-row {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.3rem 1rem;
  align-items: center;
}
.plan-period {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--white);
}
.plan-calls {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
}
.plan-price {
  text-align: right;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.price-original {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
}
.price-now {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.plan-row .plan-price:only-child,
.plan-row > .plan-price:not(:has(.price-original)) {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.btn-plan {
  display: inline-block;
  grid-column: 1 / -1;
  margin-top: 0.25rem;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: all var(--transition);
  letter-spacing: 0.03em;
}
.btn-plan:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.plans-half {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.plan-card-inner {
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
}

/* === WHY === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.why-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.why-icon {
  width: 50px; height: 50px;
  background: var(--gold-faint);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.why-card h4 { margin-bottom: 0.75rem; }
.why-card p { font-size: 0.9rem; }

/* === FAQ === */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--navy); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}
.faq-a p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
}
.faq-item.open .faq-a { max-height: 300px; }

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-item svg { color: var(--gold); flex-shrink: 0; }
.contact-item a:hover { color: var(--navy); }
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--cream-deep);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-success { text-align: center; padding: 3rem 1rem; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

/* === FOOTER === */
.footer {
  background: var(--navy);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-logo em { color: var(--gold); font-style: normal; font-size: 1rem; font-family: 'Inter', sans-serif; font-weight: 400; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom { }
.footer-disclaimer {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-disclaimer p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card:last-child { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr 1fr; }
  .plans-half { grid-column: span 2; flex-direction: row; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card:last-child { grid-column: span 1; }
  .services-grid { grid-template-columns: 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-half { grid-column: span 1; flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .hero-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .strip-inner { justify-content: flex-start; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.6s ease 0.1s both; }
.hero-title { animation: fadeUp 0.6s ease 0.2s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.35s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.45s both; }
.hero-stats { animation: fadeUp 0.6s ease 0.55s both; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
