:root {
  --bg: #05060a;
  --bg-alt: #0b0d16;
  --card: #101321;
  --gold: #f5d37a;
  --gold-soft: #e4b95a;
  --text: #f5f5f5;
  --muted: #a3a7c2;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 20px 45px rgba(0,0,0,0.55);
  --shadow-subtle: 0 12px 30px rgba(0,0,0,0.40);
}

*,
*::before,
*::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, #161a33 0, #05060a 40%, #020308 100%);
  color: var(--text);
}

/* LAYOUT */

.mw-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mw-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */

.mw-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(5,6,12,0.96), rgba(5,6,10,0.88));
  border-bottom: 1px solid rgba(245,211,122,0.12);
}

.mw-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 12px 0;
}

/* LOGO + TITRE */

.mw-logo-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mw-logo-block img {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(14,16,30,0.9),
              0 0 0 3px rgba(245,211,122,0.85);
}

.mw-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.mw-brand-name {
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--gold);
  text-transform: uppercase;
}

.mw-brand-tagline {
  font-size: 11px;
  color: var(--muted);
}

/* NAVIGATION */

.mw-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.mw-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 6px 4px;
  position: relative;
  transition: color .2s ease;
}

.mw-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  transition: width .22s ease;
}

.mw-nav a:hover { color: var(--text); }
.mw-nav a:hover::after,
.mw-nav a.is-active::after { width: 70%; }

.mw-nav a.is-active { color: var(--gold); }

.mw-nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(245,211,122,0.7);
  color: #081017;
  background: linear-gradient(135deg, var(--gold), #ffe7a6);
  font-weight: 600;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6),
              0 10px 25px rgba(0,0,0,0.65);
}

/* HERO + SECTIONS */

.mw-hero { padding: 56px 0 40px; }

.mw-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.mw-pill-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
  padding: 6px 12px;
  border-radius: 999px;
  background: radial-gradient(circle at top left,
            rgba(245,211,122,0.18), rgba(10,12,22,0.95));
  border: 1px solid rgba(245,211,122,0.2);
}

.mw-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
}

.mw-hero-title {
  font-size: clamp(40px, 4vw, 48px);
  line-height: 1.1;
  margin: 18px 0 12px;
}

.mw-hero-title .highlight { color: var(--gold); }

.mw-hero-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
}

/* BOUTONS */

.mw-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 24px 0 10px;
}

.mw-btn-primary,
.mw-btn-secondary {
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mw-btn-primary {
  color: #081017;
  background: linear-gradient(135deg, var(--gold), #ffe7a6);
  box-shadow: 0 12px 30px rgba(0,0,0,0.7);
}

.mw-btn-secondary {
  color: var(--gold-soft);
  background: rgba(7,10,20,0.95);
  border: 1px solid rgba(245,211,122,0.3);
}

.mw-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.mw-badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(163,167,194,0.35);
  color: var(--muted);
}

/* PANELS / GRILLES */

.mw-panel {
  background: radial-gradient(circle at top left,
            rgba(245,211,122,0.12), rgba(5,7,14,0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245,211,122,0.25);
  padding: 20px 22px;
  box-shadow: var(--shadow-soft);
}

.mw-pricing-grid,
.mw-products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.mw-tier,
.mw-product-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 14px 14px 16px;
  border: 1px solid rgba(163,167,194,0.35);
}

.mw-tier.is-popular {
  border-color: rgba(245,211,122,0.9);
  box-shadow: var(--shadow-subtle);
  background: radial-gradient(circle at top,
            rgba(245,211,122,0.18), rgba(7,9,18,0.98));
}

.mw-tier-label {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 4px 9px;
  border-radius: 999px;
  color: #05060a;
  background: var(--gold);
  margin-bottom: 8px;
}

.mw-price {
  font-size: 18px;
  font-weight: 600;
  margin: 2px 0;
}

.mw-tier ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.mw-tier ul li { margin-bottom: 4px; }

.mw-product-tag { font-size: 11px; color: var(--muted); }
.mw-product-title { font-size: 15px; font-weight: 600; }
.mw-product-price { font-size: 14px; color: var(--gold-soft); }

.mw-section {
  padding: 40px 0 56px;
}

.mw-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}

.mw-section-title { font-size: 26px; margin: 0; }
.mw-section-lead {
  font-size: 14px;
  color: var(--muted);
  max-width: 440px;
}

.mw-link {
  font-size: 12px;
  color: var(--gold-soft);
  text-decoration: none;
}

