/* ============================================
   SKEL SERVICE — Feuille de styles partagée
   ============================================ */

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

:root {
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-dark: #0c1e36;
  --bg-darker: #050d1a;
  --fg: #0c1e36;
  --fg-light: #5a6b80;
  /* Couleurs de marque Skel Services */
  --accent: #dc3f3f;          /* Rouge logo (urgence) */
  --accent-dark: #b8333a;     /* Rouge foncé (hover) */
  --accent-soft: #fde8e8;     /* Rouge très clair (fonds) */
  --accent-2: #2a8fa0;        /* Teal logo (trust/info) */
  --accent-2-soft: #e3f1f4;
  --accent-3: #7ab52f;        /* Vert logo (success/certif) */
  --accent-3-soft: #ecf5dd;
  --border: #e4e9f0;
  --success: #7ab52f;         /* Vert logo */
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ========== EMERGENCY BAR ========== */
.emergency-bar {
  background: var(--accent);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.emergency-bar a { font-weight: 700; text-decoration: underline; }
.emergency-bar .pulse-dot {
  display: inline-block; width: 8px; height: 8px;
  background: #fff; border-radius: 50%;
  margin-right: 8px;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: 1240px; margin: 0 auto;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 40px; height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
span.logo-mark {
  background: var(--bg-dark); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  font-weight: 800; font-size: 18px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--fg-light); transition: color .2s; font-weight: 500; }
.nav-links a:hover, .nav-links a.active { color: var(--fg); }
.nav-links a.active { font-weight: 600; }
.nav-phone {
  background: var(--bg-dark); color: #fff !important;
  padding: 10px 18px; border-radius: 8px;
  font-weight: 600; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
}
.nav-phone:hover { background: var(--accent) !important; color: #fff !important; }
.nav-phone::before { content: '☎'; font-size: 14px; }
@media (max-width: 800px) {
  .nav-links a:not(.nav-phone) { display: none; }
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--fg);
}
@media (max-width: 800px) {
  .mobile-menu-btn { display: block; }
}

/* ========== HERO BASE ========== */
.hero {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.hero-tag::before {
  content: ''; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.hero h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--bg-dark);
}
.hero h1 .accent { color: #40a8ab; }
.hero p.lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--fg-light);
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }

.btn-primary {
  background: var(--accent); color: #fff;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s, box-shadow .2s, background .2s;
  border: none; cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(230, 57, 70, 0.25);
}
.btn-secondary {
  background: var(--bg-dark); color: #fff;
  padding: 16px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s;
}
.btn-secondary:hover { transform: translateY(-2px); }
.btn-light {
  background: #fff; color: var(--bg-dark);
  padding: 16px 28px; border-radius: 8px;
  font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .2s;
}
.btn-light:hover { transform: translateY(-2px); }

.hero-trust {
  display: flex; gap: 24px; flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--fg-light); font-weight: 500;
}
.hero-trust-item::before {
  content: '✓';
  width: 18px; height: 18px;
  background: var(--success); color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}

