:root {
  --seb-orange: #ff5a00;
  --seb-orange-2: #ff7a1a;
  --seb-orange-soft: #fff1e8;

  --seb-blue: #009ee3;
  --seb-blue-2: #00b8ff;
  --seb-blue-soft: #e8f8ff;

  --seb-dark: #0b1118;
  --seb-dark-2: #111827;
  --seb-dark-3: #172033;

  --seb-text: #1f2937;
  --seb-muted: #64748b;
  --seb-bg: #f7f9fc;
  --seb-white: #ffffff;
  --seb-border: #e5edf5;

  --seb-shadow-sm: 0 14px 35px rgba(15, 23, 42, 0.08);
  --seb-shadow-md: 0 24px 70px rgba(15, 23, 42, 0.13);
  --seb-shadow-orange: 0 18px 44px rgba(255, 90, 0, 0.28);

  --seb-radius: 28px;
  --seb-radius-lg: 36px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--seb-text);
  background:
    radial-gradient(circle at 6% 8%, rgba(255, 90, 0, 0.12), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(0, 158, 227, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

::selection {
  color: #fff;
  background: var(--seb-orange);
}

/* NAVBAR */

.seb-navbar {
  min-height: 84px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(226, 232, 240, 0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.brand-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.nav-link {
  color: var(--seb-text);
  font-weight: 750;
  font-size: 0.96rem;
  transition: color 0.18s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--seb-orange);
}

/* BUTTONS */

.btn-seb-primary {
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  padding: 0.86rem 1.45rem;
  background: linear-gradient(135deg, var(--seb-orange), var(--seb-orange-2));
  box-shadow: var(--seb-shadow-orange);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.btn-seb-primary:hover,
.btn-seb-primary:focus {
  color: #fff;
  transform: translateY(-2px);
  filter: saturate(1.05);
  box-shadow: 0 22px 54px rgba(255, 90, 0, 0.36);
}

.btn-seb-outline {
  border: 1px solid rgba(15, 23, 42, 0.11);
  border-radius: 999px;
  color: var(--seb-dark);
  font-weight: 850;
  padding: 0.86rem 1.45rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.btn-seb-outline:hover,
.btn-seb-outline:focus {
  color: var(--seb-orange);
  border-color: rgba(255, 90, 0, 0.38);
  transform: translateY(-2px);
}

/* HERO */

.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.92), rgba(248,250,252,0.96)),
    radial-gradient(circle at 16% 24%, rgba(255, 90, 0, 0.18), transparent 34%),
    radial-gradient(circle at 82% 36%, rgba(0, 158, 227, 0.16), transparent 34%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: auto -8% -18% -8%;
  height: 300px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.10), rgba(0, 158, 227, 0.10));
  transform: rotate(-2.5deg);
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.55;
  pointer-events: none;
}

.hero-shape-orange {
  width: 410px;
  height: 410px;
  top: 120px;
  left: -150px;
  background: rgba(255, 90, 0, 0.22);
}

.hero-shape-blue {
  width: 470px;
  height: 470px;
  right: -170px;
  bottom: 70px;
  background: rgba(0, 158, 227, 0.20);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: 999px;
  padding: 0.5rem 0.86rem;
  color: #d64c00;
  background: rgba(255, 241, 232, 0.95);
  font-size: 0.86rem;
  font-weight: 900;
}

.hero-title {
  max-width: 900px;
  color: var(--seb-dark);
  font-size: clamp(2.75rem, 6.4vw, 5.55rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hero-text,
.section-text {
  max-width: 735px;
  color: var(--seb-muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 660px;
}

.metric-card {
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 24px;
  padding: 1.08rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--seb-shadow-sm);
  backdrop-filter: blur(12px);
}

.metric-card strong {
  display: block;
  color: var(--seb-dark);
  font-size: 1.1rem;
  font-weight: 950;
}

.metric-card span {
  color: var(--seb-muted);
  font-size: 0.91rem;
}

/* HERO PANEL */

.hero-panel {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--seb-radius-lg);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--seb-shadow-md);
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--seb-muted);
  font-weight: 850;
  margin-bottom: 1rem;
}

.panel-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.dashboard-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 26px;
  padding: 1.3rem;
  color: #fff;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.24), transparent 28%),
    linear-gradient(135deg, var(--seb-orange), var(--seb-orange-2));
  box-shadow: 0 18px 42px rgba(255, 90, 0, 0.26);
}

.dashboard-card i {
  font-size: 2.1rem;
}

.dashboard-card span {
  display: block;
  opacity: 0.9;
  font-weight: 750;
}

