/* ============================================================
   SOVEREIGN ALLIANCE — Main Stylesheet
   Author: Claude / Anthropic
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  /* Brand palette */
  --navy:        #0f2044;
  --navy-mid:    #1a3260;
  --blue:        #2563eb;
  --blue-light:  #3b82f6;
  --blue-pale:   #eff6ff;
  --gold:        #d97706;
  --gold-light:  #fef3c7;
  --teal:        #0d9488;
  --teal-light:  #f0fdfa;

  /* Neutrals */
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-700:    #374151;
  --gray-900:    #111827;

  /* Typography */
  --font-body:   'Inter', system-ui, -apple-system, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;

  /* Layout */
  --max-w:       1200px;
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   20px;

  /* Transitions */
  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --dur:         220ms;

  /* Shadows */
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:   0 20px 40px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.06);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Utility ───────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: .8125rem 1.75rem;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--navy-mid);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid rgba(15,32,68,.2);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--navy);
  background: rgba(15,32,68,.04);
}
.btn-submit { width: 100%; padding: 1rem; font-size: 1rem; }

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   HEADER / NAV
============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--dur) var(--ease);
}
.scrolled .logo, .logo--light { color: var(--navy); }
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--blue);
  color: var(--white);
  border-radius: 8px;
  font-size: .875rem;
  font-weight: 800;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.logo-text { font-size: 1rem; }

/* Desktop nav */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.main-nav a {
  font-size: .875rem;
  font-weight: 500;
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,.85);
  transition: all var(--dur) var(--ease);
}
.scrolled .main-nav a { color: var(--gray-700); }
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.12); }
.scrolled .main-nav a:hover { color: var(--navy); background: var(--gray-100); }

.nav-cta {
  background: var(--white) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  margin-left: .5rem;
  box-shadow: var(--shadow-sm);
}
.scrolled .nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}
.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
  z-index: 99;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all var(--dur) var(--ease);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu ul { padding: 1rem 1.5rem 1.5rem; }
.mobile-menu li a {
  display: block;
  padding: .75rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu li:last-child a {
  color: var(--blue);
  border-bottom: none;
  font-weight: 600;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #1e4080 100%);
  overflow: hidden;
  padding: 10rem 0 7rem;
}

/* Subtle background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,148,136,.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  padding: .375rem 1rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.1875rem);
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.trust-item svg {
  width: 16px;
  height: 16px;
  color: #4ade80;
  flex-shrink: 0;
}

/* Wave divider */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.hero-wave svg { width: 100%; height: auto; }

/* ============================================================
   SERVICES
============================================================ */
.services {
  padding: 6rem 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease);
  position: relative;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card--featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
}
.service-card--featured:hover {
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-lg);
}

.featured-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--blue);
  color: var(--white);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon--blue  { background: var(--blue-pale);  color: var(--blue); }
.service-icon--gold  { background: var(--gold-light); color: var(--gold); }
.service-icon--teal  { background: var(--teal-light); color: var(--teal); }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.375rem;
  color: var(--navy);
  margin-bottom: .75rem;
}
.service-card p { color: var(--gray-500); font-size: .9375rem; margin-bottom: 1.25rem; }

.service-list {
  margin-bottom: 1.5rem;
}
.service-list li {
  font-size: .875rem;
  color: var(--gray-700);
  padding: .35rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap var(--dur) var(--ease);
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.service-link:hover { color: var(--navy-mid); gap: .5rem; }

/* Confidential note inside featured service card */
.confidential-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: var(--gold-light);
  border: 1px solid rgba(217,119,6,.2);
  border-radius: var(--radius-sm);
  padding: .6rem .875rem;
  margin-bottom: 1.25rem;
  font-size: .8125rem;
  font-weight: 500;
  color: #92400e;
}
.confidential-note svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1em;
}

/* Add-On Banner */
.addon-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #e0f2fe 100%);
  border: 1px solid rgba(37,99,235,.15);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
}
.addon-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.addon-icon {
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(37,99,235,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.addon-icon svg { width: 26px; height: 26px; }
.addon-content { flex: 1; min-width: 220px; }
.addon-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .3rem;
}
.addon-content h4 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4rem;
}
.addon-content p { font-size: .875rem; color: var(--gray-500); }
.addon-cta { flex-shrink: 0; white-space: nowrap; }

