/*
Theme Name: No Fluff Expat
Theme URI: https://expatfinancialguide.com
Author: No Fluff Expat
Author URI: https://expatfinancialguide.com
Description: Premium financial guide theme for Americans abroad. Clean, authoritative, conversion-focused.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: nofluffexpat
*/

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

:root {
  --green-dark:   #1A6B3C;
  --green-mid:    #2E8B57;
  --green-light:  #D4EDDA;
  --green-pale:   #EEF8F2;
  --gold:         #C8963E;
  --gold-light:   #FDF3E3;
  --gold-dark:    #9E7030;
  --dark:         #141414;
  --dark-2:       #1E1E1E;
  --gray-700:     #3D3D3D;
  --gray-500:     #6B6B6B;
  --gray-300:     #BBBBBB;
  --gray-100:     #F5F5F5;
  --white:        #FFFFFF;
  --red-warn:     #C0392B;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.18);

  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --max-w: 1120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--gold); }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ── Utility ──────────────────────────────────────────────────── */
.tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.tag--gold { background: var(--gold-light); color: var(--gold-dark); }
.tag--dark { background: var(--dark); color: var(--white); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,150,62,.35);
}
.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,150,62,.45);
}
.btn--green {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,107,60,.25);
}
.btn--green:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--white);
}
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: .85rem; }

/* ── Nav ─────────────────────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  padding: 0 24px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
}
.nav-logo span {
  display: inline-block;
  background: var(--green-dark);
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 900;
  font-family: var(--font-body);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-700);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ─────────────────────────────────────────────────────── */
#hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 90px;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,107,60,.45) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(200,150,62,.15) 0%, transparent 60%);
}
.hero-grid {
  position: relative;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-line {
  width: 32px; height: 2px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.55);
  font-size: .82rem;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(20px);
  position: relative;
}
.hero-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  white-space: nowrap;
}
.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 6px;
  text-align: center;
}
.hero-card-sub {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  text-align: center;
  margin-bottom: 24px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.stat-card {
  background: rgba(255,255,255,.07);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
}
.stat-card-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card-label {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  line-height: 1.3;
}
.hero-card .btn { width: 100%; justify-content: center; }

/* ── Section headers ──────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-tag {
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── Countries Section ────────────────────────────────────────── */
#countries {
  padding: 96px 24px;
  background: var(--white);
}
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.country-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  transition: var(--transition);
  position: relative;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.country-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-light);
}
.country-card--coming {
  opacity: .65;
  pointer-events: none;
}
.country-card-header {
  height: 140px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.country-flag-bg {
  position: absolute;
  inset: 0;
  font-size: 7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: .18;
  filter: blur(2px);
  transform: scale(1.1);
  line-height: 1;
}
.country-rank {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px; height: 30px;
  background: var(--dark);
  color: var(--white);
  border-radius: 50%;
  font-size: .75rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}
.country-rank--gold { background: var(--gold); }
.country-flag-emoji {
  font-size: 2.8rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.country-coming-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,.6);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.country-card-body {
  padding: 20px 22px 22px;
}
.country-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.country-tagline {
  font-size: .85rem;
  color: var(--gray-500);
  margin-bottom: 16px;
  line-height: 1.4;
}
.country-highlights {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.country-highlight {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .83rem;
  color: var(--gray-700);
  line-height: 1.4;
}
.country-highlight-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 5px;
  flex-shrink: 0;
}
.country-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  border-top: 1px solid var(--gray-100);
  background: var(--gray-100);
}
.country-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.country-price-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-display);
}
.country-price-label {
  font-size: .75rem;
  color: var(--gray-500);
}

/* ── Why Section ──────────────────────────────────────────────── */
#why {
  padding: 96px 24px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 50%, rgba(26,107,60,.25) 0%, transparent 65%);
}
#why .section-title { color: var(--white); }
#why .section-subtitle { color: rgba(255,255,255,.55); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: var(--max-w);
  margin: 0 auto;
}
.why-item {
  background: var(--dark-2);
  padding: 40px 32px;
  transition: var(--transition);
}
.why-item:hover { background: rgba(26,107,60,.2); }
.why-icon {
  width: 48px; height: 48px;
  background: rgba(200,150,62,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}
.why-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-body {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

/* ── Mistakes Section ─────────────────────────────────────────── */
#mistakes {
  padding: 96px 24px;
  background: var(--gray-100);
}
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.mistake-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border-left: 4px solid var(--red-warn);
  box-shadow: var(--shadow-sm);
}
.mistake-card-x {
  font-weight: 900;
  color: var(--red-warn);
  font-size: 1rem;
  margin-bottom: 8px;
  font-family: var(--font-body);
}
.mistake-card-text {
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.mistake-card-cost {
  margin-top: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--red-warn);
  letter-spacing: .04em;
}

/* ── Testimonials ─────────────────────────────────────────────── */
#testimonials {
  padding: 96px 24px;
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--green-pale);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--green-light);
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--green-light);
  font-family: var(--font-display);
  line-height: .8;
  margin-bottom: 12px;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green-mid);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-meta {
  font-size: .78rem;
  color: var(--gray-500);
}
.stars {
  color: var(--gold);
  font-size: .9rem;
  margin-bottom: 12px;
}

/* ── About / Trust ────────────────────────────────────────────── */
#about {
  padding: 96px 24px;
  background: var(--green-dark);
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-body {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}
.about-stat-label {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: 2px;
}
.about-right {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.5;
}
.about-list-icon {
  width: 28px; height: 28px;
  background: rgba(200,150,62,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: .8rem;
  margin-top: 1px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
#faq {
  padding: 96px 24px;
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
}
.faq-q:hover { background: var(--green-light); }
.faq-q.open { background: var(--green-dark); color: var(--white); }
.faq-chevron {
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
}
.faq-q.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: .9rem;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--gray-100);
}
.faq-a.open { display: block; }

/* ── CTA Banner ───────────────────────────────────────────────── */
#cta-banner {
  padding: 80px 24px;
  background: var(--gold);
  position: relative;
  overflow: hidden;
  text-align: center;
}
#cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
}
.cta-banner-sub {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 32px;
  position: relative;
}
.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
}
.btn--white {
  background: var(--white);
  color: var(--gold-dark);
  font-weight: 700;
}
.btn--white:hover {
  background: var(--dark);
  color: var(--white);
}

/* ── Footer ───────────────────────────────────────────────────── */
#site-footer {
  background: var(--dark);
  padding: 64px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-brand-desc {
  font-size: .85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 260px;
}
.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.3);
}
.footer-disclaimer {
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  max-width: 500px;
  text-align: right;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 440px; }
  .why-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #hero { padding: 64px 20px 56px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-disclaimer { text-align: left; }
}

/* ── Animations ───────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}
.anim-fadeup {
  opacity: 0;
  animation: fadeUp .6s ease forwards;
}
.anim-delay-1 { animation-delay: .1s; }
.anim-delay-2 { animation-delay: .2s; }
.anim-delay-3 { animation-delay: .3s; }
.anim-delay-4 { animation-delay: .4s; }
