/* ── HOME PAGE SPECIFIC STYLES ── */

/* Nav/footer styles live in global.css */

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% -10%, rgba(37, 99, 235, 0.35) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 60%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
    var(--navy);
}

/* Grid lines */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 235, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-light);
  /* color: aliceblue; */
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--silver);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 72px;
}

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.dashboard-frame {
  background: var(--navy-mid);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 16px;
  padding: 24px;
  box-shadow:
    0 0 80px rgba(37, 99, 235, 0.2),
    0 40px 120px rgba(0, 0, 0, 0.5);
  position: relative;
}

.dashboard-frame::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-light), transparent);
}

.db-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.db-dot:nth-child(1) {
  background: #ef4444;
}

.db-dot:nth-child(2) {
  background: var(--gold);
}

.db-dot:nth-child(3) {
  background: var(--green);
}

.db-title {
  font-size: 0.75rem;
  color: var(--silver-dim);
  font-weight: 500;
  margin: 0 auto;
}

.db-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.db-stat {
  background: var(--navy-light);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 10px;
  padding: 16px;
  transition: border-color 0.3s;
}

.db-stat:hover {
  border-color: rgba(37, 99, 235, 0.5);
}

.db-stat-label {
  font-size: 0.7rem;
  color: var(--silver-dim);
  font-weight: 500;
  margin-bottom: 6px;
}

.db-stat-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.db-stat-change {
  font-size: 0.7rem;
  margin-top: 4px;
}

.db-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.db-chart-box,
.db-list-box {
  background: var(--navy-light);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 10px;
  padding: 16px;
}

.db-box-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--silver);
  margin-bottom: 14px;
}

/* Fake bar chart */
.db-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.db-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--blue-light), var(--blue));
  opacity: 0.7;
  animation: barGrow 1.5s ease forwards;
  transform-origin: bottom;
}

.db-bar:nth-child(2) {
  background: linear-gradient(180deg, var(--purple), #6d28d9);
}

.db-bar:nth-child(4) {
  background: linear-gradient(180deg, var(--green), #059669);
}

.db-bar:nth-child(6) {
  background: linear-gradient(180deg, var(--gold), #d97706);
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }

  to {
    transform: scaleY(1);
    opacity: 0.85;
  }
}

.db-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
}

.db-list-item:last-child {
  border-bottom: none;
}

.db-list-name {
  color: var(--silver);
}

.db-badge {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 600;
}

.badge-paid {
  background: rgba(16, 185, 129, 0.15);
  color: var(--green);
}

.badge-pending {
  background: rgba(245, 158, 11, 0.15);
  color: var(--gold);
}

.badge-due {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

/* Floating cards */
.float-card {
  position: absolute;
  background: var(--navy-mid);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.78rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.float-card-left {
  left: -120px;
  top: 30%;
  animation: floatLeft 4s ease-in-out infinite;
}

.float-card-right {
  right: -120px;
  top: 50%;
  animation: floatRight 4s ease-in-out infinite;
}

@keyframes floatLeft {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatRight {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }
}

.float-icon {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.float-num {
  font-size: 1.2rem;
  font-weight: 800;
}

.float-label {
  color: var(--silver-dim);
  font-size: 0.7rem;
}

/* ── TRUSTED BY ── */
.trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  padding: 28px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
    flex-direction: column;
}

.trust-label {
  color: var(--silver-dim);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  gap: 48px;
  align-items: center;
}

.trust-logo {
  color: rgba(203, 213, 225, 0.3);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
}

.trust-logo:hover {
  color: rgba(203, 213, 225, 0.7);
}

/* ── SECTION ── */
section {
  padding: 60px 60px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 20px;
  padding: 4px 12px;
  background: rgba(37, 99, 235, 0.1);
  border-left: 3px solid var(--blue);
  border-radius: 0 4px 4px 0;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--silver);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.7;
}

/* ── FEATURES ── */
.features {
  background: var(--navy-mid);
}

.features-intro {
  text-align: center;
  margin-bottom: 64px;
}

.features-intro .section-sub {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--navy);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.icon-blue {
  background: rgba(37, 99, 235, 0.15);
}

.icon-green {
  background: rgba(16, 185, 129, 0.15);
}

.icon-gold {
  background: rgba(245, 158, 11, 0.15);
}

.icon-purple {
  background: rgba(139, 92, 246, 0.15);
}

.icon-red {
  background: rgba(239, 68, 68, 0.1);
}

.icon-cyan {
  background: rgba(6, 182, 212, 0.15);
}

.feature-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.88rem;
  color: var(--silver);
  line-height: 1.65;
}

/* ── WHY SECTION ── */
.why {
  background: var(--navy);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-item-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-item-desc {
  font-size: 0.85rem;
  color: var(--silver);
  line-height: 1.6;
}

.why-visual {
  background: var(--navy-mid);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}

.why-visual-title {
  font-size: 0.8rem;
  color: var(--silver-dim);
  margin-bottom: 24px;
  font-weight: 600;
}

.progress-item {
  margin-bottom: 20px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--silver);
  margin-bottom: 8px;
}

.progress-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
}

