@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Instrument+Serif:ital@0;1&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #0D2B5E;
  --navy-dark:  #071A3E;
  --navy-mid:   #1A4080;
  --navy-light: #2563EB;
  --orange:     #F26522;
  --orange-lt:  #FF8C42;
  --orange-pale:#FFF0E8;
  --white:      #FFFFFF;
  --off:        #F7F8FC;
  --border:     #E2E8F0;
  --text:       #1E293B;
  --muted:      #64748B;
  --light-text: #94A3B8;
  --font:       'Plus Jakarta Sans', system-ui, sans-serif;
  --serif:      'Instrument Serif', Georgia, serif;
  --shadow-sm:  0 1px 3px rgba(13,43,94,0.06), 0 1px 2px rgba(13,43,94,0.04);
  --shadow-md:  0 4px 16px rgba(13,43,94,0.08), 0 2px 4px rgba(13,43,94,0.04);
  --shadow-lg:  0 16px 48px rgba(13,43,94,0.12), 0 4px 12px rgba(13,43,94,0.06);
  --shadow-xl:  0 32px 80px rgba(13,43,94,0.16);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* ── Utilities ───────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-off     { background: var(--off); }
.bg-navy    { background: var(--navy); }
.bg-navy-dk { background: var(--navy-dark); }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4 { line-height: 1.15; font-weight: 700; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
}
.eyebrow::before {
  content: ''; display: inline-block;
  width: 28px; height: 2px; background: var(--orange); border-radius: 1px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.orange-text { color: var(--orange); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px; font-size: 14px;
  font-weight: 600; text-decoration: none; cursor: pointer;
  border: none; transition: all 0.2s ease; font-family: var(--font);
  white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-lt));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242,101,34,0.35);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,101,34,0.45); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }
.btn-outline-white {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-lg { padding: 17px 36px; font-size: 15px; border-radius: 12px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Cards ───────────────────────────────────────────────── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  box-shadow: var(--shadow-sm); transition: all 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(37,99,235,0.2); }
.card-top-bar { border-top: 3px solid var(--orange); }

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(13,43,94,0.06);
  transition: all 0.3s ease;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: 1200px; margin: 0 auto; padding: 0 32px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.logo-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.logo-mark:hover { background: var(--navy-mid); }
.logo-mark span { color: white; font-weight: 800; font-size: 17px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 18px; font-weight: 800; color: var(--navy); letter-spacing: -0.3px; }
.logo-name em { color: var(--orange); font-style: normal; }
.logo-sub { font-size: 9px; color: var(--light-text); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 8px 16px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--muted); text-decoration: none; transition: all 0.2s;
}
.nav-links a:hover { color: var(--navy); background: var(--off); }
.nav-links a.active { color: var(--orange); font-weight: 600; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone { font-size: 13px; color: var(--muted); font-weight: 500; text-decoration: none; }
.nav-phone:hover { color: var(--navy); }

/* Mobile hamburger */
.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(--navy); border-radius: 2px; transition: all 0.3s;
}
.mobile-menu {
  display: none; background: white; border-top: 1px solid var(--border);
  padding: 16px 32px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 0; font-size: 15px; font-weight: 500;
  color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .btn { margin-top: 16px; width: 100%; justify-content: center; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--white); padding-top: 68px;
  position: relative; overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(13,43,94,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,43,94,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-orb1 {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,43,94,0.055) 0%, transparent 65%);
  top: -200px; right: -200px; pointer-events: none;
}
.hero-orb2 {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,0.06) 0%, transparent 65%);
  bottom: -100px; left: -100px; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow { margin-bottom: 20px; }
.hero-h1 {
  font-size: clamp(40px, 5vw, 62px); font-weight: 800;
  line-height: 1.07; letter-spacing: -1.5px;
  color: var(--navy); margin-bottom: 16px;
}
.hero-h1 .line-orange { color: var(--orange); }
.hero-bar {
  width: 60px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  margin-bottom: 24px;
}
.hero-p { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-p strong { color: var(--navy); font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.trust-dot { width: 16px; height: 16px; border-radius: 50%; background: rgba(242,101,34,0.15); flex-shrink: 0; display:flex; align-items:center; justify-content:center; }
.trust-dot::after { content:''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); }

/* Hero right card */
.hero-card {
  background: var(--navy-dark); border-radius: 24px; padding: 32px;
  box-shadow: var(--shadow-xl); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(242,101,34,0.08);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.hero-card-logo { width: 40px; height: 40px; border-radius: 10px; background: var(--orange); display:flex; align-items:center; justify-content:center; }
.hero-card-logo span { color: white; font-weight: 800; font-size: 16px; }
.hero-card-title { color: white; font-weight: 700; font-size: 15px; }
.hero-card-sub { color: rgba(255,255,255,0.4); font-size: 11px; }
.hero-card-badge { margin-left: auto; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: #4ade80; font-size: 10px; font-weight: 600; padding: 4px 10px; border-radius: 20px; }
.hero-card-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 14px; }
.hero-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.hero-card-item { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 14px; transition: background 0.2s; }
.hero-card-item:hover { background: rgba(255,255,255,0.09); }
.hero-card-item-icon { width: 28px; height: 28px; border-radius: 8px; margin-bottom: 8px; display:flex; align-items:center; justify-content:center; font-size: 14px; }
.hero-card-item-name { color: white; font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.hero-card-item-sub { color: rgba(255,255,255,0.3); font-size: 10px; }
.hero-card-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.08); }
.hero-card-stat { text-align: center; padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.08); }
.hero-card-stat:last-child { border-right: none; }
.hero-card-stat-val { color: var(--orange); font-weight: 800; font-size: 20px; line-height: 1; margin-bottom: 4px; }
.hero-card-stat-lbl { color: rgba(255,255,255,0.3); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; }

