/* ============================================================
   SECUFER AMIENS - Complete Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
  --c-orange: #f97316;
  --c-orange-dark: #ea580c;
  --c-navy: #0c2461;
  --c-blue: #1d6feb;
  --c-text: #374151;
  --c-muted: #6b7280;
  --c-bg: #f8fafc;
  --c-border: #e5e7eb;
  --c-title: #111827;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--c-text);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c-orange);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--c-orange-dark);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--c-title);
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; color: var(--c-text); }
p:last-child { margin-bottom: 0; }

/* --- Container --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Section Spacing --- */
section {
  padding: 4rem 0;
}

.section-label {
  display: inline-block;
  background: rgba(249,115,22,0.12);
  color: var(--c-orange);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--c-muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.text-center .section-intro { margin-left: auto; margin-right: auto; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--c-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  text-align: center;
  padding: 0.45rem 1rem;
  letter-spacing: 0.02em;
}

.topbar a {
  color: var(--c-orange);
  font-weight: 600;
}

.topbar a:hover {
  color: #fff;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -0.5px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  color: var(--c-navy);
  font-size: 1rem;
  font-weight: 800;
}

.logo-text span {
  color: var(--c-muted);
  font-size: 0.7rem;
  font-weight: 400;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: var(--c-text);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--c-orange);
  background: rgba(249,115,22,0.07);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  border: none;
  background: none;
  border-radius: 8px;
  transition: background 0.2s;
}

.hamburger:hover { background: var(--c-bg); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--c-navy);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 10px;
  transition: background 0.2s;
}

.mobile-menu a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--c-orange);
}

.mobile-menu .close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu .mobile-phone {
  margin-top: 1rem;
  background: var(--c-orange);
  color: #fff !important;
  padding: 0.75rem 2rem !important;
  border-radius: 50px !important;
  font-size: 1.1rem !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.22s;
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-orange);
}

.btn-primary:hover {
  background: var(--c-orange-dark);
  border-color: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(249,115,22,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--c-orange);
  border-color: var(--c-orange);
}

.btn-outline:hover {
  background: var(--c-orange);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

.btn-lg {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-primary-lg {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-orange);
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-primary-lg:hover {
  background: var(--c-orange-dark);
  border-color: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.4);
}

.btn-outline-lg {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

.btn-outline-lg:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a7a 50%, var(--c-blue) 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  color: #fff;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--c-orange);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.2);
  border: 1px solid rgba(249,115,22,0.4);
  color: #fdb96a;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero h1 span {
  color: var(--c-orange);
}

.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 680px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a7a 100%);
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--c-orange);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 640px;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--c-orange); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

.card h3 {
  color: var(--c-navy);
  margin-bottom: 0.5rem;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--c-navy);
  padding: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.3;
}

/* ============================================================
   INFO BOXES
   ============================================================ */