.fill-blue {
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
}

.fill-green {
  background: linear-gradient(90deg, var(--green), #34d399);
}

.fill-gold {
  background: linear-gradient(90deg, var(--gold), #fbbf24);
}

.fill-purple {
  background: linear-gradient(90deg, var(--purple), #a78bfa);
}

/* ── PRICING ── */
.pricing {
  background: var(--navy-mid);
}

.pricing-intro {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-intro .section-sub {
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* max-width: 960px; */
  margin: 0 auto;
}

.pricing-card {
  background: var(--navy);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy) 100%);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.pricing-tier {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--silver-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--silver-dim);
}

.pricing-desc {
  font-size: 0.85rem;
  color: var(--silver);
  margin-bottom: 28px;
  line-height: 1.6;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--silver);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── STATS ── */
.stats {
  background: var(--navy);
  text-align: center;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-num {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
  background: linear-gradient(135deg, var(--white), var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--silver);
  margin-top: 4px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--navy-mid);
}

.testimonials-intro {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--navy);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.3s;
}

.testimonial-card:hover {
  border-color: rgba(37, 99, 235, 0.35);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
}

.av1 {
  background: linear-gradient(135deg, var(--blue), var(--purple));
}

.av2 {
  background: linear-gradient(135deg, var(--green), var(--blue));
}

.av3 {
  background: linear-gradient(135deg, var(--gold), #ef4444);
}

.av4 {
  background: linear-gradient(135deg, var(--purple), var(--blue));
}

.av5 {
  background: linear-gradient(135deg, #06b6d4, var(--green));
}

.av6 {
  background: linear-gradient(135deg, var(--gold), var(--purple));
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--silver-dim);
}

/* ── SERVICES ── */
.services {
  background: var(--navy);
}

.services-intro {
  text-align: center;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy-mid);
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
}

.service-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.service-title {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.82rem;
  color: var(--silver);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--navy-mid);
  text-align: center;
  padding: 100px 60px;
}

.cta-glow {
  position: relative;
  display: inline-block;
}

.cta-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.25), transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-section p {
  color: var(--silver);
  margin-bottom: 40px;
  font-size: 1rem;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--navy-light);
  border: 1px solid rgba(37, 99, 235, 0.25);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input::placeholder {
  color: var(--silver-dim);
}

.cta-input:focus {
  border-color: var(--blue);
}

.cta-note {
  font-size: 0.78rem;
  color: var(--silver-dim);
  margin-top: 12px;
}

/* Footer styles live in global.css */

/* base responsive rules moved to end of file */
/* -- INDUSTRY BADGES -- */
.industry-badge {
  background: rgba(255,255,255,0.05);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.industry-badge .badge-icon {
  font-size: 1.4rem;
}

.industry-badge:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.3);
}

.section-navy {
  background: var(--navy);
}

.features-intro-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-eyebrow-end {
  border-left: none;
  border-right: 3px solid var(--blue);
  border-radius: 4px 0 0 4px;
}

