/*
Theme Name: C3D Prod
Theme URI: https://www.c3dprod.fr
Author: C3D Prod
Author URI: https://www.c3dprod.fr
Description: Thème sur mesure pour C3D Prod – Studio Digital Indépendant. Identité graphique, sites internet, assistance informatique et impression 3D.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: c3dprod
Tags: one-page, custom-colors, custom-logo, full-width-template, portfolio
*/

/* ═══════════════════════════════════════
   CHARTE GRAPHIQUE C3D PROD
   #326679 – Teal foncé (primaire)
   #579FBA – Bleu clair (secondaire)
   #F25E0D – Orange (accent)
   #333333 – Gris foncé
   #000000 – Noir
   #FFFFFF – Blanc
═══════════════════════════════════════ */

:root {
  --c3d-teal:       #326679;
  --c3d-blue:       #579FBA;
  --c3d-orange:     #F25E0D;
  --c3d-dark:       #333333;
  --c3d-black:      #000000;
  --c3d-white:      #FFFFFF;
  --c3d-bg:         #0f1a1e;
  --c3d-bg2:        #162029;
  --c3d-card:       #1a2830;
  --c3d-border:     rgba(87,159,186,0.15);
  --c3d-muted:      #7a9aaa;
  --font-display:   'Syne', sans-serif;
  --font-body:      'DM Sans', sans-serif;
  --transition:     all 0.3s ease;
  --radius:         10px;
  --shadow:         0 4px 24px rgba(0,0,0,0.3);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--c3d-bg);
  color: var(--c3d-white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c3d-orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--c3d-blue); }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
}
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section { padding: 100px 0; }
.section--alt { background: var(--c3d-bg2); }
.section--dark { background: var(--c3d-black); }

/* ── SECTION HEADERS ── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c3d-orange);
  margin-bottom: 0.8rem;
}
.section-title { margin-bottom: 1rem; }
.section-title .accent { color: var(--c3d-orange); }
.section-sub {
  color: var(--c3d-muted); font-size: 1rem;
  font-weight: 300; line-height: 1.7;
  max-width: 560px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-size: 0.95rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--c3d-orange); color: #fff;
  border-color: var(--c3d-orange);
  box-shadow: 0 4px 20px rgba(242,94,13,0.35);
}
.btn-primary:hover {
  background: #d94e00; border-color: #d94e00; color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 28px rgba(242,94,13,0.45);
}
.btn-secondary {
  background: transparent; color: var(--c3d-white);
  border-color: var(--c3d-teal);
}
.btn-secondary:hover {
  background: var(--c3d-teal); color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--c3d-orange);
  border-color: var(--c3d-orange);
}
.btn-outline:hover { background: var(--c3d-orange); color: #fff; transform: translateY(-2px); }

/* ── HEADER / NAV ── */
#masthead {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(15,26,30,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c3d-border);
  transition: background 0.3s, box-shadow 0.3s;
}
#masthead.scrolled {
  background: rgba(15,26,30,0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.site-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-logo img { height: 44px; width: auto; }
.site-title-text {
  font-family: var(--font-display); font-weight: 800;
  font-size: 1.3rem; letter-spacing: -0.02em; color: var(--c3d-white);
}
.site-title-text span { color: var(--c3d-orange); }

/* Primary Nav */
#primary-navigation { display: flex; align-items: center; gap: 2.5rem; }
#primary-navigation .menu { display: flex; gap: 0.25rem; align-items: center; }
#primary-navigation .menu-item a {
  color: var(--c3d-muted); font-size: 0.9rem; font-weight: 500;
  padding: 0.4rem 0.8rem; border-radius: 6px;
  position: relative; transition: var(--transition);
}
#primary-navigation .menu-item a:hover { color: var(--c3d-white); background: rgba(255,255,255,0.05); }
#primary-navigation .menu-item.btn-nav a {
  background: var(--c3d-orange); color: #fff;
  padding: 0.45rem 1.2rem;
  box-shadow: 0 2px 12px rgba(242,94,13,0.3);
}
#primary-navigation .menu-item.btn-nav a:hover { background: #d94e00; color: #fff; }

/* Hamburger */
.menu-toggle {
  display: none; background: none; border: 1px solid var(--c3d-border);
  border-radius: 6px; padding: 8px; cursor: pointer; color: var(--c3d-white);
}
.menu-toggle svg { display: block; }

/* Mobile menu */
.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(10,20,26,0.97); backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
}
.nav-mobile.active { display: flex; }
.nav-mobile .mobile-close {
  position: absolute; top: 1.5rem; right: 5%;
  background: none; border: none; color: var(--c3d-white); font-size: 1.6rem; cursor: pointer;
}
.nav-mobile a {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: var(--c3d-white); text-decoration: none; letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-mobile a:hover { color: var(--c3d-orange); }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(50,102,121,0.18) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(242,94,13,0.08) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,94,13,0.1); border: 1px solid rgba(242,94,13,0.25);
  border-radius: 100px; padding: 6px 16px; margin-bottom: 1.5rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em;
  color: var(--c3d-orange); text-transform: uppercase;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before { content: '●'; font-size: 0.45rem; }