.dashboard-card strong {
  display: block;
  font-size: 1.38rem;
  font-weight: 950;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  margin-top: 0.9rem;
}

.mini-card {
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--seb-border);
  border-radius: 22px;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.mini-card i {
  color: var(--seb-blue);
  font-size: 1.45rem;
}

.mini-card span {
  color: var(--seb-text);
  font-weight: 880;
}

.progress-box {
  margin-top: 0.95rem;
  border-radius: 22px;
  padding: 1rem;
  background: #f8fafc;
  color: var(--seb-text);
  font-weight: 850;
}

.progress-line {
  height: 10px;
  margin-top: 0.75rem;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
}

.progress-line span {
  display: block;
  width: 82%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--seb-orange), var(--seb-blue));
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 999px;
  padding: 0.78rem 1.05rem;
  color: var(--seb-dark);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  font-weight: 920;
}

.floating-badge i {
  color: var(--seb-orange);
}

.badge-one {
  top: 22%;
  right: 4%;
}

.badge-two {
  bottom: 18%;
  left: 4%;
}

/* SECTIONS */

.section-padding {
  padding: 108px 0;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto;
}

.section-heading h2,
.section-title {
  margin-top: 1rem;
  color: var(--seb-dark);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: -0.047em;
  font-weight: 950;
}

.section-heading p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--seb-muted);
  line-height: 1.8;
  font-size: 1.06rem;
}

/* DARK PREMIUM SECTIONS */

.light-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 90, 0, 0.22), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(0, 158, 227, 0.20), transparent 32%),
    linear-gradient(135deg, var(--seb-dark) 0%, var(--seb-dark-2) 50%, #0d1b2a 100%);
  border: 0;
}

.light-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.45;
  pointer-events: none;
}

.light-band .container {
  position: relative;
  z-index: 2;
}

.light-band .eyebrow {
  color: #ffbc92;
  background: rgba(255, 90, 0, 0.13);
  border-color: rgba(255, 90, 0, 0.32);
}

.light-band .section-title,
.light-band .section-heading h2 {
  color: #fff;
}

.light-band .section-text,
.light-band .section-heading p {
  color: rgba(248, 250, 252, 0.74);
}

.light-band .feature-list div {
  color: rgba(255, 255, 255, 0.9);
}

.light-band .feature-list i {
  color: #7dd3fc;
}

/* CARDS */

.service-card,
.price-card,
.project-card,
.process-card,
.contact-form,
.contact-box {
  height: 100%;
  border: 1px solid var(--seb-border);
  border-radius: var(--seb-radius);
  padding: 1.6rem;
  background: #fff;
  box-shadow: var(--seb-shadow-sm);
}

.service-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 90, 0, 0.30);
  box-shadow: var(--seb-shadow-md);
}

.icon-wrap {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.icon-wrap.orange {
  color: var(--seb-orange);
  background: var(--seb-orange-soft);
}

.icon-wrap.blue {
  color: var(--seb-blue);
  background: var(--seb-blue-soft);
}

.service-card h3,
.price-card h3,
.project-card h3,
.process-card h3 {
  color: var(--seb-dark);
  font-size: 1.3rem;
  font-weight: 950;
}

.service-card p,
.project-card p,
.process-card p,
.price-card li {
  color: var(--seb-muted);
  line-height: 1.74;
}

.feature-list {
  display: grid;
  gap: 0.92rem;
  margin-top: 2rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--seb-text);
  font-weight: 780;
}

.feature-list i {
  color: var(--seb-orange);
  font-size: 1.25rem;
}

/* DARK APP PREVIEW */

