/* ============================================================
   SECUFER Orléans - secufer.css
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* --- Variables --- */
:root {
  --c-orange: #f97316;
  --c-blue: #1d6feb;
  --c-navy: #f0f6ff;
  --c-dark: #0c2461;
  --c-title: #0c2461;
  --c-text: #374151;
  --c-muted: #6b7280;
  --c-border: #e5e7eb;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 16px;
}

/* --- Base --- */
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--c-text);
  line-height: 1.6;
  font-size: 16px;
}

/* --- Topbar --- */
.topbar {
  background: #f97316;
  color: white;
  text-align: center;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.topbar a {
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.topbar a:hover { text-decoration: underline; }

/* --- Nav --- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: #0c2461;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #f97316;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.nav-logo-text {
  font-weight: 900;
  color: #0c2461;
  font-size: 1.1rem;
  line-height: 1.1;
}
.nav-logo-sub {
  font-size: 0.7rem;
  color: #f97316;
  font-weight: 700;
  display: block;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: #374151;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: #f97316; }
.nav-links a.active { color: #f97316; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  color: #0c2461;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-phone:hover { color: #f97316; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: #f97316;
  color: white;
}
.btn-primary:hover { background: #ea6c0a; transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: #f97316;
  border: 2px solid #f97316;
}
.btn-secondary:hover { background: #fff5ec; }
.btn-white {
  background: white;
  color: #0c2461;
}
.btn-white:hover { background: #f0f6ff; }
.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* --- Hamburger --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0c2461;
  border-radius: 2px;
  transition: 0.3s;
}

/* --- Mobile Menu --- */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 200;
  flex-direction: column;
  padding: 32px 24px;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.active { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0c2461;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
  display: block;
}
.mobile-menu a:hover { color: #f97316; }
.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0c2461;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-phone-link {
  margin-top: 20px;
  background: #f97316;
  color: white !important;
  border-radius: 8px;
  text-align: center;
  padding: 14px !important;
  border-bottom: none !important;
}

/* --- Section --- */
section { padding: 80px 0; }

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(135deg, #0c2461 0%, #1d4ed8 100%);
  color: white;
  padding: 80px 0;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 700px;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 580px;
  margin-bottom: 32px;
}
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 6px; }

/* --- Typography --- */
.section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #0c2461;
  line-height: 1.2;
  margin-bottom: 16px;
}
.label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.section-sub {
  color: #6b7280;
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1rem;
}

/* --- Grids --- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.grid-2-col-asym {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 60px;
  align-items: start;
}

/* --- Cards --- */
.card {
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c2461;
  margin-bottom: 10px;
}
.card p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- Check List --- */
.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
}
.check-list li::before {
  content: "✓";
  color: #f97316;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Info Boxes --- */
.info-box {
  border-radius: 12px;
  padding: 24px;
}
.info-box-orange {
  background: #fff8f3;
  border-left: 4px solid #f97316;
}
.info-box-navy {
  background: #f0f6ff;
  border-left: 4px solid #0c2461;
}
.info-box h3 {
  color: #0c2461;
  font-weight: 800;
  margin-bottom: 14px;
  font-size: 1rem;
}
.info-box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.88rem;
}
.info-box-row:last-child { border-bottom: none; }
.info-box-label { color: #6b7280; }
.info-box-value { font-weight: 700; color: #0c2461; }

/* --- Stats --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f97316;
  line-height: 1;
}
.stat-label {
  font-size: 0.85rem;
  color: #6b7280;
  margin-top: 6px;
}
.stat-item { padding: 20px; }

/* --- Steps --- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-item { text-align: center; }
.step-number {
  width: 48px;
  height: 48px;
  background: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
  margin: 0 auto 16px;
}
.step-title {
  font-weight: 800;
  color: #0c2461;
  font-size: 0.95rem;
  margin-bottom: 8px;
  text-align: center;
}
.step-desc {
  font-size: 0.85rem;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
}

/* --- OPCO Band --- */
.opco-band {
  background: linear-gradient(135deg, #fff5ec, #ffe8d4);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
}
.opco-band h2 { margin-bottom: 16px; }
.opco-band p { color: #6b7280; max-width: 600px; margin: 0 auto 24px; font-size: 0.95rem; }

/* --- Carousel --- */
.carousel-wrapper {
  overflow: hidden;
  position: relative;
}
.carousel-wrapper::before,
.carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.carousel-wrapper::before { left: 0; background: linear-gradient(to right, #f0f6ff, transparent); }
.carousel-wrapper::after { right: 0; background: linear-gradient(to left, #f0f6ff, transparent); }
.carousel-track {
  display: flex;
  gap: 24px;
  animation: scroll-carousel 50s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-carousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: white;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 24px;
}
.review-stars {
  color: #f97316;
  font-size: 1rem;
  margin-bottom: 8px;
}
.review-text {
  font-size: 0.88rem;
  color: #374151;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}
.review-author {
  font-weight: 800;
  color: #0c2461;
  font-size: 0.85rem;
}
.review-company {
  font-size: 0.78rem;
  color: #6b7280;
}

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 700;
  color: #0c2461;
  font-size: 0.95rem;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: #f97316; }
.faq-icon {
  color: #f97316;
  font-size: 1.3rem;
  font-weight: 400;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-a {
  display: none;
  padding: 0 0 20px;
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* --- CTA Band --- */
.cta-band {
  background: #0c2461;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Orange CTA Band --- */
.cta-orange-band {
  background: linear-gradient(135deg, #f97316 0%, #ea6c0a 100%);
  padding: 60px 0;
  text-align: center;
}
.cta-orange-band h2 {
  color: white;
  font-weight: 900;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 12px;
}
.cta-orange-band p { color: rgba(255,255,255,0.85); margin-bottom: 28px; }

/* --- Float Call --- */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #f97316;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
  z-index: 999;
  transition: all 0.2s;
}
.float-call:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(249,115,22,0.5); }
.float-call-icon { font-size: 1.2rem; }

/* --- Back to Top --- */
.back-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 40px;
  height: 40px;
  background: #0c2461;
  color: white;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s, transform 0.2s;
  z-index: 998;
  pointer-events: none;
}
.back-top.visible { opacity: 1; pointer-events: auto; }
.back-top:hover { transform: translateY(-2px); }

/* --- Footer --- */
footer {
  background: #0c2461;
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #f97316;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.footer-logo-text { font-weight: 900; color: white; font-size: 1.05rem; line-height: 1.1; }
.footer-logo-sub { font-size: 0.68rem; color: #f97316; font-weight: 700; display: block; }
footer p { font-size: 0.85rem; line-height: 1.7; }
footer h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 16px;
}
footer ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
footer a:hover { color: #f97316; }
.footer-phone {
  color: white !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { font-size: 0.8rem; }

/* --- Reveal Animation --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- Hero (home) --- */
.hero {
  background: linear-gradient(135deg, #0c2461 0%, #1d4ed8 100%);
  padding: 100px 0 80px;
  color: white;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
  pointer-events: none;
}
.hero h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 720px;
}
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}
.hero-phone-link {
  color: white;
  font-weight: 800;
  text-decoration: none;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-phone-link:hover { color: #f97316; }
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* --- Stats Band --- */
.stats-band {
  background: #f0f6ff;
  padding: 48px 0;
}

/* --- Section Alt BG --- */
.section-alt { background: #f9fafb; }
.section-light { background: #f0f6ff; }

/* --- Comparison Table --- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.compare-table th {
  background: #0c2461;
  color: white;
  padding: 16px 20px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 800;
}
.compare-table th:first-child { background: #0a1e52; }
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 0.88rem;
  color: #374151;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: #f9fafb; }
.compare-table .feature-col { font-weight: 600; color: #0c2461; }

/* --- Module List --- */
.module-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.module-item {
  background: #f0f6ff;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.module-number {
  width: 28px;
  height: 28px;
  background: #0c2461;
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.module-text { font-size: 0.88rem; color: #374151; line-height: 1.5; }
.module-text strong { display: block; color: #0c2461; font-weight: 700; margin-bottom: 3px; }

/* --- Contact Page --- */
.contact-info-block { margin-bottom: 28px; }
.contact-phone-big {
  font-size: 2rem;
  font-weight: 900;
  color: #f97316;
  text-decoration: none;
  display: block;
  margin: 12px 0;
  line-height: 1;
}
.contact-phone-big:hover { color: #ea6c0a; }
.engagement-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.engagement-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}
.engagement-icon {
  width: 32px;
  height: 32px;
  background: #f97316;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.engagement-text strong { display: block; color: #0c2461; font-weight: 700; }
.engagement-text span { color: #6b7280; font-size: 0.85rem; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-2-col-asym { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta .btn { display: none; }
  .nav-phone { font-size: 0.8rem; }
  .hamburger { display: flex; }

  section { padding: 60px 0; }
  .hero { padding: 70px 0 60px; }

  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-col { grid-template-columns: 1fr; gap: 32px; }
  .grid-2-col-asym { grid-template-columns: 1fr; gap: 32px; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .float-call { padding: 12px 18px; font-size: 0.85rem; }
  .float-call span:not(.float-call-icon) { display: none; }
  .float-call { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .float-call-icon { font-size: 1.3rem; }

  .trust-badges { gap: 10px; }
  .trust-badge { font-size: 0.78rem; padding: 6px 10px; }

  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn { text-align: center; justify-content: center; }

  .compare-table { font-size: 0.82rem; }
  .compare-table td, .compare-table th { padding: 10px 14px; }

  .opco-band { padding: 32px 24px; }
  .stats-band .stat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .step-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.7rem; }
}