.hero-title { animation: fadeUp 0.8s ease 0.1s both; margin-bottom: 1.2rem; }
.hero-title .line2 { color: var(--c3d-orange); }
.hero-desc {
  color: var(--c3d-muted); font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; max-width: 480px; margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

/* Hero visual canvas */
.hero-visual { animation: fadeUp 0.9s ease 0.25s both; position: relative; }
.hero-canvas {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px; border-radius: 20px; overflow: hidden;
  aspect-ratio: 1; border: 1px solid var(--c3d-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.hc-cell {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; padding: 1.5rem;
}
.hc-cell span.hc-label {
  position: absolute; bottom: 12px; left: 14px;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
}
.hc-cell-1 { background: linear-gradient(135deg, #1a2f38, #243d4a); }
.hc-cell-2 { background: linear-gradient(135deg, #142028, #1f3040); }
.hc-cell-3 { background: linear-gradient(135deg, #1c2830, #28373f); }
.hc-cell-4 { background: var(--c3d-orange); display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1.5rem; }
.hc-cell-4 p {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: #fff; line-height: 1.3; margin: 0;
}
.hc-cell-4 .hc-label { color: rgba(255,255,255,0.6) !important; }

/* Floating availability badge */
.hero-avail {
  position: absolute; bottom: -16px; left: -20px;
  background: var(--c3d-bg2); border: 1px solid var(--c3d-border);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.avail-dot { width: 9px; height: 9px; border-radius: 50%; background: #4cde80; box-shadow: 0 0 8px #4cde80; }
.avail-text { font-size: 0.78rem; font-weight: 500; }
.avail-text small { display: block; color: var(--c3d-muted); font-size: 0.7rem; font-weight: 400; }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--c3d-teal);
  padding: 2.5rem 0;
}
.stats-grid {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; font-weight: 300; }

/* ── SERVICES ── */
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 2rem; margin-bottom: 4rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2px; background: var(--c3d-border);
  border: 1px solid var(--c3d-border); border-radius: 16px; overflow: hidden;
}
.service-card {
  background: var(--c3d-card); padding: 2.5rem;
  position: relative; overflow: hidden; transition: background 0.3s;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(50,102,121,0.06), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { background: #1e3040; }
.service-card:hover::after { opacity: 1; }
.service-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--c3d-muted); margin-bottom: 1.5rem;
}
.service-icon { font-size: 2.4rem; margin-bottom: 1.2rem; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.8rem; }
.service-card p { color: var(--c3d-muted); font-size: 0.88rem; line-height: 1.65; font-weight: 300; margin: 0; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1.5rem; }
.service-tag {
  background: rgba(255,255,255,0.05); border: 1px solid var(--c3d-border);
  border-radius: 100px; padding: 3px 10px;
  font-size: 0.7rem; color: var(--c3d-muted); font-weight: 500;
}
.service-arrow {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--c3d-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c3d-muted); transition: var(--transition);
}
.service-card:hover .service-arrow {
  background: var(--c3d-orange); border-color: var(--c3d-orange); color: #fff;
}

/* ── APPROACH ── */
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem;
  margin-top: 4rem; align-items: center;
}
.approach-steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 1.5rem; padding: 2rem 0;
  border-bottom: 1px solid var(--c3d-border);
  transition: padding-left 0.3s;
}
.step:first-child { border-top: 1px solid var(--c3d-border); }
.step:hover { padding-left: 0.5rem; }
.step-num {
  font-family: var(--font-display); font-size: 0.7rem; font-weight: 800;
  color: var(--c3d-orange); letter-spacing: 0.1em;
  min-width: 28px; padding-top: 4px;
}
.step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.step p { color: var(--c3d-muted); font-size: 0.88rem; line-height: 1.6; font-weight: 300; margin: 0; }

.approach-card {
  background: var(--c3d-card); border: 1px solid var(--c3d-border);
  border-radius: 20px; padding: 2rem; overflow: hidden;
}
.ac-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c3d-border);
}
.ac-dots { display: flex; gap: 6px; }
.ac-dot { width: 10px; height: 10px; border-radius: 50%; }
.ac-dot:nth-child(1){background:#e85c50}
.ac-dot:nth-child(2){background:#f0b93a}
.ac-dot:nth-child(3){background:#4cde80}
.ac-title { font-size: 0.72rem; color: var(--c3d-muted); font-weight: 500; letter-spacing: 0.06em; }
.ac-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--c3d-border);
}
.ac-item:last-of-type { border: none; }
.ac-check {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
}
.ac-check.done { background:rgba(76,222,128,0.12); border:1px solid rgba(76,222,128,0.3); color:#4cde80; }
.ac-check.wip  { background:rgba(242,94,13,0.12); border:1px solid rgba(242,94,13,0.3); color:var(--c3d-orange); }
.ac-item-label { font-size: 0.88rem; }
.ac-item-sub { font-size: 0.72rem; color: var(--c3d-muted); font-weight: 300; }
.ac-progress { margin-top: 1.5rem; }
.ac-prog-head { display: flex; justify-content: space-between; font-size: 0.75rem; margin-bottom: 6px; }
.ac-prog-head span:last-child { color: var(--c3d-orange); font-weight: 600; }
.ac-prog-track { height: 4px; background: rgba(255,255,255,0.06); border-radius: 2px; overflow: hidden; }
.ac-prog-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, var(--c3d-teal), var(--c3d-orange));
}

/* ── FAQ ── */
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 6rem; margin-top: 4rem; align-items: start;
}
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  border: 1px solid var(--c3d-border); border-radius: var(--radius);
  overflow: hidden; background: var(--c3d-card); transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(50,102,121,0.5); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 1.4rem; cursor: pointer;
  font-size: 0.95rem; font-weight: 500; gap: 1rem; user-select: none;
}
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  border: 1px solid var(--c3d-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--c3d-muted); transition: var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg); background: var(--c3d-teal);
  border-color: var(--c3d-teal); color: #fff;
}
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
  color: var(--c3d-muted); font-size: 0.88rem; line-height: 1.7; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner { padding: 0 1.4rem 1.2rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 5rem; margin-top: 4rem; align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-intro { color: var(--c3d-muted); font-weight: 300; line-height: 1.75; margin-bottom: 0.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-ico {
  width: 44px; height: 44px; border-radius: var(--radius); flex-shrink: 0;
  background: rgba(50,102,121,0.12); border: 1px solid rgba(50,102,121,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item h4 {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--c3d-muted); margin-bottom: 3px;
}
.contact-item p, .contact-item a { font-size: 0.95rem; font-weight: 400; color: var(--c3d-white); margin: 0; }
.contact-item a:hover { color: var(--c3d-orange); }

/* Contact form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; color: var(--c3d-muted); }
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--c3d-card); border: 1px solid var(--c3d-border);
  border-radius: var(--radius); padding: 0.85rem 1rem;
  color: var(--c3d-white); font-size: 0.9rem; width: 100%; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c3d-teal);
  box-shadow: 0 0 0 3px rgba(50,102,121,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--c3d-muted); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: #1a2830; }
.form-submit { display: flex; justify-content: flex-start; }
.form-notice {
  padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.88rem;
  display: none;
}
.form-notice.success { background: rgba(76,222,128,0.1); border: 1px solid rgba(76,222,128,0.3); color: #4cde80; }
.form-notice.error   { background: rgba(242,94,13,0.1);  border: 1px solid rgba(242,94,13,0.3);  color: var(--c3d-orange); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--c3d-teal); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.cta-band h2 { color: #fff; margin-bottom: 1rem; }
.cta-band p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; font-weight: 300; }
.cta-band .btn-primary { background: var(--c3d-orange); }
.cta-band .btn-secondary { border-color: rgba(255,255,255,0.4); color: #fff; margin-left: 1rem; }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* ── FOOTER ── */
#colophon {
  background: var(--c3d-black); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand .site-title-text { font-size: 1.2rem; margin-bottom: 0.8rem; display: block; }
.footer-brand p { color: var(--c3d-muted); font-size: 0.85rem; line-height: 1.65; font-weight: 300; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--c3d-white);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { color: var(--c3d-muted); font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--c3d-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy { color: var(--c3d-muted); font-size: 0.78rem; }
.footer-copy a { color: var(--c3d-muted); }
.footer-copy a:hover { color: var(--c3d-orange); }
.footer-social { display: flex; gap: 8px; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--c3d-muted); font-size: 0.85rem; transition: var(--transition);
}
.social-link:hover { background: var(--c3d-teal); border-color: var(--c3d-teal); color: #fff; }

/* ── WORDPRESS CORE CLASSES ── */
.wp-block-image { margin: 2rem 0; }
.wp-block-image img { border-radius: var(--radius); }
.aligncenter { text-align: center; margin-left: auto; margin-right: auto; }
.alignleft { float: left; margin-right: 2rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 2rem; margin-bottom: 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.82rem; color: var(--c3d-muted); margin-top: 0.5rem; text-align: center; }
.screen-reader-text { position: absolute; left: -9999em; }

/* Page content */
.page-header { padding: 140px 0 60px; background: var(--c3d-bg2); border-bottom: 1px solid var(--c3d-border); }
.page-header h1 { margin-bottom: 0.5rem; }
.page-header .breadcrumb { color: var(--c3d-muted); font-size: 0.85rem; }
.page-header .breadcrumb a { color: var(--c3d-blue); }

.entry-content { padding: 80px 0; }
.entry-content h2, .entry-content h3 { margin: 2rem 0 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin: 1rem 0; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 0.4rem; color: var(--c3d-muted); }
.entry-content blockquote {
  border-left: 3px solid var(--c3d-orange); padding: 1rem 1.5rem;
  margin: 2rem 0; background: var(--c3d-card); border-radius: 0 var(--radius) var(--radius) 0;
  color: var(--c3d-muted); font-style: italic;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .approach-grid { grid-template-columns: 1fr; gap: 3rem; }
  .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  #primary-navigation { display: none; }
  .menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-band .btn-secondary { margin-left: 0; margin-top: 0.75rem; }
  .stats-grid { gap: 1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