/* Hero card (right column) */
.hero-card {
  background: #40a8ab;
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute;
  top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(230,57,70,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.hero-card-label {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 700; margin-bottom: 12px;
  position: relative;
}
.hero-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 700;
  margin-bottom: 24px;
  position: relative;
}
.hero-card-list {
  list-style: none;
  position: relative;
  margin-bottom: 28px;
}
.hero-card-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px;
}
.hero-card-list li:last-child { border-bottom: none; }
.hero-card-list li::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}
.hero-card-phone {
  background: #e02e2b;
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 22px;
  color: #fff;
  position: relative;
  transition: background .2s;
  display: block;
}
.hero-card-phone:hover { background: var(--accent-dark); }
.hero-card-phone span {
  display: block; font-size: 12px;
  font-weight: 500; opacity: 0.85;
  margin-bottom: 2px; letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========== PAGE HEADER (interior pages) ========== */
.page-header {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-header .breadcrumb {
  font-size: 13px; color: var(--fg-light);
  margin-bottom: 16px;
}
.page-header .breadcrumb a:hover { color: var(--accent); }
.page-header h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bg-dark);
  margin-bottom: 16px;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.page-header h1 .accent { color: var(--accent); }
.page-header p {
  font-size: 18px;
  color: var(--fg-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== SECTIONS ========== */
section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  color: var(--accent);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 20px;
  max-width: 900px;
}
.section-sub {
  color: var(--fg-light);
  font-size: 17px;
  max-width: 700px;
  margin-bottom: 56px;
}

/* ========== SERVICES GRID ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color .3s, transform .3s, box-shadow .3s;
  cursor: pointer;
  position: relative;
  display: block;
}
.service:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(12, 30, 54, 0.08);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: background .3s, color .3s;
}
.service:hover .service-icon {
  background: var(--accent); color: #fff;
}
.service h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 19px; font-weight: 700;
  margin-bottom: 10px;
  color: var(--bg-dark);
}
.service p { color: var(--fg-light); font-size: 14px; line-height: 1.55; }
.service-arrow {
  position: absolute; bottom: 28px; right: 28px;
  color: var(--fg-light);
  transition: color .3s, transform .3s;
}
.service:hover .service-arrow {
  color: var(--accent); transform: translateX(4px);
}

/* ========== WHY US (dark section) ========== */
.dark-section {
  background: var(--bg-dark);
  color: #fff;
  padding: 100px 0;
}
.dark-section .section-title { color: #fff; }
.dark-section .section-label { color: var(--accent); }
.dark-section .section-sub { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 800px) { .why-grid { grid-template-columns: 1fr; } }
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex; gap: 20px;
  transition: background .3s;
}
.why-item:hover { background: rgba(255,255,255,0.07); }
.why-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px; font-weight: 700;
}
.why-item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 8px;
}
.why-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* ========== PROCESS ========== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}
.process-num {
  position: absolute;
  top: -16px; left: 24px;
  width: 36px; height: 36px;
  background: var(--accent); color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 14px;
}
.process-step h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700;
  margin: 16px 0 8px;
  color: var(--bg-dark);
}
.process-step p { color: var(--fg-light); font-size: 14px; }

/* ========== STATS ========== */
.stats {
  background: var(--accent);
  color: #fff;
  padding: 60px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
@media (max-width: 700px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800; line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px; margin-top: 10px;
  font-weight: 500; opacity: 0.85;
  letter-spacing: 0.03em;
}

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-soft); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid var(--border);
}
.testi-stars { color: #f5b829; margin-bottom: 16px; font-size: 16px; }
.testi-quote {
  font-size: 15px; line-height: 1.6;
  margin-bottom: 24px;
  color: var(--fg);
}
.testi-author {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px; color: var(--fg-light);
}
.testi-author strong {
  display: block; color: var(--bg-dark);
  font-size: 14px; margin-bottom: 2px;
}

/* ========== ZONES ========== */
.zones {
  background: var(--bg-soft);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}
.zones h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 16px;
}
.zones-list {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-top: 24px;
}
.zone-pill {
  background: #fff;
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--bg-dark);
}

/* ========== FAQ ========== */
.faq-list { max-width: 900px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item:hover { border-color: var(--accent); }
.faq-q {
  padding: 22px 28px;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--bg-dark);
}
.faq-toggle {
  font-size: 24px; color: var(--accent);
  transition: transform .3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  color: var(--fg-light); font-size: 15px;
  transition: max-height .4s, padding .4s;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 28px 22px;
}

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 24px;
  padding: 80px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute;
  top: -50%; left: -25%; width: 150%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(230,57,70,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.final-cta h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}
.final-cta h2 .accent { color: var(--accent); }
.final-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 580px; margin: 0 auto 36px;
  position: relative;
}
.final-cta-row { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; }

