/* =====================================================
   PNEU DOMICILE NICE — Stylesheet
   Aesthetic: Dark Garage Premium / Industrial Refined
   ===================================================== */

:root {
  --bg: #111214;
  --bg-card: #1a1c1f;
  --bg-dark: #0d0e10;
  --bg-accent: #161a20;
  --orange: #FF6B00;
  --orange-light: #FF8A30;
  --orange-dim: rgba(255, 107, 0, 0.12);
  --white: #F5F3EE;
  --text: #C8C4BC;
  --text-muted: #7a7672;
  --border: rgba(255,255,255,0.07);
  --border-orange: rgba(255,107,0,0.3);
  --font-head: 'Barlow Condensed', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --radius: 4px;
  --radius-lg: 10px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-light); }

img { max-width: 100%; display: block; }

/* ---- NAVBAR ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,14,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar { padding: 0; }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo:hover { color: var(--white); }
.logo strong { color: var(--orange); }
.logo-city { color: var(--text-muted); font-weight: 400; font-size: 0.85em; }
.logo-icon { color: var(--orange); font-size: 1.1em; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1.4rem; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; cursor: pointer; border: none; transition: all var(--transition); white-space: nowrap; }

.btn-nav {
  background: var(--orange);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
}
.btn-nav:hover { background: var(--orange-light); color: #fff; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
}
.btn-primary:hover { background: var(--orange-light); color: #fff; transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border);
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); transform: translateY(-1px); }

.btn-creasite {
  background: var(--white);
  color: var(--bg);
  font-size: 1rem;
  padding: 0.85rem 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.btn-creasite:hover { background: var(--orange); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,0,0.3); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
  padding: 0.3rem;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(255,107,0,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 5% 80%, rgba(255,107,0,0.04) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.015) 60px,
      rgba(255,255,255,0.015) 61px
    );
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 5rem 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
  display: block;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  font-size: 1.3rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, #0d0e10 0%, #161a20 100%);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 40%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255,107,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-head); font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; color: var(--white); line-height: 1.05; margin: 1rem 0; }
.page-hero h1 em { font-style: normal; color: var(--orange); }
.page-hero p { max-width: 560px; font-size: 1.05rem; }
.page-hero-alt::before { left: -10%; right: auto; }

/* ---- SECTIONS ---- */
.section { padding: 5rem 0; }
.section-dark { background: var(--bg-dark); }
.section-accent { background: var(--bg-accent); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; margin: 1rem auto 0; }

.section-tag {
  display: inline-block;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange-light);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1rem;
}

h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h3 {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.step:last-child { border-bottom: none; }

.step-num {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange-dim);
  line-height: 1;
  border-right: 1px solid var(--border-orange);
  display: flex;
  align-items: flex-start;
  padding-right: 2rem;
  padding-top: 0.3rem;
  letter-spacing: -0.03em;
  color: var(--orange);
  opacity: 0.4;
}

.step-body p { margin-bottom: 0.8rem; }
.step-body p:last-child { margin-bottom: 0; }

/* ---- ADVANTAGES GRID ---- */
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.adv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
}
.adv-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.adv-card-highlight {
  border-color: var(--border-orange);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(255,107,0,0.05) 100%);
}

.adv-icon { font-size: 1.8rem; margin-bottom: 1rem; }

/* ---- TARIFS TABLE ---- */
.tarifs-table-wrap { max-width: 680px; margin: 0 auto; }

.tarifs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.tarifs-table thead {
  background: var(--orange);
}
.tarifs-table th {
  padding: 1rem 1.4rem;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tarifs-table td {
  padding: 0.85rem 1.4rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.tarifs-table tr:last-child td { border-bottom: none; }
.tarifs-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.tarifs-table td strong { color: var(--orange-light); font-size: 1rem; }

.tarifs-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ---- TWO COL ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.two-col-rev { direction: rtl; }
.two-col-rev > * { direction: ltr; }

.check-list {
  list-style: none;
  margin: 1.2rem 0;
}
.check-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.mt { margin-top: 1.5rem; }

/* ---- PNEU VISUAL ---- */
.pneu-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.pneu-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 12px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: var(--bg);
  box-shadow: 0 0 40px rgba(255,107,0,0.15);
}

.pneu-label {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.pneu-label span { color: var(--orange); }
.pneu-sub { font-size: 0.65rem; color: var(--text-muted); text-align: center; }

.pneu-legend {
  list-style: none;
  font-size: 0.82rem;
}
.pneu-legend li { 
  padding: 0.35rem 0; 
  border-bottom: 1px solid var(--border); 
  display: flex;
  gap: 0.5rem;
}
.pneu-legend li:last-child { border-bottom: none; }
.pneu-legend span {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--orange-light);
  min-width: 32px;
}

/* ---- INFO BOX ---- */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-orange);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.info-box-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.info-box h3 { margin-bottom: 1rem; }

/* ---- SERVICES GRID ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-2px);
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }

/* ---- CREASITE BLOCK ---- */
.section-creasite {
  background: linear-gradient(135deg, #0d0e10 0%, #14100a 100%);
  border-top: 1px solid rgba(255,107,0,0.15);
  border-bottom: 1px solid rgba(255,107,0,0.15);
}

.creasite-block {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.creasite-badge {
  display: inline-block;
  background: rgba(255,107,0,0.15);
  border: 1px solid var(--border-orange);
  color: var(--orange-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.creasite-block h2 { margin-bottom: 1.5rem; }
.creasite-block p { margin-bottom: 1rem; font-size: 1rem; }

.link-creasite {
  color: var(--orange);
  text-decoration: underline;
  text-decoration-color: rgba(255,107,0,0.4);
  text-underline-offset: 3px;
}
.link-creasite:hover { color: var(--orange-light); }

.creasite-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin: 1.8rem 0;
}

.cf-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

/* ---- FAQ ---- */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 0;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange-light); }

.faq-icon {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--orange);
  transition: all var(--transition);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.95rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.3rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }

/* ---- CRITERIA ---- */
.criteria-grid { display: flex; flex-direction: column; gap: 0; }
.crit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.crit-item:last-child { border-bottom: none; }
.crit-num {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.35;
  line-height: 1;
}

/* ---- ZONES ---- */
.zones-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; }
.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.zone-card h3 { font-size: 1rem; margin-bottom: 0.8rem; }
.zone-card ul { list-style: none; font-size: 0.85rem; }
.zone-card ul li { padding: 0.2rem 0; color: var(--text); }

/* ---- QUESTIONS LIST ---- */
.questions-list { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.q-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--border);
}
.q-item:last-child { border-bottom: none; }
.q-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 0.1rem; }
.q-item strong { color: var(--white); display: block; margin-bottom: 0.4rem; font-size: 0.95rem; }
.q-item p { font-size: 0.88rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding-top: 3.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-col p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.8rem; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); }
.footer-col ul a:hover { color: var(--orange); }

.logo-footer { margin-bottom: 0.5rem; }

.footer-bottom {
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--orange); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-col:first-child { grid-column: 1 / -1; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col-rev { direction: ltr; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    gap: 0.2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.7rem 1rem; }
  .btn-nav { display: none; }
  .menu-toggle { display: block; }
  
  .advantages-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .zones-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  
  .step { grid-template-columns: 60px 1fr; gap: 1rem; }
  .step-num { font-size: 2.5rem; padding-right: 1rem; }
  
  .hero-stats { gap: 1.5rem; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  
  .crit-item { grid-template-columns: 40px 1fr; }
}
