/*
Theme Name: VotreSiteWeb
Theme URI: https://votresiteweb.ma
Author: Atlas Digital Group
Author URI: https://atlasdigitalgroup.co
Description: Thème WordPress sur-mesure pour VotreSiteWeb.ma — Agence web & Google Casablanca
Version: 1.0.0
License: Proprietary
Text Domain: vsw
*/

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --navy:       #0A2342;
  --navy-light: #0f2e56;
  --orange:     #E8571C;
  --orange-h:   #f06830;
  --bg:         #F7F7F5;
  --text:       #1C1C1C;
  --green:      #1D9E75;
  --muted:      #6B7280;
  --border:     #E5E5E3;
  --white:      #FFFFFF;
  --radius:     10px;
}

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ── Typography ─────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
p { line-height: 1.75; }

/* ── Layout helpers ─────────────────────────────────── */
.container        { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--sm    { max-width: 820px;  margin: 0 auto; padding: 0 24px; }
.section          { padding: 88px 0; }
.section--white   { background: var(--white); }
.section--navy    { background: var(--navy); }
.section--bg      { background: var(--bg); }

/* ── Section label ──────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--orange);
}
.label--center { display: flex; justify-content: center; }

/* ── Section headings ───────────────────────────────── */
.section-h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 12px;
}
.section-h2--white { color: var(--white); }
.section-h2--center { text-align: center; }
.section-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-sub--center { margin: 0 auto; text-align: center; }
.section-header { margin-bottom: 48px; }
.section-header--center { text-align: center; }

/* ── Zellige decorative bg ──────────────────────────── */
.zellige {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
  background-size: 28px 28px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 26px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary   { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-h); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,87,28,.35); }
