/* ===== SWEET CASH – STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #122040;
  --blue: #1a56db;
  --blue-light: #2563eb;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --green: #059669;
  --green-light: #10b981;
  --gold: #f59e0b;
  --white: #ffffff;
  --off-white: #f8faff;
  --light: #eef2ff;
  --gray: #64748b;
  --gray-light: #cbd5e1;
  --border: #e2e8f0;
  --text: #1e293b;
  --text-light: #475569;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font);
  line-height: 1.2;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  box-shadow: 0 4px 16px rgba(26,86,219,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,0.45); }
.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }
.btn-secondary {
  background: var(--light);
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-secondary:hover { background: var(--blue); color: white; }
.btn-white {
  background: white;
  color: var(--blue);
  font-weight: 700;
}
.btn-white:hover { background: var(--off-white); }
.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--transition);
}
.header.scrolled { background: var(--navy); box-shadow: var(--shadow-lg); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 22px;
  color: white;
}
.logo-icon { font-size: 24px; }
.logo-text strong { color: var(--teal-light); }
.logo-img { height: 42px; width: auto; display: block; vertical-align: middle; border-radius: 4px; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-family: var(--font);
  font-weight: 500;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: white; background: rgba(255,255,255,0.08); }
.nav-cta {
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  border-radius: 7px;
  font-size: 14px;
  font-family: var(--font);
  font-weight: 600;
  margin-left: 8px;
  transition: all var(--transition);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(26,86,219,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(145deg, var(--navy) 0%, #0d1f3c 50%, #0a1628 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(26,86,219,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(13,148,136,0.12) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(245,158,11,0.05) 0%, transparent 30%);
}
.hero-content { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-family: var(--font);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  color: white;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.12;
}
.accent {
  background: linear-gradient(90deg, var(--teal-light), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-family: var(--font);
}
.trust-icon { font-size: 16px; }
.hero-graphic {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  pointer-events: none;
}
.circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
}
.c1 { width: 480px; height: 480px; top: 0; left: 0; animation: spin 40s linear infinite; }
.c2 { width: 340px; height: 340px; top: 70px; left: 70px; border-color: rgba(13,148,136,0.12); animation: spin 28s linear infinite reverse; }
.c3 { width: 200px; height: 200px; top: 140px; left: 140px; background: radial-gradient(circle, rgba(26,86,219,0.08), transparent); }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== SECTIONS ===== */
.section { padding: 90px 0; }
.bg-light { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  padding: 4px 14px;
  background: var(--light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.section-header h2 { font-size: clamp(28px,3.5vw,42px); color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 17px; }

/* ===== CARDS ===== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.card.featured {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  color: white;
  border-color: transparent;
}
.card.featured h3, .card.featured p { color: rgba(255,255,255,0.9); }
.card.featured p { color: rgba(255,255,255,0.65); }
.card-icon { font-size: 36px; margin-bottom: 20px; }
.card h3 { font-size: 20px; margin-bottom: 12px; color: var(--navy); }
.card p { color: var(--text-light); line-height: 1.7; }

/* ===== SEGMENTS ===== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.segment-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: block;
}
.segment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--teal);
}
.seg-icon { font-size: 32px; margin-bottom: 14px; }
.segment-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--navy); }
.segment-card p { font-size: 14px; color: var(--text-light); }

/* ===== CASE CARDS ===== */
.case-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.case-card.featured-case {
  background: linear-gradient(145deg, var(--teal), #0a7a70);
  color: white;
  border-color: transparent;
}
.case-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 11px;
  font-family: var(--font);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.featured-case .case-tag { background: rgba(255,255,255,0.2); color: white; }
.case-card h4 { font-size: 18px; margin-bottom: 12px; color: var(--navy); }
.featured-case h4 { color: white; }
.case-card p { color: var(--text-light); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.featured-case p { color: rgba(255,255,255,0.75); }
.case-outcome {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.featured-case .case-outcome { color: rgba(255,255,255,0.85); border-top-color: rgba(255,255,255,0.2); }

/* ===== COMPLIANCE STRIP ===== */
.compliance-strip {
  background: linear-gradient(135deg, var(--navy), #0d2040);
  padding: 48px 0;
}
.compliance-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.comp-icon { font-size: 48px; flex-shrink: 0; }
.comp-text { flex: 1; }
.comp-text strong { display: block; font-size: 20px; color: white; font-family: var(--font); margin-bottom: 8px; }
.comp-text p { color: rgba(255,255,255,0.65); font-size: 15px; }
.comp-text strong span { color: var(--teal-light); }

/* ===== LEAD FORM ===== */
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.lead-info h2 { font-size: clamp(26px,3vw,38px); color: var(--navy); margin-bottom: 16px; }
.lead-info p { color: var(--text-light); font-size: 17px; margin-bottom: 28px; }
.lead-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.lead-benefits li { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; }
.lead-benefits li span { font-size: 18px; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.ci-item { display: flex; align-items: center; gap: 10px; color: var(--text-light); font-size: 14px; }
.lead-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.lead-form h3 { font-size: 22px; margin-bottom: 24px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-family: var(--font); font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--transition);
  background: var(--off-white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
}
.form-check {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.form-check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--text-light); }
.form-note { text-align: center; font-size: 12px; color: var(--gray); margin-top: 12px; }
.center-cta { text-align: center; margin-top: 40px; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo { margin-bottom: 16px; }
.logo-light .logo-img { height: 56px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-family: var(--font);
}
.footer-links h5, .footer-contact h5 {
  color: white;
  font-size: 14px;
  margin-bottom: 18px;
  font-family: var(--font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 12px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 14px; transition: color var(--transition); }
.footer-links a:hover { color: var(--teal-light); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 14px; margin-bottom: 8px; }
.footer-bottom { padding: 20px 0; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; line-height: 1.7; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  padding: 120px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(26,86,219,0.12) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(13,148,136,0.1) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(32px,4vw,52px); color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 18px; max-width: 560px; margin: 0 auto; }
.page-hero .section-tag { margin-bottom: 16px; }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.stat-card { background: var(--light); border-radius: var(--radius); padding: 24px; text-align: center; }
.stat-num { font-size: 36px; font-family: var(--font); font-weight: 700; color: var(--blue); }
.stat-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }

/* ===== SERVICES PAGE ===== */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 72px;
}
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  background: linear-gradient(145deg, var(--light), white);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  border: 1px solid var(--border);
  font-size: 80px;
}
.service-icon-big { font-size: 64px; display: block; margin-bottom: 16px; }
.service-text h2 { font-size: 30px; color: var(--navy); margin-bottom: 16px; }
.service-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }
.service-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.service-features li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: 15px; }
.service-features li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 16px; }

/* ===== SEGMENTS FULL PAGE ===== */
.segments-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.segment-full-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.segment-full-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--blue-light); }
.segment-full-card .seg-icon { font-size: 44px; margin-bottom: 18px; }
.segment-full-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.segment-full-card p { color: var(--text-light); margin-bottom: 16px; }
.loan-types { display: flex; flex-wrap: wrap; gap: 8px; }
.loan-tag {
  padding: 4px 12px;
  background: var(--light);
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-family: var(--font);
  font-weight: 500;
}

