/* ============================================================
   Blue Falcon – app.css
   Palette: Blue #0B5ED7 + Violet #6C3CE1  (mocniejszy fiolet)
   ============================================================ */

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

/* ──────────────────────────────────────────── Base ── */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #111827;
  background: #ffffff;
  overflow-x: hidden;
}

body.intro-active { overflow: hidden; }

/* ──────────────────────────────────── Intro Splash ── */

#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0D0620;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .8s cubic-bezier(.4,0,.2,1);
}

#intro-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

#intro-overlay.hidden-intro { display: none; }

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#intro-skip {
  position: absolute;
  bottom: 40px;
  right: 40px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 40px;
  cursor: pointer;
  transition: all .25s;
  letter-spacing: .03em;
}

#intro-skip:hover {
  background: rgba(255,255,255,.25);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-2px);
}

/* ──────────────────────────────────────── Navbar ── */

#navbar {
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

/* Navbar przezroczysty – fioletowy gradient na dole */
#navbar::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #0B5ED7 30%, #6C3CE1 70%, transparent 100%);
  opacity: 0;
  transition: opacity .3s;
}

#navbar.scrolled::after { opacity: 1; }

#navbar.scrolled {
  background: linear-gradient(135deg,
    rgba(11,94,215,.06) 0%,
    rgba(255,255,255,.96) 30%,
    rgba(108,60,225,.06) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 0 rgba(108,60,225,.1), 0 4px 24px rgba(108,60,225,.08);
}

/* Fioletowy pasek nad całą stroną */
body::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, #0B5ED7 0%, #6C3CE1 50%, #A855F7 100%);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
}

#navbar { top: 3px; }

.nav-link {
  color: #374151;
  text-decoration: none;
  transition: color .2s;
  position: relative;
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, #0B5ED7, #6C3CE1);
  border-radius: 2px;
  transition: width .25s;
}

