/* =========================================
   CSS RESET & NORMALIZE
   ========================================= */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f8fafb; /* very soft background */
  color: #292d32;
  min-height: 100vh;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style-position: inside;
}
img {
  max-width: 100%;
  display: block;
}
*:focus {
  outline: 2px solid #a0c4ff;
  outline-offset: 2px;
}

/* =========================================
   CSS CUSTOM PROPERTIES
   ========================================= */
:root {
  --pu-primary: #23272a;
  --pu-secondary: #96c93d;
  --pu-white: #ffffff;
  --pu-black: #23272a;
  --pastel-pink: #ffe0ef;
  --pastel-blue: #cae9ff;
  --pastel-green: #dbffe3;
  --pastel-yellow: #fffbe0;
  --pastel-lilac: #ede7fa;
  --text-main: #292d32;
  --text-secondary: #787c82;
  --brand-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --brand-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-s: 12px;
  --radius-m: 18px;
  --radius-l: 30px;
  --shadow-s: 0 2px 8px rgba(200,200,240,0.07);
  --shadow-m: 0 6px 28px rgba(70,100,200,0.12);
  --shadow-card: 0 2px 18px 0 rgba(200, 200, 255, 0.17);
  --section-spacing: 60px;
  --container-gutter: 20px;
  --flex-gap: 24px;
  --hero-bg: linear-gradient(120deg, #edf5fd 0%, #fff5f8 100%);
  --footer-bg: #f8fafd;
  --footer-text: #6a6f74;
  --footer-link: #6a6f74;
}

/* =========================================
   BASE LAYOUT & CONTAINERS
   ========================================= */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: var(--container-gutter);
  padding-right: var(--container-gutter);
}
.section {
  margin-bottom: var(--section-spacing);
  padding: 40px 20px;
  background: var(--pu-white);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}

