/* ============================================
   AO2T — Design System
   ============================================ */

/* -- Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@600;700;800;900&display=swap');

:root {
  --navy:    #0B1F3A;
  --navy-light: #112847;
  --navy-dark: #071428;
  --green:   #00A86B;
  --green-light: #00C47D;
  --green-dark: #008F5A;
  --white:   #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100:#F1F5F9;
  --gray-200:#E2E8F0;
  --gray-300:#CBD5E1;
  --gray-400:#94A3B8;
  --gray-500:#64748B;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1E293B;
  --gray-900:#0F172A;
  --gold:    #F5A623;
  --red:     #EF4444;
  --radius-sm: 8px;
  --radius:    12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow:    0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,.15), 0 8px 20px rgba(0,0,0,.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5 { font-family: 'Poppins', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--gray-600); }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-size: .9375rem; font-weight: 600;
  padding: .875rem 2rem; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer; transition: all .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 20px rgba(0,168,107,.35);
}
.btn-primary:hover {
  background: var(--green-light); transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,168,107,.45);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  border-color: var(--gray-200);
}
.btn-secondary:hover { border-color: var(--navy); background: var(--gray-50); }
.btn-navy {
  background: var(--navy); color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-lg { padding: 1.125rem 2.5rem; font-size: 1.0625rem; border-radius: var(--radius-lg); }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--gray-100);
  overflow: hidden; transition: all .3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.card-body { padding: 2rem; }

/* ---- Badge ---- */
.badge {
  display: inline-flex; align-items: center; gap: .375rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .875rem; border-radius: 100px;
}
.badge-green { background: #DCFCE7; color: #16A34A; }
.badge-blue  { background: #DBEAFE; color: #1D4ED8; }
.badge-gold  { background: #FEF3C7; color: #D97706; }
.badge-red   { background: #FEE2E2; color: #DC2626; }

/* ---- Progress ---- */
.progress-bar {
  height: 6px; background: var(--gray-100); border-radius: 100px; overflow: hidden;
}
.progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 100px; transition: width .6s ease;
}

/* ---- Form Elements ---- */
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--gray-700); margin-bottom: .5rem;
}
.form-label span { color: var(--red); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .875rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius); font-family: 'Inter', sans-serif;
  font-size: .9375rem; color: var(--gray-800); background: var(--white);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,168,107,.12);
}
.form-input::placeholder { color: var(--gray-400); }

/* ---- Navbar ---- */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0; transition: all .3s ease;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08); padding: .75rem 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .75rem; text-decoration: none;
}
.nav-logo-mark {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1rem;
  color: var(--white); letter-spacing: -.5px;
}
.nav-logo-text { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--navy); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: .9375rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a.active { color: var(--green); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #1a3a6e 100%);
  position: relative; overflow: hidden; padding: 7rem 0 4rem;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,168,107,.15); border: 1px solid rgba(0,168,107,.3);
  color: var(--green-light); font-size: .8125rem; font-weight: 600;
  padding: .4rem 1rem; border-radius: 100px; margin-bottom: 1.5rem;
  letter-spacing: .04em; text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--green-light); }
.hero p { color: rgba(255,255,255,.7); font-size: 1.125rem; margin-bottom: 2rem; }
.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2rem; margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-value { font-family: 'Poppins', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: .8125rem; color: rgba(255,255,255,.55); font-weight: 500; }
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
}
.hero-card-float {
  background: rgba(255,255,255,.06); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-xl);
  padding: 2rem; width: 100%; max-width: 380px;
}
.search-widget { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-xl); }
.search-widget h3 { font-size: 1.125rem; color: var(--navy); margin-bottom: 1.25rem; }
.search-widget .form-input { margin-bottom: .75rem; }

