/* =============================================
   EXCELSIUM LANDING PAGE — STYLES
   Design system matching excelsium-fe
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors — excelsium-fe design system */
  --bg:         #0b0d12;
  --surface:    #121622;
  --surface-2:  #171b28;
  --surface-3:  #1c2130;
  --text:       #eaeefb;
  --muted:      #a7b0c3;
  --accent:     #66e3a4;
  --accent-2:   #69b3ff;
  --accent-3:   #b388ff;
  --accent-4:   #ffa756;
  --danger:     #ff6b6b;
  --border:     rgba(255,255,255,0.07);
  --border-2:   rgba(255,255,255,0.12);
  --shadow:     0 8px 32px rgba(0,0,0,0.45);
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.3);
  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --trans:      220ms cubic-bezier(.2,.6,.2,1);
  --trans-fast: 140ms cubic-bezier(.2,.6,.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--trans);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: linear-gradient(135deg, #4f9fff, #66e3a4);
  color: #0b0d12;
}
.btn-primary:hover { filter: brightness(1.12) saturate(1.1); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(102,227,164,0.25); }

.btn-ghost {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); color: var(--text); background: rgba(255,255,255,0.04); }

.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: var(--radius-sm); }
.btn-full { width: 100%; justify-content: center; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(11,13,18,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(90deg, #69b3ff, #66e3a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: var(--trans-fast);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--muted);
  border-radius: 2px;
  transition: var(--trans);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #69b3ff, transparent);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #66e3a4, transparent);
  bottom: -50px; right: -50px;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 560px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(105,179,255,0.1);
  border: 1px solid rgba(105,179,255,0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--accent-2);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #69b3ff 0%, #66e3a4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--muted);
}
.meta-item svg { color: var(--accent); flex-shrink: 0; }

/* ---- DASHBOARD PREVIEW ---- */
.hero-visual {
  position: relative;
}

.dashboard-preview {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(105,179,255,0.08);
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }
.preview-url {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
  font-family: monospace;
}

.preview-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.preview-stats { display: flex; gap: 12px; }
.p-stat {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.p-stat-label { font-size: 0.7rem; color: var(--muted); }
.p-stat-value { font-size: 1.4rem; font-weight: 700; line-height: 1; }
.p-stat-delta { font-size: 0.68rem; }
.accent-blue { color: var(--accent-2); }
.accent-green { color: var(--accent); }
.accent-orange { color: var(--accent-4); }
.positive { color: var(--accent); }
.neutral { color: var(--muted); }

.preview-chart { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.chart-label { font-size: 0.72rem; color: var(--muted); display: block; margin-bottom: 10px; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 60px; }
.chart-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  height: var(--h);
  background: rgba(105,179,255,0.2);
  border-radius: 4px 4px 0 0;
  transition: var(--trans);
  position: relative;
}
.chart-bar.active { background: rgba(102,227,164,0.35); }
.chart-bar span { font-size: 0.65rem; color: var(--muted); position: absolute; bottom: -18px; }

.preview-activity { display: flex; flex-direction: column; gap: 8px; }
.activity-label { font-size: 0.72rem; color: var(--muted); }
.activity-item { display: flex; align-items: center; gap: 8px; }
.activity-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.activity-dot.green { background: var(--accent); }
.activity-dot.blue { background: var(--accent-2); }
.activity-dot.orange { background: var(--accent-4); }
.activity-text { flex: 1; font-size: 0.78rem; color: var(--muted); }
.activity-time { font-size: 0.72rem; color: var(--muted); opacity: 0.7; }

/* ---- FLOAT BADGES ---- */
.float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.float-1 { top: -16px; right: -20px; animation: float-badge1 5s ease-in-out infinite; }
.float-2 { bottom: 32px; left: -24px; animation: float-badge2 6s ease-in-out infinite; }
@keyframes float-badge1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes float-badge2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* ---- WAVE DIVIDER ---- */
.wave-divider { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.wave-divider svg { width: 100%; height: 80px; }

/* ---- TRUST SECTION ---- */
.trust-section {
  background: var(--surface);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.trust-label { text-align: center; font-size: 0.8rem; color: var(--muted); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-logo {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(167,176,195,0.5);
  letter-spacing: 0.02em;
  padding: 4px 16px;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
}

/* ---- SECTION COMMONS ---- */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; }

/* ---- FEATURES ---- */
.features {
  padding: 100px 0;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
  opacity: 0;
  transition: var(--trans);
}
.feature-card:hover {
  border-color: var(--border-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card:hover::before { opacity: 1; }

.feature-card--premium {
  border-color: rgba(179,136,255,0.2);
  background: linear-gradient(135deg, var(--surface) 0%, rgba(179,136,255,0.04) 100%);
}
.feature-card--premium::before {
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
}

.feature-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.feature-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-blue   { background: rgba(105,179,255,0.12); color: var(--accent-2); }
.icon-green  { background: rgba(102,227,164,0.12); color: var(--accent); }
.icon-purple { background: rgba(179,136,255,0.12); color: var(--accent-3); }
.icon-orange { background: rgba(255,167,86,0.12);  color: var(--accent-4); }

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(179,136,255,0.15);
  color: var(--accent-3);
  border: 1px solid rgba(179,136,255,0.3);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.feature-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }

.feature-details {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}
.feature-details li {
  font-size: 0.78rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.feature-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-2);
  opacity: 0.6;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 12px;
}
.feature-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(105,179,255,0.08);
  color: var(--accent-2);
  border: 1px solid rgba(105,179,255,0.18);
  letter-spacing: 0.04em;
}
.feature-tag--premium {
  background: rgba(179,136,255,0.1);
  color: var(--accent-3);
  border-color: rgba(179,136,255,0.25);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 100px 0;
  background: var(--surface);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-card {
  flex: 1;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--trans);
  position: relative;
}
.step-card:hover { border-color: var(--border-2); transform: translateY(-4px); box-shadow: var(--shadow); }

.step-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(105,179,255,0.15), rgba(102,227,164,0.15));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.step-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(105,179,255,0.1);
  border: 1px solid rgba(105,179,255,0.2);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.step-connector { flex-shrink: 0; width: 60px; }
.step-connector svg { width: 100%; }

/* ---- STATS ---- */
.stats-section {
  padding: 80px 0;
  background: var(--bg);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 32px;
}
.stat-value {
  display: inline;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #69b3ff, #66e3a4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}
.stat-plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--muted);
  vertical-align: super;
}
.stat-label { display: block; font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact {
  padding: 100px 0;
  background: var(--surface);
}

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

.contact-desc { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: flex-start; gap: 14px; }
.cd-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(105,179,255,0.08);
  border: 1px solid rgba(105,179,255,0.15);
  color: var(--accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cd-label { display: block; font-size: 0.75rem; color: var(--muted); margin-bottom: 2px; }
.cd-value { display: block; font-size: 0.95rem; font-weight: 500; color: var(--text); }
.cd-value:hover { color: var(--accent-2); }

/* ---- FORM ---- */
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.82rem; font-weight: 600; color: var(--muted); }

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  padding: 11px 14px;
  transition: var(--trans-fast);
  outline: none;
  resize: vertical;
  width: 100%;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(167,176,195,0.5); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(105,179,255,0.4);
  box-shadow: 0 0 0 3px rgba(105,179,255,0.08);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a7b0c3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

.form-note { font-size: 0.75rem; color: var(--muted); text-align: center; }
.link { color: var(--accent-2); }
.link:hover { text-decoration: underline; }

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(102,227,164,0.08);
  border: 1px solid rgba(102,227,164,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 0.9rem;
  color: var(--accent);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
}

.footer-tagline { margin-top: 14px; font-size: 0.88rem; color: var(--muted); max-width: 280px; line-height: 1.6; }

.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text); margin-bottom: 4px; }
.footer-col a { font-size: 0.88rem; color: var(--muted); transition: var(--trans-fast); }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---- ANIMATIONS ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-animate="fade-left"] { transform: translateX(32px); }
[data-animate="fade-right"] { transform: translateX(-32px); }
[data-animate].is-visible { opacity: 1; transform: none; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-content { max-width: 100%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .float-badge { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,13,18,0.98); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .navbar-inner { position: relative; }

  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }
  .stats-grid { flex-direction: column; gap: 0; padding: 40px 24px; }
  .stat-divider { width: 60px; height: 1px; }
  .stat-item { padding: 24px 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
  .trust-logos { gap: 16px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .hero-meta { flex-direction: column; gap: 10px; }
  .contact-form-wrap { padding: 24px 20px; }
}