/* ===== TOOLS PAGE ===== */
.tool-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  margin-bottom: 32px;
}
.tool-card h3 { font-size: 22px; color: var(--navy); margin-bottom: 8px; }
.tool-card > p { color: var(--text-light); margin-bottom: 28px; }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; }
.calc-result {
  background: var(--light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}
.result-num { font-size: 36px; font-family: var(--font); font-weight: 700; color: var(--blue); }
.result-label { font-size: 13px; color: var(--text-light); margin-top: 4px; }
.calc-note { font-size: 12px; color: var(--gray); margin-top: 12px; text-align: center; }

/* Wizard steps */
.wizard-steps { display: flex; gap: 0; margin-bottom: 32px; }
.wizard-step {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-family: var(--font);
  color: var(--text-light);
  position: relative;
}
.wizard-step:first-child { border-radius: 8px 0 0 8px; }
.wizard-step:last-child { border-radius: 0 8px 8px 0; }
.wizard-step.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ===== COMPLIANCE PAGE ===== */
.compliance-section { margin-bottom: 48px; }
.compliance-section h3 { font-size: 22px; color: var(--navy); margin-bottom: 14px; padding-bottom: 14px; border-bottom: 2px solid var(--light); }
.compliance-section p { color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.compliance-badges { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; }
.comp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
}
.comp-badge span { font-size: 22px; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.contact-info-full { background: var(--navy); border-radius: var(--radius-lg); padding: 40px; color: white; }
.contact-info-full h3 { color: white; font-size: 22px; margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.ci-icon { font-size: 24px; flex-shrink: 0; }
.ci-content strong { display: block; color: white; font-family: var(--font); margin-bottom: 4px; font-size: 15px; }
.ci-content p { color: rgba(255,255,255,0.6); font-size: 14px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 16px 0; }
.breadcrumb a { color: var(--text-light); font-size: 14px; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: var(--gray-light); margin: 0 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .lead-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse { direction: ltr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .segments-full { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; position: fixed; top: 68px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 4px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav.open { display: flex; }
  .nav-link { padding: 12px 16px; }
  .hamburger { display: flex; }
  .hero { padding: 120px 0 72px; }
  .hero-graphic { display: none; }
  .cards-3 { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compliance-inner { flex-direction: column; text-align: center; }
  .hero-trust { gap: 16px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .calc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .segments-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions .btn { width: auto; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===== NOTIFICATION ===== */
.notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font);
  font-size: 15px;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notification.show { transform: translateY(0); opacity: 1; }
.notification-error { background: #c0392b; }