/* ---- Trust Section ---- */
.trust-bar {
  background: var(--gray-50); border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100); padding: 2rem 0;
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
}
.trust-icon.green { background: #DCFCE7; }
.trust-icon.blue  { background: #DBEAFE; }
.trust-icon.gold  { background: #FEF3C7; }
.trust-value { font-family: 'Poppins', sans-serif; font-size: 1.375rem; font-weight: 700; color: var(--navy); }
.trust-label { font-size: .8125rem; color: var(--gray-500); font-weight: 500; }

/* ---- Section Header ---- */
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--green); margin-bottom: .75rem;
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header h2 { color: var(--navy); margin-bottom: 1rem; }
.section-header p { font-size: 1.0625rem; }

/* ---- Services Grid ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border: 2px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all .3s ease; cursor: pointer; position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0); transition: transform .3s ease; transform-origin: left;
}
.service-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-card h4 { color: var(--navy); margin-bottom: .5rem; }
.service-card p { font-size: .9rem; }
.service-link {
  display: inline-flex; align-items: center; gap: .375rem;
  color: var(--green); font-weight: 600; font-size: .875rem;
  text-decoration: none; margin-top: 1rem; transition: gap .2s;
}
.service-link:hover { gap: .625rem; }

/* ---- Steps ---- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: calc(16.666% + 1.5rem);
  right: calc(16.666% + 1.5rem); height: 2px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}
.step-item { text-align: center; }
.step-num {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  color: var(--white); font-family: 'Poppins', sans-serif;
  font-size: 1.75rem; font-weight: 800; margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(11,31,58,.3); position: relative; z-index: 1;
}
.step-item h4 { color: var(--navy); margin-bottom: .5rem; font-size: 1.125rem; }

/* ---- Testimonials ---- */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.testimonial-card { padding: 2rem; border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
.stars { color: var(--gold); font-size: 1.125rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-style: italic; color: var(--gray-600); margin-bottom: 1.25rem; font-size: .9375rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: linear-gradient(135deg, var(--navy), var(--green));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: .9375rem; flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9375rem; color: var(--navy); }
.author-meta { font-size: .8125rem; color: var(--gray-500); }

/* ---- Footer ---- */
footer {
  background: var(--navy-dark); color: rgba(255,255,255,.75);
  padding: 5rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .9375rem; margin-top: 1rem; line-height: 1.7; max-width: 280px; }
.footer-heading { font-family: 'Poppins', sans-serif; font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: 1.25rem; letter-spacing: .04em; }
.footer-links { list-style: none; }
.footer-links li + li { margin-top: .625rem; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9375rem; transition: color .2s; }
.footer-links a:hover { color: var(--green-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 2rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: gap;
}
.social-links { display: flex; gap: .75rem; }
.social-link {
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .2s; font-size: .9375rem;
}
.social-link:hover { background: var(--green); color: var(--white); }

/* ---- Multi-step Form ---- */
.step-wizard { max-width: 860px; margin: 0 auto; }
.wizard-header { text-align: center; margin-bottom: 3rem; }
.wizard-steps { display: flex; align-items: center; margin-bottom: 3rem; }
.wizard-step-item { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.wizard-step-item:not(:last-child)::after {
  content: ''; position: absolute; top: 20px; left: 50%; right: -50%;
  height: 2px; background: var(--gray-200); z-index: 0;
}
.wizard-step-item.done:not(:last-child)::after,
.wizard-step-item.active:not(:last-child)::after { background: var(--green); }
.wizard-circle {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .875rem; background: var(--white);
  color: var(--gray-400); position: relative; z-index: 1; transition: all .3s;
}
.wizard-step-item.active .wizard-circle { border-color: var(--green); background: var(--green); color: var(--white); }
.wizard-step-item.done .wizard-circle { border-color: var(--green); background: var(--green); color: var(--white); }
.wizard-step-label { font-size: .8125rem; font-weight: 600; color: var(--gray-400); margin-top: .5rem; }
.wizard-step-item.active .wizard-step-label { color: var(--green); }
.wizard-step-item.done .wizard-step-label { color: var(--green); }

.form-panel { background: var(--white); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); padding: 2.5rem; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* ---- Dashboard ---- */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; }
.sidebar {
  background: var(--navy); color: var(--white);
  padding: 2rem 1.25rem; position: fixed; height: 100vh; width: 260px;
  overflow-y: auto;
}
.sidebar-logo { padding: 0 .75rem 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem; }
.sidebar-nav { list-style: none; }
.sidebar-nav li + li { margin-top: .25rem; }
.sidebar-nav a {
  display: flex; align-items: center; gap: .875rem;
  padding: .75rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.65); text-decoration: none;
  font-size: .9375rem; font-weight: 500; transition: all .2s;
}
.sidebar-nav a:hover { color: var(--white); background: rgba(255,255,255,.06); }
.sidebar-nav a.active { color: var(--white); background: rgba(0,168,107,.2); }
.sidebar-nav a.active span.icon { color: var(--green-light); }
.sidebar-section { font-size: .6875rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.3); padding: .75rem; margin-top: 1.25rem; margin-bottom: .25rem; }
.main-content { margin-left: 260px; background: var(--gray-50); min-height: 100vh; }
.content-header {
  background: var(--white); border-bottom: 1px solid var(--gray-100);
  padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.content-body { padding: 2rem; }

.stat-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
}
.stat-icon {
  width: 48px; height: 48px; border-radius: var(--radius); margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.375rem;
}
.stat-value { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: .875rem; color: var(--gray-500); font-weight: 500; margin-top: .25rem; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 1.5rem; }

.timeline { list-style: none; }
.timeline-item { display: flex; gap: 1rem; padding-bottom: 1.5rem; position: relative; }
.timeline-item:not(:last-child)::before {
  content: ''; position: absolute; left: 19px; top: 40px;
  width: 2px; height: calc(100% - 16px); background: var(--gray-100);
}
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.timeline-dot.done  { background: #DCFCE7; }
.timeline-dot.active{ background: #DBEAFE; }
.timeline-dot.wait  { background: var(--gray-100); }
.timeline-content h5 { font-size: .9375rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.timeline-content p  { font-size: .8125rem; color: var(--gray-500); }

/* ---- AI Chat Widget ---- */
#ai-widget {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
}
.ai-btn {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,168,107,.4); transition: all .3s ease;
  font-size: 1.5rem;
}
.ai-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(0,168,107,.5); }
.ai-panel {
  position: absolute; bottom: 72px; right: 0; width: 360px;
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); border: 1px solid var(--gray-100);
  overflow: hidden; display: none; flex-direction: column;
}
.ai-panel.open { display: flex; animation: slideUp .3s ease; }
@keyframes slideUp { from { opacity:0; transform: translateY(16px); } to { opacity:1; transform: translateY(0); } }
.ai-header {
  background: linear-gradient(135deg, var(--navy), #1a3a6e);
  padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between;
}
.ai-header h4 { color: var(--white); font-size: 1rem; }
.ai-header p { color: rgba(255,255,255,.6); font-size: .8125rem; }
.ai-header .online { display: flex; align-items: center; gap: .375rem; color: var(--green-light); font-size: .8125rem; }
.ai-header .online::before { content:''; width:8px; height:8px; border-radius:50%; background: var(--green-light); }
.ai-messages { flex: 1; padding: 1.25rem; max-height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: .875rem; }
.ai-msg { max-width: 85%; }
.ai-msg.bot { align-self: flex-start; }
.ai-msg.user { align-self: flex-end; }
.ai-bubble {
  padding: .75rem 1rem; border-radius: var(--radius-lg); font-size: .9rem; line-height: 1.5;
}
.ai-msg.bot .ai-bubble { background: var(--gray-50); color: var(--gray-800); border-bottom-left-radius: 4px; }
.ai-msg.user .ai-bubble { background: var(--green); color: var(--white); border-bottom-right-radius: 4px; }
.ai-suggestions { padding: 0 1.25rem .75rem; display: flex; gap: .5rem; flex-wrap: wrap; }
.ai-suggestion {
  font-size: .8rem; padding: .375rem .875rem; border-radius: 100px;
  background: var(--gray-100); color: var(--gray-700); border: none;
  cursor: pointer; transition: all .2s; font-family: 'Inter', sans-serif;
}
.ai-suggestion:hover { background: var(--navy); color: var(--white); }
.ai-input-area { padding: 1rem 1.25rem; border-top: 1px solid var(--gray-100); display: flex; gap: .75rem; }
.ai-input-area input {
  flex: 1; padding: .75rem 1rem; border: 2px solid var(--gray-100); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: .9rem; outline: none; transition: border-color .2s;
}
.ai-input-area input:focus { border-color: var(--green); }
.ai-send {
  width: 44px; height: 44px; border-radius: var(--radius); background: var(--green);
  border: none; cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.125rem; transition: background .2s;
}
.ai-send:hover { background: var(--green-dark); }

/* ---- Upload ---- */
.upload-zone {
  border: 2px dashed var(--gray-200); border-radius: var(--radius-lg); padding: 3rem;
  text-align: center; cursor: pointer; transition: all .2s;
}
.upload-zone:hover { border-color: var(--green); background: #F0FDF4; }
.upload-zone.dragging { border-color: var(--green); background: #F0FDF4; }
.upload-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ---- Urgency Banner ---- */
.urgency-banner {
  background: linear-gradient(90deg, #7C3AED, #4F46E5);
  color: var(--white); text-align: center; padding: .625rem 1rem;
  font-size: .875rem; font-weight: 500;
}
.urgency-banner strong { font-weight: 700; }

/* ---- Animations ---- */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid::before { display: none; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .section { padding: 3.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { width: 100%; height: auto; position: static; }
  .main-content { margin-left: 0; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .trust-items { gap: 1.5rem; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; }
  .wizard-steps { display: none; }
  .ai-panel { width: calc(100vw - 2rem); right: -0.5rem; }
}

/* ---- Utilities ---- */
.text-navy { color: var(--navy); }
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray-500); }
.bg-navy { background: var(--navy); }
.bg-green { background: var(--green); }
.bg-light { background: var(--gray-50); }
.font-poppins { font-family: 'Poppins', sans-serif; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.mt-auto { margin-top: auto; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.text-sm { font-size: .875rem; }
.text-xs { font-size: .75rem; }
.w-full { width: 100%; }
.relative { position: relative; }
