:root {
  --orange: #FF6500;
  --orange-dark: #D95400;
  --orange-light: #FF8533;
  --orange-pale: #FFF0E6;
  --black: #0A0A0A;
  --dark: #111111;
  --text: #1A1A1A;
  --text-muted: #444444;
  --border: #E8E8E8;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF9;
  --bg-warm: #FFF6F0;
  --font: 'Century Gothic', CenturyGothic, 'Jost', 'Apple Gothic', Futura, 'Trebuchet MS', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
  --transition: 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; cursor: pointer;
}
.logo-mark {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
  letter-spacing: -0.5px;
}
.logo-text {
  font-size: 18px; font-weight: 700; color: var(--black);
  letter-spacing: -0.3px;
}
.logo-text span { color: var(--orange); }

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > button {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 18px;
  font-family: var(--font);
  font-size: 14px; font-weight: 500;
  color: var(--text); text-decoration: none;
  background: none; border: none; cursor: pointer;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > button:hover { color: var(--orange); }
.nav-links > li > a.active { color: var(--orange); }

.dropdown-arrow { font-size: 10px; transition: transform 0.3s; }
.nav-links > li:hover .dropdown-arrow { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px;
  min-width: 240px; box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}
.dropdown.open {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.dropdown::before {
  content: ''; position: absolute;
  top: -20px; left: -50px; right: -50px; height: 28px;
}
.dropdown a {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500;
  color: var(--text); text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.dropdown a:hover { background: var(--bg-warm); color: var(--orange); }
.dropdown-icon {
  width: 30px; height: 30px; background: var(--bg-warm);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
  transition: background 0.2s;
}
.dropdown a:hover .dropdown-icon { background: var(--orange-pale); }

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.btn-audit {
  padding: 9px 18px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: var(--orange); border: 1.5px solid var(--orange);
  border-radius: 8px; background: transparent;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  white-space: nowrap;
}
.btn-audit:hover { background: var(--orange-pale); }
.btn-devis {
  padding: 9px 20px;
  font-family: var(--font); font-size: 13px; font-weight: 600;
  color: white; background: var(--orange);
  border: 1.5px solid var(--orange);
  border-radius: 8px; cursor: pointer;
  transition: all 0.3s; text-decoration: none; white-space: nowrap;
}
.btn-devis:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,101,0,0.3); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 4px;
}
.menu-toggle span {
  width: 24px; height: 2px; background: var(--text);
  transition: all 0.3s; border-radius: 2px;
}

.mn-link {
  display: flex; align-items: center; gap: 10px;
  padding: 15px 24px; font-family: var(--font);
  font-size: 15px; font-weight: 500; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mn-link:hover, .mn-link:active { color: var(--orange); background: var(--bg-warm); }
.mn-acc-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 15px 24px; font-family: var(--font);
  font-size: 15px; font-weight: 600; color: var(--text);
  border-bottom: 1px solid var(--border); cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  width: 100%; text-align: left;
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mn-acc-header:hover { color: var(--orange); background: var(--bg-warm); }
.mn-acc-header.open { color: var(--orange); background: var(--bg-warm); border-bottom-color: var(--orange-light); }
.mn-acc-arrow {
  width: 18px; height: 18px; flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
  color: var(--text-muted);
}
.mn-acc-header.open .mn-acc-arrow { transform: rotate(180deg); color: var(--orange); }
.mn-acc-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  background: var(--bg-soft);
}
.mn-acc-body.open { max-height: 800px; }
.mn-cat-title {
  padding: 10px 24px 6px 24px;
  font-family: var(--font); font-size: 10px; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--text-muted); border-bottom: 1px solid var(--border);
}
.mn-sub-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 24px 12px 32px; font-family: var(--font);
  font-size: 14px; font-weight: 500; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mn-sub-link:last-child { border-bottom: none; }
