:root {
  --violet: #5a42ec;
  --noir: #030104;
  --bleu-pale: #b6dcff;
  --bleu-moyen: #63a3ff;
  --cyan: #09bbfe;
  --blanc: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--noir);
  color: var(--blanc);
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 85px;
  background: rgba(3,1,4,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  transition: background 0.3s;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--blanc), var(--bleu-moyen));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-logo-icon img{
  width: 120%;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--blanc);
  letter-spacing: 0.5px;
}

.nav-logo-text span {
  color: var(--cyan);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--cyan);
}

.nav-cta {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: var(--blanc) !important;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}

.nav-cta:hover {
  opacity: 0.88;
  color: var(--blanc) !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanc);
  border-radius: 2px;
  transition: all 0.3s;
}

section {
  padding: 100px 5%;
  scroll-margin-top: 90px;
}

#accueil {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 5% 80px;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(90,66,236,0.28) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(9,187,254,0.14) 0%, transparent 60%),
    var(--noir);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,66,236,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,66,236,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}

.hero-content {
  position: relative;
  max-width: 820px;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(90,66,236,0.18);
  border: 1px solid rgba(90,66,236,0.4);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  color: var(--bleu-pale);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(38px, 7vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}

.hero-title .grad {
  background: linear-gradient(90deg, var(--violet), var(--bleu-moyen), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  max-width: 60ch;
  margin: 0 auto 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: var(--blanc);
  border: none;
  transition: opacity 0.2s, transform 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blanc);
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--cyan);
  background: rgba(9,187,254,0.08);
}

.full-btn {
  width: 100%;
}

.disabled-btn {
  opacity: 0.75;
}

.hero-stats {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--bleu-moyen), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 60ch;
  margin-bottom: 60px;
}

#prestations,
#galerie,
#contact,
#devis,
#rendezvous {
  background: #08060e;
}

#tarifs,
#apropos {
  background: var(--noir);
}

.prestations-grid,
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.presta-card,
.tarif-card,
.form-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(90,66,236,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  min-width: 0;
}

.presta-card:hover,
.tarif-card:hover,
.form-card:hover {
  border-color: rgba(90,66,236,0.5);
  transform: translateY(-4px);
}

.active-card {
  background: rgba(90,66,236,0.07);
}

.coming-soon,
.disabled-card {
  opacity: 0.88;
}

.presta-soon-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
}

.presta-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(90,66,236,0.25), rgba(9,187,254,0.15));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.presta-name,
.tarif-nom {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.presta-desc,
.tarif-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}

.presta-items,
.tarif-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.presta-items li,
.tarif-liste li {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.presta-items li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.muted-list li {
  color: rgba(255,255,255,0.55);
}

.tarif-card.featured {
  border-color: var(--violet);
  background: rgba(90,66,236,0.08);
  padding-top: 44px;
}

.tarif-badge {
  position: absolute;
  top: 14px;
  left: 28px;
  transform: none;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: var(--blanc);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

.tarif-prix {
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(90deg, var(--bleu-moyen), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tarif-prix-note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

.tarif-liste li .check {
  color: var(--cyan);
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.4;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.galerie-item {
  min-width: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,66,236,0.15);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
  overflow: hidden;
}

.galerie-item:hover {
  border-color: rgba(9,187,254,0.4);
}

.galerie-item.large {
  grid-column: span 2;
}

.galerie-placeholder {
  width: 100%;
  padding: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.galerie-item-icon {
  font-size: 40px;
  opacity: 0.25;
}

.galerie-placeholder span {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  word-break: break-word;
}

.apropos-wrap,
.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 40px;
  align-items: start;
}

.contact-single {
  grid-template-columns: 1fr;
}

.apropos-img-wrap {
  position: relative;
}

.apropos-img-placeholder {
  aspect-ratio: 4/5;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(90,66,236,0.2);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: rgba(255,255,255,0.2);
  font-size: 15px;
}

.apropos-img-placeholder-icon {
  font-size: 60px;
  opacity: 0.15;
}

.apropos-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(90,66,236,0.15);
  border: 1px solid rgba(90,66,236,0.35);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}

.apropos-card-num {
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(90deg, var(--bleu-moyen), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.apropos-card-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.apropos-values {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.apropos-value,
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.apropos-value-icon,
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(9,187,254,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.apropos-value h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}

.apropos-value p,
.contact-info-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.55;
  max-width: 60ch;
}

.contact-infos {
  min-width: 0;
}

.contact-info-item {
  margin-bottom: 24px;
}

.contact-info-val {
  font-size: 15px;
  font-weight: 500;
}

.planning-note {
  margin-top: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(90,66,236,0.2);
  border-radius: var(--radius-sm);
}

.planning-note h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.planning-note p {
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  font-size: 14px;
  max-width: 60ch;
  margin-bottom: 16px;
}

.form-card {
  width: 100%;
  overflow: hidden;
}

.form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
  min-width: 0;
}

.form-group.full {
  grid-column: span 2;
}

.form-label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--blanc);
  font-size: 14px;
  padding: 12px 14px;
  transition: border-color 0.2s, background 0.2s;
  font-family: inherit;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff60' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-select option {
  background: #1a1525;
  color: var(--blanc);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(255,255,255,0.25);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--violet);
  background: rgba(90,66,236,0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: var(--blanc);
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: inherit;
  margin-top: 8px;
  min-height: 48px;
}

.form-submit:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.form-success h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.calendly-card {
  padding-bottom: 24px;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 320px;
  height: 780px;
  border-radius: 12px;
  overflow: hidden;
}

footer {
  background: #030104;
  border-top: 1px solid rgba(90,66,236,0.15);
  padding: 50px 5% 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  max-width: 320px;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-nav h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav ul a:hover {
  color: var(--cyan);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 1060px) {
  .nav-links {
    gap: 18px;
  }

  .contact-wrap,
  .apropos-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .calendly-inline-widget {
    height: 920px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }

  nav {
    padding: 0 4%;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(3,1,4,0.97);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(90,66,236,0.2);
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-burger {
    display: flex;
  }

  section {
    padding: 72px 4%;
    scroll-margin-top: 80px;
  }

  #accueil {
    padding: 110px 4% 64px;
  }

  .hero-title {
    font-size: clamp(32px, 9vw, 52px);
  }

  .hero-sub,
  .section-sub {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-outline,
  .form-submit {
    width: 100%;
  }

  .hero-stats {
    gap: 24px;
  }

  .galerie-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .galerie-item.large {
    grid-column: span 2;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .form-card,
  .presta-card,
  .tarif-card {
    padding: 24px 18px;
  }

  .tarif-card.featured {
    padding-top: 52px;
  }

  .tarif-badge {
    top: 12px;
    left: 18px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .calendly-inline-widget {
    min-width: 100%;
    height: 980px;
  }

  .footer-top {
    flex-direction: column;
  }

  .apropos-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 480px) {
  nav {
    height: 64px;
  }

  .nav-links {
    top: 64px;
  }

  .section-title {
    font-size: clamp(24px, 8vw, 34px);
  }

  .hero-stats {
    gap: 20px;
  }

  .presta-card,
  .tarif-card,
  .form-card {
    padding: 22px 16px;
  }

  .tarif-card.featured {
    padding-top: 50px;
  }

  .tarif-badge {
    left: 16px;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .galerie-item.large {
    grid-column: span 1;
  }

  .calendly-inline-widget {
    height: 1080px;
  }
}