/* ========== SERVICE PAGE SPECIFIC ========== */
.service-content {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 1000px) { .service-content { grid-template-columns: 1fr; } }
.service-content article h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--bg-dark);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.service-content article h2:first-child { margin-top: 0; }
.service-content article p { color: var(--fg); font-size: 16px; margin-bottom: 16px; }
.service-content article ul {
  list-style: none;
  margin: 16px 0 24px;
}
.service-content article ul li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--fg);
}
.service-content article ul li::before {
  content: '✓';
  position: absolute; left: 0; top: 12px;
  width: 18px; height: 18px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.service-content article .callout {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  color: var(--bg-dark);
  font-size: 15px;
}
.service-content article .callout strong { display: block; margin-bottom: 6px; color: var(--accent); }

.service-aside {
  position: sticky; top: 100px;
}
.aside-card {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}
.aside-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700;
  margin-bottom: 16px;
}
.aside-card-phone {
  background: var(--accent);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 18px;
  color: #fff !important;
  display: block;
  margin-bottom: 12px;
  transition: background .2s;
}
.aside-card-phone:hover { background: var(--accent-dark); }
.aside-card-phone span {
  display: block; font-size: 11px;
  font-weight: 500; opacity: 0.85;
  margin-bottom: 2px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.aside-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}
.aside-related {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 24px;
}
.aside-related h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--fg-light);
  margin-bottom: 16px;
}
.aside-related ul { list-style: none; }
.aside-related li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.aside-related li:last-child { border-bottom: none; }
.aside-related a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 500;
  color: var(--bg-dark);
  transition: color .2s;
}
.aside-related a:hover { color: var(--accent); }
.aside-related a::after { content: '→'; color: var(--accent); }

/* ========== ABOUT PAGE ========== */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 32px;
}
.value-num {
  font-family: 'Manrope', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.value-card h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 8px;
}
.value-card p { color: var(--fg-light); font-size: 14px; }

.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-weight: 800; font-size: 64px;
  color: var(--accent);
  margin-bottom: 16px;
}
.team-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 4px;
}
.team-card .role {
  font-size: 13px; color: var(--accent);
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.team-card p { font-size: 14px; color: var(--fg-light); }

.certifications-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .certifications-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.cert-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 24px;
}
.cert-item h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700;
  color: var(--bg-dark); margin-bottom: 4px;
}
.cert-item p { font-size: 12px; color: var(--fg-light); }

/* ========== CONTACT PAGE ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }

.contact-info {
  background: var(--bg-dark);
  color: #fff;
  border-radius: 20px;
  padding: 40px;
}
.contact-info h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 28px; font-weight: 700;
  margin-bottom: 16px;
}
.contact-info > p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact-method {
  display: flex; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-method:last-child { border-bottom: none; }
.contact-method-icon {
  width: 40px; height: 40px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-method h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-method p, .contact-method a {
  font-size: 16px; color: #fff;
  font-weight: 600;
}
.contact-method a:hover { color: var(--accent); }

.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.contact-form h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--bg-dark);
  margin-bottom: 8px;
}
.form-group label .required { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--fg);
  transition: border-color .2s;
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-checkbox {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 24px;
  font-size: 13px; color: var(--fg-light);
  line-height: 1.5;
}
.form-checkbox input { width: auto; margin-top: 2px; }

.contact-form button {
  width: 100%;
  background: var(--accent); color: #fff;
  padding: 16px; border-radius: 8px;
  font-weight: 700; font-size: 15px;
  border: none; cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: inherit;
}
.contact-form button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

/* ========== FOOTER ========== */
footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h5 {
  font-family: 'Manrope', sans-serif;
  color: #fff;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px; font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
  color: rgba(255,255,255,0.5); font-size: 13px;
}

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .7s, transform .7s;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== TRUST ========== */
.trust { padding: 6rem 0; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease;
}

.trust-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.trust-logo img {
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: .7;
  transition: filter .3s ease, opacity .3s ease;
}

.trust-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 960px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}