.mn-sub-link:hover, .mn-sub-link:active { color: var(--orange); background: var(--bg-warm); }
.mn-sub-link svg { flex-shrink: 0; color: var(--orange); }
.mn-ctas {
  padding: 20px 24px 8px 24px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 2px solid var(--border); margin-top: 4px;
}
.mn-cta-call {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; border-radius: 8px;
  background: var(--orange); color: white;
  font-family: var(--font); font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}
.mn-cta-call:active { transform: scale(0.98); background: var(--orange-dark); }
.mn-cta-devis {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: 8px;
  background: transparent; color: var(--orange);
  border: 1.5px solid var(--orange);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.mn-cta-devis:active { background: var(--orange-pale); }

/* PAGE SYSTEM */
.page { display: none !important; height: 0 !important; overflow: hidden !important; visibility: hidden !important; }
.page.active { display: block !important; height: auto !important; overflow: visible !important; visibility: visible !important; }
@keyframes pageIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* SECTIONS */
section { padding: 100px 0; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container-sm { max-width: 960px; margin: 0 auto; padding: 0 32px; }

/* TAGS */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); color: var(--orange-text);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 100px;
  margin-bottom: 20px;
}
.section-tag::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

/* HEADINGS */
.h-display {
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; color: var(--black);
}
.h-xl { font-size: clamp(36px, 4vw, 60px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--black); }
.h-lg { font-size: clamp(28px, 3vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -1px; color: var(--black); }
.h-md { font-size: clamp(22px, 2.2vw, 32px); font-weight: 700; line-height: 1.2; letter-spacing: -0.5px; color: var(--black); }
.h-sm { font-size: 20px; font-weight: 600; color: var(--black); }

.text-orange { color: var(--orange); }
.text-muted { color: var(--text-muted); }

.lead { font-size: clamp(16px, 1.5vw, 19px); line-height: 1.7; color: var(--text-muted); }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 10px;
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.3s; text-decoration: none;
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: white; border-color: var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255,101,0,0.35); }
.btn-secondary {
  background: transparent; color: var(--black); border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }
.btn-ghost {
  background: transparent; color: var(--orange); border-color: var(--orange);
}
.btn-ghost:hover { background: var(--orange-pale); }
.btn-white {
  background: white; color: var(--orange); border-color: white;
}
.btn-white:hover { background: var(--orange-pale); }
.btn-arrow::after{content:"";display:inline-block;width:1.1em;height:1.1em;margin-left:0;vertical-align:-.15em;background-color:currentColor;-webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>') center/contain no-repeat;mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="5" y1="12" x2="19" y2="12"/><polyline points="12 5 19 12 12 19"/></svg>') center/contain no-repeat}
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

