/* =============================================
   SECUFER STRASBOURG - secufer.css
   ============================================= */

:root {
  --c-navy: #0a1f44;
  --c-orange: #e85d04;
  --c-orange-light: #ff7c2a;
  --c-bg: #f8f9fa;
  --c-text: #1a1a2e;
  --c-muted: #6c757d;
  --c-white: #ffffff;
}

/* === RESET + BOX-SIZING === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === TOPBAR === */
.topbar {
  background: var(--c-orange);
  padding: 8px 16px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-white);
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--c-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.topbar a:hover { color: var(--c-navy); }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--c-navy);
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.navbar-logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--c-white);
  letter-spacing: 0.03em;
}

.navbar-logo span {
  color: var(--c-orange);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-orange);
  border-bottom-color: var(--c-orange);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--c-white);
  border-radius: 2px;
  transition: 0.3s;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--c-navy);
  padding: 16px 24px 24px;
  z-index: 999;
  border-top: 2px solid var(--c-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  color: var(--c-white);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--c-orange); }

/* === HERO === */
.hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a6e 100%);
  color: var(--c-white);
  padding: 80px 24px 72px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 820px;
  margin: 0 auto 18px;
}

.hero h1 span { color: var(--c-orange); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0 auto 32px;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 36px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
}

.trust-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--c-orange);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid var(--c-orange);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-align: center;
}

.btn-primary:hover {
  background: var(--c-orange-light);
  border-color: var(--c-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,4,0.4);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  text-align: center;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
  transform: translateY(-2px);
}

.btn-orange-outline {
  display: inline-block;
  background: transparent;
  color: var(--c-orange);
  font-size: 1rem;
  font-weight: 700;
  padding: 13px 30px;
  border-radius: 50px;
  border: 2px solid var(--c-orange);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  text-align: center;
}

.btn-orange-outline:hover {
  background: var(--c-orange);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* === STATS BAR === */
.stats-bar {
  background: var(--c-white);
  border-bottom: 3px solid var(--c-orange);
  padding: 28px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.stat-item {
  text-align: center;
  flex: 1 1 160px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--c-muted);
  font-weight: 500;
  margin-top: 4px;
}

/* === SECTION LAYOUT === */
.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-title span { color: var(--c-orange); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.section-bg {
  background: var(--c-white);
}

.section-navy {
  background: var(--c-navy);
  color: var(--c-white);
}

.section-navy .section-title { color: var(--c-white); }
.section-navy .section-subtitle { color: rgba(255,255,255,0.75); }

.section-orange {
  background: var(--c-orange);
  color: var(--c-white);
}

.section-orange .section-title { color: var(--c-white); }
.section-orange .section-subtitle { color: rgba(255,255,255,0.85); }

/* === CARDS === */
.card {
  background: var(--c-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(10,31,68,0.08);
  padding: 28px 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(10,31,68,0.14);
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  line-height: 1;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 10px;
}

.card-text {
  font-size: 0.93rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* === CHECK LIST === */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--c-text);
  line-height: 1.55;
}

.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.check-list.white li { color: var(--c-white); }
.check-list.white li::before { background: rgba(255,255,255,0.3); color: var(--c-white); }

/* === INFO BOXES === */
.info-box-navy {
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: 12px;
  padding: 28px 24px;
}

.info-box-navy .box-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-orange);
}

.info-box-orange {
  background: var(--c-orange);
  color: var(--c-white);
  border-radius: 12px;
  padding: 28px 24px;
}

.info-box-orange .box-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--c-white);
}

/* === STEPS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-num {
  width: 52px;
  height: 52px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.step-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.55;
}

/* === CAROUSEL === */
.carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: carousel-scroll 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === REVIEW CARD === */
.review-card {
  background: var(--c-white);
  border-radius: 12px;
  padding: 22px 22px 20px;
  min-width: 300px;
  max-width: 300px;
  box-shadow: 0 4px 16px rgba(10,31,68,0.08);
  flex-shrink: 0;
}

.review-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.6;
  margin-bottom: 14px;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-navy);
}

.review-company {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin-top: 2px;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--c-white);
  border-radius: 10px;
  border: 1px solid rgba(10,31,68,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-navy);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover { background: var(--c-bg); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-orange);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 22px;
  font-size: 0.95rem;
  color: var(--c-text);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}

/* === FLOAT CTA === */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(232,93,4,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.15s;
}

.float-cta:hover {
  background: var(--c-orange-light);
  transform: translateY(-2px);
  color: var(--c-white);
}

.float-cta-icon { font-size: 1.1rem; }

/* === TWO COLS === */
.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-cols-text { }

.two-cols-text p {
  margin-bottom: 16px;
  color: var(--c-text);
  line-height: 1.75;
}

/* === ZONE INTERVENTION === */
.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.zone-tag {
  background: var(--c-navy);
  color: var(--c-white);
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* === MENTIONS === */
.mentions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.mention-item {
  background: var(--c-bg);
  border-radius: 10px;
  padding: 18px 20px;
  border-left: 4px solid var(--c-orange);
}

.mention-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  margin-bottom: 4px;
}

.mention-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--c-navy);
}

/* === FOOTER === */
.footer {
  background: var(--c-navy);
  color: rgba(255,255,255,0.8);
  padding: 56px 24px 28px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 28px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-white);
  margin-bottom: 12px;
}

.footer-logo span { color: var(--c-orange); }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.65);
}

.footer-badge {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--c-white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--c-orange);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--c-orange); }

.footer-tel {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--c-orange);
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* === REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* === CONTACT PAGE === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--c-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-navy);
  color: var(--c-white);
  padding: 20px 24px;
  border-radius: 12px;
  margin: 24px 0;
}

.contact-phone-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}

.contact-phone-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2px;
}

.contact-phone-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--c-orange);
}

/* === INLINE TEXT UTILITIES === */
.text-orange { color: var(--c-orange); }
.text-navy { color: var(--c-navy); }
.text-center { text-align: center; }
.text-muted { color: var(--c-muted); }
.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .two-cols { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .mentions-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .card-grid { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; align-items: center; }
  .hero { padding: 56px 20px 52px; }
  .section { padding: 52px 18px; }
  .float-cta span { display: none; }
  .float-cta { padding: 14px 16px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .trust-items { flex-direction: column; align-items: center; }
}