/* -----------------------------------------
   FLEX CONTAINERS FOR CARDS & CONTENTS
   ----------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--pu-white);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 20px;
  min-width: 240px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--pastel-blue);
  color: var(--text-main);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  flex: 1 1 300px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.service-card {
  background: var(--pastel-green);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
  flex: 1 1 220px;
  min-width: 230px;
  padding: 28px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.23s, transform 0.22s;
}
.service-card:hover {
  box-shadow: 0 6px 24px 0 rgba(135,200,255,0.14);
  transform: translateY(-3px) scale(1.012);
}

.info-block {
  background: var(--pastel-yellow);
  border-radius: var(--radius-s);
  padding: 14px 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-s);
  flex: 1 1 220px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
body {
  font-size: 16px;
  font-family: var(--brand-body);
  color: var(--text-main);
  background: #f8fafb;
}
h1, .hero h1 {
  font-family: var(--brand-display);
  font-weight: 700;
  font-size: 2.375rem;
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--pu-primary);
margin-bottom: 10px;
}
h2 {
  font-family: var(--brand-display);
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--pu-primary);
}
h3 {
  font-family: var(--brand-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--pu-primary);
}
p, ul, ol {
  font-size: 1rem;
  color: var(--text-secondary);
}
.subtitle {
  font-size: 1.22rem;
  color: var(--pu-secondary);
  font-family: var(--brand-display);
  font-weight: 500;
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  font-family: var(--brand-body);
  background: transparent;
  color: var(--pu-primary);
  margin: 0 0 8px 0;
  padding: 0;
  line-height: 1.44;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--pu-secondary);
  font-family: var(--brand-display);
  font-weight: 500;
  margin-left: 18px;
}
address {
  font-style: normal;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.5;
}
.review-summary {
  font-size: 1.15rem;
  font-family: var(--brand-display);
  color: var(--pu-primary);
  padding-top: 12px;
}
.price-highlight, .service-pricing {
  font-family: var(--brand-display);
  color: var(--pu-secondary);
  font-weight: 600;
  background: var(--pastel-lilac);
  border-radius: var(--radius-s);
  padding: 10px 18px;
  font-size: 1.10rem;
}
.service-price {
  font-family: var(--brand-body);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--pu-primary);
  background: var(--pastel-yellow);
  border-radius: var(--radius-s);
  padding: 5px 10px;
}
.motif-examples, .sneaker-care-guide, .brand-highlights {
  background: var(--pastel-pink);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--pu-primary);
  box-shadow: var(--shadow-s);
  margin-bottom: 10px;
}

ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 10px;
}
ul{
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}

strong {
  font-weight: 600;
  color: var(--pu-primary);
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  background: var(--hero-bg);
  padding: 48px 0 42px 0;
  border-radius: 0 0 var(--radius-l) var(--radius-l);
  margin-bottom: 46px;
  position: relative;
  box-shadow: 0 8px 34px 0 rgba(180,200,255,0.067);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 var(--radius-m) var(--radius-m);
    padding: 30px 0 24px 0;
    margin-bottom: 28px;
  }
  .hero .container {
    padding-left: 10px; padding-right: 10px;
  }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--brand-display);
  font-weight: 600;
  font-size: 1.08rem;
  border-radius: 30px;
  padding: 12px 34px;
  border: none;
  cursor: pointer;
  transition: background 0.16s, box-shadow 0.20s, color 0.17s, transform 0.21s;
  box-shadow: 0 2px 10px 0 rgba(180,200,255,0.09);
}
.btn-primary {
  background: var(--pu-secondary);
  color: var(--pu-white);
  box-shadow: 0 5px 30px 0 rgba(150, 201, 61, 0.12);
}
.btn-primary:hover, .btn-primary:focus {
  background: #abd84e;
  color: #23272a;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 22px 0 rgba(152,200,50,0.16);
}
.btn-secondary {
  background: var(--pastel-lilac);
  color: var(--pu-primary);
  border: 1.5px solid var(--pu-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e2ffe2;
  color: var(--pu-secondary);
  transform: translateY(-2px) scale(1.04);
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
header {
  background: var(--pu-white);
  box-shadow: 0 2px 18px rgba(196, 217, 255, 0.08);
  border-radius: 0 0 16px 16px;
  padding-top: 8px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
header nav a {
  font-family: var(--brand-display);
  color: var(--pu-primary);
  font-weight: 500;
  font-size: 1.06rem;
  padding: 10px 0;
  border-radius: var(--radius-s);
  transition: background 0.16s, color 0.16s;
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--pu-secondary);
  background: var(--pastel-blue);
}
header img[alt="Pied Urbain"] {
  max-height: 54px;
  margin-right: 10px;
}
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  header .container { gap: 8px; }
  header nav a { font-size: 0.99rem; }
}
@media (max-width: 900px) {
  header .container { gap: 6px; }
  header nav a { font-size: 0.95rem; padding: 7px 0; }
  header img[alt="Pied Urbain"] { max-height: 42px; }
}

/* =========================================
   MOBILE NAVIGATION
   ========================================= */
@media (max-width: 820px) {
  header nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    background: var(--pu-secondary);
    color: var(--pu-white);
    font-size: 2.1rem;
    border: none;
    border-radius: 38px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    z-index: 1202;
    position: absolute;
    right: 20px;
    top: 18px;
    transition: background 0.2s, color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    background: #abd84e;
    color: #23272a;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245, 247, 250, 0.98);
  z-index: 1200;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.56,.13,.49,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 8px 48px 0 rgba(63, 107, 255, 0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--pu-secondary);
  color: var(--pu-white);
  font-size: 2.0rem;
  border: none;
  border-radius: 38px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  position: absolute;
  right: 16px;
  top: 18px;
  z-index: 1202;
  transition: background 0.22s, color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e2ffe2;
  color: var(--pu-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 84px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  display: block;
  width: 86vw;
  background: var(--pastel-blue);
  color: var(--pu-primary);
  font-family: var(--brand-display);
  font-size: 1.16rem;
  font-weight: 600;
  border-radius: var(--radius-s);
  padding: 16px 18px;
  text-align: left;
  margin-bottom: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pu-secondary);
  color: #fff;
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  background: var(--footer-bg);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: 0 -2px 18px 0 rgba(196,217,255,0.07);
  padding: 40px 0 24px 0;
  margin-top: 56px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo {
  margin-bottom: 18px;
}
.footer-logo img {
  max-height: 50px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-menu a {
  color: var(--footer-link);
  font-family: var(--brand-display);
  font-weight: 500;
  padding: 3px 0;
  font-size: 1.06rem;
  transition: color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--pu-secondary);
}
.footer-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.footer-social img {
  width: 26px;
  height: 26px;
  transition: filter 0.2s;
  filter: grayscale(44%) brightness(103%);
  cursor: pointer;
}
.footer-social img:hover, .footer-social img:focus {
  filter: grayscale(0%) brightness(110%);
}
.footer-legal {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}
.footer-legal a {
  color: var(--footer-link);
  border-radius: 9px;
  padding: 3px 6px;
  transition: background 0.18s, color 0.16s;
}
.footer-legal a:hover, .footer-legal a:focus {
  background: var(--pastel-lilac);
  color: var(--pu-secondary);
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 26px;
  }
  footer {
    padding: 28px 0 16px 0;
  }
}