/* HERO HOME */
.hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative; overflow: hidden;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 800px 600px at 70% 50%, rgba(255,101,0,0.05) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange-pale); color: var(--orange-text);
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 7px 14px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.hero-label::before { content: '●'; font-size: 6px; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero h1 { animation: fadeUp 0.9s 0.1s ease both; }
.hero .lead { animation: fadeUp 0.9s 0.2s ease both; margin-top: 20px; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px;
  animation: fadeUp 0.9s 0.3s ease both;
}
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-stat-num {
  font-size: 32px; font-weight: 800; color: var(--orange); line-height: 1;
  letter-spacing: -1px;
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

.hero-visual {
  position: relative; animation: fadeIn 1.2s 0.3s ease both;
}
.hero-card-main {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; box-shadow: var(--shadow-lg);
  position: relative; z-index: 2;
}
.hero-card-main .metric-title { font-size: 13px; color: var(--text-muted); font-weight: 500; margin-bottom: 16px; }
.hero-chart { height: 80px; display: flex; align-items: flex-end; gap: 6px; margin-bottom: 16px; }
.hero-bar {
  flex: 1; background: var(--border); border-radius: 4px;
  transition: height 1.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.hero-bar.orange { background: var(--orange); }
.hero-bar.orange-light { background: var(--orange-light); }
.hero-chart-footer { display: flex; justify-content: space-between; align-items: center; }
.hero-chart-value { font-size: 28px; font-weight: 800; color: var(--black); }
.hero-chart-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: #ECFDF5; color: #059669;
  font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}

.hero-badge { z-index: 3;
  position: absolute; background: white; border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-icon { width: 36px; height: 36px; background: var(--orange-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.hero-badge-text { font-size: 12px; font-weight: 500; }
.hero-badge-text strong { display: block; font-size: 14px; color: var(--black); }
.badge-1 { bottom: -30px; left: -50px; z-index: 3; animation: float 4s ease-in-out infinite; }
.badge-2 { top: -30px; right: -50px; z-index: 3; animation: float 4s 1s ease-in-out infinite; }

@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0;transform:scale(0.95)} to{opacity:1;transform:scale(1)} }

/* MARQUEE */
.marquee-section { padding: 24px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); overflow: hidden; background: var(--bg-soft); }
.marquee-track { display: flex; gap: 0; white-space: nowrap; animation: marqueeScroll 30s linear infinite; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 32px; font-size: 13px; font-weight: 600;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap;
}
.marquee-dot { width: 5px; height: 5px; background: var(--orange); border-radius: 50%; flex-shrink: 0; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SERVICES SECTION */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer; position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,101,0,0.12); transform: translateY(-4px); }

.service-icon {
  width: 52px; height: 52px; background: var(--orange-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--orange); }
.service-card:hover .service-icon span { filter: brightness(0) invert(1); }

.service-title { font-size: 18px; font-weight: 700; color: var(--black); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.service-link {
  font-size: 13px; font-weight: 600; color: var(--orange-text);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.3s;
}
.service-card:hover .service-link { gap: 10px; }

/* POSITIONING */
.positioning-tabs {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 48px;
}
.pos-tab { display:inline-flex; align-items:center; gap:6px;
  padding: 10px 22px; border-radius: 100px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  border: 1.5px solid var(--border); background: white; cursor: pointer;
  transition: all 0.3s; color: var(--text-muted);
}
.pos-tab.active { background: var(--orange); color: white; border-color: var(--orange); }
.pos-tab:hover:not(.active) { border-color: var(--orange); color: var(--orange); }

.pos-content { display: none; }
.pos-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.pos-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.pos-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.pos-check {
  width: 22px; height: 22px; background: var(--orange-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--orange); font-size: 11px; font-weight: 700;
  margin-top: 2px;
}
.pos-list-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--black); }
.pos-list-text span { font-size: 13px; color: var(--text-muted); }

.pos-visual {
  background: var(--bg-soft); border-radius: 20px; padding: 40px;
  border: 1px solid var(--border); position: relative;
}
.pos-pack {
  background: white; border-radius: 14px; padding: 28px;
  border: 1px solid var(--border); box-shadow: var(--shadow);
}
.pos-pack-title { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--orange-text); margin-bottom: 12px; }
.pos-pack-name { font-size: 24px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.pos-pack-services { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.pos-pack-service {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted);
}
.pos-pack-service::before { content: "\2713"; color: var(--orange); font-weight: 700; font-size: 13px; margin-right: 6px; }

/* PROCESS */
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-num {
  width: 72px; height: 72px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; color: white; margin: 0 auto 20px;
  position: relative;
}
.process-num::after {
  content: ''; position: absolute; inset: -6px;
  border: 1px solid var(--orange); border-radius: 50%; opacity: 0.3;
}
.process-step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
.process-step-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,101,0,0.1); }
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 8px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--black); }
.testimonial-company { font-size: 12px; color: var(--text-muted); }