.feature-icon-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.scale-panel {
  padding: 20px;
  text-align: center;
}

.scale-panel h3 {
  margin-bottom: 20px;
}

.scale-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.scale-note {
  margin-top: 25px;
  font-size: 0.9rem;
  color: var(--silver);
}

.cta-sub {
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-demo-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  max-width: 650px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
}

.cta-field-label {
  font-size: 0.8rem;
  color: var(--silver-dim);
  margin-bottom: 5px;
  display: block;
}

.cta-demo-form .cta-input {
  width: 100%;
  border-radius: 6px;
  flex: none;
}

.cta-span-2 {
  grid-column: span 2;
}

.cta-textarea {
  min-height: 80px;
  padding: 12px;
  resize: vertical;
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-submit-wrap {
  grid-column: span 2;
  margin-top: 15px;
}

.cta-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 1.1rem;
  padding: 15px;
}

.cta-turnstile {
  grid-column: span 2;
  margin-top: 8px;
}

.cta-form-msg {
  grid-column: span 2;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.cta-form-msg.error {
  background: rgba(254, 226, 226, 0.12);
  border: 1px solid rgba(252, 165, 165, 0.4);
  color: #fecaca;
}

.cta-form-msg.success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
}

.home-alert {
  max-width: 1200px;
  margin: 20px auto;
  padding: 15px;
  background-color: #fee2e2;
  color: #991b1b;
  border-radius: 8px;
  border: 1px solid #fca5a5;
}

@media (max-width: 700px) {
  .cta-demo-form {
    grid-template-columns: 1fr;
  }

  .cta-span-2,
  .cta-submit-wrap,
  .cta-turnstile,
  .cta-form-msg {
    grid-column: span 1;
  }
}


.industries-bar {
  background: linear-gradient(135deg, #0a192f 0%, #112240 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.industries-title {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-eyebrow {
  margin-bottom: 16px;
}

/* ── RESPONSIVE: HOME ── */
@media (max-width: 1200px) {
  .hero,
  .features,
  .cta-section,
  #whatwedo {
    padding-left: 36px;
    padding-right: 36px;
  }

  .dashboard-preview {
    max-width: 100%;
  }

  .industries-list {
    gap: 14px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 110px 24px 56px;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 5vw, 2.6rem);
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .features-grid,
  .testimonials-grid,
  .why-inner {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .services-grid,
  .db-stats,
  .scale-grid {
    grid-template-columns: 1fr 1fr;
  }

  .db-body,
  .float-card {
    display: none;
  }

  .dashboard-frame .db-body {
    display: grid;
  }

  .float-card {
    display: none !important;
  }

  .industries-bar {
    padding: 48px 20px;
  }

  .industries-title {
    font-size: 1.25rem;
    margin-bottom: 28px;
  }

  .cta-section {
    padding: 72px 24px;
  }

  .cta-demo-form {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 96px 16px 48px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .features,
  .cta-section,
  #whatwedo {
    padding: 56px 16px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .features-grid,
  .testimonials-grid,
  .pricing-grid,
  .services-grid,
  .db-stats,
  .scale-grid {
    grid-template-columns: 1fr;
  }

  .cta-demo-form {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 12px;
  }

  .cta-span-2,
  .cta-submit-wrap,
  .cta-turnstile,
  .cta-form-msg {
    grid-column: span 1;
  }

  .industry-badge {
    padding: 12px 18px;
    font-size: 0.95rem;
  }

  .industries-title {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
  }

  .home-alert {
    margin: 12px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 88px 12px 36px;
  }
  .stats-inner {
    grid-template-columns:none;}

  .hero h1 {
    font-size: 1.65rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .features,
  .cta-section,
  #whatwedo,
  .industries-bar {
    padding-left: 12px;
    padding-right: 12px;
  }

  .cta-demo-form {
    padding: 16px;
  }

  .cta-submit-btn {
    font-size: 1rem;
    padding: 12px;
  }

  .feature-card,
  .testimonial-card {
    padding: 18px;
  }

  .dashboard-preview {
    margin-top: 24px;
  }
}