/* =========================================
   RESPONSIVE & MOBILE
   ========================================= */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 32px 7px;
    margin-bottom: 38px;
    border-radius: var(--radius-s);
  }
  .service-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 15px 9px 16px 14px;
  }
  .service-card, .card {
    min-width: unset;
    width: 96%;
    padding: 18px 10px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-item {
    gap: 7px;
    margin-bottom: 13px;
  }
  .footer-legal, .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  .footer-legal {
    margin-top: 8px;
    gap: 7px;
  }
}

/* =========================================
   MICRO-INTERACTIONS / HOVER & TRANSITIONS
   ========================================= */
a, button {
  transition: color 0.18s, background 0.19s, box-shadow 0.20s, transform 0.21s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px 0 rgba(122,176,244,.18);
}

/* =========================================
   SPECIAL SECTIONS
   ========================================= */
.text-section {
  max-width: 700px;
  font-size: 1.06rem;
  color: var(--text-secondary);
}

.faq-snippets {
  margin-top: 8px;
  background: var(--pastel-green);
  border-radius: var(--radius-s);
  padding: 13px 18px;
  box-shadow: var(--shadow-s);
}

.brand-highlights {
  margin: 8px 0;
}

/* =========================================
   COOKIE CONSENT BANNER (BOTTOM FIXED)
   ========================================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pastel-lilac);
  color: var(--pu-primary);
  box-shadow: 0 -4px 28px 0 rgba(122,160,248,0.13);
  z-index: 2500;
  padding: 24px 16px 24px 19px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100vw;
  font-family: var(--brand-body);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55), opacity 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary {
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 22px;
}
.cookie-banner .btn-secondary {
  background: var(--pastel-blue);
  color: var(--pu-primary);
  border: 1px solid var(--pu-secondary);
}
.cookie-banner .btn-secondary:hover {
  background: #e2ffe2;
  color: var(--pu-secondary);
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 6px 16px 8px;
    font-size: 0.97rem;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
}

/* =========================================
   COOKIE MODAL POPUP
   ========================================= */
.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(220,220,255, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.23s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal-dialog {
  background: var(--pu-white);
  border-radius: var(--radius-l);
  box-shadow: 0 8px 32px rgba(70,100,200,0.17);
  max-width: 400px;
  width: 100%;
  padding: 34px 26px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: var(--brand-body);
  position: relative;
}
.cookie-modal-title {
  font-family: var(--brand-display);
  color: var(--pu-primary);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 17px;
  background: var(--pu-secondary);
  color: var(--pu-white);
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.16s, color 0.11s;
}
.cookie-modal-close:hover {
  background: #e2ffe2;
  color: var(--pu-secondary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 8px 0;
}
.cookie-category label {
  font-family: var(--brand-body);
  font-size: 1.05rem;
  color: var(--pu-primary);
  cursor: pointer;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: var(--pu-secondary);
  width: 18px;
  height: 18px;
}
.cookie-category input[type=checkbox]:disabled {
  accent-color: var(--pastel-lilac);
  opacity: 0.66;
}
.cookie-category .desc {
  color: var(--text-secondary);
  font-size: 0.98rem;
  margin-left: 31px;
}

/* =========================================
   CUSTOM SCROLLBAR
   ========================================= */
::-webkit-scrollbar {
  width: 8px;
  background: var(--pastel-blue);
  border-radius: 30px;
}
::-webkit-scrollbar-thumb {
  background: #ceddf6;
  border-radius: 30px;
}

html {
  scrollbar-color: #ceddf6 var(--pastel-blue);
  scrollbar-width: thin;
}

/* =========================================
   END OF CSS
   ========================================= */