/* Floating badge */
.floating-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: white; border-radius: 14px; padding: 14px 18px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--border);
}
.floating-badge-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--orange-pale); display:flex; align-items:center; justify-content:center; font-size: 18px; }
.floating-badge-text { font-size: 12px; font-weight: 700; color: var(--navy); }
.floating-badge-sub { font-size: 10px; color: var(--muted); margin-top: 1px; }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar { background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-item {
  background: white; border-radius: 16px; padding: 28px 24px;
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  position: relative; overflow: hidden; transition: all 0.3s;
}
.stat-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-lt));
  transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-val { font-size: 40px; font-weight: 800; color: var(--navy); letter-spacing: -1px; line-height: 1; margin-bottom: 6px; }
.stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }

/* ── Section headers ─────────────────────────────────────── */
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.section-h2 { font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; letter-spacing: -0.8px; color: var(--navy); margin-top: 12px; margin-bottom: 16px; }
.section-p { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 560px; }
.section-header.center .section-p { margin: 0 auto; }

/* ── Service cards ────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.service-card {
  background: white; border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; box-shadow: var(--shadow-sm);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.3s; transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: rgba(37,99,235,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-num { position: absolute; top: 20px; right: 20px; font-size: 52px; font-weight: 800; color: var(--border); line-height: 1; }
.service-icon { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px; display:flex; align-items:center; justify-content:center; font-size: 22px; }
.service-title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.service-tag { font-size: 11px; font-weight: 600; color: var(--accent,var(--orange)); margin-bottom: 12px; }
.service-desc { font-size: 13.5px; color: var(--muted); line-height: 1.65; margin-bottom: 18px; }
.service-list { list-style: none; }
.service-list li { font-size: 13px; color: #475569; padding: 4px 0 4px 14px; position: relative; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent,var(--orange)); }

/* ── Why cards ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.why-card { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 22px; display: flex; gap: 16px; transition: all 0.25s; }
.why-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }
.why-icon { width: 36px; height: 36px; border-radius: 10px; background: var(--orange-pale); display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:16px; }
.why-title { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.why-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── Industries ──────────────────────────────────────────── */
.industries-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.industry-card { background: white; border: 1px solid var(--border); border-radius: 16px; padding: 24px 16px; text-align: center; box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative; overflow: hidden; }
.industry-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--orange); }
.industry-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-lt)); transform: scaleX(0); transition: transform 0.3s; transform-origin: center; }
.industry-card:hover::after { transform: scaleX(1); }
.industry-emoji { font-size: 36px; margin-bottom: 10px; }
.industry-name { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.industry-desc { font-size: 11px; color: var(--muted); line-height: 1.5; }

/* ── Vendors ─────────────────────────────────────────────── */
.vendors-wrap { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.vendor-chip { padding: 9px 18px; border-radius: 8px; background: white; border: 1px solid var(--border); font-size: 13px; font-weight: 500; color: #475569; cursor: default; transition: all 0.2s; box-shadow: var(--shadow-sm); }
.vendor-chip:hover { border-color: var(--navy); color: var(--navy); box-shadow: var(--shadow-md); }
.vendor-chip.more { background: var(--navy); color: white; border-color: var(--navy); font-weight: 700; }

/* ── CTA section ─────────────────────────────────────────── */
.cta-section { background: var(--navy-dark); padding: 96px 0; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.12) 0%, transparent 65%); }
.cta-section::after { content: ''; position: absolute; bottom: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 65%); }
.cta-inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-h2 { font-size: clamp(32px,4vw,52px); font-weight: 800; color: white; margin: 16px 0; letter-spacing: -1px; line-height: 1.1; }
.cta-h2 em { font-style: normal; color: var(--orange); }
.cta-p { color: rgba(255,255,255,0.55); font-size: 17px; line-height: 1.7; margin-bottom: 40px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.3); }
.cta-note a { color: rgba(255,255,255,0.5); text-decoration: none; }
.cta-note a:hover { color: white; }

/* ── Footer ──────────────────────────────────────────────── */
footer { background: var(--navy); color: white; }
.footer-top { padding: 64px 0 48px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand-name { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.footer-brand-name em { color: var(--orange); font-style: normal; }
.footer-tagline { color: rgba(255,255,255,0.45); font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.footer-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; color: rgba(255,255,255,0.3); }
.footer-h4 { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 14px; text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-contact-item:hover { color: var(--orange); }
.footer-contact-icon { width: 30px; height: 30px; border-radius: 8px; background: rgba(255,255,255,0.06); display:flex; align-items:center; justify-content:center; font-size: 13px; flex-shrink: 0; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero { background: var(--navy-dark); padding: 120px 0 72px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; top: -100px; right: -100px; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(242,101,34,0.1) 0%, transparent 65%); }
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(36px,5vw,58px); font-weight: 800; color: white; margin: 14px 0 16px; letter-spacing: -1px; line-height: 1.1; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { color: rgba(255,255,255,0.55); font-size: 18px; max-width: 580px; line-height: 1.7; }

/* ── Misc ────────────────────────────────────────────────── */
.divider { height: 1px; background: var(--border); margin: 0; }
.tag { display: inline-block; padding: 5px 12px; border-radius: 6px; font-size: 11px; font-weight: 600; }
.tag-orange { background: var(--orange-pale); color: var(--orange); }
.tag-navy { background: rgba(13,43,94,0.08); color: var(--navy); }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #475569; }
.check-list li::before { content: '✓'; width: 20px; height: 20px; border-radius: 50%; background: var(--orange-pale); color: var(--orange); font-size: 11px; font-weight: 700; flex-shrink: 0; display:flex; align-items:center; justify-content:center; margin-top: 1px; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-btns { flex-direction: column; }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