/* STATS BAND */
.stats-band {
  background: #FFF6F0; padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(36px, 4vw, 56px); font-weight: 800; color: var(--orange); line-height: 1; letter-spacing: -2px; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 8px; }

/* CTA BANNER */
.cta-banner {
  background: var(--orange); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-banner::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-inner {
  max-width: 1320px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.cta-text h2 { color: white; font-size: clamp(28px,3vw,44px); font-weight: 800; letter-spacing: -1px; margin-bottom: 12px; }
.cta-text p { color: rgba(255,255,255,0.8); font-size: 16px; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* PAGE HERO (inner pages) */
.page-hero {
  padding: 140px 0 80px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.page-hero .breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-size: 13px; color: var(--text-muted);
}
.page-hero .breadcrumb a { color: var(--text-muted); text-decoration: none; }
.page-hero .breadcrumb a:hover { color: var(--orange); }
.page-hero .breadcrumb span { color: var(--orange-text); }

/* CARDS GRID */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* FEATURE CARD */
.feature-card {
  background: var(--bg-soft); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px; transition: all 0.3s;
}
.feature-card:hover { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,101,0,0.1); }
.feature-card-icon { width: 48px; height: 48px; background: var(--orange-pale); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; transition: background 0.3s; }
.feature-card:hover .feature-card-icon { background: var(--orange); }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* PRICE CARD */
.price-card {
  border: 1.5px solid var(--border); border-radius: 20px; padding: 40px;
  transition: all 0.4s; position: relative;
}
.price-card.featured { border-color: var(--orange); box-shadow: 0 12px 48px rgba(255,101,0,0.15); }
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white; font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 4px 14px; border-radius: 100px;
}
.price-plan { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.price-name { font-size: 26px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
.price-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }
.price-amount { font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; margin-bottom: 4px; }
.price-amount span { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.price-list li { display: flex; gap: 10px; align-items: center; font-size: 14px; color: var(--text); }
.price-list li::before { content: "\2713"; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-right: 2px; }

/* FORM STYLES */
.form-section { padding: 80px 0; }
.form-container {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 60px; box-shadow: var(--shadow-lg);
}
.form-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.form-subtitle { color: var(--text-muted); font-size: 15px; margin-bottom: 40px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
label { font-size: 13px; font-weight: 600; color: var(--text); }
input, select, textarea {
  font-family: var(--font); font-size: 14px;
  padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--bg-soft); color: var(--text);
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,101,0,0.1);
  background: white;
}
textarea { resize: vertical; min-height: 120px; }
select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-actions { margin-top: 32px; display: flex; gap: 14px; align-items: center; }
.form-note { font-size: 12px; color: var(--text-muted); }

/* MULTI-STEP FORM */
.step-indicators {
  display: flex; align-items: flex-start; gap: 0; margin-bottom: 48px;
}
.step-ind {
  display: flex; flex-direction: column; align-items: center; flex: 1;
  position: relative;
}
.step-ind-inner {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.step-ind-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
  border: 2px solid var(--border); color: var(--text-muted); background: white;
  transition: all 0.3s; position: relative; z-index: 1;
}
.step-ind.done .step-ind-num { background: var(--orange); border-color: var(--orange); color: white; }
.step-ind.active .step-ind-num { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 4px rgba(255,101,0,0.12); }
.step-ind-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-align: center; white-space: nowrap; margin-top: 2px;
}
.step-ind.active .step-ind-label, .step-ind.done .step-ind-label { color: var(--orange); }
.step-line {
  position: absolute; top: 20px; left: calc(50% + 20px); right: calc(-50% + 20px);
  height: 2px; background: var(--border); z-index: 0;
  transition: background 0.4s;
}
.step-ind:last-child .step-line { display: none; }
.step-ind.done .step-line { background: var(--orange); }

.form-step { display: none; animation: fadeUp 0.4s ease both; }
.form-step.active { display: block; }

.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px; border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer; transition: all 0.3s; font-size: 14px; line-height: 1.3;
  min-height: 52px;
}
.checkbox-label:hover { border-color: var(--orange); }
.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
  width: 16px; height: 16px; min-width: 16px;
  padding: 0; accent-color: var(--orange); flex-shrink: 0;
}
.checkbox-label span, .checkbox-label > *:not(input) { flex: unset; }
.checkbox-label.checked { border-color: var(--orange); background: var(--orange-pale); color: var(--orange); font-weight: 600; } .checkbox-label input { flex-shrink: 0; margin-right: 0; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon {
  width: 48px; height: 48px; background: var(--orange-pale);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.contact-info-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.contact-info-text a, .contact-info-text p { font-size: 14px; color: var(--text-muted); text-decoration: none; }
.contact-info-text a:hover { color: var(--orange); }

/* AUDIT PAGE */
.audit-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.audit-benefit {
  text-align: center; padding: 36px 24px;
  border: 1px solid var(--border); border-radius: 16px;
}
.audit-benefit-icon { font-size: 36px; margin-bottom: 16px; }
.audit-benefit h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.audit-benefit p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* B2G / GE / PME PAGE */
.target-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.target-points { display: flex; flex-direction: column; gap: 20px; }
.target-point { display: flex; gap: 16px; }
.target-point-icon { width: 40px; height: 40px; background: var(--orange-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.target-point h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.target-point p { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

.reference-logos {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px;
}
.ref-logo {
  padding: 10px 20px; border: 1px solid var(--border); border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted); background: var(--bg-soft);
}

/* PRICING TIERS */
.pricing-toggle{display:flex;justify-content:center;gap:8px;margin:24px 0 32px;flex-wrap:wrap}
.pricing-toggle button{padding:10px 20px;border:1.5px solid #d4d4d4;background:#fff;border-radius:8px;cursor:pointer;font-size:14px;font-weight:600;color:#1a1a1a;transition:all .2s;font-family:inherit}
.pricing-toggle button:hover{border-color:#1a1a1a}
.pricing-toggle button.active{background:#1a1a1a;color:#fff;border-color:#1a1a1a}
.pricing-toggle button.recommended{border:2px solid #ff6b00;background:#fff5ee;color:#c04400}
.pricing-toggle button.recommended.active{background:#ff6b00;color:#fff;border-color:#ff6b00}
.pricing-toggle .save{font-size:11px;margin-left:4px;opacity:.85}
.pricing-savings{font-size:11px;color:#16a34a;font-weight:600;margin-top:-4px;margin-bottom:8px;min-height:14px;text-align:center}
.pricing-engagement{text-align:center;font-size:12px;color:#666;margin-top:24px;font-style:italic}
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin-top:40px }
.pricing-card { background:#fff; border:2px solid var(--border); border-radius:20px; padding:40px 32px; position:relative; transition:.3s; display:flex; flex-direction:column }
.pricing-card:hover { transform:translateY(-6px); box-shadow:0 20px 50px rgba(0,0,0,.08) }
.pricing-card.featured { border-color:var(--orange); background:linear-gradient(180deg,var(--bg-warm) 0%,#fff 100%); transform:scale(1.03) }
.pricing-card.featured:hover { transform:scale(1.03) translateY(-6px) }
.pricing-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background:var(--orange); color:#fff; padding:6px 18px; border-radius:20px; font-size:12px; font-weight:700; letter-spacing:.5px }
.pricing-name { font-size:16px; font-weight:700; color:var(--text-muted); margin-bottom:12px; text-transform:uppercase; letter-spacing:1px }
.pricing-price { font-size:42px; font-weight:800; color:var(--black); line-height:1; margin-bottom:6px }
.pricing-period { font-size:13px; color:var(--text-muted); margin-bottom:28px; min-height:18px }
.pricing-features { list-style:none; padding:0; margin:0 0 32px 0; flex-grow:1 }
.pricing-features li { padding:10px 0; font-size:14px; color:var(--black); display:flex; align-items:flex-start; gap:10px; border-bottom:1px solid var(--border) }
.pricing-features li:last-child { border-bottom:none }
.pricing-features li::before { content: "\2713"; color:var(--orange); font-weight:700; flex-shrink:0 }
.pricing-cta { width:100%; text-align:center; padding:14px 24px; border-radius:10px; font-weight:600; text-decoration:none; transition:.2s; display:block }
.pricing-card .pricing-cta { background:#fff; color:var(--black); border:1px solid var(--border) }
.pricing-card .pricing-cta:hover { border-color:var(--black) }
.pricing-card.featured .pricing-cta { background:var(--orange); color:#fff; border:1px solid var(--orange) }
.pricing-card.featured .pricing-cta:hover { background:#e55a00 }
@media(max-width:900px){.pricing-grid{grid-template-columns:1fr;gap:20px}.pricing-card.featured{transform:none}.pricing-card.featured:hover{transform:translateY(-6px)}}

/* ROI CALCULATOR */
.roi-calculator { display:grid; grid-template-columns: 1fr 1fr; gap:48px; background:var(--bg-warm); border:1px solid var(--border); border-radius:24px; padding:48px; align-items:center }
.roi-inputs { display:flex; flex-direction:column; gap:28px }
.roi-input-group label { display:flex; justify-content:space-between; font-size:14px; font-weight:600; margin-bottom:10px; color:var(--black) }
.roi-input-group label .roi-value { color:var(--orange); font-weight:700; font-size:16px }
.roi-slider { width:100%; -webkit-appearance:none; appearance:none; height:6px; background:#e5e5e5; border-radius:3px; outline:none }
.roi-slider::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:22px; height:22px; background:var(--orange); border-radius:50%; cursor:pointer; box-shadow:0 2px 8px rgba(255,101,0,.3); transition:.2s }
.roi-slider::-webkit-slider-thumb:hover { transform:scale(1.15) }
.roi-slider::-moz-range-thumb { width:22px; height:22px; background:var(--orange); border-radius:50%; cursor:pointer; border:none }
.roi-results { display:grid; grid-template-columns:1fr 1fr; gap:14px }
.roi-result-card { background:#fff; padding:24px 18px; border-radius:14px; text-align:center; border:1px solid var(--border); transition:.2s }
.roi-result-card.highlight { background:var(--orange); border-color:var(--orange) }
.roi-result-card.highlight .roi-result-num, .roi-result-card.highlight .roi-result-label { color:#fff }
.roi-result-num { font-size:30px; font-weight:800; color:var(--orange); margin-bottom:4px; line-height:1.1 }
.roi-result-label { font-size:12px; color:var(--text-muted); line-height:1.3 }
@media(max-width:900px){.roi-calculator{grid-template-columns:1fr;padding:32px 20px;gap:32px}}

/* SERVICE PAGE */
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.service-detail-sticky { position: sticky; top: 100px; }
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.result-card {
  background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center;
}
.result-number { font-size: 36px; font-weight: 800; color: var(--orange); letter-spacing: -1px; }
.result-label { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border); padding: 24px 0; cursor: pointer;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 16px; font-weight: 600; color: var(--black);
}
.faq-arrow { font-size: 20px; transition: transform 0.3s; color: var(--orange); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding-top: 12px; }

/* ABOUT PAGE */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center; padding: 32px 20px;
  border: 1px solid var(--border); border-radius: 16px; transition: all 0.3s;
}
.team-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; background: var(--orange);
  margin: 0 auto 16px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 800; color: white;
}
.team-name { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--text-muted); }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.value-card {
  padding: 40px 32px;
  border-left: 3px solid var(--orange);
  background: var(--bg-soft);
  border-radius: 0 16px 16px 0;
}
.value-num { font-size: 48px; font-weight: 800; color: var(--orange); opacity: 0.2; line-height: 1; }
.value-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.value-text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--black); color: white; padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
}
.footer-logo-text { font-size: 18px; font-weight: 700; color: white; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; text-decoration: none; transition: background 0.3s;
}
.footer-social a:hover { background: var(--orange); }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

/* FOOTER */
footer {
  background: var(--black); color: white; padding: 80px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-mark {
  width: 38px; height: 38px; background: var(--orange);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: white;
}
.footer-logo-text { font-size: 18px; font-weight: 700; color: white; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; text-decoration: none; transition: background 0.3s;
}
.footer-social a:hover { background: var(--orange); }

.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px; display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

.mega-menu{width:min(920px,calc(100vw - 40px)) !important;left:50% !important;transform:translateX(-50%) !important;padding:0 !important;border-radius:16px !important;overflow:hidden;box-shadow:0 20px 60px -10px rgba(0,0,0,.15),0 0 0 1px rgba(0,0,0,.05)}
  .mega-menu::before{display:none !important}
  .mm-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;padding:20px;background:#fff}
  .mm-col{display:flex;flex-direction:column;gap:2px}
  .mm-col-title{font-size:.72rem;font-weight:700;text-transform:uppercase;letter-spacing:.08em;color:#ff6500;padding:8px 12px 10px;border-bottom:1px solid #f0f0f0;margin-bottom:6px}
  .mm-item{display:flex !important;align-items:flex-start;gap:12px;padding:10px 12px !important;border-radius:10px;transition:all .18s ease;text-decoration:none;background:transparent !important}
  .mm-item:hover{background:#fff8f2 !important}
  .mm-icon{flex-shrink:0;width:36px;height:36px;border-radius:9px;background:#fff8f2;display:flex;align-items:center;justify-content:center;color:#ff6500;transition:all .18s ease}
  .mm-icon svg{width:18px;height:18px}
  .mm-item:hover .mm-icon{background:#ff6500;color:#fff;transform:scale(1.05)}
  .mm-text{display:flex;flex-direction:column;gap:2px;min-width:0}
  .mm-title{font-size:.92rem;font-weight:600;color:#0a0a0a;line-height:1.3}
  .mm-sub{font-size:.78rem;color:#888;line-height:1.35}
  .mm-footer{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:16px 24px;background:#fafafa;border-top:1px solid #eee;flex-wrap:wrap}
  .mm-footer-text{display:flex;flex-direction:column;gap:2px;min-width:0}
  .mm-footer-text strong{font-size:.88rem;color:#0a0a0a;font-weight:700}
  .mm-footer-text span{font-size:.8rem;color:#666}
  .mm-footer-links{display:flex;align-items:center;gap:14px;flex-wrap:wrap}
  .mm-footer-link{font-size:.82rem;color:#555;font-weight:500;text-decoration:none;transition:color .15s}
  .mm-footer-link:hover{color:#ff6500}
  .mm-footer-cta{font-size:.85rem;background:#ff6500;color:#fff !important;font-weight:600;padding:9px 18px;border-radius:8px;text-decoration:none;transition:all .2s;box-shadow:0 4px 14px -4px rgba(255,101,0,.5)}
  .mm-footer-cta:hover{background:#e65a00;transform:translateY(-1px);box-shadow:0 6px 18px -4px rgba(255,101,0,.6)}
  @media(max-width:900px){.mega-menu{display:none !important}}

/* Positionnement absolu hérité de .dropdown qu'on reproduit ici */
  .mega-menu{
    position:absolute;
    top:calc(100% + 8px);
    left:50%;
    transform:translateX(-50%) translateY(-8px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index:1000;
  }
  .mega-menu.open{
    opacity:1 !important;
    visibility:visible !important;
    pointer-events:auto !important;
    transform:translateX(-50%) translateY(0) !important;
  }
  /* Zone-tampon invisible entre le bouton et le menu pour que la souris puisse transiter */
  .mega-menu::before{
    content:'';
    position:absolute;
    top:-16px;
    left:-40px;
    right:-40px;
    height:20px;
    background:transparent;
  }

/* Standalone page offset */
body.standalone-page { padding-top: 72px; }
/* CTA final */
.cta-final {
  background: linear-gradient(135deg, #FF6500 0%, #FF8533 100%);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px auto;
  max-width: calc(1280px - 48px);
  color: #fff;
}
.cta-final h3 { font-size: 30px; font-weight: 800; margin-bottom: 14px; color: #fff !important; }
.cta-final p { font-size: 17px; color: rgba(255,255,255,.92) !important; margin-bottom: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-final .btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px; font-weight: 600; font-size: 15px;
  text-decoration: none; background: #fff; color: #FF6500 !important; border: 1.5px solid #fff; margin: 0 6px;
}
.cta-final .btn-ghost { background: transparent !important; color: #fff !important; border-color: #fff !important; }
.cta-final-ville, section.cta-ville {
  background: linear-gradient(135deg, #FF6500 0%, #E85D00 100%) !important;
  padding: 80px 24px !important; text-align: center; color: #fff !important;
}
.cta-final-ville h2, .cta-final-ville h3, .cta-final-ville p, .cta-final-ville em,
section.cta-ville h2, section.cta-ville p { color: #fff !important; }
.cta-final-ville .btn, section.cta-ville a.btn-audit-ville {
  display: inline-block; padding: 16px 32px; background: #fff; color: #FF6500 !important;
  border-radius: 999px; font-weight: 600; text-decoration: none; margin: 0 7px;
}
.cta-final-ville .btn-ghost, section.cta-ville a.btn-ghost-ville {
  display: inline-block; padding: 16px 32px; background: transparent; color: #fff !important;
  border: 2px solid #fff; border-radius: 999px; font-weight: 600; text-decoration: none; margin: 0 7px;
}
/* Badges alignés comme accueil */
.badges-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: nowrap; padding: 0 40px; }
.badges-track img { height: 80px; width: auto; max-width: 180px; object-fit: contain; flex-shrink: 0; }
@media (max-width: 768px) {
  .badges-track { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding: 0 24px; }
  .cta-final { margin: 40px 16px; padding: 40px 24px; }
}
/* Footer buttons */
footer .btn-primary { background: var(--orange) !important; color: #fff !important; border: none; padding: 11px 18px; border-radius: 10px; display: block; text-align: center; text-decoration: none; font-weight: 600; margin-bottom: 12px; }
footer .btn-ghost { background: transparent !important; color: var(--orange) !important; border: 1.5px solid var(--orange) !important; padding: 11px 18px; border-radius: 10px; display: block; text-align: center; text-decoration: none; font-weight: 600; }


/* ── Standalone pages: ne pas hériter du hero plein écran accueil ── */
body.standalone-page .hero {
  padding: 24px 24px 60px !important;
  min-height: auto !important;
  display: block !important;
  align-items: stretch !important;
  position: relative !important;
  overflow: visible !important;
  max-width: 1280px;
  margin: 0 auto;
}
body.standalone-page .hero h1,
body.standalone-page .hero .hero-lead,
body.standalone-page .hero .eyebrow,
body.standalone-page .hero .hero-cta {
  animation: none !important;
}
body.standalone-page .breadcrumb {
  padding-top: 16px !important;
}

@media (min-width: 1041px) {
  body.standalone-page .mobile-nav {
    display: none !important;
    visibility: hidden !important;
  }
}
@media (max-width: 1040px) {
  body.standalone-page .mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1001;
    overflow-y: auto;
    background: #fff;
  }
  body.standalone-page .mobile-nav.open {
    display: flex !important;
    flex-direction: column;
    visibility: visible !important;
  }
}

body.standalone-page .nav-links .mega-menu,
body.standalone-page .nav-links .dropdown {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
body.standalone-page .nav-links > li:hover .mega-menu,
body.standalone-page .nav-links > li:hover .dropdown,
body.standalone-page .nav-links > li.open .mega-menu,
body.standalone-page .nav-links > li.open .dropdown,
body.standalone-page .mega-menu.open,
body.standalone-page .dropdown.open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

body.standalone-page .services-grid .service-link {
  display: block !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  color: inherit !important;
  gap: 0 !important;
}
body.standalone-page .services-grid .service-link h4 { display: block; margin-bottom: 6px; }
body.standalone-page .services-grid .service-link .arrow { display: inline-block; }

@keyframes trust-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
body.standalone-page .trust-bar-track {
  animation: trust-scroll 60s linear infinite !important;
}
body.standalone-page .marquee-track {
  animation: marqueeScroll 30s linear infinite !important;
}