.app-preview {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 34px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.app-top {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.app-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.app-preview-content {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
}

.app-sidebar {
  min-height: 320px;
  border-radius: 24px;
  background: linear-gradient(180deg, var(--seb-orange), var(--seb-blue));
}

.app-main {
  min-height: 320px;
  border-radius: 24px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.10);
}

.app-line.large {
  width: 70%;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.app-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1rem 0;
}

.app-cards div {
  height: 90px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.app-table {
  display: grid;
  gap: 0.7rem;
}

.app-table span {
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

/* PROJECT SLIDER */

.project-slider {
  margin-left: -0.75rem;
  margin-right: -0.75rem;
}

.project-slider .slick-slide {
  padding: 0.75rem;
}

.project-card {
  min-height: 250px;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--seb-shadow-md);
}

.project-tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  color: #d94d00;
  background: var(--seb-orange-soft);
  font-weight: 920;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.slick-dots li button:before {
  color: var(--seb-orange);
  font-size: 10px;
}

/* PRICES */

.price-card {
  position: relative;
  background: #fff;
}

.price-card.featured {
  border-color: rgba(255, 90, 0, 0.34);
  box-shadow: 0 32px 82px rgba(255, 90, 0, 0.16);
}

.featured-label {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  border-radius: 999px;
  padding: 0.38rem 0.78rem;
  color: #d94d00;
  background: var(--seb-orange-soft);
  font-weight: 920;
  font-size: 0.82rem;
}

.price {
  color: var(--seb-blue);
  font-size: 1.68rem;
  font-weight: 950;
}

.price-card ul {
  padding: 0;
  margin: 1.45rem 0;
  list-style: none;
}

.price-card li {
  padding: 0.64rem 0;
  border-bottom: 1px solid var(--seb-border);
}

.price-card li::before {
  content: "✓";
  color: var(--seb-orange);
  font-weight: 950;
  margin-right: 0.5rem;
}

/* PROCESS */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.process-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.process-card::after {
  content: "";
  position: absolute;
  right: -45px;
  top: -45px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 90, 0, 0.13), rgba(0, 158, 227, 0.13));
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--seb-shadow-md);
}

.process-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--seb-orange);
  font-size: 2.2rem;
  font-weight: 950;
}

/* CONTACT */

.contact-section {
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 90, 0, 0.10), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(0, 158, 227, 0.10), transparent 30%),
    #ffffff;
}

.contact-box {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-box div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--seb-text);
  font-weight: 780;
}

.contact-box i {
  color: var(--seb-blue);
  font-size: 1.25rem;
}

.form-label {
  color: var(--seb-dark);
  font-weight: 880;
}

.form-control,
.form-select {
  min-height: 54px;
  border: 1px solid var(--seb-border);
  border-radius: 17px;
  color: var(--seb-text);
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 90, 0, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(255, 90, 0, 0.12);
}

textarea.form-control {
  min-height: 150px;
}

.parsley-errors-list {
  padding: 0;
  margin: 0.35rem 0 0;
  list-style: none;
  color: #dc2626;
  font-size: 0.88rem;
  font-weight: 760;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-message {
  display: none;
  border-radius: 18px;
  padding: 1rem;
  font-weight: 850;
}

.form-message.success {
  display: block;
  color: #166534;
  background: #dcfce7;
  border: 1px solid #bbf7d0;
}

.form-message.error {
  display: block;
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

/* FOOTER */

.footer-section {
  padding: 1.7rem 0 5rem;
  color: rgba(255,255,255,0.66);
  background:
    radial-gradient(circle at 15% 0%, rgba(255, 90, 0, 0.20), transparent 26%),
    radial-gradient(circle at 85% 0%, rgba(0, 158, 227, 0.18), transparent 26%),
    var(--seb-dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.86);
  font-weight: 820;
}

.footer-links a:hover {
  color: #ffb180;
}

/* MOBILE CTA */

.mobile-cta {
  display: none;
}

/* RESPONSIVE */

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
    padding-top: 130px !important;
  }

  .floating-badge {
    display: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-preview-content {
    grid-template-columns: 1fr;
  }

  .app-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
  .brand-logo {
    height: 40px;
  }

  .hero-title {
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 78px 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .app-cards {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.85rem 1.05rem;
    color: #fff;
    font-weight: 920;
    background: linear-gradient(135deg, var(--seb-orange), var(--seb-orange-2));
    box-shadow: 0 16px 40px rgba(255, 90, 0, 0.36);
  }
}

/* =========================================================
   FIX HERO FLOATING BADGES — empêche le chevauchement boutons
   ========================================================= */

.hero-section .row > .col-lg-5 {
  position: relative;
}

.floating-badge {
  pointer-events: none;
  white-space: nowrap;
}

.badge-one {
  top: -18px;
  right: 12px;
}

.badge-two {
  left: auto;
  right: 28px;
  bottom: -22px;
}

/* Sur écrans moyens, on masque les badges pour éviter tout chevauchement */
@media (max-width: 1199px) {
  .floating-badge {
    display: none !important;
  }
}

/* Sécurité mobile : le hero respire mieux */
@media (max-width: 767px) {
  .hero-content {
    padding-top: 1rem;
  }

  .hero-actions {
    gap: 0.85rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .hero-metrics {
    margin-top: 2rem !important;
  }

  .metric-card {
    min-height: 96px;
  }
}

/* Notes sous les tarifs */
.price-note {
  margin-top: -0.65rem;
  margin-bottom: 1rem;
  color: var(--seb-muted);
  font-size: 1rem;
  font-weight: 850;
}
