:root {
  --bg: #030611;
  --bg2: #070a1a;
  --card: rgba(10, 14, 34, .78);
  --text: #ffffff;
  --muted: #a9abc0;
  --purple: #8b5cf6;
  --pink: #c026d3;
  --border: rgba(160, 115, 255, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(139, 92, 246, .28), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(59, 130, 246, .18), transparent 30%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* === NAVBAR PREMIUM === */

.navbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  background:
    linear-gradient(180deg, rgba(3, 6, 17, .96), rgba(3, 6, 17, .74));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(160, 115, 255, .16);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .35);
}

.navbar__inner {
  width: min(1280px, calc(100% - 40px));
  height: 130px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* === LOGO AGRANDI === */

.logo,
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 280px;
}

.logo img,
.brand img {
  width: 100%;
  height: auto;
  max-height: 115px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, .75));
  transition: transform .25s ease, filter .25s ease;
}

.logo:hover img,
.brand:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 32px rgba(139, 92, 246, .95));
}

.brand {
  gap: 10px;
  font-size: 30px;
  font-weight: 900;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

/* === NAV === */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1;
}

.nav a {
  position: relative;
  color: #e7e7f4;
  font-weight: 800;
  font-size: 14px;
  opacity: .92;
  transition: color .25s ease, opacity .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--purple), var(--pink));
  transform: translateX(-50%);
  transition: width .25s ease;
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
  opacity: 1;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* === BUTTONS === */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 900;
  transition: .25s ease;
}

.btn--primary {
  background: linear-gradient(135deg, #7c3aed, #4f00d8);
  box-shadow: 0 16px 45px rgba(139, 92, 246, .45);
}

.btn--ghost {
  background: rgba(255, 255, 255, .04);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn--large {
  margin-top: 24px;
  min-height: 56px;
  font-size: 17px;
}

/* === HERO === */

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: 55px 0 20px;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 70px);
  line-height: .96;
  letter-spacing: -.06em;
  margin: 0 0 18px;
}

.hero h1 span {
  color: #a855f7;
}

.hero__subtitle {
  font-size: 24px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}

.hero__text {
  max-width: 540px;
  font-size: 18px;
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.eyebrow {
  color: #b979ff;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.hero__visual {
  position: relative;
  min-height: 440px;
}

.car-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 78%;
  border-radius: 28px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .7);
}

.phone-img {
  position: absolute;
  left: 5%;
  top: 0;
  width: 36%;
  z-index: 3;
  border-radius: 30px;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, .7));
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(-14px) rotate(-3deg);
  }
}

/* === TRUST === */

.trust {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #0b1025;
  margin-left: -8px;
}

/* === PANELS === */

.features-panel,
.testimonials,
.cta-panel {
  width: min(1120px, calc(100% - 32px));
  margin: 40px auto 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(10, 14, 34, .88), rgba(21, 18, 50, .7));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .45), inset 0 0 45px rgba(139, 92, 246, .08);
}

.features-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 28px;
  gap: 18px;
}

.feature-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .08);
}

.feature-item img {
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.feature-item h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.feature-item p {
  margin: 0;
}

/* === STEPS === */

.steps {
  width: min(1000px, calc(100% - 32px));
  margin: 60px auto;
}

.section-heading {
  margin-bottom: 34px;
}

.center {
  text-align: center;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 14px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.step {
  text-align: center;
}

.step img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 14px;
}

.step span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--purple);
  font-weight: 900;
}

.step h3 {
  text-transform: uppercase;
}

/* === TESTIMONIALS === */

.testimonials {
  padding: 32px;
}

.testimonials .section-heading,
.testimonials h2 {
  text-align: center;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, .03);
}

.testimonial img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 999px;
  margin-bottom: 12px;
}

.testimonial strong {
  color: #b979ff;
}

/* === CTA === */

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  padding: 34px;
  margin-bottom: 20px;
}

.cta-panel h2 {
  font-size: 34px;
}

.cta-panel img {
  border-radius: 24px;
  justify-self: end;
  max-width: 360px;
}

/* === OFFERS === */

.offers-page {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0 120px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(13, 17, 40, .9), rgba(31, 18, 74, .62));
  box-shadow: 0 20px 55px rgba(0, 0, 0, .36);
}