.nav-link:hover { color: #6C3CE1; }
.nav-link:hover::after { width: 100%; }

/* Aktywny link nav */
.nav-link.active-link { color: #6C3CE1; }
.nav-link.active-link::after { width: 100%; }

.mobile-nav-link {
  display: block;
  color: #374151;
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s;
  font-weight: 500;
}
.mobile-nav-link:hover { color: #6C3CE1; }

.ham-bar {
  display: block;
  width: 22px; height: 2px;
  background: #111827;
  border-radius: 2px;
  transition: all .3s;
}

/* ──────────────────────────────────────── Buttons ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #0B5ED7 0%, #6C3CE1 100%);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 24px;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,60,225,.5);
  background: linear-gradient(135deg, #0B5ED7 0%, #5B2EC9 100%);
}

.btn-primary:active { transform: translateY(0); }

/* Przycisk "Kalkulator" w nav – fioletowy outline */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #6C3CE1;
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 24px;
  text-decoration: none;
  border: 2px solid #6C3CE1;
  transition: all .25s;
  cursor: pointer;
  font-family: inherit;
  font-size: 14px;
  white-space: nowrap;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  border-color: #6C3CE1;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(108,60,225,.35);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #6C3CE1;
  font-weight: 700;
  border-radius: 12px;
  padding: 12px 28px;
  text-decoration: none;
  transition: all .25s;
  border: none;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.btn-white:hover {
  background: #EDE9FE;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 11px 28px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,.5);
  transition: all .25s;
  cursor: pointer;
  font-size: 14px;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.shadow-blue {
  box-shadow: 0 8px 40px rgba(108,60,225,.45);
}

/* ──────────────────────────────────────── Hero ── */

.hero-section {
  background: linear-gradient(150deg, #DDD6FE 0%, #EDE9FE 30%, #F5F3FF 60%, #ffffff 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 5% 0%,   rgba(11,94,215,.12) 0%,  transparent 55%),
    radial-gradient(ellipse 60% 50% at 95% 100%, rgba(108,60,225,.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  opacity: .28;
}

.hero-circle-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #6C3CE1, transparent);
  top: -250px; right: -150px;
}

.hero-circle-2 {
  width: 450px; height: 450px;
  background: radial-gradient(circle, #0B5ED7, transparent);
  bottom: 80px; left: -120px;
}

.text-gradient {
  background: linear-gradient(135deg, #0B5ED7 0%, #6C3CE1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mini-stat { display: flex; flex-direction: column; }

.mini-stat-num {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.mini-stat-label {
  font-size: 11px;
  font-weight: 500;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.hero-visual-card {
  background: #fff;
  border-radius: 24px;
  box-shadow:
    0 0 0 1px rgba(108,60,225,.1),
    0 20px 60px rgba(108,60,225,.18),
    0 4px 12px rgba(0,0,0,.06);
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.dashboard-widget {
  background: #F5F3FF;
  border-radius: 14px;
  padding: 16px;
}

.badge-green {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 20px;
  padding: 2px 8px;
}

.badge-green::before {
  content: '';
  display: block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.project-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 8px;
  background: #fff;
}

.project-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bar-chart-bar {
  background: linear-gradient(180deg, #0B5ED7, #6C3CE1);
  border-radius: 4px 4px 0 0;
  opacity: .85;
  transition: opacity .2s;
  height: var(--h);
}

.client-logo {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #9CA3AF;
  transition: color .2s;
  cursor: default;
}

.client-logo:hover { color: #6C3CE1; }

/* ──────────────────────────────────────── Sections ── */

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, rgba(11,94,215,.08), rgba(108,60,225,.12));
  color: #6C3CE1;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid rgba(108,60,225,.15);
}

.section-badge-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  color: #C4B5FD;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: #111827;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.65;
  max-width: 560px;
  margin: 0 auto;
}

/* ──────────────────────────────────────── Problem ── */

.problem-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1.5px solid #EDE9FE;
  position: relative;
  transition: all .3s;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.problem-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 32px rgba(239,68,68,.12);
  transform: translateY(-4px);
}

.problem-card:hover::before { transform: scaleX(1); }

.problem-icon {
  width: 52px; height: 52px;
  background: #FEF2F2;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
  margin-bottom: 16px;
}

.problem-x {
  position: absolute;
  top: 20px; right: 20px;
  width: 22px; height: 22px;
  background: #FEE2E2;
  color: #DC2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
}

.solution-banner {
  background: linear-gradient(135deg, #0D0620 0%, #0B5ED7 50%, #6C3CE1 100%);
  border-radius: 20px;
  padding: 28px 32px;
  box-shadow: 0 8px 40px rgba(108,60,225,.35);
}

.solution-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ──────────────────────────────────────── Services ── */

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px 36px;
  border: 1.5px solid #EDE9FE;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0B5ED7, #6C3CE1);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,94,215,.02), rgba(108,60,225,.05));
  opacity: 0;
  transition: opacity .3s;
}

.service-card:hover {
  border-color: #C4B5FD;
  box-shadow: 0 8px 32px rgba(108,60,225,.14);
  transform: translateY(-4px);
}

.service-card:hover::after { opacity: 1; }

.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, #EDE9FE, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C3CE1;
  margin-bottom: 18px;
  transition: all .3s;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  color: #fff;
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-desc {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
}

.service-arrow {
  position: absolute;
  bottom: 20px; right: 22px;
  font-size: 18px;
  color: #DDD6FE;
  transition: all .3s;
}

.service-card:hover .service-arrow {
  color: #6C3CE1;
  transform: translateX(4px);
}

/* ──────────────────────────────────────── Timeline ── */

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-line {
  position: absolute;
  left: 39px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, #0B5ED7 0%, #6C3CE1 50%, #EDE9FE 100%);
  border-radius: 2px;
}

@media (min-width: 1024px) {
  .timeline { flex-direction: row; align-items: flex-start; }
  .timeline-line {
    top: 39px; left: 24px; right: 24px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, #0B5ED7 0%, #6C3CE1 50%, #EDE9FE 100%);
  }
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 68px;
  padding-bottom: 36px;
  position: relative;
}

@media (min-width: 1024px) {
  .timeline-item {
    flex: 1;
    align-items: center;
    padding-left: 12px; padding-right: 12px; padding-bottom: 0;
  }
}

.timeline-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(108,60,225,.45);
  position: absolute; left: 0; top: 0;
  z-index: 1; flex-shrink: 0;
}

@media (min-width: 1024px) {
  .timeline-num { position: relative; left: auto; top: auto; }
}

.timeline-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1.5px solid #EDE9FE;
  transition: all .3s;
  width: 100%;
}

@media (min-width: 1024px) {
  .timeline-card { text-align: center; }
}

.timeline-card:hover {
  border-color: #C4B5FD;
  box-shadow: 0 4px 20px rgba(108,60,225,.15);
}

.timeline-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #EDE9FE, #dbeafe);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6C3CE1;
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .timeline-icon { margin: 0 auto 12px; }
}

/* ──────────────────────────────────────── Industries ── */

.bg-grid-pattern {
  background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 32px 32px;
}

.industry-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(196,181,253,.2);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  transition: all .3s;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

.industry-card:hover,
.industry-card-featured {
  background: rgba(255,255,255,.15);
  border-color: rgba(196,181,253,.6);
  box-shadow: 0 8px 32px rgba(108,60,225,.3);
  transform: translateY(-4px);
}

.industry-emoji { font-size: 40px; margin-bottom: 14px; display: block; }
.industry-title  { font-size: 17px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.industry-desc   { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ──────────────────────────────────────── Why ── */

.why-card {
  background: #F5F3FF;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: all .3s;
  border: 1.5px solid #EDE9FE;
}

.why-card::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at bottom right, rgba(108,60,225,.12), transparent);
  border-radius: 50%;
}

.why-card:hover {
  background: #fff;
  border-color: #C4B5FD;
  box-shadow: 0 8px 32px rgba(108,60,225,.15);
  transform: translateY(-4px);
}

.why-number {
  font-size: 48px;
  font-weight: 900;
  color: rgba(108,60,225,.12);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.why-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #EDE9FE, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all .3s;
}

.why-card:hover .why-icon { background: linear-gradient(135deg, #0B5ED7, #6C3CE1); }
.why-card:hover .why-icon svg { color: #fff; }

.why-badge {
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  color: #6C3CE1;
  background: #EDE9FE;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .03em;
}

/* ──────────────────────────────────────── Stats ── */

.stats-section {
  background: linear-gradient(135deg, #0D0620 0%, #0B5ED7 45%, #6C3CE1 100%);
}

.stat-item { padding: 20px; }

.stat-number {
  font-size: clamp(42px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
  font-weight: 500;
}

/* ──────────────────────────────────────── Testimonials ── */

.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.testimonial-slide { min-width: 100%; padding: 4px; }

@media (min-width: 768px)  { .testimonial-slide { min-width: 50%; } }
@media (min-width: 1024px) { .testimonial-slide { min-width: 33.333%; } }

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  height: 100%;
  border: 1.5px solid #EDE9FE;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  border-color: #C4B5FD;
  box-shadow: 0 8px 32px rgba(108,60,225,.14);
  transform: translateY(-4px);
}

.testimonial-stars { color: #F59E0B; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

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

.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1.5px solid #EDE9FE;
  background: #fff;
  color: #374151;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-family: inherit;
}

.testimonial-btn:hover {
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  border-color: #6C3CE1;
  color: #fff;
}

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

.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #DDD6FE;
  cursor: pointer;
  transition: all .3s;
  border: none; padding: 0;
}

.testimonial-dot.active {
  width: 24px;
  border-radius: 4px;
  background: linear-gradient(90deg, #0B5ED7, #6C3CE1);
}

/* ──────────────────────────────────────── Calculator ── */

.calculator-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(108,60,225,.22);
}

.calculator-header {
  background: linear-gradient(135deg, #0D0620, #0B5ED7 50%, #6C3CE1);
  padding: 28px 32px;
}

.calculator-body {
  background: #fff;
  padding: 32px;
  border: 1.5px solid #EDE9FE;
  border-top: none;
  border-radius: 0 0 24px 24px;
}

.calc-field { margin-bottom: 24px; }

.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.calc-range {
  width: 100%;
  height: 6px;
  appearance: none;
  background: linear-gradient(90deg, #6C3CE1 var(--val, 2%), #EDE9FE var(--val, 2%));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  margin-bottom: 4px;
}

.calc-range::-webkit-slider-thumb {
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(108,60,225,.5);
  border: 3px solid #fff;
  transition: transform .2s;
}

.calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }

.duration-btn,
.industry-btn {
  padding: 10px 6px;
  border-radius: 10px;
  border: 1.5px solid #EDE9FE;
  background: #F5F3FF;
  font-size: 12px;
  font-weight: 600;
  color: #6B7280;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
  text-align: center;
  line-height: 1.3;
}

.duration-btn:hover,
.industry-btn:hover,
.duration-btn.active,
.industry-btn.active {
  background: linear-gradient(135deg, #0B5ED7, #6C3CE1);
  border-color: #6C3CE1;
  color: #fff;
}

.calc-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #EDE9FE;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #FDFCFF;
  outline: none;
  transition: border-color .2s;
}

.calc-input:focus {
  border-color: #6C3CE1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108,60,225,.12);
}

.calc-summary {
  background: #F5F3FF;
  border: 1px solid #EDE9FE;
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.calc-success-msg {
  text-align: center;
  padding: 20px;
  background: #F0FDF4;
  border-radius: 12px;
  border: 1.5px solid #BBF7D0;
  margin-top: 16px;
}

/* ──────────────────────────────────────── CTA ── */

.cta-section {
  background: linear-gradient(135deg, #0D0620 0%, #0B5ED7 45%, #6C3CE1 100%);
}

.cta-bg-shape {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,255,255,.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 60% at 100% 50%, rgba(255,255,255,.04) 0%, transparent 50%);
  pointer-events: none;
}

/* ──────────────────────────────────────── Contact ── */

.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid #EDE9FE;
  height: fit-content;
}

.contact-info-item { display: flex; align-items: flex-start; gap: 12px; }

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  border: 1.5px solid #EDE9FE;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #EDE9FE;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #111827;
  background: #FDFCFF;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}

.form-input:focus {
  border-color: #6C3CE1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(108,60,225,.12);
}

/* ──────────────────────────────────────── Footer ── */

.footer-heading {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }

.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: #C4B5FD; }

/* ──────────────────────────────────────── Animations ── */

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.animate-fadeInUp    { animation: fadeInUp .8s ease both; }
.animate-fadeInRight { animation: fadeInRight .8s ease .2s both; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ──────────────────────────────────────── Scrollbar ── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F5F3FF; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0B5ED7, #6C3CE1);
  border-radius: 3px;
}

/* ──────────────────────────────────────── Selection ── */

::selection {
  background: rgba(108,60,225,.18);
  color: #6C3CE1;
}