.info-box-orange {
  background: rgba(249,115,22,0.07);
  border: 2px solid rgba(249,115,22,0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.info-box-orange h3 {
  color: var(--c-orange-dark);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-box-navy {
  background: rgba(12,36,97,0.05);
  border: 2px solid rgba(12,36,97,0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.info-box-navy h3 {
  color: var(--c-navy);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   CHECK LIST
   ============================================================ */
ul.check-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

ul.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--c-text);
  font-size: 0.95rem;
}

ul.check-list li::before {
  content: '✓';
  color: var(--c-orange);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ============================================================
   STEPS / NUMBERED
   ============================================================ */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body h4 {
  color: var(--c-navy);
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-body p {
  font-size: 0.93rem;
  color: var(--c-muted);
  margin-bottom: 0;
}

/* ============================================================
   CAROUSEL
   ============================================================ */
.carousel-outer {
  overflow: hidden;
  position: relative;
}

.carousel-outer::before,
.carousel-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.carousel-outer::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.carousel-outer::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.carousel-wrapper {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: carousel-scroll 50s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carousel-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.avis-card {
  width: 300px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.avis-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 2px;
}

.avis-text {
  color: var(--c-text);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.avis-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--c-navy);
}

.avis-company {
  font-size: 0.8rem;
  color: var(--c-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--c-navy);
  font-size: 0.97rem;
  user-select: none;
  gap: 1rem;
  transition: background 0.2s;
}

.faq-q:hover { background: var(--c-bg); }

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 1.4rem 1.1rem;
  color: var(--c-text);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--c-border);
  padding-top: 0.9rem;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-navy) 0%, #1a3a7a 100%);
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.cta-band-content {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #08183d;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-logo-badge {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--c-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 900;
  font-family: 'Arial Black', sans-serif;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.footer-logo-text strong {
  color: #fff;
  font-size: 1rem;
  display: block;
}

.footer-logo-text span {
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--c-orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
}

.footer-phone-big {
  display: inline-block;
  color: var(--c-orange);
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-phone-big:hover { color: #fdb96a; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  color: #fdb96a;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  text-decoration: none;
}

.footer-bottom a:hover { color: var(--c-orange); }

/* ============================================================
   FLOAT CALL BUTTON
   ============================================================ */
.float-call {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-orange);
  color: #fff;
  text-decoration: none;
  padding: 0.7rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(249,115,22,0.45);
  transition: all 0.22s;
  white-space: nowrap;
}

.float-call:hover {
  background: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(249,115,22,0.55);
}

.float-call-icon {
  font-size: 1.1rem;
  animation: ring 2s infinite;
}

@keyframes ring {
  0%, 80%, 100% { transform: rotate(0); }
  10% { transform: rotate(-15deg); }
  20% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  40% { transform: rotate(10deg); }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 5rem;
  right: 1.75rem;
  z-index: 900;
  width: 40px;
  height: 40px;
  background: var(--c-navy);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--c-orange);
  transform: translateY(-2px);
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.bg-white { background: #fff; }
.bg-light { background: var(--c-bg); }
.bg-navy { background: var(--c-navy); }

.text-orange { color: var(--c-orange); }
.text-navy { color: var(--c-navy); }
.text-white { color: #fff !important; }
.text-muted { color: var(--c-muted); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.highlight-orange {
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.05));
  border-left: 4px solid var(--c-orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.tag {
  display: inline-block;
  background: rgba(12,36,97,0.08);
  color: var(--c-navy);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  margin: 0.15rem;
}

/* ============================================================
   COMPARISON CARDS
   ============================================================ */
.compare-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 2rem;
  color: #fff;
}

.compare-card h3 {
  color: var(--c-orange);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.compare-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.compare-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
}

.compare-card ul li::before {
  content: '✓';
  color: var(--c-orange);
  font-weight: 800;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-phone-display {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(249,115,22,0.07);
  border: 2px solid rgba(249,115,22,0.2);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.2s;
}

.contact-phone-display:hover {
  background: rgba(249,115,22,0.12);
  border-color: var(--c-orange);
}

.contact-phone-icon {
  font-size: 1.75rem;
}

.contact-phone-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
}

.contact-phone-label {
  font-size: 0.78rem;
  color: var(--c-muted);
  display: block;
  margin-top: 0.15rem;
}

/* ============================================================
   RESPONSIVE - 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    font-size: 0.85rem;
    padding: 0.4rem 0.55rem;
  }
}

/* ============================================================
   RESPONSIVE - 768px
   ============================================================ */
@media (max-width: 768px) {
  section { padding: 2.5rem 0; }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    padding: 3rem 0 2.5rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    flex-direction: column;
    gap: 0.6rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .float-call span.float-text {
    display: none;
  }

  .float-call {
    padding: 0.85rem;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE - 480px
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .container { padding: 0 1rem; }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number { font-size: 2.2rem; }

  .avis-card { width: 260px; }

  .page-hero { padding: 2rem 0; }

  .topbar { font-size: 0.72rem; }

  .btn-primary-lg,
  .btn-outline-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.93rem;
  }
}