.pricing-card--premium {
  border-color: rgba(190, 140, 255, .7);
  box-shadow: 0 0 80px rgba(139, 92, 246, .32);
}

.price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
}

.badge {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(139, 92, 246, .18);
  color: #d8c7ff;
  font-weight: 900;
}

.pricing-card ul {
  color: var(--muted);
  line-height: 2;
  margin-bottom: 28px;
}

/* === FOOTER CLASSIQUE === */

.footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: rgba(5, 8, 24, .86);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr 1.2fr;
  gap: 30px;
}

.footer h3 {
  font-size: 24px;
  margin-top: 0;
}

.footer-column h4 {
  margin-top: 0;
}

.footer-column a {
  display: block;
  color: var(--muted);
  margin-bottom: 7px;
  font-weight: 700;
}

.footer-column a:hover {
  color: #fff;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.newsletter input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .04);
  color: #fff;
  padding: 0 16px;
}

.newsletter button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  color: #fff;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--pink));
}

.footer-buttons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-bottom {
  text-align: center;
  margin-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 18px;
}

/* === FOOTER BOOLEED PREMIUM === */

.booleed-footer {
  max-width: 1160px;
  margin: 40px auto 0;
  padding: 28px 32px;
  border-radius: 28px 28px 0 0;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(6, 16, 36, 0.88);
  box-shadow: 0 0 55px rgba(124, 58, 237, 0.18);
  backdrop-filter: blur(18px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr;
  gap: 34px;
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 900;
  color: #ffffff;
}

.footer-col a {
  display: block;
  margin-bottom: 7px;
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s ease;
}

.footer-col a:hover {
  color: #a78bfa;
}

.footer-social {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(139, 92, 246, 0.35);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-weight: 900;
  margin: 0;
}

.social-icons a:hover {
  background: rgba(124, 58, 237, 0.35);
  box-shadow: 0 0 18px rgba(124, 58, 237, 0.45);
}

.footer-logo {
  height: 46px;
  width: auto;
  margin: 4px auto 8px;
  display: block;
}

.footer-social p,
.footer-newsletter p {
  color: #cbd5e1;
  font-size: 13px;
  margin: 0 0 14px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: rgba(3, 10, 24, 0.9);
  color: #fff;
  outline: none;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  height: 42px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  background: #6d28d9;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.45);
}

.footer-actions {
  display: flex;
  gap: 12px;
}

.footer-btn {
  flex: 1;
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.footer-btn-primary {
  background: #6d28d9;
  color: #fff !important;
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.45);
}

.footer-btn-ghost {
  border: 1px solid rgba(139, 92, 246, 0.45);
  color: #fff !important;
  background: rgba(255, 255, 255, 0.04);
}

/* === RESPONSIVE === */

@media (max-width: 900px) {
  .navbar__inner,
  .nav,
  .nav-actions,
  .trust {
    flex-wrap: wrap;
  }

  .navbar__inner {
    height: auto;
    padding: 18px 0;
    justify-content: center;
  }

  .logo,
  .brand {
    width: 210px;
  }

  .logo img,
  .brand img {
    max-height: 82px;
  }

  .nav {
    flex: unset;
    width: 100%;
    justify-content: center;
    gap: 18px;
  }

  .nav-actions {
    width: 100%;
    justify-content: center;
  }

  .hero,
  .features-panel,
  .steps-grid,
  .testimonial-grid,
  .cta-panel,
  .pricing-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: auto;
  }

  .phone-img,
  .car-img {
    position: static;
    width: 100%;
    margin: 20px 0;
  }

  .feature-item {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-social {
    text-align: left;
  }

  .social-icons {
    justify-content: flex-start;
  }

  .footer-logo {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    font-size: 24px;
  }

  .logo,
  .brand {
    width: 180px;
  }

  .logo img,
  .brand img {
    width: 100%;
    height: auto;
    max-height: 72px;
  }

  .nav,
  .nav-actions,
  .newsletter {
    width: 100%;
    justify-content: center;
  }

  .nav {
    gap: 14px;
  }

  .btn,
  .newsletter button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .booleed-footer {
    margin: 30px 16px 0;
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .footer-actions {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}
