/* ============================
   OR-Web — Styles des pages internes
   ============================ */

/* ── NAV UPDATES ── */
nav a.nav-logo {
  text-decoration: none;
}
a.nav-cta {
  text-decoration: none;
  display: inline-block;
}
a.nav-cta.active-cta {
  background: var(--gold);
  color: var(--dark);
}

/* ── PAGE HERO ── */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 60%, rgba(201,169,110,0.07) 0%, transparent 70%);
}

/* ── CONTACT ── */
.contact-section {
  padding: 2rem 4rem 7rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--dark-2);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 2px;
  padding: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group select option {
  background: var(--dark-3);
}
.form-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 0.5rem;
}
.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.info-icon {
  font-size: 1.2rem;
  color: var(--gold);
  width: 2rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.info-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.info-value {
  font-size: 0.95rem;
  color: var(--cream);
  line-height: 1.5;
}
.info-divider {
  height: 1px;
  background: rgba(201,169,110,0.15);
  margin: 0.5rem 0;
}
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.promise-item {
  font-size: 0.9rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.promise-check {
  color: var(--gold);
  font-size: 0.9rem;
}

/* ── PORTFOLIO ── */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201,169,110,0.25);
  color: var(--text-muted);
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.05);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.project-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  cursor: pointer;
}
.project-card:hover {
  border-color: rgba(201,169,110,0.5);
  transform: translateY(-4px);
}
.project-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.project-mockup {
  width: 100%;
  max-width: 220px;
  background: rgba(15,14,12,0.8);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.mock-bar {
  height: 18px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
}
.mock-bar::before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,80,80,0.5);
}
.mock-bar::after {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,200,50,0.5);
  box-shadow: 9px 0 0 rgba(80,200,80,0.5);
}
.mock-hero {
  height: 50px;
  margin: 8px;
  border-radius: 2px;
}
.mock-content {
  padding: 6px 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mock-line {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.w80 { width: 80%; }
.w70 { width: 70%; }
.w60 { width: 60%; }
.w50 { width: 50%; }
.w40 { width: 40%; }
.w30 { width: 30%; }
.mock-products {
  display: flex;
  gap: 4px;
  padding: 6px 8px;
}
.mock-product {
  flex: 1;
  height: 45px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
}
.mock-dashboard {
  display: flex;
  height: 80px;
}
.mock-sidebar {
  width: 30px;
  background: rgba(255,255,255,0.04);
  border-right: 1px solid rgba(255,255,255,0.05);
}
.mock-main {
  flex: 1;
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mock-stat {
  height: 14px;
  background: rgba(80,120,200,0.15);
  border-radius: 2px;
}
.mock-chart {
  flex: 1;
  background: rgba(80,120,200,0.08);
  border-radius: 2px;
}
.project-info {
  padding: 1.2rem 1.5rem;
  background: var(--dark-2);
}
.project-tag {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.project-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.project-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ── TARIFS ── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,169,110,0.15);
  margin-bottom: 6rem;
}
.pricing-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  position: relative;
  border-right: 1px solid rgba(201,169,110,0.1);
  display: flex;
  flex-direction: column;
}
.pricing-card:last-child { border-right: none; }
.pricing-card.featured {
  background: var(--dark-3);
  border: 2px solid rgba(201,169,110,0.4);
  margin: -1px;
  z-index: 1;
}
.pricing-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 2rem; }
.pricing-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,169,110,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pricing-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.pricing-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}
.pricing-price {
  margin-top: 1rem;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.feat-check { color: var(--gold); }
.feat-muted { color: var(--text-muted); }

.maintenance-section { margin-bottom: 5rem; }
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,169,110,0.15);
}
.option-card {
  background: var(--dark-2);
  padding: 1.8rem 1.5rem;
  border-right: 1px solid rgba(201,169,110,0.1);
  transition: background 0.3s;
}
.option-card:last-child { border-right: none; }
.option-card:hover { background: var(--dark-3); }
.option-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.option-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.option-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.option-price span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.faq-section { margin-bottom: 2rem; }
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid rgba(201,169,110,0.1);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-item:last-child { border-bottom: none; }
.faq-item:hover { background: var(--dark-2); }
.faq-q {
  padding: 1.3rem 1.8rem;
  font-size: 0.95rem;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}
.faq-arrow {
  color: var(--gold);
  transition: transform 0.3s;
  font-size: 1.1rem;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.8rem;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.8rem 1.3rem;
}
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* ── À PROPOS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 5rem;
  align-items: start;
  margin-bottom: 4rem;
}
.about-para {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
}
.about-para:first-of-type { color: var(--cream); font-size: 1.05rem; }
.about-card-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid rgba(201,169,110,0.15);
}
.about-stat-card {
  background: var(--dark-2);
  padding: 1.8rem 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.1);
  transition: background 0.3s;
}
.about-stat-card:last-child { border-bottom: none; }
.about-stat-card:hover { background: var(--dark-3); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.team-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 2px;
  background: var(--dark);
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(201,169,110,0.4); }
.team-avatar {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 500;
  margin: 0 auto 1.2rem;
  border: 1px solid currentColor;
  opacity: 0.9;
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.3rem;
}
.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid rgba(201,169,110,0.15);
}
.value-item {
  background: var(--dark-2);
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(201,169,110,0.1);
  transition: background 0.3s;
}
.value-item:last-child { border-right: none; }
.value-item:hover { background: var(--dark-3); }
.value-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}
.value-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.value-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}