.btn-outline   { background: transparent; border: 1.5px solid var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost     { background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-full      { width: 100%; justify-content: center; }

/* ── HEADER ─────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,35,66,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 28px;
}
.site-logo { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.25rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-main strong { color: var(--orange); font-weight: 900; }
.logo-sub {
  font-size: 0.58rem;
  color: rgba(255,255,255,.38);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav a {
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,.68);
  padding: 7px 12px;
  border-radius: 4px;
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
}
.main-nav a:hover,
.main-nav a.current { color: #fff; background: rgba(255,255,255,.07); }
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; opacity: 0.6; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 240px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 6px;
  z-index: 300;
}
.nav-dropdown:hover .dropdown-menu { display: flex; flex-direction: column; }
.dropdown-menu a {
  padding: 9px 14px;
  border-radius: 5px;
  font-size: 0.83rem;
  color: rgba(255,255,255,.7);
  transition: all 0.15s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,.1); color: #fff; }
.nav-cta { background: var(--orange) !important; color: #fff !important; padding: 9px 18px !important; border-radius: 5px !important; font-weight: 700 !important; margin-left: 6px; }
.nav-cta:hover { background: var(--orange-h) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: 0.3s; }

/* ── Page Hero ───────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--navy);
  padding: 130px 24px 80px;
  overflow: hidden;
}
.page-hero .zellige { opacity: 0.03; }
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  right: -180px; top: -200px;
  background: radial-gradient(circle, rgba(232,87,28,.13) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; color: rgba(255,255,255,.32);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.32); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb span { color: rgba(255,255,255,.18); }
.page-pretitle {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 16px;
}
.page-pretitle::before { content: ''; display: block; width: 22px; height: 1.5px; background: var(--orange); }
.page-h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 820px;
  margin-bottom: 18px;
}
.page-h1 .accent { color: var(--orange); }
.page-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.6);
  line-height: 1.72;
  max-width: 580px;
  margin-bottom: 28px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Cards ───────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(10,35,66,.1); border-color: var(--orange); }
.card-icon { font-size: 1.9rem; margin-bottom: 14px; display: block; }
.card-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.card-text { font-size: 0.87rem; color: var(--muted); line-height: 1.68; }
.card--navy { background: var(--navy); border-color: var(--navy); }
.card--navy .card-title { color: #fff; }
.card--navy .card-text { color: rgba(255,255,255,.65); }

/* ── Check list ──────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text); line-height: 1.5;
}
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.check-list--white li { color: rgba(255,255,255,.82); }
.check-list--white li::before { color: #6ee8b8; }

/* ── Quote block ─────────────────────────────────────── */
.quote-block {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px 36px;
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 9rem; line-height: .5;
  color: rgba(232,87,28,.18);
  position: absolute; top: 8px; left: 16px;
  pointer-events: none;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.02rem;
  color: rgba(255,255,255,.88); line-height: 1.72;
  margin-bottom: 16px; position: relative; z-index: 1;
}
.quote-author { font-size: 0.78rem; color: rgba(255,255,255,.38); position: relative; z-index: 1; }

/* ── Guarantee banner ────────────────────────────────── */
.garantie {
  background: rgba(29,158,117,.07);
  border: 1px solid rgba(29,158,117,.22);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  margin-top: 28px; flex-wrap: wrap;
}
.garantie-icon { font-size: 1.8rem; flex-shrink: 0; }
.garantie-text { font-size: 0.88rem; color: var(--text); line-height: 1.65; }
.garantie-text strong { color: var(--green); }

/* ── Packages grid ───────────────────────────────────── */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: start; }
.pkg {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.pkg:hover { transform: translateY(-5px); box-shadow: 0 24px 56px rgba(10,35,66,.1); }
.pkg--popular {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
  box-shadow: 0 24px 56px rgba(10,35,66,.28);
}
.pkg--popular:hover { transform: scale(1.03) translateY(-5px); }
.pkg-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: #fff;
  font-size: 0.64rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 14px; border-radius: 20px; white-space: nowrap;
}
.pkg-name { font-size: 0.67rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; color: var(--muted); margin-bottom: 6px; }
.pkg--popular .pkg-name { color: rgba(255,255,255,.4); }
.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.7rem; font-weight: 900; color: var(--navy);
  line-height: 1; margin-bottom: 4px; letter-spacing: -.03em;
}
.pkg--popular .pkg-price { color: #fff; }
.pkg-price small { font-family: 'DM Sans',sans-serif; font-size: 1rem; font-weight: 400; opacity: .45; }
.pkg-for {
  font-size: 0.82rem; color: var(--muted); line-height: 1.55;
  margin-bottom: 18px; padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.pkg--popular .pkg-for { color: rgba(255,255,255,.5); border-bottom-color: rgba(255,255,255,.1); }
.pkg-delay {
  font-size: 0.74rem; font-weight: 600; color: var(--green);
  background: rgba(29,158,117,.1); border-radius: 6px;
  padding: 6px 12px; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 6px;
}
.pkg-features { margin-bottom: 24px; display: flex; flex-direction: column; gap: 8px; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.84rem; color: var(--text); line-height: 1.45;
}
.pkg--popular .pkg-features li { color: rgba(255,255,255,.8); }
.pkg-features li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; }

/* ── Testimonials ────────────────────────────────────── */
.temo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.temo {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.temo--featured { background: var(--navy); border-color: var(--navy); }
.temo-quote { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: .5; color: var(--orange); opacity: .6; margin-bottom: 14px; display: block; }
.temo-stars { color: #F5A623; font-size: 0.78rem; letter-spacing: .1em; margin-bottom: 12px; }
.temo-text { font-size: 0.88rem; font-style: italic; line-height: 1.72; color: var(--text); margin-bottom: 18px; }
.temo--featured .temo-text { color: rgba(255,255,255,.82); }
.temo-author { display: flex; align-items: center; gap: 12px; }
.temo-avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-weight: 700; font-size: .9rem; color: #fff;
}
.temo--featured .temo-avatar { background: var(--orange); }
.temo-name { font-weight: 700; font-size: 0.86rem; color: var(--navy); line-height: 1.2; }
.temo--featured .temo-name { color: #fff; }
.temo-role { font-size: 0.73rem; color: var(--muted); }
.temo--featured .temo-role { color: rgba(255,255,255,.42); }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); overflow: hidden; }
.faq-q {
  padding: 18px 0; font-weight: 700; font-size: 0.95rem; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px; user-select: none; transition: color .2s;
}
.faq-q:hover { color: var(--orange); }
.faq-toggle {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  color: var(--muted); transition: all .2s;
}
.faq-item.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: #fff; transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.88rem; color: var(--muted); line-height: 1.72;
  transition: max-height .35s ease, padding .2s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 18px; }

/* ── CTA Section ─────────────────────────────────────── */
.cta-section {
  background: var(--navy);
  position: relative; overflow: hidden;
  text-align: center; padding: 100px 24px;
}
.cta-section .zellige { opacity: .03; }
.cta-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 900; color: #fff;
  letter-spacing: -.025em; margin-bottom: 14px;
  position: relative; z-index: 2;
}
.cta-h2 em { font-style: italic; color: var(--orange); }
.cta-sub {
  font-size: 1rem; color: rgba(255,255,255,.52);
  max-width: 480px; margin: 0 auto 30px;
  line-height: 1.68; position: relative; z-index: 2;
}
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; position: relative; z-index: 2; }
.cta-contacts { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; position: relative; z-index: 2; }
.cta-contacts a { font-size: 0.83rem; color: rgba(255,255,255,.38); text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.cta-contacts a:hover { color: rgba(255,255,255,.8); }

/* ── FOOTER ──────────────────────────────────────────── */
#site-footer { background: #061524; padding: 64px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,.3); line-height: 1.72; margin-top: 14px; max-width: 270px; }
.footer-col-title { font-size: 0.67rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.28); font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.83rem; color: rgba(255,255,255,.48); transition: color .2s; }
.footer-links a:hover { color: rgba(255,255,255,.88); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.73rem; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }

