/* Reset minimal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0e1014;
  color: #f7f7f7;
}

/* Layout global */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main {
  flex: 1;
}

/* Header & nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(5, 7, 10, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 5px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0px;
}

.logo img {
  height: 150px;
}


/* Navigation */
.nav-list {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-list a {
  text-decoration: none;
  color: #e5e7eb;
  padding: 6px 0;
  position: relative;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #22c55e, #22d3ee);
  transition: width 0.25s ease-out;
}

.nav-list a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: radial-gradient(circle at top left, #22c55e22, transparent 55%),
              radial-gradient(circle at bottom right, #22d3ee22, transparent 55%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 80px 20px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a1a1aa;
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero-subtitle {
  font-size: 15px;
  color: #d4d4d8;
  max-width: 420px;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-ghost {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.btn-ghost span {
  opacity: 0.7;
}

.hero-image-shell {
  position: relative;
  padding: 18px;
  border-radius: 24px;
  background: radial-gradient(circle at top, #1e293b, #020617);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.7);
}

.hero-image-shell img {
  width: 100%;
  border-radius: 18px;
  display: block;
}

/* Sections génériques */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 20px 70px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 30px;
}

.section-title {
  font-size: 22px;
}

.section-subtitle {
  font-size: 14px;
  color: #a1a1aa;
  max-width: 420px;
}

/* Grille de cartes produits */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.product-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-image {
  border-radius: 14px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  display: block;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.product-name {
  font-size: 16px;
  font-weight: 600;
}

.product-price {
  font-size: 14px;
  color: #bbf7d0;
}

.product-specs {
  font-size: 13px;
  color: #a1a1aa;
}

/* Page à propos */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.about-image-shell {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.about-image-shell img {
  width: 100%;
  display: block;
}

.about-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.about-pill {
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 32px;
}

.contact-card {
  background: radial-gradient(circle at top left, #111827, #020617);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  padding: 18px 18px 22px;
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

/* volontairement des inputs non typés pour garder quelques erreurs UX/SEO */
.contact-input,
.contact-textarea {
  background: #020617;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  padding: 10px 12px;
  color: #e5e7eb;
  font-size: 14px;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  padding: 18px 20px 24px;
  font-size: 12px;
  color: #9ca3af;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

/* Responsive rapide (non exhaustif) */
@media (max-width: 800px) {
  .hero-inner,
  .about-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 40px;
  }

  .nav-list {
    gap: 14px;
    font-size: 13px;
  }
}