/* ============================================================
   WHY US
============================================================ */
.why-us {
  padding: 6rem 0;
  background: var(--gray-50);
}

.why-us-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.why-us-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.why-us-header p {
  font-size: 1.0625rem;
  color: var(--gray-500);
}

.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow var(--dur) var(--ease);
}
.pillar:hover { box-shadow: var(--shadow-md); }
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--blue-pale);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 20px; height: 20px; }
.pillar h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: .3rem; }
.pillar p { font-size: .875rem; color: var(--gray-500); line-height: 1.6; }

/* ============================================================
   PROCESS
============================================================ */
.process {
  padding: 6rem 0;
  background: var(--white);
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
  padding: 2rem 1.5rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: box-shadow var(--dur) var(--ease);
}
.step:hover { box-shadow: var(--shadow-md); }

.step-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue);
  opacity: .3;
  line-height: 1;
  margin-bottom: .75rem;
}
.step h3 { font-size: 1.0625rem; font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.step p { font-size: .875rem; color: var(--gray-500); }

.step-arrow {
  flex-shrink: 0;
  width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  color: var(--gray-400);
}
.step-arrow svg { width: 20px; height: 20px; }

/* ============================================================
   CONTACT
============================================================ */
.contact {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.contact-info > p { color: var(--gray-500); font-size: 1.0625rem; margin-bottom: 2rem; }

.contact-details { margin-bottom: 2rem; }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--blue);
  font-size: 1rem;
  transition: color var(--dur) var(--ease);
}
.contact-email:hover { color: var(--navy); }
.contact-email svg { width: 18px; height: 18px; }

.contact-assurance { display: flex; flex-direction: column; gap: .75rem; }
.assurance-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--gray-500);
}
.assurance-item svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* ── Form ── */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.form-row { display: flex; gap: 1rem; }
.form-row--2 > .form-group { flex: 1; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.25rem;
}
.form-group label {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--gray-700);
}
.required { color: var(--blue); margin-left: .1em; }

.form-group input,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  font-size: .9375rem;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input.invalid,
.form-group textarea.invalid,
.form-group .select-wrap.invalid select {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1);
}

.form-group textarea { resize: vertical; min-height: 130px; }

/* Select */
.select-wrap { position: relative; }
.select-wrap select {
  width: 100%;
  padding: .75rem 2.5rem .75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-50);
  color: var(--gray-900);
  font-size: .9375rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.select-wrap select:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.select-arrow {
  position: absolute;
  right: .875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gray-400);
  pointer-events: none;
}

/* Turnstile */
.cf-turnstile { margin: 1rem 0; }

.form-footer { margin-top: .5rem; }

/* Alerts */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: .9rem;
}
.form-alert svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: .1em; }
.form-alert p { line-height: 1.5; }
.form-alert--success { background: #f0fdf4; color: #166534; }
.form-alert--success svg { color: #16a34a; }
.form-alert--error { background: #fef2f2; color: #991b1b; }
.form-alert--error svg { color: #dc2626; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: .75rem; }
.footer-brand p { font-size: .875rem; line-height: 1.6; color: rgba(255,255,255,.5); }
.footer-links nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color var(--dur) var(--ease);
}
.footer-links a:hover { color: var(--white); }
.footer-contact a {
  font-size: .9rem;
  color: rgba(255,255,255,.6);
  transition: color var(--dur) var(--ease);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
}
.footer-bottom p { font-size: .8125rem; color: rgba(255,255,255,.35); }

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

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card:last-child { grid-column: span 2; max-width: 480px; margin: 0 auto; }
  .pillars { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
  .footer-links nav { justify-content: center; }
}

/* Mobile nav */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 8rem 0 6rem; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:last-child { grid-column: span 1; max-width: 100%; margin: 0; }

  .steps {
    flex-direction: column;
    gap: 1rem;
  }
  .step-arrow {
    display: none;
  }

  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .form-row--2 { flex-direction: column; gap: 0; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; gap: .75rem; }
}

/* ── Animations ── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .55s var(--ease), transform .55s var(--ease);
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-in-delay-1 { transition-delay: .1s; }
  .fade-in-delay-2 { transition-delay: .2s; }
  .fade-in-delay-3 { transition-delay: .3s; }
}
