/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg:        #0b0f1c;
  --bg2:       #111827;
  --bg3:       #1a2236;
  --card:      #141c2e;
  --red:       #e63946;
  --red-dim:   #c0303c;
  --white:     #f5f5f0;
  --muted:     #9aa3b8;
  --border:    rgba(255,255,255,0.08);
  --serif:     'DM Serif Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}
html { scroll-behavior: smooth; }
#dc-root { background: var(--bg); color: var(--white); font-family: var(--sans); font-size: 16px; line-height: 1.65; }
#dc-root img { max-width: 100%; display: block; }
#dc-root a { color: inherit; text-decoration: none; }
#dc-root section { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Header ───────────────────────────────────────────── */
.dc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(11,15,28,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.logo-text {
  font-family: var(--serif); font-size: 22px;
  letter-spacing: -0.5px;
}
.logo-text span { color: var(--red); }
.dc-nav { display: flex; align-items: center; gap: 28px; }
.dc-nav a { font-size: 14px; color: var(--muted); font-weight: 500; transition: color .2s; }
.dc-nav a:hover { color: var(--white); }
.btn-nav {
  background: var(--red); color: var(--white) !important;
  padding: 9px 20px; border-radius: 6px;
  font-size: 14px; font-weight: 600;
  transition: background .2s;
}
.btn-nav:hover { background: var(--red-dim); }

/* ── Hero ─────────────────────────────────────────────── */
#hero {
  padding-top: 160px; padding-bottom: 100px;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(230,57,70,0.08) 0%, transparent 70%),
    linear-gradient(180deg, #0b0f1c 0%, #0f1525 100%);
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 20px; height: 2px; background: var(--red);
}
#dc-root h1 {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1; font-weight: 400; margin-bottom: 24px;
}
#dc-root h1 em { color: var(--red); font-style: italic; }
.hero-sub {
  font-size: 18px; color: var(--muted); line-height: 1.7; margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 600;
  transition: background .2s, transform .1s;
}
.btn-primary:hover { background: var(--red-dim); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white); padding: 14px 28px; border-radius: 8px;
  font-size: 15px; font-weight: 500;
  transition: border-color .2s, background .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.04); }
.hero-phones {
  display: flex; flex-direction: column; gap: 6px;
  margin-top: 28px;
}
.hero-phones a {
  font-family: var(--serif); font-size: 20px;
  color: var(--white); letter-spacing: -0.3px;
  transition: color .2s;
}
.hero-phones a:hover { color: var(--red); }
.hero-phones small { font-family: var(--sans); font-size: 12px; color: var(--muted); }
.hero-visual {
  display: flex; flex-direction: column; gap: 12px;
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 24px;
  position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
}
.stat-card .num {
  font-family: var(--serif); font-size: 36px; color: var(--white); line-height: 1;
}
.stat-card .label { font-size: 13px; color: var(--muted); margin-top: 6px; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 7px 14px;
  font-size: 13px; font-weight: 500;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* ── Value props ──────────────────────────────────────── */
#props { background: var(--bg2); padding: 60px 0; }
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.prop {
  background: var(--bg2); padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.prop:last-child { border-right: none; }
.prop-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(230,57,70,0.12); border: 1px solid rgba(230,57,70,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.prop h3 { font-family: var(--serif); font-size: 22px; font-weight: 400; margin-bottom: 10px; }
.prop p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── Section title ────────────────────────────────────── */
.section-title { text-align: center; margin-bottom: 56px; }
.section-title h2 {
  font-family: var(--serif); font-size: clamp(28px, 4vw, 42px);
  font-weight: 400; line-height: 1.2; margin-bottom: 12px;
}
.section-title p { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* ── Services ─────────────────────────────────────────── */
#services { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px;
  transition: border-color .2s, transform .2s;
}
.service-card:hover { border-color: rgba(230,57,70,0.3); transform: translateY(-2px); }
.service-card .ico {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(230,57,70,0.1); border: 1px solid rgba(230,57,70,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.service-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.service-card p { color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ── Specialiste ──────────────────────────────────────── */
#specialiste { background: var(--bg3); padding: 60px 0; }
.spec-inner {
  display: flex; align-items: center; gap: 60px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 48px;
}
.spec-logos { display: flex; gap: 20px; align-items: center; flex-shrink: 0; }
.spec-logo {
  width: 60px; height: 60px; border-radius: 14px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.spec-text h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 10px; }
.spec-text p { color: var(--muted); font-size: 16px; line-height: 1.7; }

/* ── Process ──────────────────────────────────────────── */
#process { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.process-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 36px 28px;
  position: relative;
}
.process-card::after {
  content: '\2192';
  position: absolute; right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--muted); font-size: 20px;
  display: none;
}
.process-card:not(:last-child)::after { display: block; }
.step-num {
  font-family: var(--serif); font-size: 48px; color: var(--red);
  opacity: 0.25; line-height: 1; margin-bottom: 16px;
}
.process-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.process-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── Contact ──────────────────────────────────────────── */
#contact { background: var(--bg2); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 36px; font-weight: 400; margin-bottom: 16px; }
.contact-info p { color: var(--muted); margin-bottom: 32px; }
.contact-phones { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.contact-phones a {
  font-family: var(--serif); font-size: 22px; transition: color .2s;
}
.contact-phones a:hover { color: var(--red); }
.contact-phones small { display: block; font-family: var(--sans); font-size: 13px; color: var(--muted); }
#dc-root form { display: flex; flex-direction: column; gap: 14px; }
#dc-root label { font-size: 13px; color: var(--muted); font-weight: 500; display: block; margin-bottom: 4px; }
#dc-root input, #dc-root textarea {
  width: 100%;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px;
  color: var(--white); font-family: var(--sans); font-size: 15px;
  outline: none; transition: border-color .2s;
}
#dc-root input:focus, #dc-root textarea:focus { border-color: var(--red); }
#dc-root textarea { min-height: 120px; resize: vertical; }
#dc-root input::placeholder, #dc-root textarea::placeholder { color: var(--muted); }
.form-submit {
  background: var(--red); color: var(--white);
  border: none; border-radius: 8px; padding: 14px 28px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: background .2s;
  text-align: center;
}
.form-submit:hover { background: var(--red-dim); }

/* ── Footer ───────────────────────────────────────────── */
.dc-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo {
  font-family: var(--serif); font-size: 18px;
}
.footer-logo span { color: var(--red); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--muted); }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .props-grid { grid-template-columns: 1fr; }
  .prop { border-right: none; border-bottom: 1px solid var(--border); }
  .process-grid { grid-template-columns: 1fr; }
  .process-card::after { display: none !important; }
  .spec-inner { flex-direction: column; text-align: center; }
  .dc-nav { display: none; }
}

/* ── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.6s ease both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }
.hero-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ── OVERRIDE KADENCE CHROME ──────────────────────────── */
body.page { background: #0b0f1c !important; }
.site-header, .site-footer, .entry-header, .page-title, .entry-content-wrap > .entry-header { display: none !important; }
.content-wrap, .site-main, .entry-content-wrap, .site-inner-wrap { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }
.site { background: #0b0f1c !important; }
.entry-content { margin: 0 !important; padding: 0 !important; }
.content-wrap .content-area { flex: 1; max-width: 100%; }