/* ── WhatsApp Float ──────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,.42); text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 14px 42px rgba(37,211,102,.58); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── Article body ────────────────────────────────────── */
.article-body h2 { font-size: 1.6rem; color: var(--navy); margin: 40px 0 16px; }
.article-body h3 { font-size: 1.2rem; color: var(--navy); margin: 32px 0 12px; }
.article-body p { font-size: 0.96rem; color: var(--text); margin-bottom: 18px; }
.article-body ul { padding-left: 20px; margin-bottom: 18px; }
.article-body ul li { font-size: 0.94rem; color: var(--text); margin-bottom: 6px; line-height: 1.7; }
.article-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.88rem; }
.article-body table th { background: var(--navy); color: #fff; padding: 12px 16px; text-align: left; }
.article-body table td { padding: 11px 16px; border-bottom: 1px solid var(--border); background: var(--white); }
.article-body .highlight { background: rgba(232,87,28,.07); border-left: 3px solid var(--orange); padding: 16px 20px; margin: 24px 0; border-radius: 0 8px 8px 0; font-size: 0.92rem; line-height: 1.72; }
.article-body .note { background: rgba(29,158,117,.07); border-left: 3px solid var(--green); padding: 16px 20px; margin: 24px 0; border-radius: 0 8px 8px 0; font-size: 0.9rem; line-height: 1.72; }

/* ── Blog cards ──────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; display: block;
  text-decoration: none; color: inherit;
  transition: transform .25s, box-shadow .25s;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(10,35,66,.1); }
.blog-thumb { height: 168px; display: flex; align-items: center; justify-content: center; }
.blog-meta { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.blog-title { font-family: 'Playfair Display', serif; font-size: 1.02rem; font-weight: 700; color: var(--navy); line-height: 1.35; margin-bottom: 8px; }
.blog-excerpt { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.blog-body { padding: 22px; }

/* ── Forms ───────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.83rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 6px;
  font-size: 0.92rem; color: var(--text); background: var(--white);
  transition: border-color .2s; outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--navy); }
.form-textarea { min-height: 140px; resize: vertical; }
.radio-group { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.radio-opt { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; cursor: pointer; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 6px; transition: border-color .2s, background .2s; }
.radio-opt:hover { border-color: var(--navy); background: rgba(10,35,66,.03); }
.radio-opt input[type="radio"] { accent-color: var(--orange); width: 16px; height: 16px; flex-shrink: 0; }
.form-submit-notice { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 10px; }
.alert-success { background: rgba(29,158,117,.08); border: 1px solid rgba(29,158,117,.3); border-radius: var(--radius); padding: 20px 24px; font-size: 0.92rem; color: var(--green); display: none; }
.alert-error { background: rgba(232,87,28,.08); border: 1px solid rgba(232,87,28,.3); border-radius: var(--radius); padding: 20px 24px; font-size: 0.92rem; color: var(--orange); display: none; }

/* ── Stat items ──────────────────────────────────────── */
.stat-row { display: flex; gap: 40px; flex-wrap: wrap; margin: 28px 0; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.stat-num span { color: var(--orange); }
.stat-lbl { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-top: 4px; }

/* ── Sector tags ─────────────────────────────────────── */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  background: rgba(232,87,28,.08); color: var(--orange);
  border: 1px solid rgba(232,87,28,.18);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.76rem; font-weight: 600;
}

/* ── Filter tabs (portfolio/réalisations) ────────────── */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-tab {
  padding: 7px 18px; border-radius: 20px; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; border: 1.5px solid var(--border); background: var(--white);
  color: var(--muted); transition: all .2s;
}
.filter-tab.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.filter-tab:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

/* ── Portfolio card ──────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.portfolio-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.portfolio-card:hover { transform: translateY(-5px); box-shadow: 0 22px 52px rgba(10,35,66,.1); }
.portfolio-thumb { height: 190px; position: relative; overflow: hidden; }
.portfolio-badge { position: absolute; top: 10px; left: 10px; background: rgba(10,35,66,.85); color: rgba(255,255,255,.88); font-size: 0.64rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; backdrop-filter: blur(4px); }
.portfolio-result { position: absolute; bottom: 10px; right: 10px; background: rgba(29,158,117,.92); color: #fff; font-size: 0.64rem; font-weight: 700; padding: 4px 10px; border-radius: 3px; }
.portfolio-info { padding: 18px 20px; }
.portfolio-client { font-weight: 700; font-size: 0.92rem; color: var(--navy); margin-bottom: 4px; }
.portfolio-meta { font-size: 0.76rem; color: var(--muted); margin-bottom: 12px; }
.portfolio-link { font-size: 0.79rem; color: var(--orange); font-weight: 700; display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.portfolio-link:hover { gap: 8px; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .packages-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; }
  .pkg--popular { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .cards-3, .cards-2, .temo-grid, .blog-grid, .portfolio-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .main-nav.open { display: flex; flex-direction: column; position: fixed; inset: 0; top: 68px; background: rgba(10,35,66,.98); padding: 24px; gap: 4px; z-index: 199; }
  .main-nav.open .dropdown-menu { position: static; border: none; background: transparent; padding: 4px 0 4px 16px; }
  .section { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-h1 { font-size: 1.8rem; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