/* BUILDER T-SHIRT */

.mw-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: flex-start;
}

.mw-preview-card,
.mw-form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 20px;
  border: 1px solid rgba(163,167,194,0.35);
  box-shadow: var(--shadow-subtle);
}

.mw-preview-area {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}

.mw-preview-area img {
  display: block;
  width: 100%;
  height: auto;
}

#logo-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 40%;
  pointer-events: none;
}

.mw-form-group { margin-bottom: 12px; }

.mw-form-group label {
  font-size: 13px;
  display: block;
  margin-bottom: 4px;
}

.mw-form-group input[type="file"],
.mw-form-group select,
.mw-form-group input[type="number"],
.mw-form-group input[type="range"] {
  width: 100%;
  padding: 7px 9px;
  border-radius: 10px;
  border: 1px solid #262838;
  background: #090b15;
  color: var(--text);
  font-size: 13px;
}

.mw-slider-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mw-slider-row span {
  min-width: 42px;
  font-size: 12px;
  text-align: right;
}

.mw-btn-full { width: 100%; }

/* CONTACT */

.mw-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 26px;
}

.mw-contact-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 20px 20px 22px;
  border: 1px solid rgba(163,167,194,0.35);
  box-shadow: var(--shadow-subtle);
}

.mw-contact-card input,
.mw-contact-card textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid #262838;
  background: #090b15;
  color: var(--text);
  font-size: 13px;
  margin-bottom: 10px;
}

.mw-contact-card textarea {
  min-height: 120px;
  resize: vertical;
}

/* FOOTER */

.mw-footer {
  margin-top: auto;
  border-top: 1px solid rgba(245,211,122,0.12);
  padding: 16px 0 20px;
  font-size: 11px;
  color: var(--muted);
  background: radial-gradient(circle at top, #10142a, #05060a);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .mw-hero-layout,
  .mw-builder-layout,
  .mw-contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .mw-pricing-grid,
  .mw-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .mw-nav { flex-wrap: wrap; }
}

@media (max-width: 600px) {
  .mw-pricing-grid,
  .mw-products-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .mw-hero { padding-top: 32px; }
  .mw-section { padding: 26px 0 36px; }
}.mw-contact-photo {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.mw-contact-photo {
    margin-top: 24px;
    text-align: center;
}

.mw-contact-photo img {
    display: block;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}/* SECTION BRAND / PROMO MWC (page d'accueil) */

.mw-brand-section {
  padding: 80px 0;
  background: radial-gradient(circle at top left, #151827 0, #05060d 55%, #020308 100%);
}

.mw-brand-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Texte à gauche */
.mw-brand-textbox {
    flex: 1 1 420px;
    max-width: 520px;
}

/* Colonne image à droite */
.mw-brand-image {
    flex: 0 0 420px;   /* largeur fixe d’environ 420px */
    max-width: 420px;
}

.mw-brand-textbox {
    flex: 1 1 600px;   /* largeur minimum plus grande */
    max-width: 650px; /* largeur maximum augmentée */
}



.mw-brand-textblock {
  flex: 1 1 320px;
  max-width: 520px;
}.mw-brand-textbox {
    flex: 1 1 600px;   /* largeur minimum plus grande */
    max-width: 650px; /* largeur maximum augmentée */
}


.mw-brand-textblock h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.mw-brand-textblock p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.mw-brand-textblock ul {
  margin: 0 0 20px 1.2rem;
  padding: 0;
}

.mw-brand-textblock li {
  margin-bottom: 4px;
}

/* Boutons de la section "Maximum Web Creator, tout pour l’image de ton entreprise" */
.mw-brand-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

/* Bouton plein or */
.mw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: #f5d37a;      /* or */
  color: #111111;           /* texte noir */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.mw-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

/* Bouton contour or */
.mw-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid #f5d37a;
  color: #f5d37a;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.mw-btn-outline:hover {
  background: #f5d37a;
  color: #111111;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

}

.mw-brand-image {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.mw-brand-image img {
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

/* Responsive */
@media (max-width: 900px) {
  .mw-brand-layout {
    flex-direction: column-reverse;
  }

  .mw-brand-image {
    justify-content: center;
  }

  .mw-brand-textblock {
    max-width: 100%;
  }
}/* --- Boutons noirs & or pour l'accueil --- */
/* Titres dorés pour les pages internes */
.gold-title {
  color: #f5d37a;
}





