


@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-VariableFont_opsz_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('fonts/Inter-Italic-VariableFont_opsz_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-VariableFont_wdth_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('fonts/Archivo-Italic-VariableFont_wdth_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-stretch: 62.5% 125%;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Anton';
  src: url('fonts/Anton-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  
  
  --blue-500: #1F4E8C;   
  --blue-700: #163A69;   
  
  --green-500: #7AC043;  
  --green-700: #5E9E2F;  
  
  --neutral-0:   #FFFFFF;
  --neutral-50:  #F5F7FA;  
  --neutral-100: #EEF2F6;  
  --neutral-300: #D6DCE5;  
  --neutral-600: #4B5563;  
  --neutral-800: #1F2937;  

  
  --retail-orange-500: #F28C28;
  --retail-orange-700: #D96A00;
  --retail-yellow-400: #F7C948;
  --retail-gold-500:   #D4A72C;

  
  
  --blue-050:  #E8EEF6;   
  --blue-400:  #2B6FC2;   
  --green-050: #EEF7DD;   
  --amber-050: #FEF6E0;   
  --amber-600: #B8791F;   

  
  --feedback-success: #2E9F4D;
  --feedback-info:    #2B6CB0;
  --feedback-error:   #D64545;

  
  --surface-page:    var(--neutral-50);
  --surface-card:    var(--neutral-0);
  --surface-subtle:  var(--neutral-100);
  --surface-inverse: var(--blue-700);

  --text-primary:   var(--neutral-800);
  --text-secondary: var(--neutral-600);
  --text-inverse:   var(--neutral-0);
  --text-brand:     var(--blue-500);
  --text-link:      var(--blue-500);
  --text-link-hover:var(--blue-700);

  --action-primary-bg:       var(--green-500);
  --action-primary-bg-hover: var(--green-700);
  --action-primary-fg:       var(--neutral-0);
  --action-secondary-bg:     var(--neutral-0);
  --action-secondary-fg:     var(--blue-500);
  --action-secondary-border: var(--blue-500);

  --border-subtle: var(--neutral-300);

  
  --retail-price-fill:    var(--retail-yellow-400);
  --retail-price-outline: var(--blue-700);
  --retail-badge-promo:   var(--retail-orange-500);
  --retail-badge-warranty:var(--retail-gold-500);

  
  --font-body:    'Inter', Arial, sans-serif;
  --font-heading: 'Archivo', 'Inter', Arial, sans-serif;
  --font-retail:  'Anton', 'Archivo', Impact, sans-serif;     
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  
  --fs-body-sm:   14px;
  --fs-body:      16px;
  --fs-body-lg:   18px;
  --fs-h3:        24px;
  --fs-h2:        36px;
  --fs-h1:        48px;
  --fs-hero:      64px;
  --fs-price:     96px;
  --fs-price-xxl: 160px;

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight: 1.05;
  --lh-h1:    1.1;
  --lh-h2:    1.2;
  --lh-h3:    1.3;
  --lh-body:  1.5;
  --lh-body-lg: 1.55;

  
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-12: 48px;
  --sp-16: 64px;

  
  --radius-sm:  8px;    
  --radius-md:  12px;   
  --radius-lg:  20px;   
  --radius-pill: 999px; 

  
  --stroke-default: 1px;
  --stroke-strong:  2px;
  --stroke-poster:  4px;

  
  --shadow-card:         0 8px 24px rgba(31, 41, 55, 0.08);
  --shadow-card-hover:   0 12px 32px rgba(31, 41, 55, 0.12);
  --shadow-button:       0 4px 12px rgba(31, 78, 140, 0.18);
  --shadow-poster-price: 0 4px 0 rgba(22, 58, 105, 1);
}


html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--text-primary);
  background: var(--surface-page);
}


.hero, h1.hero {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
}

h1, .h1 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-h1);
  line-height: var(--lh-h1);
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

h2, .h2 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h2);
  line-height: var(--lh-h2);
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

h3, .h3, .card-title {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-h3);
  line-height: var(--lh-h3);
  color: var(--text-primary);
  margin: 0 0 var(--sp-3);
}

p, .body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--text-primary);
  margin: 0 0 var(--sp-4);
}

.body-lg {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body-lg);
}

.body-sm, small {
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-medium);
  line-height: 1.45;
  color: var(--text-secondary);
}

code, .mono {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

a { color: var(--text-link); text-decoration: none; }
a:hover { color: var(--text-link-hover); text-decoration: underline; }


.retail-display {
  font-family: var(--font-retail);
  font-weight: var(--fw-regular);
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}

.retail-price-xxl {
  font-family: var(--font-retail);
  font-size: var(--fs-price-xxl);
  line-height: 0.9;
  color: var(--retail-price-fill);
  -webkit-text-stroke: 3px var(--retail-price-outline);
  text-shadow: var(--shadow-poster-price);
}


* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--surface-page); color: var(--text-primary); font-family: var(--font-body); }
img { max-width: 100%; display: block; }


.topstrip { background: var(--blue-700); color: #fff; font-size: 12px; padding: 6px 0; }
.topstrip .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topstrip a { color: #fff; opacity: 0.9; text-decoration: none; }
.topstrip a:hover { opacity: 1; }

nav.main { background: #fff; border-bottom: 1px solid var(--neutral-300); position: sticky; top: 0; z-index: 10; }
nav.main .wrap { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 32px; }
nav.main .logo img { height: 46px; }
nav.main ul { list-style: none; display: flex; gap: 24px; margin: 0; padding: 0; }
nav.main a { color: var(--text-primary); font-weight: 500; font-size: 15px; padding: 6px 2px; }
nav.main a:hover { color: var(--blue-500); text-decoration: none; }
nav.main .spacer { flex: 1; }
nav.main .cta { background: var(--green-500); color: #fff; font-weight: 600; padding: 10px 18px; border-radius: 999px; font-size: 14px; box-shadow: var(--shadow-button); }
nav.main .cta:hover { background: var(--green-700); text-decoration: none; color: #fff; }


.hero {
  background: linear-gradient(135deg, #1F4E8C 0%, #163A69 70%);
  color: #fff; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(122,192,67,0.25), transparent 60%),
              radial-gradient(circle at 15% 85%, rgba(31,78,140,0.5), transparent 55%);
  pointer-events: none;
}
.hero .wrap { max-width: 1200px; margin: 0 auto; padding: 80px 32px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; position: relative; }
.hero h1 { font-family: var(--font-heading); font-weight: 700; font-size: 56px; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 20px; color: #fff; }
.hero h1 em { font-style: normal; color: var(--green-500); }
.hero p { font-size: 19px; line-height: 1.55; opacity: 0.92; margin: 0 0 28px; max-width: 520px; color: #fff; }
.hero .proof span { color: #fff; }
.hero .row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero .proof { display: flex; gap: 18px; margin-top: 32px; font-size: 13px; opacity: 0.85; flex-wrap: wrap; }
.hero .proof span { display: inline-flex; align-items: center; gap: 6px; }
.hero .proof svg { color: var(--green-500); }
.hero .visual { position: relative; min-height: 380px; }
.hero .visual .mascot { position: absolute; right: -10px; bottom: -40px; width: 100%; max-width: 440px; }
.hero .visual .medal {
  position: absolute; top: 0; right: 0; width: 140px; height: 140px; border-radius: 50%;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; color: #fff; text-align: center; padding: 10px; font-size: 14px; line-height: 1.2;
}
.hero .visual .medal strong { font-size: 34px; color: var(--green-500); display: block; }


.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-weight: 600; font-size: 15px; padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer; text-decoration: none; }
.btn.primary { background: var(--green-500); color: #fff; box-shadow: 0 6px 18px rgba(94,158,47,0.35); }
.btn.primary:hover { background: var(--green-700); color: #fff; text-decoration: none; }
.btn.ghost-light { background: rgba(255,255,255,0.1); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn.ghost-light:hover { background: rgba(255,255,255,0.18); text-decoration: none; color: #fff; }
.btn.secondary { background: #fff; color: var(--blue-500); border: 2px solid var(--blue-500); }
.btn.secondary:hover { background: #EEF2F6; text-decoration: none; }


section { padding: 80px 0; }
section .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
section .eyebrow { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--blue-500); text-transform: uppercase; letter-spacing: 0.08em; margin: 0 0 10px; }
section h2 { font-family: var(--font-heading); font-weight: 600; font-size: 38px; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 14px; color: var(--text-primary); }
section .lede { font-size: 18px; line-height: 1.55; color: var(--text-secondary); max-width: 640px; margin: 0 0 40px; }


.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card-hover); }
.service-card .icon { width: 52px; height: 52px; border-radius: 14px; background: var(--neutral-100); color: var(--blue-500); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-card.green .icon { background: #E9F5DA; color: var(--green-700); }
.service-card h3 { font-family: var(--font-heading); font-weight: 600; font-size: 22px; margin: 0 0 10px; color: var(--text-primary); }
.service-card p { font-size: 15px; line-height: 1.55; color: var(--text-secondary); margin: 0 0 18px; }
.service-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
.service-card li { font-size: 13.5px; color: var(--text-primary); padding: 6px 0; display: flex; gap: 8px; align-items: center; }
.service-card li::before { content: "✓"; color: var(--green-500); font-weight: 700; }
.service-card .more { color: var(--blue-500); font-weight: 600; font-size: 14px; text-decoration: none; }
.service-card .more:hover { text-decoration: underline; }


.proofs { background: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 20px; }
.stat { text-align: left; }
.stat .n { font-family: var(--font-heading); font-weight: 700; font-size: 48px; line-height: 1; color: var(--blue-500); letter-spacing: -0.02em; }
.stat .l { font-size: 14px; color: var(--text-secondary); margin-top: 6px; }


.testi { background: var(--neutral-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote { background: #fff; border-radius: 20px; padding: 28px; box-shadow: var(--shadow-card); position: relative; }
.quote .stars { color: var(--retail-gold-500); margin-bottom: 12px; }
.quote p { font-size: 15px; line-height: 1.6; color: var(--text-primary); margin: 0 0 20px; }
.quote footer { display: flex; gap: 12px; align-items: center; }
.quote .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg,#1F4E8C,#163A69); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.quote .who { font-size: 13px; }
.quote .who b { display: block; color: var(--text-primary); }
.quote .who span { color: var(--text-secondary); font-size: 12px; }


.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border-radius: 14px; border: 1px solid var(--neutral-300); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-heading); font-weight: 600; font-size: 17px; color: var(--text-primary); display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--blue-500); font-size: 24px; font-weight: 300; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .content { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.6; font-size: 15px; }


.contact-strip { background: var(--blue-500); color: #fff; border-radius: 24px; padding: 44px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; overflow: hidden; position: relative; }
.contact-strip h2 { color: #fff !important; margin-bottom: 8px; }
.contact-strip p { color: rgba(255,255,255,0.9) !important; font-size: 16px; margin: 0 0 20px; line-height: 1.5; }
.contact-strip .details span { color: #fff; }
.contact-strip .details { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.contact-strip .details span { display: flex; align-items: center; gap: 10px; }
.contact-strip .details svg { color: var(--green-500); flex: 0 0 auto; }


footer.site { background: var(--blue-700); color: rgba(255,255,255,0.8); padding: 56px 0 28px; font-size: 14px; }
footer.site .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
footer.site .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.12); }
footer.site h4 { font-family: var(--font-heading); font-weight: 600; font-size: 15px; color: #fff; margin: 0 0 14px; text-transform: uppercase; letter-spacing: 0.06em; }
footer.site ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
footer.site a { color: rgba(255,255,255,0.8); text-decoration: none; }
footer.site a:hover { color: #fff; }
footer.site .logo img { height: 48px; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.9; }
footer.site .bottom { padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.7; }




h1 { font-size: clamp(2rem, 1.2rem + 3.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 1rem + 2.2vw, 2.6rem); line-height: 1.15; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 0.9rem + 1vw, 1.45rem); }


.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16,1,0.3,1), transform 700ms cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 90ms; }
.reveal.delay-2 { transition-delay: 180ms; }
.reveal.delay-3 { transition-delay: 270ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}


.hero { isolation: isolate; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(122,192,67,0.18), transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 90%, rgba(43,111,194,0.25), transparent 70%);
  animation: hero-drift 18s ease-in-out infinite alternate;
  pointer-events: none; z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
@keyframes hero-drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(-2%, 2%, 0) scale(1.08); }
}


.service-card {
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1),
              box-shadow 320ms cubic-bezier(0.16,1,0.3,1),
              border-color 200ms;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(31,78,140,0.05));
  opacity: 0; transition: opacity 300ms;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(31,78,140,0.14), 0 4px 12px rgba(31,78,140,0.08);
  border-color: var(--blue-500);
}
.service-card:hover::before { opacity: 1; }
.service-card.green:hover {
  box-shadow: 0 18px 40px rgba(122,192,67,0.18), 0 4px 12px rgba(122,192,67,0.1);
  border-color: var(--green-500);
}
.service-card .icon {
  transition: transform 300ms cubic-bezier(0.34,1.56,0.64,1), background 300ms;
}
.service-card:hover .icon { transform: scale(1.1) rotate(-4deg); }


.btn.primary {
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700) 100%);
  background-size: 200% 100%;
  transition: background-position 350ms, transform 200ms, box-shadow 200ms;
}
.btn.primary:hover {
  background-position: 100% 0;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(122,192,67,0.45);
}
.btn.primary:active { transform: translateY(0); }


nav.main { backdrop-filter: saturate(140%); transition: box-shadow 300ms, background 300ms; }
nav.main.scrolled { box-shadow: 0 2px 18px rgba(22,58,105,0.08); background: rgba(255,255,255,0.92); }


.section-angle {
  position: relative;
  --angle: 2.5vw;
  padding-top: calc(64px + var(--angle));
  padding-bottom: calc(64px + var(--angle));
  clip-path: polygon(0 var(--angle), 100% 0, 100% calc(100% - var(--angle)), 0 100%);
}


.hero.pilier-pro { background: linear-gradient(135deg, #163A69 0%, #0F2542 100%); }
.hero.pilier-coll { background: linear-gradient(135deg, #1F2937 0%, #0F172A 100%); }
.hero.pilier-sap {
  background: linear-gradient(135deg, #5E9E2F 0%, #3F7020 100%);
}
.hero.pilier-sap h1 em { color: #F7C948; }
.hero.pilier-part {
  background: linear-gradient(135deg, #1F4E8C 0%, #2B6FC2 60%, #3BA5FF 100%);
}


.trust-banner {
  background: linear-gradient(90deg, var(--blue-050) 0%, var(--green-050) 100%);
  border: 1px solid rgba(31,78,140,0.12);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px; margin: 32px 0;
}
.trust-banner .cell { text-align: center; }
.trust-banner .n {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.6rem);
  color: var(--blue-500); line-height: 1;
  letter-spacing: -0.02em;
}
.trust-banner .l {
  font-size: 13px; color: var(--text-secondary);
  margin-top: 8px; letter-spacing: 0.03em; text-transform: uppercase; font-weight: 600;
}


.credit-calc {
  background: linear-gradient(135deg, #E9F5DA, #F5FBE7);
  border: 2px dashed var(--green-500);
  border-radius: 20px; padding: 28px;
  position: relative; overflow: hidden;
}
.credit-calc::before {
  content: "💰"; position: absolute; top: -20px; right: -20px;
  font-size: 120px; opacity: 0.1; transform: rotate(-15deg);
}


details.faq-item {
  border: 1px solid var(--neutral-300);
  border-radius: 12px; padding: 0;
  margin-bottom: 10px;
  transition: border-color 220ms, box-shadow 220ms;
}
details.faq-item:hover { border-color: var(--blue-500); }
details.faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: 0 4px 16px rgba(31,78,140,0.08);
}
details.faq-item > summary {
  padding: 16px 20px; cursor: pointer; font-weight: 600;
  color: var(--text-primary); list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
details.faq-item > summary::after {
  content: "+"; font-size: 24px; color: var(--blue-500);
  font-weight: 300; transition: transform 250ms;
}
details.faq-item[open] > summary::after { transform: rotate(45deg); }
details.faq-item .content {
  padding: 0 20px 20px; color: var(--text-secondary); line-height: 1.6;
}


.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--neutral-300);
  padding: 10px 16px; display: none;
  box-shadow: 0 -4px 12px rgba(22,58,105,0.08); z-index: 50;
}
.mobile-cta a { flex: 1; }
@media (max-width: 760px) {
  .mobile-cta { display: flex; gap: 8px; }
  body { padding-bottom: 72px; }
}


.breadcrumb {
  padding: 14px 0; font-size: 13px; color: var(--text-secondary);
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue-500); }
.breadcrumb .sep { margin: 0 6px; opacity: 0.5; }


.pilier-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 32px;
}
.pilier-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--neutral-300);
  transition: transform 320ms cubic-bezier(0.16,1,0.3,1), box-shadow 320ms, border-color 200ms;
  position: relative;
}
.pilier-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(22,58,105,0.12);
  border-color: var(--blue-500);
}
.pilier-card .pilier-head {
  padding: 24px; color: #fff; position: relative; overflow: hidden;
}
.pilier-card .pilier-head.part { background: linear-gradient(135deg, var(--blue-500), var(--blue-400)); }
.pilier-card .pilier-head.pro { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); }
.pilier-card .pilier-head.coll { background: linear-gradient(135deg, #1F2937, #374151); }
.pilier-card .pilier-head h3 {
  color: #fff; font-size: 22px; margin: 12px 0 8px; font-weight: 700;
}
.pilier-card .pilier-head p { color: rgba(255,255,255,0.85); font-size: 14px; margin: 0; line-height: 1.5; }
.pilier-card .pilier-head svg { width: 36px; height: 36px; opacity: 0.9; }
.pilier-card .pilier-body {
  padding: 18px 24px 22px;
}
.pilier-card .pilier-body ul { margin: 0; padding-left: 18px; color: var(--text-secondary); font-size: 13.5px; line-height: 1.7; }
.pilier-card .pilier-body .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px; color: var(--blue-500); font-weight: 600; font-size: 14px;
  transition: gap 250ms;
}
.pilier-card:hover .pilier-body .arrow { gap: 12px; }


.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #E9F5DA; color: #3F7020;
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.tag-pill.blue { background: var(--blue-050); color: var(--blue-700); }
.tag-pill.amber { background: var(--amber-050); color: var(--amber-600); }




.skip-link {
  position: absolute;
  top: -48px;
  left: 12px;
  z-index: 1000;
  background: var(--blue-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: top 180ms cubic-bezier(0.16,1,0.3,1);
}
.skip-link:focus {
  top: 0;
  color: #fff;
  text-decoration: none;
  outline: 3px solid var(--green-500);
  outline-offset: 2px;
}


:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible,
.cta:focus-visible,
nav.main a:focus-visible,
footer.site a:focus-visible,
.mobile-cta a:focus-visible {
  outline: 3px solid var(--green-500);
  outline-offset: 3px;
}
.topstrip a:focus-visible,
.hero .btn:focus-visible {
  outline-color: #fff;
}


nav.main a[aria-current="page"] {
  color: var(--blue-700);
  position: relative;
}
nav.main a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}


@media (max-width: 760px) {
  nav.main a,
  footer.site a,
  .topstrip a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
  .faq-item > summary {
    min-height: 48px;
  }
}


@media (max-width: 760px) {
  nav.main .wrap {
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px 16px;
  }
  nav.main ul {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  nav.main ul::-webkit-scrollbar { height: 0; }
  nav.main li { flex: 0 0 auto; }
  nav.main .spacer { display: none; }
  nav.main .cta {
    margin-left: auto;
    font-size: 13px;
    padding: 8px 14px;
  }
  .topstrip { font-size: 11px; padding: 4px 0; }
  .topstrip .wrap { padding: 0 16px; gap: 8px; flex-wrap: wrap; }
}


@media (prefers-reduced-motion: reduce) {
  .hero::after { animation: none; }
  .service-card,
  .pilier-card,
  .btn.primary,
  nav.main,
  details.faq-item {
    transition: none;
  }
  .service-card:hover,
  .pilier-card:hover,
  .btn.primary:hover {
    transform: none;
  }
}


.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}




body.ds-home .topstrip {
  background: var(--neutral-0);
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(22, 58, 105, 0.1);
  font-size: 12px;
  padding: 4px 0;
}
body.ds-home .topstrip .wrap {
  max-width: 1240px;
  padding: 0 32px;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  line-height: 1.6;
}
body.ds-home .topstrip .ds-topstrip-group {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
body.ds-home .topstrip a { color: var(--text-secondary); opacity: 1; }
body.ds-home .topstrip a:hover { color: var(--blue-500); text-decoration: underline; }
body.ds-home .topstrip .ds-star { color: var(--retail-yellow-400); }


body.ds-home .topstrip .ds-topstrip-clock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-feature-settings: "tnum" 1;
  font-variant-numeric: tabular-nums;
}
body.ds-home .topstrip .ds-topstrip-clock__date {
  font-weight: 600;
  color: var(--text-primary);
  text-transform: capitalize;
}
body.ds-home .topstrip .ds-topstrip-clock__sep {
  color: rgba(14, 30, 58, 0.3);
}
body.ds-home .topstrip .ds-topstrip-clock__time {
  font-weight: 700;
  color: #5E9E2F;
  letter-spacing: 0.01em;
}


nav.main .ds-nav-sos-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(122, 192, 67, 0.14) 0%, rgba(94, 158, 47, 0.18) 100%);
  border: 1px solid rgba(94, 158, 47, 0.42);
  color: #3F6E1A;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
nav.main .ds-nav-sos-icon svg {
  transform: rotate(-12deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
nav.main .ds-nav-sos-icon:hover {
  background: linear-gradient(180deg, #7AC043 0%, #5E9E2F 100%);
  border-color: #5E9E2F;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
nav.main .ds-nav-sos-icon:hover svg {
  transform: rotate(0deg) scale(1.1);
}


body.ds-home nav.main {
  background: var(--neutral-0);
}
body.ds-home nav.main .wrap {
  max-width: 1240px;
  padding: 10px 32px;
}
body.ds-home nav.main ul { gap: 28px; }
body.ds-home nav.main a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}
body.ds-home nav.main .ds-phone {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-primary);
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.ds-hero {
  background: var(--neutral-0);
  padding: 40px 0 60px;
}
.ds-hero .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.ds-hero-photo {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: auto;
}
.ds-hero-photo img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}
.ds-hero-photo .ds-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(15, 26, 46, 0.82) 0%,
    rgba(15, 26, 46, 0.55) 50%,
    rgba(15, 26, 46, 0.10) 100%);
}
.ds-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 60px;
  z-index: 2;
}
.ds-hero-content > div {
  max-width: 620px;
  color: #fff;
}
.ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ds-hero-badge .ds-dot {
  width: 8px;
  height: 8px;
  background: var(--green-500);
  border-radius: 999px;
  box-shadow: 0 0 10px var(--green-500);
}
.ds-hero h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: #fff;
}
.ds-hero h1 em {
  font-style: italic;
  color: var(--green-500);
}
.ds-hero-lead {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1875rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 32px;
  max-width: 500px;
}
.ds-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.ds-btn-primary {
  background: var(--green-500);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 22px rgba(122, 192, 67, 0.4);
  transition: background var(--dur, 200ms), transform 150ms, box-shadow var(--dur, 200ms);
}
.ds-btn-primary:hover {
  background: var(--green-700);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(94, 158, 47, 0.5);
}
.ds-btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 200ms;
}
.ds-btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  text-decoration: none;
}
.ds-mascot-badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 18px 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
  max-width: 280px;
}
.ds-mascot-badge img {
  height: 42px;
  width: auto;
  flex: 0 0 auto;
}
.ds-mascot-badge-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.15;
}


.ds-quick-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ds-quick-card {
  position: relative;
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-top: 3px solid rgba(94, 158, 47, 0.55);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow:
    0 12px 24px -14px rgba(14, 30, 58, 0.18),
    0 2px 4px -2px rgba(14, 30, 58, 0.08);
  transition: border-color 200ms, box-shadow 200ms ease, transform 200ms ease;
}
.ds-quick-card:hover {
  border-color: var(--blue-500);
  border-top-color: #5E9E2F;
  box-shadow:
    0 18px 36px -16px rgba(14, 30, 58, 0.28),
    0 4px 10px -2px rgba(14, 30, 58, 0.12);
  transform: translateY(-2px);
}
.ds-quick-card .ds-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition: background 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}
.ds-quick-card:hover .ds-icon {
  background: rgba(31, 78, 140, 0.14);
  transform: scale(1.05);
}
.ds-quick-card .ds-icon svg {
  display: block;
}
.ds-quick-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  margin: 0 0 4px;
}
.ds-quick-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}


.ds-services {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-services .wrap {
  max-width: 1240px;
  margin: 0 auto;
}
.ds-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.ds-eyebrow {
  display: inline-block;
  color: var(--green-500);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}
.ds-eyebrow.blue { color: var(--blue-500); }
.ds-section-header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.ds-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.ds-service-card {
  position: relative;
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 200ms, box-shadow 200ms, border-color 200ms;
  text-decoration: none;
  color: inherit;
  display: block;
}
.ds-service-card:hover {
  border-color: var(--blue-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  text-decoration: none;
  color: inherit;
}
.ds-service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.ds-service-tag.green { background: var(--green-500); }
.ds-service-tag.blue { background: var(--blue-500); }
.ds-service-card .ds-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background 280ms cubic-bezier(0.16, 1, 0.3, 1),
              color 280ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ds-service-card:hover .ds-icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
.ds-service-card.green:hover .ds-icon {
  background: var(--green-500);
}
.ds-service-card .ds-icon svg {
  display: block;
}
.ds-service-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 4px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.ds-service-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-500);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.ds-service-card.blue .ds-service-sub { color: var(--blue-500); }
.ds-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 18px;
}
.ds-service-more {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ds-service-more .ds-arrow { color: var(--green-500); }
.ds-service-card.blue .ds-service-more .ds-arrow { color: var(--blue-500); }


.ds-vision {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-vision .wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.ds-vision h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.ds-vision .ds-lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 28px;
  max-width: 520px;
}
.ds-vision-pillars {
  display: grid;
  gap: 20px;
}
.ds-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.ds-pillar-num {
  min-width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--green-500);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  flex: 0 0 auto;
}
.ds-pillar-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 3px;
}
.ds-pillar-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}
.ds-vision-mascot {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ds-vision-mascot::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 192, 67, 0.18), transparent 70%);
  pointer-events: none;
}
.ds-vision-mascot img {
  max-width: 440px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}


.ds-faq {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-faq .wrap {
  max-width: 900px;
  margin: 0 auto;
}
.ds-faq-list {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}
.ds-faq-item {
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: 14px;
  padding: 20px 24px;
  transition: border-color 200ms, box-shadow 200ms;
}
.ds-faq-item[open] {
  border-color: var(--blue-500);
  box-shadow: 0 4px 12px rgba(22, 58, 105, 0.08);
}
.ds-faq-item > summary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.ds-faq-item > summary::-webkit-details-marker { display: none; }
.ds-faq-item > summary::after {
  content: "+";
  color: var(--green-500);
  font-size: 24px;
  font-weight: 300;
  transition: transform 200ms;
  flex: 0 0 auto;
}
.ds-faq-item[open] > summary::after {
  transform: rotate(45deg);
}
.ds-faq-item .ds-faq-answer {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}


.ds-footer-cta {
  padding: 80px 32px;
  background: var(--blue-700);
  color: #fff;
  text-align: center;
}
.ds-footer-cta .wrap {
  max-width: 780px;
  margin: 0 auto;
}
.ds-footer-cta h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: #fff;
}
.ds-footer-cta p {
  font-size: 18px;
  line-height: 1.6;
  color: #C5D3E8;
  margin: 0 0 32px;
}
.ds-footer-cta .ds-btn-outline-light {
  background: transparent;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 28px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 200ms, background 200ms;
}
.ds-footer-cta .ds-btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}
.ds-footer-cta .ds-cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


footer.site {
  background: #0F1A2E;
  color: #C5D3E8;
  padding: 48px 0 32px;
  font-size: 13px;
}
footer.site .wrap {
  max-width: 1240px;
  padding: 0 32px;
}
footer.site .cols {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
footer.site h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  margin: 0 0 14px;
}
footer.site a {
  color: #C5D3E8;
}
footer.site a:hover {
  color: #fff;
}
footer.site .bottom {
  color: #5C6E8A;
  border-top-color: rgba(255, 255, 255, 0.08);
}


@media (max-width: 900px) {
  .ds-hero-photo img { height: 460px; }
  .ds-hero-content { padding: 0 32px; }
  .ds-service-grid { grid-template-columns: 1fr; }
  .ds-vision .wrap { grid-template-columns: 1fr; gap: 40px; }
  .ds-vision-mascot { order: -1; }
  .ds-quick-cards { grid-template-columns: 1fr; }
  .ds-mascot-badge { right: 16px; bottom: 16px; }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .ds-hero { padding: 20px 0 40px; }
  .ds-hero .wrap { padding: 0 16px; }
  .ds-hero-photo { border-radius: 18px; }
  .ds-hero-photo img { height: 420px; }
  .ds-hero-content { padding: 0 20px; align-items: flex-end; padding-bottom: 24px; }
  .ds-hero h1 { font-size: 36px; line-height: 1; margin-bottom: 12px; }
  .ds-hero-lead { font-size: 14px; margin-bottom: 18px; }
  .ds-btn-primary, .ds-btn-glass { font-size: 14px; padding: 14px 20px; }
  .ds-mascot-badge { display: none; }
  .ds-services, .ds-vision, .ds-faq { padding: 56px 20px; }
  .ds-services .wrap, .ds-vision .wrap, .ds-faq .wrap { padding: 0; }
  .ds-footer-cta { padding: 56px 20px; }
  footer.site .cols { grid-template-columns: 1fr; }
}




body.ds-home {
  --ds-spring:       cubic-bezier(0.16, 1, 0.3, 1);     
  --ds-spring-back:  cubic-bezier(0.34, 1.56, 0.64, 1); 
  --ds-ease-out:     cubic-bezier(0.2, 0, 0.2, 1);
  --ds-ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --ds-dur-fast:     180ms;
  --ds-dur-base:     260ms;
  --ds-dur-slow:     400ms;
}


body.ds-home .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms var(--ds-spring),
    transform 620ms var(--ds-spring);
}
body.ds-home .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
body.ds-home .reveal.delay-1 { transition-delay: 80ms; }
body.ds-home .reveal.delay-2 { transition-delay: 160ms; }
body.ds-home .reveal.delay-3 { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  body.ds-home .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


body.ds-home .ds-btn-primary:active,
body.ds-home .ds-btn-glass:active,
body.ds-home .ds-btn-outline-light:active,
body.ds-home nav.main .cta:active,
body.ds-home .ds-service-card:active,
body.ds-home .ds-quick-card:active {
  transform: scale(0.985);
  transition-duration: 80ms;
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home *:active { transform: none !important; }
}


body.ds-home a:focus-visible,
body.ds-home button:focus-visible,
body.ds-home details:focus-visible > summary,
body.ds-home summary:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset 140ms var(--ds-ease-out);
}
body.ds-home .ds-btn-primary:focus-visible,
body.ds-home .ds-pillar-num:focus-visible {
  outline-color: var(--green-700);
}
body.ds-home .ds-hero-content a:focus-visible,
body.ds-home .ds-hero-content button:focus-visible,
body.ds-home .ds-footer-cta a:focus-visible,
body.ds-home .ds-footer-cta button:focus-visible {
  outline-color: #FFD84D; 
  outline-offset: 4px;
}


body.ds-home nav.main a[aria-current="page"]::after {
  height: 3px;
  bottom: -6px;
}


body.ds-home .ds-hero-lead,
body.ds-home .ds-quick-card p,
body.ds-home .ds-service-card p,
body.ds-home .ds-vision .ds-lead,
body.ds-home .ds-pillar-content p,
body.ds-home .ds-faq-item .ds-faq-answer,
body.ds-home .ds-footer-cta p {
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.ds-home h1,
body.ds-home h2,
body.ds-home h3 {
  font-feature-settings: "kern", "liga", "calt";
  text-wrap: balance; 
}


body.ds-home .ds-tabular,
body.ds-home .ds-num,
body.ds-home .ds-pillar-num,
body.ds-home .topstrip {
  font-variant-numeric: tabular-nums;
}


body.ds-home .ds-hero-lead { max-width: 52ch; }
body.ds-home .ds-vision .ds-lead { max-width: 58ch; }
body.ds-home .ds-footer-cta p { max-width: 60ch; margin-left: auto; margin-right: auto; }


body.ds-home .ds-service-card {
  transition:
    transform 320ms var(--ds-spring),
    box-shadow 320ms var(--ds-spring),
    border-color 200ms ease-out;
}
body.ds-home .ds-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 78, 140, 0.14);
}
body.ds-home .ds-service-card.green:hover {
  box-shadow: 0 18px 40px rgba(122, 192, 67, 0.22);
  border-color: var(--green-500);
}


body.ds-home .ds-quick-card {
  transition:
    transform 260ms var(--ds-spring),
    box-shadow 260ms var(--ds-spring),
    border-color 200ms ease-out;
}
body.ds-home .ds-quick-card:hover {
  transform: translateY(-2px);
}


.ds-hero-badge .ds-dot {
  animation: ds-pulse 2.4s ease-in-out infinite;
}
@keyframes ds-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .ds-hero-badge .ds-dot { animation: none; }
}


body.ds-home .ds-faq-item {
  transition: border-color 220ms var(--ds-ease-out), box-shadow 220ms var(--ds-ease-out);
}
body.ds-home .ds-faq-item > summary {
  padding-right: 8px;
}
body.ds-home .ds-faq-item > summary::after {
  transition: transform 280ms var(--ds-spring), color 180ms ease-out;
}
body.ds-home .ds-faq-item:hover > summary::after {
  color: var(--green-700);
}


@media (max-width: 560px) {
  .ds-hero-photo img { height: 460px; }
  .ds-hero h1 {
    font-size: clamp(2rem, 1rem + 7vw, 2.8rem);
    letter-spacing: -0.02em;
    line-height: 1.03;
  }
  .ds-hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 16px;
  }
  .ds-hero-lead {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .ds-hero-content {
    padding-bottom: 28px;
  }
  .ds-btn-primary, .ds-btn-glass {
    font-size: 14px;
    padding: 13px 20px;
  }
  
  .ds-mascot-badge { display: none; }
}


@media (max-width: 760px) {
  body.ds-home .ds-services,
  body.ds-home .ds-vision,
  body.ds-home .ds-faq { padding: 64px 24px; }
  body.ds-home .ds-footer-cta { padding: 64px 24px; }
  body.ds-home .ds-service-card { padding: 22px; }
  body.ds-home .ds-section-header { margin-bottom: 36px; }
}


@supports not (text-wrap: balance) {
  body.ds-home .ds-section-header h2,
  body.ds-home .ds-footer-cta h2 {
    max-width: 22ch;
    margin-left: auto;
    margin-right: auto;
  }
}


body.ds-home .ds-vision-mascot::before {
  animation: ds-halo 8s ease-in-out infinite;
}
@keyframes ds-halo {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-vision-mascot::before { animation: none; }
}


body.ds-home .ds-footer-cta p { color: #DCE6F3; }


body.ds-home .topstrip .ds-topstrip-group {
  font-variant-numeric: tabular-nums;
}


body.ds-home nav.main .logo img {
  transition: opacity 200ms ease-out;
}
body.ds-home nav.main .logo:hover img { opacity: 0.85; }


.ds-mascot-badge {
  transition: transform 280ms var(--ds-spring-back);
}
.ds-mascot-badge:hover { transform: translateY(-2px); }




.ds-hero-slim {
  padding: 80px 0 72px;
  background: var(--neutral-0);
  position: relative;
  overflow: hidden;
}
.ds-hero-slim.dark {
  background: var(--blue-700);
  color: #fff;
}
.ds-hero-slim.dark h1,
.ds-hero-slim.dark h2 { color: #fff; }
.ds-hero-slim .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  position: relative;
}
.ds-hero-slim.full .wrap {
  grid-template-columns: 1fr;
  text-align: left;
  max-width: 880px;
}
.ds-hero-slim .ds-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: 24px;
}
.ds-hero-slim h1 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.25rem, 1.4rem + 3vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0 0 20px;
}
.ds-hero-slim .ds-hero-sub {
  font-size: clamp(1rem, 0.9rem + 0.4vw, 1.1875rem);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 0 28px;
}
.ds-hero-slim.dark .ds-hero-sub { color: rgba(255,255,255,0.88); }
.ds-hero-slim .ds-hero-aside {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ds-hero-slim .ds-hero-aside img {
  max-width: 320px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.ds-hero-slim .ds-hero-aside .ds-photo-ph {
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.ds-hero-slim .ds-hero-aside::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 78, 140, 0.10), transparent 70%);
}


body.ds-home .ds-breadcrumb {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
body.ds-home .ds-breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}
body.ds-home .ds-breadcrumb a:hover {
  color: var(--blue-500);
  text-decoration: underline;
}
body.ds-home .ds-breadcrumb .ds-bc-sep {
  opacity: 0.4;
}
body.ds-home .ds-breadcrumb [aria-current="page"] {
  color: var(--text-primary);
  font-weight: 500;
}


.ds-reassurance {
  background: var(--blue-050);
  padding: 20px 0;
  border-top: 1px solid rgba(31, 78, 140, 0.08);
  border-bottom: 1px solid rgba(31, 78, 140, 0.08);
}
.ds-reassurance .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}
.ds-reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue-700);
  letter-spacing: 0.01em;
}
.ds-reassurance-item svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--green-700);
}


.ds-steps {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-steps .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.ds-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  position: relative;
}
.ds-steps-grid::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-050) 20%, var(--blue-050) 80%, transparent);
  z-index: 0;
}
.ds-step {
  position: relative;
  background: var(--neutral-0);
  padding: 0 12px;
  z-index: 1;
}
.ds-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neutral-0);
  border: 2px solid var(--blue-500);
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 18px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  transition: background var(--ds-dur, 260ms) var(--ds-spring, cubic-bezier(0.16, 1, 0.3, 1)),
              color var(--ds-dur, 260ms) var(--ds-spring, cubic-bezier(0.16, 1, 0.3, 1)),
              transform var(--ds-dur, 260ms) var(--ds-spring-back, cubic-bezier(0.34, 1.56, 0.64, 1));
}
.ds-step:hover .ds-step-num {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08);
}
.ds-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}
.ds-step p {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}


.ds-tiers {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-tiers .wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.ds-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.ds-tier {
  background: var(--neutral-0);
  border: 1px solid rgba(22, 58, 105, 0.1);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 320ms var(--ds-spring), box-shadow 320ms var(--ds-spring), border-color 220ms;
}
.ds-tier:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(31, 78, 140, 0.1);
}
.ds-tier.featured {
  border-color: var(--blue-500);
  border-width: 2px;
  padding: 32px 28px 36px;
  box-shadow: 0 12px 32px rgba(31, 78, 140, 0.14);
}
.ds-tier.featured::before {
  content: "Recommandé";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.ds-tier h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--text-primary);
  margin: 0;
}
.ds-tier-sub {
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: -12px 0 0;
}
.ds-tier-desc {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.ds-tier ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.ds-tier ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-primary);
}
.ds-tier ul li::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237AC043' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M5 12l5 5 9-11'/></svg>") no-repeat center / contain;
}
.ds-tier .ds-btn-primary,
.ds-tier .ds-btn-secondary {
  margin-top: auto;
  justify-content: center;
  font-size: 15px;
  padding: 13px 22px;
}
.ds-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--neutral-0);
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border: 2px solid var(--blue-500);
  border-radius: var(--radius-pill);
  cursor: pointer;
  text-decoration: none;
  transition: background 200ms, color 200ms, box-shadow 200ms;
}
.ds-btn-secondary:hover {
  background: var(--blue-500);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(31, 78, 140, 0.25);
}


.ds-kpi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px 40px;
  padding: 32px 0;
  border-top: 1px solid var(--neutral-300);
  border-bottom: 1px solid var(--neutral-300);
}
.ds-kpi-item {
  text-align: center;
}
.ds-kpi-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--blue-500);
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.ds-kpi-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ds-hero-slim.dark .ds-kpi {
  border-color: rgba(255, 255, 255, 0.15);
}
.ds-hero-slim.dark .ds-kpi-num { color: #fff; }
.ds-hero-slim.dark .ds-kpi-label { color: rgba(255, 255, 255, 0.7); }


.ds-static-map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(22, 58, 105, 0.08);
  aspect-ratio: 16 / 9;
  background: var(--neutral-100);
}
.ds-static-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ds-static-map .ds-map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -100%);
  width: 44px;
  height: 44px;
  background: var(--blue-500);
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 6px 16px rgba(31, 78, 140, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ds-static-map .ds-map-pin::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: var(--blue-500);
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  z-index: -1;
}
.ds-static-map .ds-map-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(22, 58, 105, 0.88));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.ds-static-map .ds-map-addr {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}
.ds-static-map .ds-map-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--blue-500);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 180ms, box-shadow 180ms;
}
.ds-static-map .ds-map-cta:hover {
  transform: translateY(-1px);
  color: var(--blue-700);
  text-decoration: none;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}


.ds-timeline {
  display: grid;
  gap: 0;
  position: relative;
  padding-left: 40px;
}
.ds-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: var(--blue-050);
}
.ds-timeline-item {
  position: relative;
  padding: 0 0 32px;
}
.ds-timeline-item:last-child { padding-bottom: 0; }
.ds-timeline-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--blue-500);
  border-radius: 50%;
  border: 3px solid var(--neutral-0);
  box-shadow: 0 0 0 2px var(--blue-500);
}
.ds-timeline-item h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--text-primary);
  margin: 0 0 6px;
}
.ds-timeline-item p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}


.ds-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ds-label.green { background: rgba(122, 192, 67, 0.16); color: var(--green-700); }
.ds-label.blue { background: rgba(31, 78, 140, 0.12); color: var(--blue-700); }
.ds-label.neutral { background: var(--neutral-100); color: var(--neutral-600); }
.ds-label.amber { background: rgba(247, 201, 72, 0.18); color: #8A6410; }


.ds-info-block {
  padding: 96px 32px;
  background: var(--neutral-0);
}
.ds-info-block .wrap {
  max-width: 880px;
  margin: 0 auto;
}
.ds-info-block h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.625rem, 1.2rem + 1.6vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text-primary);
}
.ds-info-block p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 68ch;
  margin: 0 0 16px;
}
.ds-info-block p.ds-lead {
  font-size: 1.1875rem;
  color: var(--text-primary);
  margin-bottom: 28px;
  max-width: 64ch;
}


.ds-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.ds-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}


.ds-section-dark {
  padding: 96px 32px;
  background: var(--blue-700);
  color: #fff;
}
.ds-section-dark .wrap { max-width: 1200px; margin: 0 auto; }
.ds-section-dark h2 { color: #fff; }
.ds-section-dark p { color: rgba(255, 255, 255, 0.85); }
.ds-section-dark .ds-eyebrow { color: var(--green-500); }


.ds-section-muted {
  padding: 96px 32px;
  background: var(--neutral-50);
}
.ds-section-muted .wrap { max-width: 1200px; margin: 0 auto; }


.ds-illu {
  width: 100%;
  height: auto;
  max-width: 520px;
  display: block;
}
.ds-illu-line {
  stroke-dashoffset: 24;
  animation: ds-dash 3.5s linear infinite;
}
@keyframes ds-dash { to { stroke-dashoffset: 0; } }
@media (prefers-reduced-motion: reduce) {
  .ds-illu-line { animation: none; }
}


.ds-perimetre-bento {
  background: linear-gradient(145deg, #163A69 0%, #1F4E8C 100%);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 12px 40px rgba(22, 58, 105, 0.32);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ds-pb-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ds-pb-brand {
  font-family: Archivo, Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: #fff;
}
.ds-pb-check-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #7AC043;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ds-pb-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7AC043;
}
.ds-pb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.ds-pb-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.18s ease, border-color 0.18s ease;
}
.ds-pb-tile:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(122, 192, 67, 0.4);
}
.ds-pb-tile svg {
  color: #7AC043;
  flex-shrink: 0;
}
.ds-pb-tile span {
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}
.ds-pb-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.ds-pb-proof-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.ds-pb-territory {
  font-family: Inter, sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  margin: 0;
  letter-spacing: 0.04em;
}
@media (max-width: 680px) {
  .ds-pb-grid { grid-template-columns: repeat(2, 1fr); }
}


.ds-pb-statement {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.ds-pb-num {
  font-family: Archivo, Inter, sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #7AC043;
  line-height: 1;
  letter-spacing: -3px;
  flex-shrink: 0;
}
.ds-pb-statement-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 0;
}
.ds-pb-statement .ds-pb-brand {
  font-size: 18px;
}


body.ds-home .ds-hero-stage__media--diagram {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 0 30px 30px 0;
}
body.ds-home .ds-hero-stage__media--diagram svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px) {
  body.ds-home .ds-hero-stage__media--diagram { display: none; }
}


.ds-illu-step,
.ds-illu-secteur {
  width: 80px;
  height: 80px;
  display: block;
  margin-bottom: 14px;
}
.ds-illu-secteur {
  width: 96px;
  height: 96px;
}
.ds-step .ds-illu-step + .ds-step-num {
  width: 44px;
  height: 44px;
  font-size: 0.9375rem;
}


.ds-banner-enseigne {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-md);
}


.ds-photo-ph {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 78, 140, 0.12);
  background: var(--neutral-0);
  box-shadow: var(--shadow-card);
  position: relative;
}
.ds-photo-ph-svg {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background: var(--neutral-100);
}
.ds-photo-ph-caption {
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  background: var(--neutral-0);
  border-top: 1px solid rgba(31, 78, 140, 0.06);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ds-photo-ph-caption strong {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.ds-photo-ph-caption span {
  color: var(--text-secondary);
  font-size: 12px;
}


.ds-tampon-watermark {
  position: absolute;
  right: 32px;
  bottom: 32px;
  width: 120px;
  height: 120px;
  opacity: 0.12;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}


@media (max-width: 900px) {
  .ds-hero-slim .wrap { grid-template-columns: 1fr; gap: 28px; text-align: left; }
  .ds-hero-slim.full .wrap { text-align: left; }
  .ds-hero-slim .ds-hero-aside { order: -1; }
  .ds-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .ds-steps-grid::before { display: none; }
  .ds-tiers-grid { grid-template-columns: 1fr; }
  .ds-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-hero-slim { padding: 56px 0 48px; }
  .ds-hero-slim .wrap { padding: 0 20px; }
  .ds-steps, .ds-tiers, .ds-info-block, .ds-section-dark, .ds-section-muted { padding: 64px 20px; }
  .ds-steps-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .ds-reassurance .wrap { padding: 0 20px; gap: 14px 24px; }
  .ds-reassurance-item { font-size: 13px; }
  .ds-grid-2, .ds-grid-3 { grid-template-columns: 1fr; margin-top: 28px; }
}


body.ds-home .ds-hero-sap {
  position: relative;
  padding: 96px 0 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(31,78,140,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(122,192,67,0.07) 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #f4f6fb 100%);
  overflow: hidden;
}
body.ds-home .ds-hero-sap .wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px 72px;
  position: relative;
  z-index: 1;
}
body.ds-home .ds-hero-sap__content { max-width: 620px; }
body.ds-home .ds-hero-sap__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 16px 0 22px;
}
body.ds-home .ds-hero-sap__accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-500) 0%, #3a6bbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.ds-home .ds-hero-sap__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 28px;
}


body.ds-home .ds-hero-sap__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
body.ds-home .ds-hero-sap__bignum {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.ds-home .ds-hero-sap__digits {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(4.5rem, 3rem + 6vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, #1F4E8C 0%, #4d82d6 60%, #2d56a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: flex-start;
  text-shadow: 0 6px 22px rgba(31,78,140,0.10);
}
body.ds-home .ds-hero-sap__pct {
  font-size: 0.55em;
  margin-left: 0.04em;
  margin-top: 0.18em;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.ds-home .ds-hero-sap__legend {
  display: block;
  max-width: 320px;
  margin: 18px auto 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}
body.ds-home .ds-hero-sap__badge {
  position: absolute;
  bottom: 4px;
  right: -8px;
  width: clamp(80px, 10vw, 120px);
  height: auto;
  filter: drop-shadow(0 10px 22px rgba(31,78,140,0.22));
}


body.ds-home .ds-hero-sap__footer-wave {
  position: relative;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
  pointer-events: none;
}
body.ds-home .ds-hero-sap__footer-wave img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.85;
}

@media (max-width: 900px) {
  body.ds-home .ds-hero-sap { padding-top: 56px; }
  body.ds-home .ds-hero-sap .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 22px 48px;
  }
  body.ds-home .ds-hero-sap__visual { order: -1; padding: 16px; }
  body.ds-home .ds-hero-sap__badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 18px;
    width: 110px;
  }
}


body.ds-home .ds-modalities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 36px 0 28px;
  max-width: 920px;
}
body.ds-home .ds-modality {
  position: relative;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
body.ds-home .ds-modality:hover {
  border-color: var(--blue-200, rgba(31,78,140,0.25));
  box-shadow: 0 8px 24px rgba(31,78,140,0.08);
}
body.ds-home .ds-modality__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
body.ds-home .ds-modality h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
body.ds-home .ds-modality p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
body.ds-home .ds-modality-disclaimer {
  max-width: 780px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  background: rgba(31,78,140,0.04);
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid var(--blue-500);
}
body.ds-home .ds-modality-disclaimer a { color: var(--blue-500); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 720px) {
  body.ds-home .ds-modalities { grid-template-columns: 1fr; gap: 16px; }
}


body.ds-home .ds-advantages {
  padding: 80px 0;
  background: #fff;
}
body.ds-home .ds-advantages .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-advantages__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}
body.ds-home .ds-advantage {
  padding: 28px 24px 26px;
  background: linear-gradient(135deg, #fbfbfd 0%, #f4f6fb 100%);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  text-align: left;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
body.ds-home .ds-advantage:hover {
  border-color: rgba(31,78,140,0.25);
  box-shadow: 0 10px 28px rgba(31,78,140,0.10);
}
body.ds-home .ds-advantage__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(31,78,140,0.08);
  color: var(--blue-500);
  margin-bottom: 18px;
}
body.ds-home .ds-advantage__icon.green {
  background: rgba(122,192,67,0.14);
  color: var(--green-700, #5e9e2f);
}
body.ds-home .ds-advantage h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
body.ds-home .ds-advantage p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 1080px) {
  body.ds-home .ds-advantages__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  body.ds-home .ds-advantages__grid { grid-template-columns: 1fr; }
}


body.ds-home .ds-kpi-ribbon {
  position: relative;
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, var(--blue-700, #163A69) 0%, var(--blue-500, #1F4E8C) 100%);
  color: #fff;
  overflow: hidden;
}
body.ds-home .ds-kpi-ribbon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 30%, rgba(122,192,67,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 85% 70%, rgba(255,255,255,0.05) 0%, transparent 60%);
  pointer-events: none;
}
body.ds-home .ds-kpi-ribbon .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}
body.ds-home .ds-kpi-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0;
  list-style: none;
}
body.ds-home .ds-kpi-ribbon__item {
  text-align: center;
  padding: 8px 12px;
  position: relative;
}
body.ds-home .ds-kpi-ribbon__item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14%;
  right: 0;
  bottom: 14%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
body.ds-home .ds-kpi-ribbon__item dt {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.4rem, 1.6rem + 2.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0 0 8px;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: baseline;
  background: linear-gradient(180deg, #ffffff 0%, #d8e4f5 100%);
  -webkit-background-clip: text;
  background-clip: text;
}
body.ds-home .ds-kpi-ribbon__item dt span {
  display: inline-block;
}
body.ds-home .ds-kpi-ribbon__unit {
  font-size: 0.5em;
  margin-left: 0.05em;
  opacity: 0.7;
  font-weight: 700;
}
body.ds-home .ds-kpi-ribbon__item dd {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.01em;
}
@media (max-width: 720px) {
  body.ds-home .ds-kpi-ribbon { padding: 44px 0 50px; }
  body.ds-home .ds-kpi-ribbon__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 12px; }
  body.ds-home .ds-kpi-ribbon__item:nth-child(2)::after { display: none; }
  body.ds-home .ds-kpi-ribbon__item dd { font-size: 12.5px; }
}


body.ds-home .ds-team__more {
  display: inline-block;
  margin-left: 8px;
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


body.ds-home .ds-product-card__hint {
  color: var(--green-700, #5e9e2f);
  font-weight: 600;
  font-size: 13px;
}


body.ds-home .ds-partners {
  padding: 64px 0;
  background: #fafbfc;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}
body.ds-home .ds-partners .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-partners__header { text-align: center; margin-bottom: 36px; }
body.ds-home .ds-partners__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 1rem + 1.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 0;
  color: var(--text-primary);
}

body.ds-home .ds-partners__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  padding: 12px;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  background: #fff;
  transition: filter 0.3s ease, opacity 0.3s ease, border-color 0.25s ease, transform 0.25s ease;
}
body.ds-home .ds-partners__item img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
body.ds-home .ds-partners__item:hover {
  border-color: rgba(31,78,140,0.25);
  transform: translateY(-2px);
}
body.ds-home .ds-partners__item:hover img {
  filter: grayscale(0);
  opacity: 1;
}
body.ds-home .ds-partners__disclaimer {
  margin: 24px auto 0;
  text-align: center;
  font-size: 12px;
  color: var(--neutral-500, #98a2b3);
  font-style: italic;
}
body.ds-home .ds-partners__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: center;
}
@media (max-width: 1080px) {
  body.ds-home .ds-partners__list { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 720px) {
  body.ds-home .ds-partners__list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  body.ds-home .ds-partners__list { grid-template-columns: repeat(2, 1fr); }
}


body.ds-home .ds-testimonials {
  padding: 80px 0;
  background: #fff;
}
body.ds-home .ds-testimonials .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-testimonials__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  margin-top: 36px;
  padding: 8px 4px 24px;
  scroll-padding-inline: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-500) transparent;
}
body.ds-home .ds-testimonials__scroller::-webkit-scrollbar { height: 6px; }
body.ds-home .ds-testimonials__scroller::-webkit-scrollbar-thumb {
  background: var(--blue-500); border-radius: 999px;
}
body.ds-home .ds-testimonials__scroller:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 4px;
  border-radius: 8px;
}
body.ds-home .ds-testimonial {
  scroll-snap-align: start;
  background: linear-gradient(135deg, #fbfbfd 0%, #f4f6fb 100%);
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 26px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-testimonial:hover {
  border-color: rgba(31,78,140,0.25);
  box-shadow: 0 12px 30px rgba(31,78,140,0.10);
  transform: translateY(-2px);
}
body.ds-home .ds-testimonial__stars {
  color: #D4A72C;
  letter-spacing: 3px;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
body.ds-home .ds-testimonial blockquote {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-primary);
  font-style: italic;
  flex-grow: 1;
}
body.ds-home .ds-testimonial footer {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-secondary);
}
body.ds-home .ds-testimonial footer strong {
  color: var(--text-primary);
  font-weight: 600;
}
body.ds-home .ds-testimonials__more {
  text-align: center;
  margin: 24px auto 0;
  font-family: var(--font-mono);
  font-size: 14px;
}
body.ds-home .ds-testimonials__more a {
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


body.ds-home .ds-portrait {
  padding: 80px 0;
}
body.ds-home .ds-portrait .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-portrait__card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 56px;
  align-items: start;
}
body.ds-home .ds-portrait__card.reverse { grid-template-columns: 1fr 360px; }
body.ds-home .ds-portrait__card.reverse .ds-portrait__photo { order: 2; }
body.ds-home .ds-portrait__photo {
  position: sticky;
  top: 100px;
}
body.ds-home .ds-portrait__photo img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  box-shadow: 0 12px 36px rgba(31,78,140,0.18);
}
body.ds-home .ds-portrait__role {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
body.ds-home .ds-portrait__info h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.6rem);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
body.ds-home .ds-portrait__lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 0 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--neutral-200);
}
body.ds-home .ds-portrait__info h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 24px 0 12px;
  color: var(--blue-500);
  letter-spacing: -0.01em;
}
body.ds-home .ds-portrait__skills {
  margin: 0 0 12px;
  padding-left: 0;
  list-style: none;
}
body.ds-home .ds-portrait__skills li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-primary);
}
body.ds-home .ds-portrait__skills li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  background: rgba(31,78,140,0.10);
  border-radius: 50%;
}
body.ds-home .ds-portrait__skills li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 11px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--blue-500);
  border-bottom: 2px solid var(--blue-500);
  transform: rotate(-45deg);
}
body.ds-home .ds-portrait__info p {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 12px;
}
body.ds-home .ds-portrait__quote {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(31,78,140,0.04);
  border-left: 3px solid var(--blue-500);
  border-radius: 0 10px 10px 0;
  font-size: 14.5px;
}
body.ds-home .ds-portrait__quote em {
  color: var(--text-primary);
  font-style: italic;
}
@media (max-width: 900px) {
  body.ds-home .ds-portrait__card,
  body.ds-home .ds-portrait__card.reverse { grid-template-columns: 1fr; gap: 28px; }
  body.ds-home .ds-portrait__card.reverse .ds-portrait__photo { order: -1; }
  body.ds-home .ds-portrait__photo { position: static; max-width: 320px; margin: 0 auto; }
}


body.ds-home .ds-values {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: value;
}
body.ds-home .ds-values li {
  position: relative;
  padding: 20px 24px 20px 80px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #fbfbfd 0%, #f4f6fb 100%);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  counter-increment: value;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
body.ds-home .ds-values li:hover {
  border-color: rgba(31,78,140,0.25);
  box-shadow: 0 8px 22px rgba(31,78,140,0.08);
}
body.ds-home .ds-values li::before {
  content: counter(value, decimal-leading-zero);
  position: absolute;
  left: 22px;
  top: 22px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 26px;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}
body.ds-home .ds-values li strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 4px;
}


body.ds-home .ds-tier-price {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 8px 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--neutral-200);
}
body.ds-home .ds-tier-price strong {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-size: 18px;
  font-variant-numeric: tabular-nums;
}
body.ds-home .ds-tier-price .ds-tier-priceunit {
  display: block;
  font-size: 12.5px;
  color: var(--neutral-500, #98a2b3);
  margin-top: 2px;
}
body.ds-home .ds-tier-price em {
  display: block;
  font-style: italic;
  font-size: 11px;
  color: var(--neutral-500, #98a2b3);
  background: rgba(247,201,72,0.10);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
  width: fit-content;
}


body.ds-home .ds-cases {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}
body.ds-home .ds-cases .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
body.ds-home .ds-case {
  position: relative;
  padding: 28px 26px 24px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
body.ds-home .ds-case:hover {
  border-color: rgba(31,78,140,0.25);
  box-shadow: 0 12px 30px rgba(31,78,140,0.10);
}
body.ds-home .ds-case__sector {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
body.ds-home .ds-case__year {
  position: absolute;
  top: 28px;
  right: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--neutral-500, #98a2b3);
  letter-spacing: 0.04em;
}
body.ds-home .ds-case h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 4px 0 12px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  line-height: 1.3;
}
body.ds-home .ds-case p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 16px;
}
body.ds-home .ds-case__metrics {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--neutral-200);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13px;
  color: var(--text-secondary);
}
body.ds-home .ds-case__metrics strong {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
body.ds-home .ds-cases__footnote {
  text-align: center;
  margin: 36px auto 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 680px;
}
body.ds-home .ds-cases__footnote a {
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1080px) {
  body.ds-home .ds-cases__grid { grid-template-columns: 1fr; gap: 16px; }
}


body.ds-home .ds-services .ds-service-card {
  position: relative;
  isolation: isolate;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
body.ds-home .ds-services .ds-service-card:hover {
  border-color: rgba(31,78,140,0.35);
  box-shadow:
    0 12px 30px rgba(31,78,140,0.10),
    0 0 0 1px rgba(31,78,140,0.10);
}


body.ds-home .ds-hero .ds-hero-photo { overflow: hidden; }
body.ds-home .ds-hero .ds-hero-photo img { will-change: transform; }


.has-badge h3 { display: inline-flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.pill-new {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  background: var(--green-050);
  color: var(--green-700);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}


body.ds-home .ds-product-card__visual {
  aspect-ratio: 4 / 3;
  padding: 16px;
}
body.ds-home .ds-product-card__visual img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

body.ds-home .ds-products--phones .ds-product-card__visual {
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
}
body.ds-home .ds-products--phones .ds-product-card__visual img {
  height: 100%;
  width: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: contain;
  display: block;
}

body.ds-home .ds-products--phones .ds-product-card__visual img[src*="samsung-galaxy-a16"] { transform: scale(1.0); }
body.ds-home .ds-products--phones .ds-product-card__visual img[src*="samsung-galaxy-a26"] { transform: scale(1.55); }
body.ds-home .ds-products--phones .ds-product-card__visual img[src*="samsung-galaxy-a36"] { transform: scale(1.55); }
body.ds-home .ds-products--phones .ds-product-card__visual img[src*="samsung-galaxy-a56"] { transform: scale(1.55); }


.ds-pro-intro {
  padding: clamp(56px, 8vw, 96px) 0;
  background: linear-gradient(180deg, #fafbfd 0%, #fff 100%);
}
.ds-pro-intro .wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.ds-pro-intro__head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}
.ds-pro-intro__head h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.875rem, 1.4rem + 2vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 8px 0 14px;
}
.ds-pro-intro__head .ds-lead {
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}
.ds-pro-intro__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 8px;
}
.ds-pro-intro__card {
  background: #fff;
  border: 1px solid rgba(22, 58, 105, 0.08);
  border-radius: 18px;
  padding: 22px 22px 24px;
  box-shadow: 0 2px 12px rgba(14, 30, 58, 0.05);
  transition: box-shadow 220ms ease, transform 220ms ease, border-color 220ms ease;
}
.ds-pro-intro__card:hover {
  box-shadow: 0 12px 28px rgba(14, 30, 58, 0.1);
  transform: translateY(-3px);
  border-color: rgba(31, 78, 140, 0.18);
}
.ds-pro-intro__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eaf3ff 0%, #d5e7ff 100%);
  color: var(--blue-700, #163A69);
  margin-bottom: 14px;
}
.ds-pro-intro__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.ds-pro-intro__card p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
@media (max-width: 1024px) {
  .ds-pro-intro__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .ds-pro-intro { padding: 48px 0; }
  .ds-pro-intro .wrap { padding: 0 16px; }
  .ds-pro-intro__grid { grid-template-columns: 1fr; gap: 12px; }
  .ds-pro-intro__card { padding: 18px 18px 20px; }
}


body.ds-home .ds-chorus,
.ds-chorus {
  padding: 80px 0;
  background: linear-gradient(180deg, #eef4fc 0%, #fff 100%);
}
.ds-chorus .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
.ds-chorus__header {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.ds-chorus__header h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  line-height: 1.15;
  margin: 8px 0 14px;
  letter-spacing: -0.02em;
}
.ds-chorus__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  margin: 0 auto 40px;
}
.ds-chorus__logo {
  margin: 0;
  text-align: center;
  max-width: 200px;
}
.ds-chorus__logo img {
  width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
  margin: 0 auto 6px;
}
.ds-chorus__logo figcaption {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}
.ds-chorus__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto 28px;
  max-width: 1100px;
}
.ds-chorus__card {
  background: #fff;
  border: 1px solid rgba(22, 58, 105, 0.1);
  border-radius: 16px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(14, 30, 58, 0.05);
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.ds-chorus__card:hover {
  box-shadow: 0 8px 24px rgba(14, 30, 58, 0.1);
  transform: translateY(-2px);
}
.ds-chorus__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-050, #eaf3ff);
  color: var(--blue-700, #163A69);
  margin-bottom: 12px;
}
.ds-chorus__card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-primary);
}
.ds-chorus__card p {
  font-size: 0.925rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}
.ds-chorus__footnote {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .ds-chorus { padding: 56px 0; }
  .ds-chorus .wrap { padding: 0 16px; }
  .ds-chorus__grid { grid-template-columns: 1fr; gap: 12px; }
  .ds-chorus__logos { gap: 24px; }
  .ds-chorus__logo { max-width: 160px; }
  .ds-chorus__logo img { max-height: 64px; }
}


body.ds-home .ds-zen {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}
body.ds-home .ds-zen .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-zen__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
  align-items: stretch;
}
body.ds-home .ds-zen-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 26px 22px 24px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-zen-card:hover {
  border-color: rgba(31,78,140,0.30);
  box-shadow: 0 14px 32px rgba(31,78,140,0.10);
}
body.ds-home .ds-zen-card.featured {
  border-color: var(--blue-500);
  box-shadow: 0 8px 24px rgba(31,78,140,0.12);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}
body.ds-home .ds-zen-card.sap {
  border-color: rgba(122,192,67,0.40);
}
body.ds-home .ds-zen-card.sap:hover {
  border-color: var(--green-700, #5e9e2f);
  box-shadow: 0 14px 32px rgba(122,192,67,0.18);
}
body.ds-home .ds-zen-card__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(31,78,140,0.05) 0%, transparent 70%);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
body.ds-home .ds-zen-card.sap .ds-zen-card__logo {
  background: radial-gradient(circle at 50% 35%, rgba(122,192,67,0.08) 0%, transparent 70%);
}
body.ds-home .ds-zen-card:hover .ds-zen-card__logo {
  transform: scale(1.06) rotate(-2deg);
}
body.ds-home .ds-zen-card__logo img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  display: block;
}
body.ds-home .ds-zen-card__badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
body.ds-home .ds-zen-card__badge.sap {
  background: linear-gradient(135deg, var(--green-700, #5e9e2f) 0%, var(--green-500, #7AC043) 100%);
}
body.ds-home .ds-zen-card__head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--neutral-200);
}
body.ds-home .ds-zen-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
}
body.ds-home .ds-zen-card.sap .ds-zen-card__tag {
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.14);
}
body.ds-home .ds-zen-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
body.ds-home .ds-zen-card__sub {
  margin: 0;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.45;
}
body.ds-home .ds-zen-card__price {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 18px;
}
body.ds-home .ds-zen-card__amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--blue-500);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
body.ds-home .ds-zen-card.sap .ds-zen-card__amount { color: var(--green-700, #5e9e2f); }
body.ds-home .ds-zen-card__unit {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-left: 2px;
}
body.ds-home .ds-zen-card__net {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-style: italic;
}
body.ds-home .ds-zen-card__net strong {
  color: var(--green-700, #5e9e2f);
  font-style: normal;
  font-weight: 700;
}
body.ds-home .ds-zen-card__features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  flex-grow: 1;
}
body.ds-home .ds-zen-card__features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-primary);
}
body.ds-home .ds-zen-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background: rgba(31,78,140,0.10);
  border-radius: 50%;
}
body.ds-home .ds-zen-card__features li::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--blue-500);
  border-bottom: 1.5px solid var(--blue-500);
  transform: rotate(-45deg);
}
body.ds-home .ds-zen-card.sap .ds-zen-card__features li::before { background: rgba(122,192,67,0.16); }
body.ds-home .ds-zen-card.sap .ds-zen-card__features li::after {
  border-left-color: var(--green-700, #5e9e2f);
  border-bottom-color: var(--green-700, #5e9e2f);
}
body.ds-home .ds-zen-card__notice {
  margin: auto 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--neutral-200);
  font-size: 11.5px;
  line-height: 1.5;
  color: var(--neutral-500, #98a2b3);
  font-style: italic;
}
body.ds-home .ds-zen__footnote {
  text-align: center;
  margin: 36px auto 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 780px;
}
body.ds-home .ds-zen__footnote a {
  color: var(--blue-500);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 1280px) {
  body.ds-home .ds-zen__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  body.ds-home .ds-zen__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 540px) {
  body.ds-home .ds-zen__grid { grid-template-columns: 1fr; }
}
body.ds-home .ds-zen__grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 720px) {
  body.ds-home .ds-zen__grid--two { grid-template-columns: 1fr; }
}


body.ds-home .ds-story {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
body.ds-home .ds-story .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-story__accent {
  background: linear-gradient(135deg, var(--blue-500) 0%, #4d82d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.ds-home .ds-story__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 48px;
}
body.ds-home .ds-story figure {
  margin: 0;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  box-shadow: 0 4px 18px rgba(31,78,140,0.06);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
body.ds-home .ds-story figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31,78,140,0.12);
}
body.ds-home .ds-story figure picture { display: block; line-height: 0; }
body.ds-home .ds-story figure img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: filter 0.5s ease;
}
body.ds-home .ds-story__then img { filter: saturate(0.7) sepia(0.12); }
body.ds-home .ds-story figure:hover img { filter: saturate(1); }
body.ds-home .ds-story figcaption { padding: 22px 22px 24px; }
body.ds-home .ds-story__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
body.ds-home .ds-story figcaption strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text-primary);
}
body.ds-home .ds-story figcaption p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
body.ds-home .ds-story__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  opacity: 0.5;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  body.ds-home .ds-story__compare { grid-template-columns: 1fr; gap: 20px; }
  body.ds-home .ds-story__arrow { transform: rotate(90deg); padding: 8px 0; }
  body.ds-home .ds-story figure img { height: 220px; }
}


body.ds-home .ds-team {
  padding: 96px 0;
  background: #fff;
}
body.ds-home .ds-team .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-team__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
body.ds-home .ds-team__card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: linear-gradient(135deg, #fbfbfd 0%, #f4f6fb 100%);
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
body.ds-home .ds-team__card:hover {
  border-color: rgba(31,78,140,0.25);
  box-shadow: 0 12px 30px rgba(31,78,140,0.10);
}
body.ds-home .ds-team__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(31,78,140,0.08) 0%, transparent 70%);
  position: relative;
  flex-shrink: 0;
}
body.ds-home .ds-team__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(31,78,140,0.15);
  pointer-events: none;
}
body.ds-home .ds-team__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.ds-home .ds-team__info { min-width: 0; }
body.ds-home .ds-team__role {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.12);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
body.ds-home .ds-team__info h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
body.ds-home .ds-team__specialty {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-primary);
}
body.ds-home .ds-team__specialty strong { color: var(--blue-500); }
body.ds-home .ds-team__info p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 6px;
}
body.ds-home .ds-team__info p em {
  font-style: italic;
  font-size: 12.5px;
  color: var(--neutral-500, #999);
  background: rgba(247,201,72,0.12);
  padding: 2px 6px;
  border-radius: 4px;
}
body.ds-home .ds-team__footnote {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
  font-style: italic;
}
@media (max-width: 900px) {
  body.ds-home .ds-team__grid { grid-template-columns: 1fr; gap: 20px; }
  body.ds-home .ds-team__card { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  body.ds-home .ds-team__photo { width: 180px; height: 180px; margin: 0 auto; }
}


body.ds-home .ds-products {
  padding: 96px 0;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 100%);
}
body.ds-home .ds-products .wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
body.ds-home .ds-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
body.ds-home .ds-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
body.ds-home .ds-product-card:hover {
  border-color: rgba(31,78,140,0.3);
  box-shadow: 0 12px 30px rgba(31,78,140,0.10);
}
body.ds-home .ds-product-card__img {
  background: linear-gradient(135deg, #f4f6fb 0%, #e9eef7 100%);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  padding: 20px;
}
body.ds-home .ds-product-card__img svg { width: 100%; height: 100%; max-width: 200px; }
body.ds-home .ds-product-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
body.ds-home .ds-product-card__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
  align-self: flex-start;
}
body.ds-home .ds-product-card__tag.green-tag {
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.14);
}
body.ds-home .ds-product-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
body.ds-home .ds-product-card__body p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 16px;
  flex-grow: 1;
}
body.ds-home .ds-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--neutral-200);
  padding-top: 14px;
  font-size: 13.5px;
  gap: 8px;
}
body.ds-home .ds-product-card__price { color: var(--text-secondary); }
body.ds-home .ds-product-card__price strong {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}
body.ds-home .ds-product-card__cta {
  color: var(--green-700, #5e9e2f);
  font-weight: 600;
  white-space: nowrap;
}
body.ds-home .ds-products__footnote {
  text-align: center;
  margin: 36px auto 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}
body.ds-home .ds-products__footnote a { color: var(--blue-500); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 1080px) {
  body.ds-home .ds-products__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  body.ds-home .ds-products__grid { grid-template-columns: 1fr; gap: 16px; }
}




html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px; 
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}


:where(a, button, [role="button"], input, select, textarea, summary, details, [tabindex]):focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
  box-shadow: 0 0 0 5px rgba(31, 78, 140, 0.15);
}


::selection {
  background: rgba(31, 78, 140, 0.18);
  color: var(--text-primary);
}


.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 9999;
  background: var(--blue-500);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 16px;
  box-shadow: 0 8px 20px rgba(31, 78, 140, 0.3);
}


* {
  scrollbar-width: thin;
  scrollbar-color: rgba(31, 78, 140, 0.3) transparent;
}
*::-webkit-scrollbar { width: 8px; height: 8px; }
*::-webkit-scrollbar-track { background: transparent; }
*::-webkit-scrollbar-thumb {
  background: rgba(31, 78, 140, 0.3);
  border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover { background: rgba(31, 78, 140, 0.5); }


a[target="_blank"]:not(.ds-btn-primary):not(.ds-btn-secondary):not(.ds-btn-glass):not(.ds-btn-outline-light)::after {
  content: '↗';
  display: inline-block;
  margin-left: 3px;
  font-size: 0.85em;
  opacity: 0.6;
  vertical-align: 0.05em;
}


:where(.ds-service-card, .ds-product-card, .ds-zen-card, .ds-team__card, .ds-portrait__card, .ds-modality, .ds-advantage, .ds-tier, .ds-case, .ds-testimonial) {
  transition-duration: 0.35s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}


:where(body.ds-home > main > section + section) {
  
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
img:not([src]):not([srcset]) { visibility: hidden; }


@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  body { font-size: 11pt; line-height: 1.4; }
  nav.main, .topstrip, .mobile-cta, .ds-footer-cta, footer.site, .ds-faq, .ds-testimonials, .ds-partners {
    display: none !important;
  }
  a[href]::after { content: ' (' attr(href) ')'; font-size: 0.85em; }
  h1, h2, h3 { page-break-after: avoid; }
  img { max-width: 100% !important; page-break-inside: avoid; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


.ds-eyebrow + h1,
.ds-eyebrow + h2,
.ds-eyebrow + h3 {
  margin-top: 8px;
}


.ds-btn-primary, .ds-btn-secondary, .ds-btn-glass, .ds-btn-outline-light, .btn.primary, .btn.secondary, nav.main .cta {
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.ds-btn-primary:hover, .btn.primary:hover, nav.main .cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(94, 158, 47, 0.35);
}
.ds-btn-secondary:hover, .btn.secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 78, 140, 0.18);
}


h1, h2, h3 {
  text-wrap: balance;
}


svg { max-width: 100%; }


:root {
  --section-py-lg: clamp(54px, 3.75rem + 3vw, 84px);
  --section-py-md: clamp(42px, 2.625rem + 2.25vw, 66px);
  --section-py-sm: clamp(30px, 1.875rem + 1.5vw, 48px);
}





body.ds-home .ds-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
body.ds-home .ds-hero-badge .ds-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 0 rgba(122,192,67,0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122,192,67,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(122,192,67,0); }
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-hero-badge .ds-dot { animation: none; }
}


body.ds-home .ds-hero-content h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ffffff 0%, var(--green-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


body.ds-home .ds-hero .ds-hero-photo { position: relative; }


@media (max-width: 480px) {
  body.ds-home .ds-kpi-ribbon { padding: 36px 0 40px; }
  body.ds-home .ds-kpi-ribbon__item dt { font-size: clamp(2rem, 1.4rem + 2.5vw, 3rem); }
}


body.ds-home .ds-story__then img {
  filter: saturate(0.7) sepia(0.18) contrast(0.95);
}
body.ds-home .ds-story__then:hover img {
  filter: saturate(1) sepia(0) contrast(1);
}


body.ds-home .ds-team__card .ds-team__photo {
  position: relative;
  overflow: hidden;
}
body.ds-home .ds-team__card .ds-team__photo img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ds-home .ds-team__card:hover .ds-team__photo img {
  transform: scale(1.04);
}


body.ds-home .ds-services .ds-service-card .ds-icon {
  background: rgba(31, 78, 140, 0.06);
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-services .ds-service-card:hover .ds-icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
body.ds-home .ds-services .ds-service-card:hover .ds-service-tag {
  background: var(--green-700);
  color: #fff;
}


body.ds-home .ds-vision-pillars {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
body.ds-home .ds-pillar {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 18px 22px 18px 18px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--neutral-200);
  border-radius: 14px;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-pillar:hover {
  border-color: var(--blue-500);
  background: #fff;
  transform: translateX(4px);
}
body.ds-home .ds-pillar-num {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-500) 0%, #4d82d6 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(31, 78, 140, 0.20);
}
body.ds-home .ds-pillar-content h3 {
  margin: 4px 0 6px;
  font-size: 17px;
  letter-spacing: -0.01em;
}
body.ds-home .ds-pillar-content p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
}


body.ds-home .ds-portrait__photo img {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
body.ds-home .ds-portrait__card:hover .ds-portrait__photo img {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(31, 78, 140, 0.22);
}


body.ds-home .ds-values li {
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-values li:hover {
  transform: translateX(4px);
}
body.ds-home .ds-values li::before {
  transition: background 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-values li:hover::before {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}





body.ds-home .ds-reassurance {
  background: linear-gradient(180deg, #fafbfc 0%, #f4f6fb 100%);
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  padding: 28px 0;
}
body.ds-home .ds-reassurance .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 36px;
}
body.ds-home .ds-reassurance-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
body.ds-home .ds-reassurance-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.12);
  border-radius: 50%;
  padding: 3px;
  box-sizing: border-box;
}


body.ds-home > main > section .ds-service-card[style*="margin:0"] blockquote {
  margin: 0 0 16px !important;
  font-size: 14.5px;
  line-height: 1.6;
  font-style: italic;
  color: var(--text-primary);
}


body.ds-home .ds-hero-slim.dark .ds-kpi {
  margin-top: 36px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}
body.ds-home .ds-hero-slim.dark .ds-kpi-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: block;
  margin: 0 0 4px;
}
body.ds-home .ds-hero-slim.dark .ds-kpi-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}


body.ds-home .ds-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 18px;
  padding: 28px 26px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-tier:hover {
  border-color: rgba(31, 78, 140, 0.30);
  box-shadow: 0 14px 32px rgba(31, 78, 140, 0.10);
  transform: translateY(-3px);
}
body.ds-home .ds-tier.featured {
  border-color: var(--blue-500);
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
  transform: scale(1.02);
  box-shadow: 0 14px 32px rgba(31, 78, 140, 0.14);
}
body.ds-home .ds-tier.featured::before {
  content: 'Recommandé';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-500);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
body.ds-home .ds-tier-sub {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-500);
  background: rgba(31, 78, 140, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
body.ds-home .ds-tier h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin: 4px 0 12px;
  letter-spacing: -0.01em;
}
body.ds-home .ds-tier-desc {
  margin: 0 0 16px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
body.ds-home .ds-tier ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 0 0;
  border-top: 1px solid var(--neutral-200);
  flex-grow: 1;
}
body.ds-home .ds-tier ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}
body.ds-home .ds-tier ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: rgba(122, 192, 67, 0.18);
  border-radius: 50%;
}
body.ds-home .ds-tier ul li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 4px;
  border-left: 1.5px solid var(--green-700, #5e9e2f);
  border-bottom: 1.5px solid var(--green-700, #5e9e2f);
  transform: rotate(-45deg);
}


body.ds-home .ds-section-dark .ds-timeline-item {
  position: relative;
  padding: 20px 24px 20px 64px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--green-500);
  border-radius: 0 12px 12px 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-section-dark .ds-timeline-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(4px);
}
body.ds-home .ds-section-dark .ds-timeline-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 24px;
  width: 18px;
  height: 18px;
  background: var(--green-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(122, 192, 67, 0.25);
}


body.ds-home .ds-tampon-watermark {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 140px;
  height: 140px;
  opacity: 0.18;
  transform: rotate(-12deg);
  pointer-events: none;
}


body.ds-home .ds-services .ds-service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  padding: 26px 24px;
  text-decoration: none;
  color: inherit;
}


body.ds-home .ds-section-muted .ds-timeline-item {
  position: relative;
  padding: 20px 24px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-left: 4px solid var(--blue-500);
  border-radius: 0 12px 12px 0;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-section-muted .ds-timeline-item:hover {
  border-left-color: var(--green-500);
  box-shadow: 0 8px 22px rgba(31, 78, 140, 0.10);
  transform: translateX(4px);
}
body.ds-home .ds-section-muted .ds-timeline-item h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--text-primary);
}
body.ds-home .ds-section-muted .ds-timeline-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}





body.ds-home section.ds-reassurance[style*="rgba(247,201,72"] {
  background: linear-gradient(180deg, rgba(247,201,72,0.06) 0%, rgba(247,201,72,0.12) 100%) !important;
  border-color: rgba(184,121,31,0.18) !important;
}


body.ds-home .ds-advantage__icon {
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}
body.ds-home .ds-advantage:hover .ds-advantage__icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}
body.ds-home .ds-advantage:hover .ds-advantage__icon.green {
  background: var(--green-700, #5e9e2f);
}


body.ds-home .ds-modality {
  position: relative;
  overflow: hidden;
}
body.ds-home .ds-modality::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 100% 0%, rgba(31,78,140,0.06) 0%, transparent 70%);
  pointer-events: none;
}


body.ds-home .ds-quick-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 18px;
}
body.ds-home .ds-quick-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 12px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-quick-card:hover {
  border-color: rgba(31, 78, 140, 0.30);
  box-shadow: 0 12px 26px rgba(31, 78, 140, 0.08);
  transform: translateY(-2px);
}
body.ds-home .ds-quick-card .ds-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-500);
  border-radius: 11px;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-quick-card .ds-icon svg {
  width: 22px;
  height: 22px;
}
body.ds-home .ds-quick-card:hover .ds-icon {
  background: var(--blue-500);
  color: #fff;
  transform: scale(1.05) rotate(-3deg);
}
body.ds-home .ds-quick-card h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  margin: 0 0 2px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
body.ds-home .ds-quick-card p {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--text-secondary);
}


body.ds-home section[style*="padding:56px 32px"][style*="--neutral-0"] .wrap {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 20px;
  padding: 40px clamp(20px, 4vw, 56px);
  box-shadow: 0 8px 28px rgba(31, 78, 140, 0.06);
}


body.ds-home .ds-info-block {
  padding: var(--section-py-md, 80px) 0;
}
body.ds-home .ds-info-block .wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
}
body.ds-home .ds-info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0 0 18px;
}
body.ds-home .ds-info-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.2rem);
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  text-wrap: balance;
}
body.ds-home .ds-info-block h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  margin: 28px 0 8px;
  color: var(--blue-500);
}


nav.main {
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
}
nav.main.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}


.topstrip {
  background: var(--blue-700);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12.5px;
  padding: 6px 0;
  font-weight: 500;
}
.topstrip .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.topstrip a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.topstrip a:hover { text-decoration: underline; text-underline-offset: 2px; }
.topstrip .ds-topstrip-group {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.topstrip .ds-star { color: var(--retail-yellow-400); }
@media (max-width: 720px) {
  .topstrip { font-size: 12px; padding: 8px 0; }
  .topstrip .wrap { justify-content: center; text-align: center; }
}


footer.site {
  background: var(--blue-700);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 24px;
  margin-top: 64px;
}
footer.site .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
footer.site .cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  margin-bottom: 40px;
}
footer.site h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
footer.site ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site ul li {
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.6;
}
footer.site a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.site a:hover { color: var(--green-500); }
footer.site .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 720px) {
  footer.site { padding: 48px 0 24px; }
  footer.site .cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  footer.site .bottom { justify-content: center; text-align: center; }
}
@media (max-width: 480px) {
  footer.site .cols { grid-template-columns: 1fr; }
}


.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--neutral-200);
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
  gap: 10px;
}
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
}







body.ds-home .ds-story {
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(31,78,140,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(122,192,67,0.04) 0%, transparent 60%),
    linear-gradient(180deg, #f4f6fb 0%, #fbfbfd 100%);
  position: relative;
}
body.ds-home .ds-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--neutral-200) 20%, var(--neutral-200) 80%, transparent 100%);
}


body.ds-home .ds-story__compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: stretch;
  margin-top: 56px;
}
body.ds-home .ds-story figure img {
  height: 360px;
  object-fit: cover;
}
@media (max-width: 900px) {
  body.ds-home .ds-story figure img { height: 260px; }
}


body.ds-home .ds-team {
  background:
    radial-gradient(ellipse 60% 80% at 85% 30%, rgba(122,192,67,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--blue-700, #163A69) 0%, var(--blue-500, #1F4E8C) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
body.ds-home .ds-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}
body.ds-home .ds-team .ds-section-header h2,
body.ds-home .ds-team .ds-section-header h2 .ds-story__accent {
  color: #fff;
  background: none;
  -webkit-text-fill-color: currentColor;
}
body.ds-home .ds-team .ds-section-header h2 .ds-story__accent {
  background: linear-gradient(135deg, var(--green-500) 0%, #a3d76e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.ds-home .ds-team .ds-eyebrow {
  color: rgba(255,255,255,0.65);
}
body.ds-home .ds-team .ds-lead {
  color: rgba(255,255,255,0.82);
}
body.ds-home .ds-team__card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  z-index: 1;
}
body.ds-home .ds-team__card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.25);
}
body.ds-home .ds-team__info h3 { color: #fff; }
body.ds-home .ds-team__specialty { color: rgba(255,255,255,0.92); }
body.ds-home .ds-team__specialty strong { color: var(--green-500); }
body.ds-home .ds-team__info p { color: rgba(255,255,255,0.72); }
body.ds-home .ds-team__role {
  background: rgba(122,192,67,0.18);
  color: var(--green-500);
}
body.ds-home .ds-team__photo::after {
  border-color: rgba(255,255,255,0.20);
}
body.ds-home .ds-team__footnote {
  color: rgba(255,255,255,0.78);
}
body.ds-home .ds-team__more {
  color: var(--green-500);
}


body.ds-home .ds-services {
  background: #fafbfc;
  position: relative;
}


body.ds-home .ds-vision {
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(31,78,140,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #f4f6fb 100%);
  position: relative;
}


body.ds-home .ds-section-header {
  position: relative;
  padding-top: 8px;
}
body.ds-home .ds-section-header .ds-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--blue-500);
}
body.ds-home .ds-section-header .ds-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--green-500);
}
body.ds-home .ds-team .ds-section-header .ds-eyebrow {
  color: rgba(255,255,255,0.78);
}
body.ds-home .ds-team .ds-section-header .ds-eyebrow::before {
  background: var(--green-500);
}


body.ds-home .ds-services,
body.ds-home .ds-products,
body.ds-home .ds-zen,
body.ds-home .ds-story,
body.ds-home .ds-team,
body.ds-home .ds-vision,
body.ds-home .ds-faq,
body.ds-home .ds-partners,
body.ds-home .ds-testimonials,
body.ds-home .ds-advantages,
body.ds-home .ds-cases {
  padding: var(--section-py-lg, 96px) 0;
}


body.ds-home .ds-vision .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 72px;
  align-items: center;
}
@media (max-width: 900px) {
  body.ds-home .ds-vision .wrap { grid-template-columns: 1fr; gap: 36px; }
}
body.ds-home .ds-vision-mascot picture,
body.ds-home .ds-vision-mascot img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow:
    0 18px 40px rgba(31, 78, 140, 0.18),
    0 4px 8px rgba(31, 78, 140, 0.06);
}


body.ds-home .ds-hero .ds-overlay {
  background:
    linear-gradient(135deg, rgba(22, 58, 105, 0.85) 0%, rgba(22, 58, 105, 0.55) 50%, rgba(31, 78, 140, 0.30) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(122, 192, 67, 0.18) 0%, transparent 60%);
}


body.ds-home .ds-service-card,
body.ds-home .ds-zen-card,
body.ds-home .ds-modality,
body.ds-home .ds-advantage,
body.ds-home .ds-product-card {
  padding: 30px 26px;
  box-shadow: 0 2px 6px rgba(31, 41, 55, 0.04);
}


body.ds-home .ds-services + .ds-products,
body.ds-home .ds-products + .ds-vision {
  border-top: 1px solid var(--neutral-200);
}


body.ds-home figure img,
body.ds-home picture img:not(.ds-zen-card__logo *):not(.ds-team__photo *):not(.ds-portrait__photo *) {
  border-radius: 14px;
}



nav.main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav.main .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  gap: 12px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
nav.main .logo { display: inline-flex; align-items: center; flex-shrink: 0; }
nav.main .logo img {
  height: 42px;
  width: auto;
  max-width: none;
  display: block;
  object-fit: contain;
  aspect-ratio: 180 / 46;
}


nav.main .nav-desktop {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
  justify-content: center;
}
nav.main .nav-desktop li a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  position: relative;
}
nav.main .nav-desktop li a:hover {
  background: rgba(122, 192, 67, 0.10);
  color: #5E9E2F;
}
nav.main .nav-desktop li a[aria-current="page"] {
  color: var(--text-primary);
  font-weight: 700;
  background: rgba(31, 78, 140, 0.06);
}
nav.main .nav-desktop li a[aria-current="page"]::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2.5px;
  background: linear-gradient(90deg, #7AC043 0%, #5E9E2F 100%);
  border-radius: 2px;
}

nav.main .ds-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-size: 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 700;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  padding: 8px 12px 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(31, 78, 140, 0.14);
  background: rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
nav.main .ds-phone::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5E9E2F;
  box-shadow: 0 0 0 0 rgba(94, 158, 47, 0.45);
  animation: ds-nav-phone-pulse 2.4s ease-in-out infinite;
}
@keyframes ds-nav-phone-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(94, 158, 47, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(94, 158, 47, 0); }
}
nav.main .ds-phone:hover {
  color: #5E9E2F;
  border-color: rgba(94, 158, 47, 0.4);
  background: rgba(122, 192, 67, 0.08);
  text-decoration: none;
}

nav.main .cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #7AC043 0%, #5E9E2F 100%);
  color: #fff;
  padding: 11px 20px;
  border-radius: 999px;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.005em;
  white-space: nowrap;
  box-shadow:
    0 8px 18px -4px rgba(94, 158, 47, 0.42),
    0 2px 6px -2px rgba(94, 158, 47, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
nav.main .cta::after {
  content: '→';
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease;
}
nav.main .cta:hover {
  background: linear-gradient(180deg, #5E9E2F 0%, #4d8226 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow:
    0 14px 28px -6px rgba(94, 158, 47, 0.55),
    0 4px 10px -2px rgba(94, 158, 47, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
nav.main .cta:hover::after {
  transform: translateX(3px);
}


nav.main .ds-nav-hours {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  white-space: nowrap;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid rgba(31, 78, 140, 0.14);
  background: rgba(255, 255, 255, 0.6);
  color: var(--text-primary);
}
nav.main .ds-nav-hours .ds-hours-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(14, 30, 58, 0.4);
}
nav.main .ds-nav-hours .ds-hours-badge__label {
  color: inherit;
}

nav.main .ds-nav-hours.is-open .ds-hours-badge__dot,
nav.main .ds-nav-hours[data-shop-hours-status].is-open .ds-hours-badge__dot {
  background: #5E9E2F;
  box-shadow: 0 0 0 0 rgba(94, 158, 47, 0.45);
  animation: ds-nav-phone-pulse 2.4s ease-in-out infinite;
}
nav.main .ds-nav-hours.is-open .ds-hours-badge__label {
  color: #3F6E1A;
}
nav.main .ds-nav-hours.is-closed .ds-hours-badge__dot {
  background: #C44545;
}
nav.main .ds-nav-hours.is-closed .ds-hours-badge__label {
  color: #8B2727;
}


nav.main .ds-nav-sos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(122, 192, 67, 0.14) 0%, rgba(94, 158, 47, 0.18) 100%);
  border: 1px solid rgba(94, 158, 47, 0.42);
  color: #3F6E1A;
  font-family: var(--font-heading, "Montserrat", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
nav.main .ds-nav-sos svg {
  flex-shrink: 0;
  transform: rotate(-12deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
nav.main .ds-nav-sos:hover {
  background: linear-gradient(180deg, #7AC043 0%, #5E9E2F 100%);
  border-color: #5E9E2F;
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}
nav.main .ds-nav-sos:hover svg {
  transform: rotate(0deg) scale(1.08);
}


nav.main .nav-burger { display: none; position: relative; }
nav.main .nav-burger summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(31, 78, 140, 0.06);
  color: var(--blue-500);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s ease;
}
nav.main .nav-burger summary::-webkit-details-marker { display: none; }
nav.main .nav-burger summary:hover { background: rgba(31, 78, 140, 0.10); }
nav.main .nav-burger__lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
nav.main .nav-burger__lines span {
  width: 18px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
nav.main .nav-burger[open] .nav-burger__lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
nav.main .nav-burger[open] .nav-burger__lines span:nth-child(2) { opacity: 0; }
nav.main .nav-burger[open] .nav-burger__lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
nav.main .nav-burger__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 12px;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  z-index: 200;
}
nav.main .nav-burger__menu li { margin-bottom: 2px; }
nav.main .nav-burger__menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: 10px;
  transition: background 0.2s ease;
}
nav.main .nav-burger__menu li a:hover { background: rgba(31, 78, 140, 0.06); color: var(--blue-500); }
nav.main .nav-burger__menu li a[aria-current="page"] {
  background: var(--blue-500);
  color: #fff;
}
nav.main .nav-burger__cta {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--neutral-200);
}
nav.main .nav-burger__cta .cta {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}


@media (max-width: 1100px) {
  nav.main .wrap { grid-template-columns: auto 1fr auto; gap: 12px; }
  nav.main .nav-desktop { display: none; }
  nav.main .ds-phone { display: none; }
  nav.main > .wrap > .cta { display: none; }
  nav.main .nav-burger { display: inline-block; justify-self: end; grid-column: 3; }
}
@media (max-width: 480px) {
  nav.main .nav-burger summary .nav-burger__label { display: none; }
}



footer.site {
  position: relative;
  background: var(--blue-700, #163A69);
  color: rgba(255, 255, 255, 0.85);
  padding: 80px 0 24px;
  margin-top: 0;
  overflow: hidden;
}
footer.site::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(122, 192, 67, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  pointer-events: none;
}
footer.site .footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  overflow: hidden;
}
footer.site .footer-wave svg {
  display: block;
  width: 100%;
  height: 80px;
  transform: scaleY(-1);
}
footer.site .footer-wave path { fill: #fbfbfd; }
footer.site .wrap {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  z-index: 1;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer.site .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  footer.site .cols { grid-template-columns: 1fr; }
}


footer.site .footer-brand .logo img {
  height: 88px;
  width: auto;
  display: block;
  margin-bottom: 18px;
}
footer.site .footer-tagline {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  max-width: 360px;
}
footer.site .footer-coords {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 10px;
}
footer.site .footer-coords li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
footer.site .footer-coords li svg {
  margin-top: 2px;
  color: var(--green-500);
  flex-shrink: 0;
}
footer.site .footer-coords li a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-weight: 500;
}
footer.site .footer-coords li a:hover {
  color: var(--green-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
footer.site .footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
footer.site .footer-rating:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
footer.site .footer-rating svg { color: #F7C948; }
footer.site .footer-rating strong {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
}


footer.site h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  position: relative;
}
footer.site h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 32px;
  height: 2px;
  background: var(--green-500);
  border-radius: 2px;
}
footer.site ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer.site ul li {
  margin-bottom: 8px;
  font-size: 13.5px;
  line-height: 1.55;
}
footer.site ul li a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  display: inline-block;
}
footer.site ul li a:hover {
  color: var(--green-500);
  padding-left: 4px;
}
footer.site .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.60);
  flex-wrap: wrap;
  gap: 12px;
}
footer.site .bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}
footer.site .bottom a:hover { color: #fff; text-decoration: underline; }
@media (max-width: 720px) {
  footer.site .bottom { justify-content: center; text-align: center; }
}



body.ds-home .ds-partners {
  padding: 80px 0 64px;
}
body.ds-home .ds-partners__marquee {
  position: relative;
  margin: 36px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
body.ds-home .ds-partners__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 50s linear infinite;
}
body.ds-home .ds-partners__marquee:hover .ds-partners__track {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-partners__track { animation: none; flex-wrap: wrap; justify-content: center; }
  body.ds-home .ds-partners__marquee { -webkit-mask-image: none; mask-image: none; }
}
body.ds-home .ds-partners__slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 140px;
  padding: 8px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
body.ds-home .ds-partners__slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(31, 78, 140, 0.10);
  border-color: rgba(31, 78, 140, 0.20);
}
body.ds-home .ds-partners__slide img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  
}
body.ds-home .ds-partners__disclaimer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 720px;
  margin: 0 auto;
}


body.ds-home .ds-partners__list {
  display: none;
}



.ds-service-card {
  display: flex !important;
  flex-direction: column;
}
.ds-service-card .ds-service-more {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue-500);
  font-size: 14px;
}
.ds-service-card .ds-arrow {
  transition: transform 0.2s ease;
}
.ds-service-card:hover .ds-arrow {
  transform: translateX(4px);
}


body.ds-home .ds-services .ds-service-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
}
@media (min-width: 1080px) {
  
  body.ds-home .ds-services .ds-service-grid:has(> :nth-child(4):last-child) {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 720px) {
  body.ds-home .ds-services .ds-service-grid {
    grid-template-columns: 1fr;
  }
}





@keyframes mascotteBreath {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.015); }
}
@keyframes mascotteWink {
  0%, 92%, 100% { transform: scale(1); filter: none; }
  94%, 96% { transform: scale(1.005); filter: brightness(1.06); }
}
.ds-hero-aside img[src*="mascotte"],
.ds-mascotte-frame img[src*="plv"],
.ds-mascotte-frame picture img {
  animation: mascotteBreath 5s ease-in-out infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .ds-hero-aside img[src*="mascotte"],
  .ds-mascotte-frame img[src*="plv"],
  .ds-mascotte-frame picture img {
    animation: none;
  }
}


.ds-hero-aside:hover img[src*="mascotte"],
.ds-mascotte-frame:hover picture img {
  animation-duration: 1.8s;
}


nav.main .nav-burger__menu {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
nav.main .nav-burger[open] .nav-burger__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


body.ds-home .ds-info-block .wrap > p:not(.ds-lead),
body.ds-home .ds-section-muted .wrap > p:not(.ds-lead) {
  max-width: 68ch;
}


.ds-service-card:hover,
body.ds-home .ds-zen-card:hover,
body.ds-home .ds-team__card:hover {
  box-shadow:
    0 14px 38px rgba(31, 78, 140, 0.10),
    0 4px 12px rgba(31, 78, 140, 0.06);
}





.ds-hero-photo img { height: 600px; }
.ds-hero-photo {
  min-height: 600px;
}
.ds-hero-content {
  padding: 64px 60px;  
  align-items: center;
}
@media (max-width: 1080px) {
  .ds-hero-photo img { height: 540px; }
  .ds-hero-photo { min-height: 540px; }
  .ds-hero-content { padding: 48px 40px; }
}
@media (max-width: 720px) {
  .ds-hero-photo img { height: auto; min-height: 480px; max-height: 600px; }
  .ds-hero-photo { min-height: 480px; }
  .ds-hero-content { padding: 32px 22px; align-items: flex-end; }
}


.ds-hero-particuliers {
  position: relative;
  background: linear-gradient(180deg, #fbfbfd 0%, #f4f6fb 100%);
  overflow: hidden;
}
.ds-hero-particuliers__bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ds-hero-particuliers__bg img,
.ds-hero-particuliers__bg video,
video.ds-hero-particuliers__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
video.ds-hero-particuliers__bg {
  position: absolute;
  inset: 0;
  background: #f4f6fb;
}
.ds-hero-particuliers__content {
  position: relative;
  z-index: 1;
  padding: 72px 0;
}
.ds-hero-particuliers__content .wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
.ds-hero-particuliers__textbox {
  max-width: 540px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 30px 30px;
  border-radius: 18px;
  border: 1px solid rgba(31, 78, 140, 0.08);
}
body.ds-home .ds-hero-particuliers__content .ds-breadcrumb {
  margin-bottom: 18px;
}
body.ds-home .ds-hero-particuliers__textbox h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 18px;
  color: var(--text-primary);
}
body.ds-home .ds-hero-particuliers__textbox .ds-hero-sub {
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0 0 24px;
}
body.ds-home .ds-hero-particuliers__textbox .ds-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 1080px) {
  .ds-hero-particuliers__bg img { object-position: 75% center; opacity: 0.9; }
  .ds-hero-particuliers__textbox { background: rgba(255, 255, 255, 0.78); }
}
@media (max-width: 720px) {
  .ds-hero-particuliers__content { padding: 40px 0 56px; }
  .ds-hero-particuliers__bg {
    position: relative;
    height: 220px;
  }
  .ds-hero-particuliers__bg img { object-position: 65% center; }
  .ds-hero-particuliers__content {
    background: linear-gradient(180deg, #fff 0%, #f4f6fb 100%);
  }
  .ds-hero-particuliers__textbox {
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 0 4px;
  }
}



:root {
  
  --bp-xs: 360px;
  --bp-sm: 480px;
  --bp-md: 720px;
  --bp-lg: 1080px;
  --bp-xl: 1320px;

  
  --section-py: clamp(36px, 3rem + 3vw, 84px);
  --section-py-sm: clamp(30px, 2.25rem + 2.25vw, 60px);
  --wrap-px: clamp(20px, 4vw, 32px);
  --wrap-max: 1240px;
  --card-px: clamp(20px, 2.5vw, 28px);
  --card-py: clamp(22px, 3vw, 30px);
  --grid-gap: clamp(14px, 2vw, 22px);

  
  --fs-h1-resp: clamp(1.9rem, 1.4rem + 2.4vw, 3.2rem);
  --fs-h2-resp: clamp(1.45rem, 1.15rem + 1.4vw, 2.2rem);
  --fs-h3-resp: clamp(1.05rem, 0.95rem + 0.4vw, 1.35rem);
  --fs-body-resp: clamp(15px, 0.9rem + 0.2vw, 16.5px);
  --fs-small-resp: clamp(13px, 0.8rem + 0.1vw, 14px);

  
  --tap-min: 44px;
}


html, body { overflow-x: hidden; max-width: 100vw; }
img, video, picture, svg { max-width: 100%; height: auto; }


body.ds-home > main > section > .wrap,
body.ds-home > main > section > div > .wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding-left: var(--wrap-px);
  padding-right: var(--wrap-px);
  box-sizing: border-box;
}


@media (max-width: 720px) {
  a, button, summary, [role="button"] {
    min-height: var(--tap-min);
  }
  
  p a, li a:not(.ds-btn-primary):not(.ds-btn-secondary):not(.ds-btn-glass):not(.ds-btn-outline-light):not(.cta) {
    min-height: 0;
  }
}



@media (max-width: 720px) {
  
  body.ds-home .ds-hero { padding: 16px 0 32px; }
  body.ds-home .ds-hero .wrap { padding: 0 var(--wrap-px); }
  body.ds-home .ds-hero-photo { border-radius: 16px; min-height: 0; }
  body.ds-home .ds-hero-photo img {
    height: auto;
    min-height: 60vh;
    max-height: 75vh;
    object-position: center;
  }
  body.ds-home .ds-hero-content {
    padding: 24px 22px 28px;
    align-items: flex-end;
  }
  body.ds-home .ds-hero h1 {
    font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
    line-height: 1.1;
    margin-bottom: 14px;
  }
  body.ds-home .ds-hero-lead {
    font-size: 14.5px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }
  body.ds-home .ds-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  body.ds-home .ds-hero-cta .ds-btn-primary,
  body.ds-home .ds-hero-cta .ds-btn-glass,
  body.ds-home .ds-hero-cta .ds-btn-secondary {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  
  body.ds-home .ds-kpi-ribbon { padding: 36px 0; }
  body.ds-home .ds-kpi-ribbon__grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  body.ds-home .ds-kpi-ribbon__item {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 18px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.10);
  }
  body.ds-home .ds-kpi-ribbon__item:last-child { border-bottom: none; }
  body.ds-home .ds-kpi-ribbon__item::after { display: none !important; }
  body.ds-home .ds-kpi-ribbon__item dt {
    font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem);
    margin: 0;
    min-width: 110px;
    text-align: right;
  }
  body.ds-home .ds-kpi-ribbon__item dd {
    text-align: left;
    font-size: 13px;
    line-height: 1.45;
  }

  
  body.ds-home .ds-quick-cards {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 24px;
  }
  body.ds-home .ds-quick-card {
    padding: 16px 18px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  body.ds-home .ds-quick-card .ds-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  body.ds-home .ds-quick-card h3 { font-size: 14.5px; margin-bottom: 2px; }
  body.ds-home .ds-quick-card p { font-size: 12.5px; }

  
  body.ds-home .ds-story { padding: var(--section-py) 0; }
  body.ds-home .ds-story__compare {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  body.ds-home .ds-story__arrow { transform: rotate(90deg); padding: 4px 0; }
  body.ds-home .ds-story figure img { height: 220px !important; }
  body.ds-home .ds-story figcaption { padding: 16px 18px 18px; }

  
  body.ds-home .ds-team { padding: var(--section-py) 0; }
  body.ds-home .ds-team__grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  body.ds-home .ds-team__card {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 22px 20px;
  }
  body.ds-home .ds-team__photo {
    width: 130px;
    height: 130px;
    margin: 0 auto;
  }

  
  body.ds-home .ds-services { padding: var(--section-py) 0; }
  body.ds-home .ds-services .ds-service-grid {
    grid-template-columns: 1fr !important;
  }
  body.ds-home .ds-service-card { padding: 22px 20px; }
  body.ds-home .ds-service-card h3 { font-size: 17px; }
  body.ds-home .ds-service-card p { font-size: 14px; }

  
  body.ds-home .ds-zen { padding: var(--section-py) 0; }
  body.ds-home .ds-zen__grid,
  body.ds-home .ds-zen__grid--two {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  body.ds-home .ds-zen-card { padding: 22px 20px; }
  body.ds-home .ds-zen-card__logo {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
  }
  body.ds-home .ds-zen-card__logo img { width: 80px; height: 80px; }
  body.ds-home .ds-zen-card h3 { font-size: 1.2rem; }
  body.ds-home .ds-zen-card__amount { font-size: 1.9rem; }

  
  body.ds-home .ds-vision { padding: var(--section-py) 0; }
  body.ds-home .ds-vision .wrap {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  body.ds-home .ds-pillar {
    padding: 14px 16px;
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }
  body.ds-home .ds-pillar-num {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 10px;
  }
  body.ds-home .ds-pillar-content h3 { font-size: 15px; }
  body.ds-home .ds-pillar-content p { font-size: 13.5px; }
  body.ds-home .ds-vision-mascot { order: 2; max-width: 100%; }

  
  body.ds-home .ds-partners { padding: 56px 0 40px; }
  body.ds-home .ds-partners__title {
    font-size: 1.2rem;
  }
  body.ds-home .ds-partners__track {
    animation-duration: 35s;
    gap: 32px;
  }
  body.ds-home .ds-partners__slide { width: 110px; height: 64px; }
  body.ds-home .ds-partners__slide img { max-height: 44px; }

  
  body.ds-home .ds-testimonials { padding: var(--section-py) 0; }
  body.ds-home .ds-testimonials__scroller {
    grid-auto-columns: 85% !important;
    padding: 6px 4px 20px;
  }
  body.ds-home .ds-testimonial { padding: 22px 20px; min-height: 200px; }

  

  
  body.ds-home .ds-faq { padding: var(--section-py) 0; }
  body.ds-home .ds-faq-item summary { padding: 16px 18px; font-size: 14.5px; }
  body.ds-home .ds-faq-answer { padding: 0 18px 16px; font-size: 13.5px; }

  
  body.ds-home .ds-footer-cta { padding: var(--section-py) 0; }
  body.ds-home .ds-footer-cta h2 { font-size: 1.6rem; }
  body.ds-home .ds-footer-cta .ds-cta-row {
    flex-direction: column;
    width: 100%;
  }
  body.ds-home .ds-footer-cta .ds-cta-row .ds-btn-primary,
  body.ds-home .ds-footer-cta .ds-cta-row .ds-btn-outline-light {
    width: 100%;
    box-sizing: border-box;
    text-align: center;
  }
}

@media (max-width: 480px) {
  body.ds-home .ds-hero h1 { font-size: 1.55rem; }
  body.ds-home .ds-kpi-ribbon__item dt { min-width: 90px; }
}



@media (max-width: 720px) {
  
  .ds-hero-particuliers { background: #f4f6fb; }
  video.ds-hero-particuliers__bg {
    display: none !important; 
  }
  .ds-hero-particuliers__bg {
    position: relative;
    height: 200px;
    margin-bottom: -10px;
  }
  .ds-hero-particuliers__bg img {
    object-position: 70% center;
    border-radius: 0;
  }
  .ds-hero-particuliers__content {
    padding: 24px 0 48px;
    background: linear-gradient(180deg, #fff 0%, #f4f6fb 100%);
  }
  .ds-hero-particuliers__textbox {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    padding: 0;
    max-width: 100%;
  }
  body.ds-home .ds-hero-particuliers__textbox h1 {
    font-size: 1.6rem;
    line-height: 1.15;
    margin: 12px 0 14px;
  }
  body.ds-home .ds-hero-particuliers__textbox .ds-hero-sub {
    font-size: 14.5px;
    margin-bottom: 20px;
  }
  body.ds-home .ds-hero-particuliers__textbox .ds-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  body.ds-home .ds-hero-particuliers__textbox .ds-btn-primary,
  body.ds-home .ds-hero-particuliers__textbox .ds-btn-secondary {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  
  body.ds-home .ds-info-block .wrap[style*="grid-template-columns:minmax"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body.ds-home .ds-mascotte-frame img { max-width: 280px !important; }

  
  

  
  body.ds-home .ds-steps { padding: var(--section-py) 0; }
  body.ds-home .ds-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  body.ds-home .ds-step { padding: 18px 18px; }

  
  body.ds-home .ds-section-muted .wrap[style*="grid-template-columns:minmax"] {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  
  body.ds-home .ds-hero-slim.dark { padding: 56px 0 40px; }
  body.ds-home .ds-hero-slim.dark h1 { font-size: 1.7rem; }
  body.ds-home .ds-hero-slim.dark .ds-hero-sub { font-size: 14px; }
  body.ds-home .ds-hero-slim.dark .ds-kpi {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    padding: 18px 16px;
  }
  body.ds-home .ds-hero-slim.dark .ds-kpi-num { font-size: 1.4rem; }
  body.ds-home .ds-hero-slim.dark .ds-kpi-label { font-size: 11px; }
  body.ds-home .ds-hero-slim.dark picture img { opacity: 0.10 !important; }

  
  body.ds-home .ds-tiers { padding: var(--section-py) 0; }
  body.ds-home .ds-tiers-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  body.ds-home .ds-tier { padding: 24px 22px; }
  body.ds-home .ds-tier.featured { transform: none; }

  
  body.ds-home .ds-services .ds-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  
  body.ds-home .ds-section-dark { padding: var(--section-py) 0; }
  body.ds-home .ds-section-dark .ds-timeline-item {
    padding: 16px 20px 16px 56px;
    margin-bottom: 12px;
  }

  
  body.ds-home .ds-hero-slim:not(.dark):not(.full) .wrap {
    grid-template-columns: 1fr !important;
    gap: 22px;
  }
  body.ds-home .ds-hero-slim .ds-hero-aside { order: -1; max-width: 100%; }
  body.ds-home .ds-hero-slim .ds-hero-aside img { max-height: 220px; object-position: center; }

  
  body.ds-home .ds-section-muted .wrap[style*="grid-template-columns:minmax(0,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  body.ds-home .ds-section-muted .ds-timeline-item {
    padding: 14px 18px;
    margin-bottom: 12px;
  }

  
  body.ds-home .ds-hero-sap { padding: 36px 0 0; }
  body.ds-home .ds-hero-sap .wrap {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 0 var(--wrap-px) 32px !important;
  }
  body.ds-home .ds-hero-sap__visual {
    order: -1;
    padding: 8px 16px;
  }
  body.ds-home .ds-hero-sap__digits {
    font-size: clamp(3.5rem, 2.5rem + 4vw, 5rem);
  }
  body.ds-home .ds-hero-sap__badge {
    width: 76px;
    margin-top: 12px;
  }
  body.ds-home .ds-hero-sap__legend {
    font-size: 13.5px;
    max-width: 280px;
  }
  body.ds-home .ds-hero-sap__content h1 {
    font-size: 1.5rem;
    line-height: 1.15;
    margin: 12px 0 14px;
  }
  body.ds-home .ds-hero-sap__content .ds-hero-sub { font-size: 14px; }
  body.ds-home .ds-hero-sap__cta {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }
  body.ds-home .ds-hero-sap__cta .ds-btn-primary,
  body.ds-home .ds-hero-sap__cta .ds-btn-secondary {
    text-align: center;
    width: 100%;
    box-sizing: border-box;
  }

  
  body.ds-home .ds-modalities { grid-template-columns: 1fr !important; gap: 14px; }

  
  body.ds-home .ds-advantages__grid { grid-template-columns: 1fr !important; gap: 14px; }
  body.ds-home .ds-advantage { padding: 22px 20px; }

  
  body.ds-home .ds-reassurance .wrap {
    padding: 0 var(--wrap-px) !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}



@media (max-width: 720px) {
  
  body.ds-home > main > section.ds-section-muted .ds-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  
  body.ds-home > main > section[style*="padding:56px 32px"] .wrap {
    padding: 24px 16px !important;
    border-radius: 14px;
  }
  
  body.ds-home > main > section.ds-info-block > .wrap > div[style*="display:inline-flex"] {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  body.ds-home > main > section.ds-info-block > .wrap > div[style*="display:inline-flex"] > a {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  
  body.ds-home main > section.ds-services .ds-service-grid[style*="grid-template-columns:repeat(auto-fit,minmax(280px,1fr))"] {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  
  body.ds-home dl { font-size: 14px; }
  
  body.ds-home .ds-static-map img { width: 100%; height: auto; }
  
  body.ds-home .ds-info-block .wrap[style*="display:grid"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  
  body.ds-home .ds-banner-enseigne {
    max-height: 100px !important;
  }

  
  body.ds-home .ds-info-block .wrap {
    padding: 0 var(--wrap-px) !important;
    max-width: 100% !important;
  }
  body.ds-home .ds-info-block h2 { font-size: 1.4rem; }
  body.ds-home .ds-info-block h3 { font-size: 1rem; margin-top: 22px; }
  body.ds-home .ds-info-block p { font-size: 14.5px; line-height: 1.6; }
}





nav.main .nav-burger-btn {
  display: none; 
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(31, 78, 140, 0.06);
  color: var(--blue-500);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.2s ease;
  min-height: 44px;
}
nav.main .nav-burger-btn:hover {
  background: rgba(31, 78, 140, 0.10);
}
nav.main .nav-burger-btn:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
}
nav.main .nav-burger-btn .nav-burger__lines {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
}
nav.main .nav-burger-btn .nav-burger__lines span {
  width: 18px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
nav.main .nav-burger-btn[aria-expanded="true"] .nav-burger__lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
nav.main .nav-burger-btn[aria-expanded="true"] .nav-burger__lines span:nth-child(2) { opacity: 0; }
nav.main .nav-burger-btn[aria-expanded="true"] .nav-burger__lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}


nav.main .nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 24px 22px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.nav-panel-open nav.main .nav-panel {
  transform: translateX(0);
}
nav.main .nav-panel[hidden] { display: flex; visibility: hidden; }
.nav-panel-open nav.main .nav-panel[hidden] { visibility: visible; }

nav.main .nav-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--neutral-200);
}
nav.main .nav-panel__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--blue-500);
}
nav.main .nav-panel__close {
  background: rgba(31, 78, 140, 0.08);
  border: none;
  border-radius: 10px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  cursor: pointer;
  transition: background 0.2s ease;
}
nav.main .nav-panel__close:hover { background: rgba(31, 78, 140, 0.14); }
nav.main .nav-panel__close:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 3px; }

nav.main .nav-panel__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
nav.main .nav-panel__list li a {
  display: block;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
  min-height: 44px;
  box-sizing: border-box;
}
nav.main .nav-panel__list li a:hover {
  background: rgba(31, 78, 140, 0.06);
  color: var(--blue-500);
}
nav.main .nav-panel__list li a[aria-current="page"] {
  background: var(--blue-500);
  color: #fff;
}

nav.main .nav-panel__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
}
nav.main .nav-panel__cta .ds-btn-primary,
nav.main .nav-panel__cta .ds-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
}
nav.main .nav-panel__address {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}


nav.main .nav-panel__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 26, 46, 0.55);
  border: none;
  cursor: pointer;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-panel-open nav.main .nav-panel__backdrop {
  opacity: 1;
  pointer-events: auto;
}


.nav-panel-open { overflow: hidden; }
.nav-panel-open body { overflow: hidden; height: 100vh; }


@media (max-width: 1100px) {
  nav.main .nav-desktop,
  nav.main .ds-phone,
  nav.main > .wrap > .cta { display: none !important; }
  nav.main .nav-burger-btn { display: inline-flex !important; }
  nav.main .wrap {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
}


nav.main .nav-burger { display: none !important; }


@media (max-width: 720px) {
  .topstrip {
    font-size: 11.5px;
    padding: 6px 0;
  }
  .topstrip .wrap {
    padding: 0 16px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
  }
  .topstrip .ds-topstrip-addr,
  .topstrip .ds-topstrip-hours,
  .topstrip .ds-topstrip-rating {
    display: none; 
  }
}


@media (max-width: 720px) {
  footer.site { padding: 48px 0 28px; margin-top: 0; }
  footer.site .cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  footer.site .footer-brand { grid-column: 1 / -1; }
  footer.site h4 { font-size: 12px; margin-bottom: 12px; }
  footer.site ul li { font-size: 13px; margin-bottom: 6px; }
  footer.site ul li a { display: inline-block; padding: 4px 0; min-height: 28px; }
  footer.site .bottom { font-size: 11.5px; flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
  footer.site .cols { grid-template-columns: 1fr; }
}


.mobile-cta {
  padding: 10px 14px !important;
  gap: 10px !important;
}
.mobile-cta .btn.primary,
.mobile-cta .btn.ghost-light {
  min-height: 48px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}



.ds-hero-photo { position: relative; }
.ds-hero-photo__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.ds-hero-photo__poster {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ds-hero-photo__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ds-hero-photo .ds-overlay { z-index: 2; }
.ds-hero-photo .ds-hero-content { z-index: 3; }


@media (max-width: 720px) {
  .ds-hero-photo__video { display: none !important; }
  .ds-hero-photo__poster { position: relative; }
  .ds-hero-photo__poster img {
    height: auto;
    min-height: 60vh;
    max-height: 75vh;
  }
}
@media (prefers-reduced-motion: reduce) {
  .ds-hero-photo__video { display: none !important; }
}



.ds-hero-content {
  justify-content: flex-end;
}
.ds-hero-content > div {
  text-align: right;
  margin-left: auto;
}
.ds-hero h1,
.ds-hero-lead {
  text-align: right;
}
.ds-hero-cta {
  justify-content: flex-end;
}

.ds-hero-photo .ds-overlay {
  background:
    linear-gradient(225deg, rgba(22, 58, 105, 0.88) 0%, rgba(22, 58, 105, 0.55) 45%, rgba(15, 26, 46, 0.18) 75%, rgba(15, 26, 46, 0.05) 100%),
    radial-gradient(ellipse at 75% 60%, rgba(122, 192, 67, 0.18) 0%, transparent 55%);
}


@media (max-width: 720px) {
  .ds-hero-content { justify-content: flex-start; }
  .ds-hero-content > div { text-align: left; margin-left: 0; }
  .ds-hero h1, .ds-hero-lead { text-align: left; }
  .ds-hero-cta { justify-content: flex-start; }
  .ds-hero-photo .ds-overlay {
    background:
      linear-gradient(180deg, rgba(15, 26, 46, 0.10) 0%, rgba(22, 58, 105, 0.55) 50%, rgba(22, 58, 105, 0.92) 100%);
  }
}



.ds-hero-content {
  justify-content: flex-start !important;
}
.ds-hero-content > div {
  text-align: left !important;
  margin-left: 0 !important;
}
.ds-hero h1,
.ds-hero-lead {
  text-align: left !important;
}
.ds-hero-cta {
  justify-content: flex-start !important;
}

.ds-hero-photo .ds-overlay {
  background:
    linear-gradient(135deg, rgba(22, 58, 105, 0.85) 0%, rgba(22, 58, 105, 0.55) 50%, rgba(31, 78, 140, 0.30) 100%),
    radial-gradient(ellipse at 30% 60%, rgba(122, 192, 67, 0.18) 0%, transparent 60%) !important;
}



body.ds-home .ds-hero-sap__digits--xxl {
  font-size: clamp(7rem, 4rem + 11vw, 14rem) !important;
  line-height: 0.85 !important;
  letter-spacing: -0.06em !important;
}
body.ds-home .ds-hero-sap__bignum {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
body.ds-home .ds-hero-sap__sap-mark {
  width: clamp(96px, 9vw, 132px);
  height: auto;
  display: block;
  margin-top: 16px;
  filter: drop-shadow(0 8px 18px rgba(31,78,140,0.20));
  border-radius: 14px;
}
body.ds-home .ds-hero-sap__legend {
  margin-top: 10px;
}
@media (max-width: 720px) {
  body.ds-home .ds-hero-sap__digits--xxl {
    font-size: clamp(5rem, 4rem + 6vw, 7rem) !important;
  }
  body.ds-home .ds-hero-sap__sap-mark {
    width: 86px;
    margin-top: 10px;
  }
}



body.ds-home .ds-hero-sap {
  position: relative;
  padding: clamp(48px, 4rem + 3vw, 88px) 0 clamp(48px, 4rem + 2vw, 80px);
  background:
    radial-gradient(ellipse 70% 60% at 85% 25%, rgba(31,78,140,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 80% 50% at 15% 80%, rgba(122,192,67,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #fbfbfd 0%, #f4f6fb 100%);
  overflow: hidden;
}
body.ds-home .ds-hero-sap__bg { display: none; } 
body.ds-home .ds-hero-sap .wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-px);
  position: relative;
  z-index: 1;
}
body.ds-home .ds-hero-sap__content { max-width: 620px; }
body.ds-home .ds-hero-sap__content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 1.8vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 14px 0 18px;
}
body.ds-home .ds-hero-sap__accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-500) 0%, #3a6bbf 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.ds-home .ds-hero-sap__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 24px;
}

body.ds-home .ds-hero-sap__trust {
  list-style: none;
  margin: 22px 0 8px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
body.ds-home .ds-hero-sap__trust li {
  display: inline-flex;
  flex-direction: column;
  background: rgba(31,78,140,0.06);
  border: 1px solid rgba(31,78,140,0.10);
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.3;
}
body.ds-home .ds-hero-sap__trust li strong {
  color: var(--blue-500);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}


body.ds-home .ds-hero-sap__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
body.ds-home .ds-hero-sap__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(31,78,140,0.12);
  border-radius: 28px;
  padding: 36px 32px 28px;
  text-align: center;
  box-shadow:
    0 24px 60px rgba(31,78,140,0.12),
    0 4px 12px rgba(31,78,140,0.06);
  isolation: isolate;
  overflow: hidden;
}
body.ds-home .ds-hero-sap__panel-glow {
  position: absolute;
  inset: -40%;
  z-index: -1;
  background: radial-gradient(circle at 50% 30%, rgba(31,78,140,0.10) 0%, transparent 55%);
  pointer-events: none;
}
body.ds-home .ds-hero-sap__panel-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: rgba(31,78,140,0.08);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
body.ds-home .ds-hero-sap__digits--xxl {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(6rem, 4rem + 8vw, 11rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.05em !important;
  background: linear-gradient(135deg, #1F4E8C 0%, #4d82d6 60%, #2d56a5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
  display: inline-flex;
  align-items: flex-start;
  text-shadow: 0 8px 26px rgba(31,78,140,0.10);
  margin: 0 0 6px;
}
body.ds-home .ds-hero-sap__pct {
  font-size: 0.55em;
  margin-left: 0.04em;
  margin-top: 0.22em;
  background: inherit;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
body.ds-home .ds-hero-sap__panel-sub {
  display: block;
  max-width: 320px;
  margin: 4px auto 22px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  font-weight: 500;
}
body.ds-home .ds-hero-sap__panel-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
  border-top: 1px dashed rgba(31,78,140,0.18);
}
body.ds-home .ds-hero-sap__panel-mark img {
  width: clamp(280px, 24vw, 360px);
  height: auto;
  display: block;
  border-radius: 14px;
  transform: scale(1.7);
  transform-origin: center;
  filter: drop-shadow(0 8px 18px rgba(31,78,140,0.22));
}


@media (max-width: 900px) {
  body.ds-home .ds-hero-sap .wrap {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }
  body.ds-home .ds-hero-sap__visual { order: -1; }
  body.ds-home .ds-hero-sap__panel {
    max-width: 360px;
    margin: 0 auto;
    padding: 28px 24px 22px;
  }
  body.ds-home .ds-hero-sap__digits--xxl {
    font-size: clamp(5rem, 4rem + 4vw, 7rem) !important;
  }
}
@media (max-width: 480px) {
  body.ds-home .ds-hero-sap__panel { max-width: 100%; padding: 24px 20px 20px; }
  body.ds-home .ds-hero-sap__digits--xxl {
    font-size: clamp(4.5rem, 3.5rem + 4vw, 6rem) !important;
  }
  body.ds-home .ds-hero-sap__panel-mark img { width: 240px; height: auto; }
  body.ds-home .ds-hero-sap__trust li { font-size: 11.5px; padding: 6px 11px; }
  body.ds-home .ds-hero-sap__trust li strong { font-size: 13.5px; }
}


@media (max-width: 720px) {
  body.ds-home .ds-info-block .wrap[style*="grid-template-columns:minmax(0,1.1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
}



body.ds-home .ds-excluded {
  padding: clamp(56px, 5rem + 3vw, 96px) 0;
  background:
    radial-gradient(ellipse 70% 60% at 90% 10%, rgba(214,69,69,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #fdf6f6 0%, #fbeded 100%);
  position: relative;
}
body.ds-home .ds-excluded__eyebrow {
  color: var(--feedback-error, #D64545) !important;
  background: rgba(214,69,69,0.10);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
}
body.ds-home .ds-excluded__eyebrow::before { display: none !important; }
body.ds-home .ds-excluded .ds-section-header h2 {
  color: var(--text-primary);
}
body.ds-home .ds-excluded__lead {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 12px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
body.ds-home .ds-excluded__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 40px;
}
body.ds-home .ds-excluded-card {
  position: relative;
  padding: 32px 28px 26px;
  background: #fff;
  border: 1.5px solid rgba(214,69,69,0.18);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
body.ds-home .ds-excluded-card:hover {
  border-color: var(--feedback-error, #D64545);
  box-shadow: 0 14px 32px rgba(214,69,69,0.18);
  transform: translateY(-3px);
}
body.ds-home .ds-excluded-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 18px,
    rgba(214,69,69,0.025) 18px,
    rgba(214,69,69,0.025) 20px
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.ds-home .ds-excluded-card:hover::before { opacity: 1; }
body.ds-home .ds-excluded-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(214,69,69,0.10);
  color: var(--feedback-error, #D64545);
  margin-bottom: 16px;
  transition: background 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-excluded-card:hover .ds-excluded-card__icon {
  background: var(--feedback-error, #D64545);
  color: #fff;
  transform: scale(1.06) rotate(-4deg);
}
body.ds-home .ds-excluded-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 0 0 10px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
body.ds-home .ds-excluded-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
body.ds-home .ds-excluded-card p a {
  color: var(--feedback-error, #D64545);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.ds-home .ds-excluded-stamp {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border: 3px solid var(--feedback-error, #D64545);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--feedback-error, #D64545);
  text-align: center;
  line-height: 1.05;
  transform: rotate(-12deg);
  background: rgba(255,255,255,0.85);
  opacity: 0.78;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  user-select: none;
  pointer-events: none;
}
body.ds-home .ds-excluded-stamp::before {
  content: '';
  position: absolute;
  inset: 4px;
  border: 1px dashed rgba(214,69,69,0.4);
  border-radius: 50%;
}
body.ds-home .ds-excluded-card:hover .ds-excluded-stamp {
  transform: rotate(-6deg) scale(1.08);
  opacity: 1;
}
@media (max-width: 900px) {
  body.ds-home .ds-excluded__grid { grid-template-columns: 1fr; gap: 14px; }
  body.ds-home .ds-excluded-card { padding: 26px 22px 22px; }
  body.ds-home .ds-excluded-stamp { width: 64px; height: 64px; font-size: 10px; top: 14px; right: 14px; }
}


body.ds-home .ds-steps-grid--photo {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 40px;
}
body.ds-home .ds-steps-grid--photo::before { display: none !important; }
body.ds-home .ds-step--photo {
  position: relative;
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-radius: 16px;
  overflow: hidden;
  padding: 0;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}
body.ds-home .ds-step--photo:hover {
  border-color: rgba(31, 78, 140, 0.25);
  box-shadow: 0 14px 32px rgba(31, 78, 140, 0.10);
  transform: translateY(-3px);
}
body.ds-home .ds-step__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f4f6fb;
}
body.ds-home .ds-step__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ds-home .ds-step--photo:hover .ds-step__photo img {
  transform: scale(1.05);
}
body.ds-home .ds-step__num {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--blue-500);
  color: #fff;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 14px rgba(31, 78, 140, 0.30);
}
body.ds-home .ds-step--photo h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin: 18px 22px 8px;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}
body.ds-home .ds-step--photo p {
  margin: 0 22px 22px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}
@media (max-width: 1080px) {
  body.ds-home .ds-steps-grid--photo { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  body.ds-home .ds-steps-grid--photo { grid-template-columns: 1fr; gap: 14px; }
}



body.ds-home .ds-modalities-section {
  position: relative;
  padding: clamp(64px, 5rem + 3vw, 104px) 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 30%, rgba(122,192,67,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 10% 80%, rgba(94,158,47,0.06) 0%, transparent 60%),
    linear-gradient(180deg, #f4f8ec 0%, #ebf3dd 100%);
  overflow: hidden;
}
body.ds-home .ds-modalities-section .wrap {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-px);
}
body.ds-home .ds-modalities__decor {
  position: absolute;
  top: -80px;
  right: -100px;
  width: clamp(280px, 32vw, 480px);
  height: auto;
  opacity: 0.10;
  z-index: 1;
  pointer-events: none;
  filter: hue-rotate(60deg) saturate(0.6); 
  transform-origin: center;
}
body.ds-home .ds-modalities__bg { display: none; }
body.ds-home .ds-modalities-section .ds-section-header h2 {
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
  margin: 8px 0 14px;
  letter-spacing: -0.02em;
}
body.ds-home .ds-modalities__eyebrow {
  color: var(--green-700, #5e9e2f) !important;
  background: rgba(122,192,67,0.15);
  padding: 6px 12px;
  border-radius: 999px;
  display: inline-flex !important;
  align-items: center;
}
body.ds-home .ds-modalities__eyebrow::before { display: none !important; }
body.ds-home .ds-modalities-section .ds-lead {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
body.ds-home .ds-modalities-section .ds-modality {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-color: rgba(122, 192, 67, 0.20);
}
body.ds-home .ds-modalities-section .ds-modality:hover {
  border-color: var(--green-500);
  box-shadow: 0 12px 28px rgba(122, 192, 67, 0.18);
  background: #fff;
}
body.ds-home .ds-modalities-section .ds-modality__num {
  color: var(--green-700, #5e9e2f);
  background: rgba(122, 192, 67, 0.18);
}
body.ds-home .ds-modalities-section .ds-modality h3 {
  color: var(--text-primary);
}
body.ds-home .ds-modalities-section .ds-modality p strong {
  color: var(--green-700, #5e9e2f);
}
body.ds-home .ds-modalities-section .ds-modality-disclaimer {
  background: rgba(255, 255, 255, 0.85);
  border-left-color: var(--green-500);
  color: var(--text-secondary);
  margin-top: 28px;
  max-width: 720px;
}
body.ds-home .ds-modalities-section .ds-modality-disclaimer a {
  color: var(--green-700, #5e9e2f);
}


@media (max-width: 720px) {
  body.ds-home .ds-modalities__decor {
    top: -40px;
    right: -80px;
    width: 220px;
    opacity: 0.07;
  }
}



body.ds-home .ds-modalities-v2 {
  position: relative;
  padding: clamp(64px, 5rem + 3vw, 104px) 0;
  background:
    radial-gradient(ellipse 60% 70% at 90% 20%, rgba(122,192,67,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 5% 90%, rgba(94,158,47,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #f4f8ec 0%, #ebf3dd 100%);
  overflow: hidden;
}
body.ds-home .ds-modalities-v2 .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-px);
  align-items: start;
}


body.ds-home .ds-modalities-v2__aside { position: relative; }
body.ds-home .ds-modalities-v2__sticky {
  position: sticky;
  top: 110px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(122,192,67,0.20);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 22px;
  padding: 32px 30px 28px;
  box-shadow: 0 12px 32px rgba(94,158,47,0.10);
}
body.ds-home .ds-modalities-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--green-700, #5e9e2f);
  background: rgba(122,192,67,0.16);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
body.ds-home .ds-modalities-v2__sticky h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 14px;
}
body.ds-home .ds-modalities-v2__lead {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 22px;
}
body.ds-home .ds-modalities-v2__keypoints {
  list-style: none;
  margin: 0 0 22px;
  padding: 18px 0;
  border-top: 1px dashed rgba(122,192,67,0.30);
  border-bottom: 1px dashed rgba(122,192,67,0.30);
  display: grid;
  gap: 10px;
}
body.ds-home .ds-modalities-v2__keypoints li {
  display: grid;
  grid-template-columns: minmax(110px, auto) 1fr;
  gap: 14px;
  align-items: baseline;
  font-size: 13px;
  color: var(--text-secondary);
}
body.ds-home .ds-modalities-v2__keypoints li strong {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 0.9rem + 0.8vw, 1.55rem);
  color: var(--green-700, #5e9e2f);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-align: right;
}
body.ds-home .ds-modalities-v2__disclaimer {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}
body.ds-home .ds-modalities-v2__disclaimer svg { color: var(--green-700, #5e9e2f); }
body.ds-home .ds-modalities-v2__disclaimer a {
  color: var(--green-700, #5e9e2f);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


body.ds-home .ds-modalities-v2__timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 12px 0 0 0;
  counter-reset: modalities;
}
body.ds-home .ds-modalities-v2__timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 28px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-500) 0%, rgba(122,192,67,0.30) 100%);
  border-radius: 2px;
}
body.ds-home .ds-modalities-v2__item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  margin-bottom: 22px;
  padding: 0;
}
body.ds-home .ds-modalities-v2__item:last-child { margin-bottom: 0; }
body.ds-home .ds-modalities-v2__num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--green-500) 0%, var(--green-700, #5e9e2f) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  border-radius: 16px;
  box-shadow: 0 8px 18px rgba(94,158,47,0.30);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
body.ds-home .ds-modalities-v2__item:hover .ds-modalities-v2__num {
  transform: scale(1.08) rotate(-4deg);
}
body.ds-home .ds-modalities-v2__body {
  flex: 1;
  background: #fff;
  border: 1px solid rgba(31,41,55,0.06);
  border-radius: 16px;
  padding: 22px 26px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
body.ds-home .ds-modalities-v2__item:hover .ds-modalities-v2__body {
  border-color: rgba(122,192,67,0.35);
  box-shadow: 0 12px 28px rgba(122,192,67,0.12);
  transform: translateX(4px);
}
body.ds-home .ds-modalities-v2__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 0 0 8px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
body.ds-home .ds-modalities-v2__body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text-secondary);
}
body.ds-home .ds-modalities-v2__body p strong {
  color: var(--green-700, #5e9e2f);
  font-weight: 700;
}


@media (max-width: 900px) {
  body.ds-home .ds-modalities-v2 .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.ds-home .ds-modalities-v2__sticky { position: static; }
  body.ds-home .ds-modalities-v2__keypoints {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.ds-home .ds-modalities-v2__keypoints li {
    grid-template-columns: 80px 1fr;
    gap: 14px;
  }
  body.ds-home .ds-modalities-v2__item { grid-template-columns: 48px 1fr; gap: 16px; }
  body.ds-home .ds-modalities-v2__num { width: 48px; height: 48px; font-size: 18px; }
  body.ds-home .ds-modalities-v2__timeline::before { left: 24px; }
}
@media (max-width: 540px) {
  body.ds-home .ds-modalities-v2__sticky { padding: 24px 22px 22px; border-radius: 18px; }
  body.ds-home .ds-modalities-v2__body { padding: 18px 20px; }
}



body.ds-home .ds-modalities-v2__photo {
  margin: 0 0 22px;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #f4f8ec;
  border: 1px solid rgba(122,192,67,0.18);
}
body.ds-home .ds-modalities-v2__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ds-home .ds-modalities-v2__sticky:hover .ds-modalities-v2__photo img {
  transform: scale(1.04);
}


body.ds-home .ds-vision--v2 {
  padding: 96px 0 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--blue-050) 100%);
}
body.ds-home .ds-vision--v2 .wrap {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: center;
}


body.ds-home .ds-vision__media {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
body.ds-home .ds-vision__photo {
  display: block;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(22, 58, 105, 0.28), 0 8px 16px -8px rgba(22, 58, 105, 0.18);
}
body.ds-home .ds-vision__photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
body.ds-home .ds-vision__media:hover .ds-vision__photo img {
  transform: scale(1.03);
}
body.ds-home .ds-vision__badge {
  position: absolute;
  left: -24px;
  bottom: 32px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 18px 24px;
  box-shadow: 0 16px 40px -12px rgba(22, 58, 105, 0.32), 0 4px 12px -4px rgba(22, 58, 105, 0.18);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 280px;
}
body.ds-home .ds-vision__badge::before {
  content: "";
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  background: linear-gradient(180deg, var(--green-500), var(--blue-500));
  border-radius: 2px;
}
body.ds-home .ds-vision__badge-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-700);
  letter-spacing: -0.02em;
}
body.ds-home .ds-vision__badge-label {
  font-size: 12px;
  line-height: 1.35;
  color: var(--text-secondary);
  font-weight: 500;
}


body.ds-home .ds-vision__content {
  display: flex;
  flex-direction: column;
}
body.ds-home .ds-vision--v2 .ds-eyebrow {
  margin-bottom: 12px;
}
body.ds-home .ds-vision--v2 h2 {
  margin-bottom: 20px;
}
body.ds-home .ds-vision--v2 .ds-lead {
  margin-bottom: 36px;
  max-width: none;
}
body.ds-home .ds-vision__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.ds-home .ds-vision-pillar {
  background: #FFFFFF;
  border: 1px solid rgba(31, 78, 140, 0.08);
  border-radius: 16px;
  padding: 22px 22px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body.ds-home .ds-vision-pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 192, 67, 0.4);
  box-shadow: 0 12px 24px -8px rgba(22, 58, 105, 0.16), 0 4px 8px -2px rgba(22, 58, 105, 0.08);
}
body.ds-home .ds-vision-pillar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-050);
  color: var(--blue-500);
  margin-bottom: 14px;
  transition: background 0.25s ease, color 0.25s ease;
}
body.ds-home .ds-vision-pillar:hover .ds-vision-pillar__icon {
  background: var(--green-050);
  color: var(--green-700);
}
body.ds-home .ds-vision-pillar h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-700);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
body.ds-home .ds-vision-pillar p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
}


body.ds-home .ds-vision__territory {
  margin-top: 80px;
  background: var(--blue-700);
  color: #FFFFFF;
  padding: 22px 0;
}
body.ds-home .ds-vision__territory-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 32px;
}
body.ds-home .ds-vision__territory-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
}
body.ds-home .ds-vision__territory-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: var(--green-500);
  flex-shrink: 0;
}


@media (max-width: 1024px) {
  body.ds-home .ds-vision--v2 .wrap {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  body.ds-home .ds-vision__media {
    max-width: 540px;
    margin: 0 auto;
  }
  body.ds-home .ds-vision__photo img {
    aspect-ratio: 16 / 11;
  }
  body.ds-home .ds-vision__badge {
    left: 16px;
    bottom: 16px;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-vision--v2 {
    padding: 64px 0 0;
  }
  body.ds-home .ds-vision__pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  body.ds-home .ds-vision-pillar {
    padding: 18px 18px 20px;
  }
  body.ds-home .ds-vision__badge {
    left: 12px;
    bottom: 12px;
    padding: 14px 18px;
    max-width: calc(100% - 24px);
  }
  body.ds-home .ds-vision__badge-num {
    font-size: 22px;
  }
  body.ds-home .ds-vision__territory {
    margin-top: 56px;
    padding: 18px 0;
  }
  body.ds-home .ds-vision__territory-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  body.ds-home .ds-vision__territory-item {
    font-size: 13px;
  }
}


body.ds-home .ds-story--v2 {
  --slider-pos: 100%;
}


body.ds-home .ds-history-reveal {
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(22, 58, 105, 0.28), 0 8px 16px -8px rgba(22, 58, 105, 0.18);
}
body.ds-home .ds-history-reveal__stage {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--neutral-100);
  perspective: 1800px;
  -webkit-perspective: 1800px;
}


body.ds-home .ds-history-reveal__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transform: rotateY(0deg);
  transition: transform 1.5s cubic-bezier(0.7, 0, 0.3, 1);
  will-change: transform;
}
body.ds-home .ds-history-reveal__stage.is-revealed .ds-history-reveal__inner {
  transform: rotateY(180deg);
}


body.ds-home .ds-history-reveal__face {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
body.ds-home .ds-history-reveal__face--back {
  transform: rotateY(180deg);
}

body.ds-home .ds-history-reveal__photo {
  display: block;
  width: 100%;
  height: 100%;
}
body.ds-home .ds-history-reveal__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.ds-home .ds-history-reveal__face--back .ds-history-reveal__photo img {
  
  object-position: 60% center;
}


body.ds-home .ds-history-reveal__toggle {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border: none;
  border-radius: 999px;
  padding: 0;
  cursor: pointer;
  box-shadow: 0 8px 20px -4px rgba(22, 58, 105, 0.4), 0 2px 6px -1px rgba(22, 58, 105, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
body.ds-home .ds-history-reveal__toggle:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 28px -6px rgba(22, 58, 105, 0.5), 0 4px 10px -2px rgba(22, 58, 105, 0.25);
}
body.ds-home .ds-history-reveal__toggle:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}
body.ds-home .ds-history-reveal__toggle-track {
  position: relative;
  display: flex;
  align-items: center;
  padding: 4px;
}
body.ds-home .ds-history-reveal__toggle-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--blue-700);
  border-radius: 999px;
  transition: transform 0.5s cubic-bezier(0.7, 0, 0.3, 1), background 0.4s ease;
  z-index: 0;
}
body.ds-home .ds-history-reveal__stage.is-revealed .ds-history-reveal__toggle-pill {
  transform: translateX(100%);
  background: var(--green-500);
}
body.ds-home .ds-history-reveal__toggle-label {
  position: relative;
  z-index: 1;
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-700);
  transition: color 0.35s ease;
  user-select: none;
  pointer-events: none;
}

body.ds-home .ds-history-reveal__toggle-label--before { color: #FFFFFF; }
body.ds-home .ds-history-reveal__stage.is-revealed .ds-history-reveal__toggle-label--before { color: var(--text-primary); }

body.ds-home .ds-history-reveal__toggle-label--after { color: var(--text-primary); }
body.ds-home .ds-history-reveal__stage.is-revealed .ds-history-reveal__toggle-label--after { color: var(--blue-700); }


body.ds-home .ds-history-reveal__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 32px 28px;
  background: linear-gradient(180deg, rgba(22, 58, 105, 0) 0%, rgba(22, 58, 105, 0.5) 60%, rgba(22, 58, 105, 0.85) 100%);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}
body.ds-home .ds-history-reveal__year {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  margin-bottom: 8px;
}
body.ds-home .ds-history-reveal__year--accent {
  background: var(--green-500);
  color: var(--blue-700);
}
body.ds-home .ds-history-reveal__addr {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(22, 58, 105, 0.5);
}
body.ds-home .ds-history-reveal__notes {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}


@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-history-reveal__slot {
    transition: none;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-history-reveal {
    margin-top: 32px;
    border-radius: 18px;
  }
  body.ds-home .ds-history-reveal__stage {
    aspect-ratio: 4 / 3;
  }
  body.ds-home .ds-history-reveal__caption {
    padding: 48px 18px 16px;
  }
  body.ds-home .ds-history-reveal__addr {
    font-size: 17px;
  }
  body.ds-home .ds-history-reveal__notes {
    font-size: 12.5px;
  }
}
body.ds-home .ds-story--v2 .ds-section-header .ds-lead {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 18px;
  text-align: center;
  color: var(--text-secondary);
}

body.ds-home .ds-history-slider {
  margin-top: 48px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px -16px rgba(22, 58, 105, 0.28), 0 8px 16px -8px rgba(22, 58, 105, 0.18);
}
body.ds-home .ds-history-slider__container {
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
  background: var(--neutral-100);
  overflow: hidden;
}
body.ds-home .ds-history-slider__before,
body.ds-home .ds-history-slider__after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
body.ds-home .ds-history-slider__before img,
body.ds-home .ds-history-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.ds-home .ds-history-slider__before img {
  object-position: 75% center;
}
body.ds-home .ds-history-slider__after img {
  object-position: center center;
}
body.ds-home .ds-history-slider__after {
  clip-path: inset(0 calc(100% - var(--slider-pos, 50%)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--slider-pos, 50%)) 0 0);
  transition: clip-path 0.05s linear;
}

body.ds-home .ds-history-slider__label {
  position: absolute;
  top: 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}
body.ds-home .ds-history-slider__label--before {
  left: 18px;
  background: rgba(22, 58, 105, 0.88);
  color: #FFFFFF;
}
body.ds-home .ds-history-slider__label--after {
  right: 18px;
  background: rgba(122, 192, 67, 0.95);
  color: #163A69;
}


body.ds-home .ds-history-slider__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--slider-pos, 100%);
  width: 3px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(22, 58, 105, 0.35), 0 4px 12px rgba(22, 58, 105, 0.45);
  pointer-events: none;
  z-index: 3;
}
body.ds-home .ds-history-slider__divider::before,
body.ds-home .ds-history-slider__divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 6px rgba(22, 58, 105, 0.35);
}
body.ds-home .ds-history-slider__divider::before { top: 14px; }
body.ds-home .ds-history-slider__divider::after  { bottom: 14px; }


body.ds-home .ds-history-compare {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: stretch;
}
body.ds-home .ds-history-compare__card {
  background: #FFFFFF;
  border: 1px solid rgba(31, 78, 140, 0.1);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
body.ds-home .ds-history-compare__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(22, 58, 105, 0.16);
}
body.ds-home .ds-history-compare__card--before {
  border-color: rgba(31, 78, 140, 0.12);
}
body.ds-home .ds-history-compare__card--before .ds-history-compare__year {
  background: var(--blue-700);
  color: #FFFFFF;
}
body.ds-home .ds-history-compare__card--after {
  border-color: rgba(122, 192, 67, 0.35);
  box-shadow: 0 4px 16px -4px rgba(122, 192, 67, 0.2);
}
body.ds-home .ds-history-compare__card--after .ds-history-compare__year {
  background: var(--green-500);
  color: #163A69;
}

body.ds-home .ds-history-compare__head h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 8px 0 4px;
  color: var(--blue-700);
}
body.ds-home .ds-history-compare__year {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
body.ds-home .ds-history-compare__city {
  font-size: 13.5px;
  color: var(--text-secondary);
  margin: 0;
}

body.ds-home .ds-history-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.ds-home .ds-history-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}
body.ds-home .ds-history-compare__list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(180, 30, 30, 0.12);
  color: #B91C1C;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
body.ds-home .ds-history-compare__list li:has(span:contains("✓")) span,
body.ds-home .ds-history-compare__list--positive li span {
  background: rgba(94, 158, 47, 0.15);
  color: var(--green-700);
}

body.ds-home .ds-history-compare__transition {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  opacity: 0.6;
}


@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-history-slider__after {
    transition: none;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-history-slider {
    margin-top: 32px;
    border-radius: 18px;
  }
  body.ds-home .ds-history-slider__container {
    aspect-ratio: 4 / 3;
  }
  body.ds-home .ds-history-slider__label {
    top: 12px;
    font-size: 11px;
    padding: 4px 10px;
  }
  body.ds-home .ds-history-slider__label--before { left: 12px; }
  body.ds-home .ds-history-slider__label--after { right: 12px; }
  body.ds-home .ds-history-compare {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  body.ds-home .ds-history-compare__transition {
    transform: rotate(90deg);
    padding: 4px 0;
  }
  body.ds-home .ds-history-compare__card {
    padding: 22px 22px 20px;
  }
}


body.ds-home .ds-hero-photo--video {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr);
  gap: 32px;
  align-items: center;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(122, 192, 67, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 82% 82%, rgba(31, 78, 140, 0.22) 0%, transparent 55%),
    linear-gradient(135deg, #F8FBFF 0%, var(--blue-050) 50%, #F0F8E9 100%);
  border-radius: 28px;
  overflow: hidden;
  padding: clamp(32px, 5vw, 64px);
  position: relative;
  isolation: isolate;
}


body.ds-home .ds-hero-photo--video::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(31, 78, 140, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(122, 192, 67, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}


body.ds-home .ds-hero-photo--video .ds-hero-content {
  position: relative;
  z-index: 2;
  inset: auto;
  padding: 0;
  background: none;
  color: var(--text-primary);
  display: block;
  text-align: left;
  align-items: stretch;
  justify-content: flex-start;
  max-width: none;
  margin: 0;
}
body.ds-home .ds-hero-photo--video .ds-hero-content > div {
  max-width: 580px;
}
body.ds-home .ds-hero-photo--video .ds-hero-content h1 {
  color: var(--blue-700);
}
body.ds-home .ds-hero-photo--video .ds-hero-content h1 em {
  color: var(--green-700);
  font-style: normal;
}
body.ds-home .ds-hero-photo--video .ds-hero-content .ds-hero-badge {
  background: rgba(31, 78, 140, 0.08);
  color: var(--blue-700);
  border: 1px solid rgba(31, 78, 140, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
body.ds-home .ds-hero-photo--video .ds-hero-content .ds-hero-lead {
  color: var(--text-secondary);
}
body.ds-home .ds-hero-photo--video .ds-hero-content .ds-hero-lead strong {
  color: var(--text-primary);
}


body.ds-home .ds-hero-photo--video .ds-btn-glass {
  background: #FFFFFF;
  color: var(--blue-700);
  border-color: rgba(31, 78, 140, 0.18);
  box-shadow: 0 4px 12px -4px rgba(22, 58, 105, 0.18);
}
body.ds-home .ds-hero-photo--video .ds-btn-glass:hover {
  background: var(--blue-050);
  color: var(--blue-700);
}


body.ds-home .ds-hero-media {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.ds-home .ds-hero-mascotte {
  display: block;
  width: 100%;
  max-width: 820px;
  position: relative;
  filter: drop-shadow(0 28px 40px rgba(22, 58, 105, 0.22)) drop-shadow(0 6px 12px rgba(22, 58, 105, 0.12));
  will-change: transform;
}
body.ds-home .ds-hero-mascotte__video,
body.ds-home .ds-hero-mascotte img {
  display: block;
  width: 100%;
  height: auto;
  background: transparent;
}
body.ds-home .ds-hero-mascotte__video {
  
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: contain;
}

body.ds-home .ds-hero-mascotte::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 8%;
  right: 8%;
  bottom: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 192, 67, 0.22) 0%, rgba(31, 78, 140, 0.12) 50%, transparent 75%);
  z-index: -1;
  filter: blur(28px);
  animation: ds-hero-mascotte-glow 5.5s ease-in-out infinite;
}

@keyframes ds-hero-mascotte-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-4px) rotate(0deg);
  }
  75% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@keyframes ds-hero-mascotte-glow {
  0%, 100% {
    opacity: 0.85;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}


@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-hero-mascotte,
  body.ds-home .ds-hero-mascotte::before {
    animation: none;
  }
}


@media (max-width: 1024px) {
  body.ds-home .ds-hero-photo--video {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: clamp(28px, 4vw, 48px);
  }
  body.ds-home .ds-hero-video {
    max-width: 420px;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-hero-photo--video {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
    border-radius: 20px;
  }
  body.ds-home .ds-hero-photo--video .ds-hero-media {
    order: -1;
  }
  body.ds-home .ds-hero-video {
    max-width: 280px;
  }
  body.ds-home .ds-hero-photo--video .ds-hero-content {
    text-align: left;
  }
}


@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-hero-video {
    animation: none;
  }
}


body.ds-home .ds-hours-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
  position: relative;
  z-index: 5;
}
body.ds-home .ds-hours-badge__toggle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 78, 140, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--text-primary);
  box-shadow: 0 2px 6px rgba(22, 58, 105, 0.08);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
body.ds-home .ds-hours-badge__toggle:hover {
  background: #FFFFFF;
  border-color: rgba(31, 78, 140, 0.32);
  box-shadow: 0 4px 12px rgba(22, 58, 105, 0.14);
}
body.ds-home .ds-hours-badge__toggle:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
}

body.ds-home .ds-hours-badge__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
body.ds-home .ds-hours-badge__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--text-secondary);
  flex-shrink: 0;
  position: relative;
}
body.ds-home .ds-hours-badge__status.is-open .ds-hours-badge__dot {
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(122, 192, 67, 0.22);
  animation: ds-hours-pulse 2.4s ease-in-out infinite;
}
body.ds-home .ds-hours-badge__status.is-open .ds-hours-badge__label {
  color: var(--green-700);
}
body.ds-home .ds-hours-badge__status.is-closed .ds-hours-badge__dot {
  background: #B91C1C;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.18);
}
body.ds-home .ds-hours-badge__status.is-closed .ds-hours-badge__label {
  color: #B91C1C;
}

body.ds-home .ds-hours-badge__excep {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: #FEF3C7;
  color: #92400E;
  border-radius: 999px;
  cursor: help;
}

body.ds-home .ds-hours-badge__see {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: auto;
  padding-left: 8px;
  border-left: 1px solid rgba(31, 78, 140, 0.12);
}
body.ds-home .ds-hours-badge__chev {
  transition: transform 0.25s ease;
}
body.ds-home .ds-hours-badge__toggle[aria-expanded="true"] .ds-hours-badge__chev {
  transform: rotate(180deg);
}

@keyframes ds-hours-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(122, 192, 67, 0.22); }
  50%      { box-shadow: 0 0 0 6px rgba(122, 192, 67, 0.05); }
}


body.ds-home .ds-hours-badge__panel {
  margin-top: 10px;
  padding: 16px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(31, 78, 140, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 28px -8px rgba(22, 58, 105, 0.18), 0 4px 10px -2px rgba(22, 58, 105, 0.08);
  min-width: 280px;
  max-width: 100%;
  font-size: 13.5px;
}
body.ds-home .ds-hours-list {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 20px;
}
body.ds-home .ds-hours-list__row {
  display: contents;
}
body.ds-home .ds-hours-list__row dt,
body.ds-home .ds-hours-list__row dd {
  margin: 0;
  font-variant-numeric: tabular-nums;
  color: var(--text-secondary);
}
body.ds-home .ds-hours-list__row--today dt,
body.ds-home .ds-hours-list__row--today dd {
  color: var(--text-primary);
  font-weight: 600;
}
body.ds-home .ds-hours-list__excep {
  margin: 0 0 12px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #fff8e9 0%, #fff3d4 100%);
  border: 1px solid rgba(217, 119, 6, 0.28);
  border-left: 3px solid #d97706;
  border-radius: 8px;
  font-size: 12.5px;
  color: #6b3a00;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
body.ds-home .ds-hours-list__excep-tag {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #b45309;
}
body.ds-home .ds-hours-list__excep-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
body.ds-home .ds-hours-list__excep-list li {
  line-height: 1.45;
}
body.ds-home .ds-hours-list__excep-list li strong {
  color: #6b3a00;
}
body.ds-home .ds-hours-list__excep-regular {
  display: inline;
  margin-left: 4px;
  font-size: 11.5px;
  color: rgba(107, 58, 0, 0.66);
  font-style: italic;
}
body.ds-home .ds-hours-badge__note {
  margin: 12px 0 0;
  font-size: 11.5px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(31, 78, 140, 0.08);
  padding-top: 8px;
}
body.ds-home .ds-hours-badge__note a {
  color: var(--blue-700);
  text-decoration: underline;
}


body.ds-home .ds-hours-badge--hero .ds-hours-badge__toggle {
  background: rgba(255, 255, 255, 0.96);
}


@media (max-width: 720px) {
  body.ds-home .ds-hours-badge__panel {
    min-width: 0;
    width: 100%;
  }
  body.ds-home .ds-hours-badge__toggle {
    width: 100%;
    justify-content: flex-start;
  }
  body.ds-home .ds-hours-badge__see {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    width: 100%;
    margin-top: 4px;
  }
}


body.ds-home .ds-hero { padding: 0 0 20px; }

body.ds-home .ds-hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 32px;
  padding: clamp(24px, 3vw, 40px) clamp(24px, 3.2vw, 48px) 0;
  min-height: clamp(440px, 54vh, 540px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(440px, 1.25fr);
  gap: clamp(8px, 1.4vw, 20px);
  align-items: stretch;
  background:
    radial-gradient(ellipse 80% 70% at 70% 38%, rgba(122, 192, 67, 0.42) 0%, rgba(122, 192, 67, 0.18) 35%, transparent 65%),
    radial-gradient(ellipse 60% 60% at 92% 92%, rgba(43, 111, 194, 0.35) 0%, transparent 60%),
    linear-gradient(165deg, #0E1E3A 0%, #142C57 38%, #1B3F7E 100%);
  color: #ffffff;
  box-shadow:
    0 30px 80px -30px rgba(14, 30, 58, 0.55),
    0 8px 24px -8px rgba(14, 30, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}


body.ds-home .ds-hero-stage__halo {
  position: absolute;
  top: -12%;
  right: -8%;
  width: 70%;
  height: 110%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%,
    rgba(122, 192, 67, 0.55) 0%,
    rgba(122, 192, 67, 0.22) 25%,
    rgba(43, 111, 194, 0.18) 55%,
    transparent 75%);
  filter: blur(40px);
  z-index: 0;
  animation: ds-hero-stage-halo 9s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ds-hero-stage-halo {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.92; }
  50%      { transform: translate(-2%, 2%) scale(1.06); opacity: 1; }
}


body.ds-home .ds-hero-stage__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
  mix-blend-mode: overlay;
  background-image:
    radial-gradient(circle at 20% 35%, rgba(255,255,255,0.08) 0.5px, transparent 1px),
    radial-gradient(circle at 75% 65%, rgba(255,255,255,0.06) 0.5px, transparent 1px),
    radial-gradient(circle at 45% 85%, rgba(0,0,0,0.18) 0.5px, transparent 1px);
  background-size: 3px 3px, 5px 5px, 4px 4px;
  background-position: 0 0, 1px 2px, 2px 0;
}


body.ds-home .ds-hero-stage__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 25% 90%, rgba(0,0,0,0.85) 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 25% 90%, rgba(0,0,0,0.85) 0%, transparent 65%);
}


body.ds-home .ds-hero-stage__pill {
  position: absolute;
  z-index: 5;
  text-decoration: none;
  color: inherit;
}
body.ds-home .ds-hero-stage__pill--hours {
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
}
body.ds-home .ds-hero-stage__pill--reviews {
  top: clamp(20px, 3vw, 32px);
  right: clamp(20px, 3vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.92);
  transition: background 180ms ease, transform 180ms ease;
}
body.ds-home .ds-hero-stage__pill--reviews:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
}
body.ds-home .ds-hero-stage__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  font-feature-settings: "tnum" 1;
}
body.ds-home .ds-hero-stage__rating-meta {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding-left: 10px;
}


body.ds-home .ds-hero-stage__copy {
  position: relative;
  z-index: 4;
  max-width: 640px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: clamp(14px, 1.4vw, 20px);
  padding-bottom: clamp(36px, 4.5vw, 64px);
}


body.ds-home .ds-hero-stage__topline {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: clamp(6px, 0.8vw, 12px);
}
body.ds-home .ds-hero-stage__topline-hours {
  flex-shrink: 0;
}


body.ds-home .ds-hero-stage__tagline {
  margin: 0;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  color: #C7E89E;
  font-family: var(--font-display, "Montserrat", system-ui, sans-serif);
  font-weight: 600;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.ds-home .ds-hero-stage__tagline::before {
  content: "";
  width: clamp(28px, 3vw, 44px);
  height: 2px;
  background: linear-gradient(90deg, #7AC043 0%, rgba(122, 192, 67, 0) 100%);
  border-radius: 2px;
}

body.ds-home .ds-hero-stage__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 12px 6px 10px;
  border-radius: 999px;
  background: rgba(122, 192, 67, 0.16);
  border: 1px solid rgba(122, 192, 67, 0.4);
  color: #C7E89E;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.ds-home .ds-hero-stage__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.022em;
}
body.ds-home .ds-hero-stage__title-line {
  display: block;
  white-space: nowrap;
}

body.ds-home .ds-hero-stage--inner .ds-hero-stage__title-line {
  white-space: normal;
}
body.ds-home .ds-hero-stage__title em {
  font-style: italic;
  font-weight: 700;
  color: #B8E07A;
  background: linear-gradient(180deg, #C7E89E 0%, #7AC043 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.ds-home .ds-hero-stage__period {
  color: #7AC043;
  -webkit-text-fill-color: #7AC043;
}

body.ds-home .ds-hero-stage__lead {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  max-width: 52ch;
}
body.ds-home .ds-hero-stage__lead strong {
  color: #ffffff;
  font-weight: 600;
}


body.ds-home .ds-hero-stage__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: clamp(8px, 1.2vw, 16px);
}
body.ds-home .ds-hero-stage__cta-primary {
  font-size: clamp(16px, 1.25vw, 19px);
  padding: clamp(18px, 1.6vw, 22px) clamp(28px, 2.6vw, 38px);
  border-radius: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 22px 44px -12px rgba(94, 158, 47, 0.7),
    0 8px 18px -4px rgba(94, 158, 47, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
body.ds-home .ds-hero-stage__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 54px -10px rgba(94, 158, 47, 0.78),
    0 10px 22px -4px rgba(94, 158, 47, 0.5);
}
body.ds-home .ds-hero-stage__cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-decoration: none;
  color: #ffffff;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}
body.ds-home .ds-hero-stage__cta-phone:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(122, 192, 67, 0.45);
  transform: translateY(-1px);
}
body.ds-home .ds-hero-stage__cta-phone-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(122, 192, 67, 0.22);
  color: #B8E07A;
}
body.ds-home .ds-hero-stage__cta-phone-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
body.ds-home .ds-hero-stage__cta-phone-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
body.ds-home .ds-hero-stage__cta-phone-num {
  font-size: 15px;
  font-weight: 700;
  font-feature-settings: "tnum" 1;
  letter-spacing: 0.01em;
}


body.ds-home .ds-hero-stage__media {
  position: relative;
  z-index: 3;
  align-self: stretch;
  justify-self: start;
  width: 100%;
  max-width: 760px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  margin-left: calc(-1 * clamp(20px, 2.4vw, 36px));
  margin-top: calc(-1 * clamp(24px, 3vw, 40px));
  margin-bottom: 0;
}
body.ds-home .ds-hero-stage__media-glow {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(ellipse 80% 70% at 50% 55%,
    rgba(199, 232, 158, 0.40) 0%,
    rgba(122, 192, 67, 0.22) 30%,
    rgba(43, 111, 194, 0.18) 60%,
    transparent 78%);
  filter: blur(50px);
  z-index: -1;
  animation: ds-hero-stage-mediaglow 6.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ds-hero-stage-mediaglow {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.06); }
}


body.ds-home .ds-hero-stage__mascotte {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
  align-self: stretch;
  margin: 0;
  background: transparent;
  filter:
    drop-shadow(0 36px 56px rgba(0, 0, 0, 0.55))
    drop-shadow(0 12px 20px rgba(0, 0, 0, 0.40));
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}


body.ds-home .ds-hours-badge--stage {
  margin-bottom: 0;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__toggle {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  color: rgba(255, 255, 255, 0.94);
  padding: 7px 10px 7px 12px;
  gap: 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.005em;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__status {
  gap: 8px;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__excep {
  padding: 3px 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__see {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.72);
  padding-left: 10px;
  gap: 4px;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__status .ds-hours-badge__dot {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__status.is-open .ds-hours-badge__label {
  color: #B8E07A;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__status.is-closed .ds-hours-badge__label {
  color: #FFB4B4;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__excep {
  background: rgba(217, 119, 6, 0.18);
  border: 1px solid rgba(252, 188, 100, 0.4);
  color: #FCD8A0;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__see {
  color: rgba(255, 255, 255, 0.8);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  width: max-content;
  min-width: 320px;
  max-width: min(420px, 90vw);
  z-index: 30;
  margin-top: 0;
  background: rgba(14, 30, 58, 0.96);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
body.ds-home .ds-hours-badge--stage .ds-hours-list__row dt,
body.ds-home .ds-hours-badge--stage .ds-hours-list__row dd {
  color: rgba(255, 255, 255, 0.78);
}
body.ds-home .ds-hours-badge--stage .ds-hours-list__row--today dt,
body.ds-home .ds-hours-badge--stage .ds-hours-list__row--today dd {
  color: #ffffff;
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__note {
  color: rgba(255, 255, 255, 0.65);
  border-top-color: rgba(255, 255, 255, 0.08);
}
body.ds-home .ds-hours-badge--stage .ds-hours-badge__note a {
  color: #B8E07A;
}


@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-hero-stage__halo,
  body.ds-home .ds-hero-stage__media-glow {
    animation: none;
  }
}


@media (max-width: 1100px) {
  body.ds-home .ds-hero-stage {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: clamp(28px, 4vw, 56px);
    gap: 16px;
  }
  body.ds-home .ds-hero-stage__copy {
    order: 2;
    max-width: 100%;
    padding: 0;
    justify-content: flex-start;
  }
  body.ds-home .ds-hero-stage__media {
    order: 1;
    max-width: 460px;
    margin: 0 auto;
    align-self: center;
    justify-self: center;
  }
  body.ds-home .ds-hero-stage__mascotte {
    height: auto;
    width: 100%;
    max-height: 520px;
  }
  body.ds-home .ds-hero-stage__pill--reviews {
    top: auto;
    bottom: 16px;
    right: 16px;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-hero-stage {
    border-radius: 24px;
    padding: 80px 20px 32px;
  }
  body.ds-home .ds-hero-stage__pill--hours {
    top: 16px;
    left: 16px;
    right: 16px;
  }
  body.ds-home .ds-hero-stage__pill--reviews {
    display: none;  
  }
  body.ds-home .ds-hero-stage__media {
    max-width: 320px;
  }
  body.ds-home .ds-hero-stage__title {
    font-size: clamp(40px, 11vw, 60px);
  }
  body.ds-home .ds-hero-stage__cta {
    flex-direction: column;
    align-items: stretch;
  }
  body.ds-home .ds-hero-stage__cta-primary,
  body.ds-home .ds-hero-stage__cta-phone {
    width: 100%;
    justify-content: center;
  }
}


body.ds-home .ds-tracking {
  padding: clamp(64px, 8vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
body.ds-home .ds-tracking::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%);
  width: 70%;
  height: 90%;
  background: radial-gradient(ellipse at center,
    rgba(122, 192, 67, 0.10) 0%,
    rgba(43, 111, 194, 0.06) 40%,
    transparent 70%);
  filter: blur(60px);
  z-index: 0;
  pointer-events: none;
}
body.ds-home .ds-tracking__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
body.ds-home .ds-tracking__copy {
  max-width: 600px;
}
body.ds-home .ds-tracking__eyebrow {
  margin-bottom: 14px;
}
body.ds-home .ds-tracking__title {
  margin: 0 0 16px;
  font-family: var(--font-display, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--text-primary, #0E1E3A);
}
body.ds-home .ds-tracking__title-accent {
  display: inline;
  background: linear-gradient(180deg, #5E9E2F 0%, #7AC043 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
body.ds-home .ds-tracking__lead {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.6;
  color: var(--text-secondary, #45597a);
}
body.ds-home .ds-tracking__lead strong {
  color: var(--text-primary, #0E1E3A);
  font-weight: 600;
}
body.ds-home .ds-tracking__features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}
body.ds-home .ds-tracking__features > li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
body.ds-home .ds-tracking__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(122, 192, 67, 0.18) 0%, rgba(43, 111, 194, 0.12) 100%);
  color: #5E9E2F;
  border: 1px solid rgba(122, 192, 67, 0.28);
}
body.ds-home .ds-tracking__features h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary, #0E1E3A);
  letter-spacing: -0.005em;
}
body.ds-home .ds-tracking__features p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-secondary, #45597a);
}
body.ds-home .ds-tracking__cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
body.ds-home .ds-tracking__cta-primary {
  font-size: 15px;
  padding: 14px 24px;
}
body.ds-home .ds-tracking__cta-note {
  font-size: 12.5px;
  color: var(--text-secondary, #45597a);
  font-style: italic;
}


body.ds-home .ds-tracking__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.ds-home .ds-tracking__visual-glow {
  position: absolute;
  inset: -10% -10% -10% -10%;
  background: radial-gradient(ellipse at center,
    rgba(122, 192, 67, 0.18) 0%,
    rgba(43, 111, 194, 0.12) 40%,
    transparent 70%);
  filter: blur(50px);
  z-index: -1;
}
body.ds-home .ds-tracking__device {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(31, 78, 140, 0.12);
  box-shadow:
    0 40px 80px -30px rgba(14, 30, 58, 0.32),
    0 14px 28px -10px rgba(14, 30, 58, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  transform: rotate(-1.2deg);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
body.ds-home .ds-tracking__device:hover {
  transform: rotate(0deg) translateY(-6px);
}
body.ds-home .ds-tracking__device-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F4F6FA;
  border-bottom: 1px solid rgba(31, 78, 140, 0.08);
}
body.ds-home .ds-tracking__device-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
body.ds-home .ds-tracking__device-url {
  margin-left: 12px;
  font-size: 11.5px;
  color: rgba(14, 30, 58, 0.55);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1;
}
body.ds-home .ds-tracking__device-screen {
  padding: 22px 24px 24px;
}
body.ds-home .ds-tracking__device-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
body.ds-home .ds-tracking__device-eyebrow {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(14, 30, 58, 0.5);
  margin-bottom: 4px;
}
body.ds-home .ds-tracking__device-title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary, #0E1E3A);
  letter-spacing: -0.01em;
}
body.ds-home .ds-tracking__device-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
body.ds-home .ds-tracking__device-pill--ok {
  background: rgba(122, 192, 67, 0.14);
  color: #3F6E1A;
  border: 1px solid rgba(122, 192, 67, 0.32);
}
body.ds-home .ds-tracking__device-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5E9E2F;
  box-shadow: 0 0 0 0 rgba(122, 192, 67, 0.6);
  animation: ds-tracking-pulse 1.8s ease-in-out infinite;
}
@keyframes ds-tracking-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(122, 192, 67, 0.5); }
  50%      { box-shadow: 0 0 0 8px rgba(122, 192, 67, 0); }
}

body.ds-home .ds-tracking__timeline {
  list-style: none;
  margin: 0 0 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #F8FAFD;
  border: 1px solid rgba(31, 78, 140, 0.08);
  display: grid;
  gap: 8px;
  font-size: 12.5px;
  color: var(--text-secondary, #45597a);
}
body.ds-home .ds-tracking__timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-left: 0;
}
body.ds-home .ds-tracking__timeline li > span {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  background: rgba(122, 192, 67, 0.18);
  color: #3F6E1A;
}
body.ds-home .ds-tracking__timeline li.is-done {
  color: rgba(14, 30, 58, 0.7);
}
body.ds-home .ds-tracking__timeline li.is-current {
  color: var(--text-primary, #0E1E3A);
  font-weight: 700;
}
body.ds-home .ds-tracking__timeline li.is-current > span {
  background: #5E9E2F;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(122, 192, 67, 0.18);
}


body.ds-home .ds-tracking__device-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(31, 78, 140, 0.06) 0%, rgba(122, 192, 67, 0.04) 100%);
  border: 1px solid rgba(31, 78, 140, 0.12);
}
body.ds-home .ds-tracking__device-card-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid rgba(31, 78, 140, 0.12);
  color: #1F4E8C;
}
body.ds-home .ds-tracking__device-card-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
body.ds-home .ds-tracking__device-card-brand {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary, #0E1E3A);
  letter-spacing: -0.005em;
}
body.ds-home .ds-tracking__device-card-serial {
  font-size: 11.5px;
  color: var(--text-secondary, #45597a);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-feature-settings: "tnum" 1;
}
body.ds-home .ds-tracking__device-card-serial strong {
  color: var(--text-primary, #0E1E3A);
  font-weight: 700;
}


body.ds-home .ds-tracking__quote {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(122, 192, 67, 0.08);
  border: 1px solid rgba(122, 192, 67, 0.32);
}
body.ds-home .ds-tracking__quote-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
body.ds-home .ds-tracking__quote-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(14, 30, 58, 0.6);
}
body.ds-home .ds-tracking__quote-amount {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary, #0E1E3A);
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}
body.ds-home .ds-tracking__quote-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
body.ds-home .ds-tracking__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #5E9E2F;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.005em;
  box-shadow: 0 6px 14px -4px rgba(94, 158, 47, 0.5);
}
body.ds-home .ds-tracking__quote-pay {
  font-size: 11px;
  color: var(--text-secondary, #45597a);
  font-style: italic;
}
body.ds-home .ds-tracking__timeline li em {
  font-style: normal;
  color: var(--text-secondary, #45597a);
  font-weight: 500;
}


@media (max-width: 1000px) {
  body.ds-home .ds-tracking__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  body.ds-home .ds-tracking__features {
    grid-template-columns: 1fr;
  }
  body.ds-home .ds-tracking__visual {
    order: 2;
  }
  body.ds-home .ds-tracking__copy {
    order: 1;
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  body.ds-home .ds-tracking__device-header {
    flex-direction: column;
  }
  body.ds-home .ds-tracking__device-pill {
    align-self: flex-start;
  }
}


body.ds-home .ds-territorial {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, #F4F6FA 0%, #FAFBFD 100%);
}
body.ds-home .ds-territorial__card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(122, 192, 67, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 0% 100%, rgba(43, 111, 194, 0.32) 0%, transparent 60%),
    linear-gradient(165deg, #0E1E3A 0%, #142C57 38%, #1B3F7E 100%);
  color: #ffffff;
  box-shadow:
    0 30px 80px -30px rgba(14, 30, 58, 0.55),
    0 8px 24px -8px rgba(14, 30, 58, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
body.ds-home .ds-territorial__accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #B8E07A 0%, #7AC043 50%, #5E9E2F 100%);
  z-index: 2;
}
body.ds-home .ds-territorial__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(32px, 4vw, 56px) clamp(28px, 3.5vw, 48px) clamp(24px, 3vw, 40px) clamp(34px, 4vw, 60px);
}


body.ds-home .ds-territorial__header {
  max-width: 600px;
}
body.ds-home .ds-territorial__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(122, 192, 67, 0.18);
  border: 1px solid rgba(122, 192, 67, 0.42);
  color: #C7E89E;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
body.ds-home .ds-territorial__title {
  margin: 0 0 16px;
  font-family: var(--font-display, "Montserrat", system-ui, sans-serif);
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: #ffffff;
}
body.ds-home .ds-territorial__title-accent {
  background: linear-gradient(180deg, #C7E89E 0%, #7AC043 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
body.ds-home .ds-territorial__lead {
  margin: 0 0 18px;
  font-size: clamp(14.5px, 1vw, 16px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}
body.ds-home .ds-territorial__lead strong {
  color: #ffffff;
  font-weight: 600;
}


body.ds-home .ds-territorial__labels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
body.ds-home .ds-territorial-label {
  width: 100%;
}
body.ds-home .ds-territorial-label > a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-height: 96px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
body.ds-home .ds-territorial-label > a:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.32);
}
body.ds-home .ds-territorial-label__logo {
  flex-shrink: 0;
  width: 88px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.ds-home .ds-territorial-label__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.ds-home .ds-territorial-label__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  flex: 1;
}
body.ds-home .ds-territorial-label__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary, #0E1E3A);
  letter-spacing: -0.01em;
}
body.ds-home .ds-territorial-label__desc {
  font-size: 12px;
  line-height: 1.45;
  color: var(--text-secondary, #45597a);
}


body.ds-home .ds-territorial__pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: start;
}
body.ds-home .ds-territorial-pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 200ms ease, transform 200ms ease;
}
body.ds-home .ds-territorial-pillar:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-1px);
}
body.ds-home .ds-territorial-pillar__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(122, 192, 67, 0.22) 0%, rgba(43, 111, 194, 0.18) 100%);
  color: #B8E07A;
  border: 1px solid rgba(122, 192, 67, 0.32);
}
body.ds-home .ds-territorial-pillar h3 {
  margin: 0 0 2px;
  font-size: 13.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.005em;
}
body.ds-home .ds-territorial-pillar em {
  display: block;
  margin: 0 0 6px;
  font-size: 12px;
  font-style: italic;
  font-weight: 500;
  color: #C7E89E;
  letter-spacing: 0.005em;
}
body.ds-home .ds-territorial-pillar p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
}


body.ds-home .ds-territorial__partners {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-top: 4px solid #7AC043;
  padding: 28px clamp(28px, 3.5vw, 48px) 22px clamp(34px, 4vw, 60px);
}
body.ds-home .ds-territorial__partners-label {
  display: block;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(14, 30, 58, 0.55);
  margin-bottom: 18px;
}
body.ds-home .ds-territorial__partners-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vw, 44px);
  flex-wrap: wrap;
  margin-bottom: 20px;
}
body.ds-home .ds-territorial__partner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  text-decoration: none;
  filter: grayscale(0.05);
  transition: filter 200ms ease, transform 200ms ease;
}
body.ds-home .ds-territorial__partner:hover {
  filter: grayscale(0);
  transform: translateY(-1px);
}
body.ds-home .ds-territorial__partner img {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}


body.ds-home .ds-territorial__legal {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(14, 30, 58, 0.55);
  font-style: italic;
  border-top: 1px dashed rgba(31, 78, 140, 0.18);
  padding-top: 14px;
}


@media (max-width: 1000px) {
  body.ds-home .ds-territorial__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(28px, 4vw, 40px) clamp(24px, 3vw, 36px) clamp(20px, 2.5vw, 28px) clamp(28px, 4vw, 44px);
  }
  body.ds-home .ds-territorial__header {
    max-width: 100%;
  }
}


@media (max-width: 720px) {
  body.ds-home .ds-territorial__card {
    border-radius: 22px;
  }
  body.ds-home .ds-territorial__labels {
    grid-template-columns: 1fr;
  }
  body.ds-home .ds-territorial__pillars {
    grid-template-columns: 1fr;
  }
  body.ds-home .ds-territorial__partners-row {
    gap: 16px 22px;
  }
  body.ds-home .ds-territorial__partner {
    height: 48px;
  }
}


body.ds-home .ds-kpi-ribbon__item dt.ds-kpi-ribbon__word {
  font-family: var(--font-display, "Montserrat", system-ui, sans-serif);
  font-style: italic;
  letter-spacing: -0.015em;
  font-size: clamp(2.4rem, 1.8rem + 2vw, 3.4rem);
  background: linear-gradient(180deg, #5E9E2F 0%, #7AC043 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}




@keyframes ds-build-stage {
  0% {
    opacity: 0;
    transform: perspective(1400px) rotateX(22deg) rotateY(-4deg) translateY(-80px) scale(0.82);
  }
  100% {
    opacity: 1;
    transform: perspective(1400px) rotateX(0) rotateY(0) translateY(0) scale(1);
  }
}


@keyframes ds-build-mascotte {
  0%   { opacity: 0; transform: translateX(-120px) translateY(40px) scale(0.85); }
  100% { opacity: 1; transform: translateX(0) translateY(0) scale(1); }
}


@keyframes ds-build-text {
  0%   { opacity: 0; transform: translateY(28px) scale(0.96); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}


@keyframes ds-build-cta {
  0%   { opacity: 0; transform: translateY(24px) scale(0.88); }
  60%  { transform: translateY(-4px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}


@keyframes ds-build-card {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateX(35deg) translateY(120px) scale(0.78);
  }
  85% {
    transform: perspective(1000px) rotateX(0deg) translateY(-6px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg) translateY(0) scale(1);
  }
}


body.ds-home .ds-hero-stage {
  transform-origin: center top;
  backface-visibility: hidden;
  animation: ds-build-stage 1100ms cubic-bezier(0.16, 1, 0.3, 1) 80ms backwards;
}


body.ds-home .ds-hero-stage__media {
  animation: ds-build-mascotte 900ms cubic-bezier(0.16, 1, 0.3, 1) 480ms backwards;
}
body.ds-home .ds-hero-stage__topline {
  animation: ds-build-text 600ms ease-out 600ms backwards;
}
body.ds-home .ds-hero-stage__title {
  animation: ds-build-text 700ms ease-out 720ms backwards;
}
body.ds-home .ds-hero-stage__tagline {
  animation: ds-build-text 600ms ease-out 880ms backwards;
}
body.ds-home .ds-hero-stage__lead {
  animation: ds-build-text 600ms ease-out 980ms backwards;
}
body.ds-home .ds-hero-stage__cta {
  animation: ds-build-cta 700ms cubic-bezier(0.34, 1.56, 0.64, 1) 1100ms backwards;
}


body.ds-home .ds-hero .ds-quick-card {
  transform-origin: center bottom;
  backface-visibility: hidden;
  animation: ds-build-card 850ms cubic-bezier(0.34, 1.4, 0.64, 1) backwards;
}


body.ds-home nav.main {
  transform: translateZ(0);
  will-change: transform;
}
body.ds-home .ds-hero .ds-quick-card:nth-child(1) { animation-delay: 1200ms; }
body.ds-home .ds-hero .ds-quick-card:nth-child(2) { animation-delay: 1330ms; }
body.ds-home .ds-hero .ds-quick-card:nth-child(3) { animation-delay: 1460ms; }
body.ds-home .ds-hero .ds-quick-card:nth-child(4) { animation-delay: 1590ms; }

@media (prefers-reduced-motion: reduce) {
  body.ds-home .ds-hero-stage,
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__topline,
  body.ds-home .ds-hero-stage__title,
  body.ds-home .ds-hero-stage__tagline,
  body.ds-home .ds-hero-stage__lead,
  body.ds-home .ds-hero-stage__cta,
  body.ds-home .ds-hero .ds-quick-card {
    animation: none;
  }
}


body.ds-home .ds-services .ds-service-card {
  border-top: 3px solid var(--blue-500);
  background: #f4f8fd;
}
body.ds-home .ds-services .ds-service-card:not(.blue) {
  border-top-color: var(--green-500);
  background: #f2fbf4;
}
body.ds-home .ds-services .ds-service-card:hover {
  background: #fff;
}


body.ds-home .ds-tracking__quote-btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, transform 0.15s ease, opacity 0.2s ease;
}
body.ds-home .ds-tracking__quote-btn:hover:not(:disabled) {
  background: #4d8a24;
  transform: scale(1.04);
}
body.ds-home .ds-tracking__quote-btn.is-validated,
body.ds-home .ds-tracking__quote-btn:disabled {
  background: #3d6e1d;
  cursor: default;
  opacity: 0.9;
}


body.ds-home .ds-tracking__device-pill--pending {
  background: rgba(255, 188, 46, 0.15);
  color: #7a5100;
  border: 1px solid rgba(255, 188, 46, 0.45);
}


body.ds-home .ds-hero-stage--inner {
  min-height: clamp(300px, 40vh, 420px);
  align-items: center;
}
body.ds-home .ds-hero-stage--inner .ds-hero-stage__copy {
  justify-content: center;
  padding-top: 0;
  padding-bottom: clamp(20px, 2.5vw, 32px);
}

body.ds-home .ds-hero-stage__media--photo {
  align-self: stretch;
  margin-left: 0;
  margin-right: calc(-1 * clamp(24px, 3.2vw, 48px));
  margin-top: calc(-1 * clamp(24px, 3vw, 40px));
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  border-radius: 0 30px 30px 0;
}
body.ds-home .ds-hero-stage__media--photo picture {
  display: block;
  width: 100%;
  height: 100%;
}
body.ds-home .ds-hero-stage__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

body.ds-home .ds-hero-stage__media--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0E1E3A 0%, rgba(14,30,58,0.45) 28%, transparent 58%);
  z-index: 1;
  pointer-events: none;
}

.ds-breadcrumb--stage a,
.ds-breadcrumb--stage .ds-bc-sep {
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.ds-breadcrumb--stage a:hover { color: #fff; }
.ds-breadcrumb--stage [aria-current="page"] { color: rgba(255,255,255,0.9); }

@media (max-width: 768px) {
  body.ds-home .ds-hero-stage--inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  body.ds-home .ds-hero-stage__media--photo {
    display: none;
  }
}


h1, h2, h3, h4, .ds-eyebrow, .ds-hero-stage__title {
  text-wrap: balance;
}
p, .ds-lead, .ds-hero-stage__lead, .ds-hero-stage__tagline,
.ds-service-card__body, .ds-zen-card__desc, .ds-faq__answer {
  text-wrap: pretty;
}


.ds-products {
  padding: var(--section-py) 0;
  background: #F3F7FD;
}
.ds-products .ds-section-header { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.ds-products .ds-section-header h2 { text-align: center; }
.ds-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: clamp(28px, 3vw, 44px);
}
.ds-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(14,30,58,0.07), 0 0 0 1px rgba(14,30,58,0.06);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.ds-product-card:hover {
  box-shadow: 0 10px 32px rgba(14,30,58,0.12), 0 0 0 1px rgba(14,30,58,0.08);
  transform: translateY(-4px);
}
.ds-product-card__visual {
  background: #EEF4FC;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
}
.ds-product-card__visual svg {
  width: 100%;
  max-width: 180px;
  height: auto;
}
.ds-product-card__body {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.ds-product-card__brand {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-500);
  margin-bottom: 4px;
  display: block;
}
.ds-product-card__model {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 14px;
}
.ds-product-card__specs {
  list-style: none;
  padding: 0;
  margin: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 16px;
}
.ds-product-card__specs li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 7px;
  line-height: 1.4;
}
.ds-product-card__specs li::before {
  content: '·';
  color: var(--blue-500);
  font-weight: 900;
  flex-shrink: 0;
}
.ds-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #EEF4FC;
  flex-wrap: wrap;
}
.ds-product-card__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.ds-product-card__win-badge {
  font-size: 10px;
  font-weight: 700;
  color: #1F6B14;
  background: #E6F4E3;
  border: 1px solid #B8DEB4;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.ds-products__note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 28px;
  opacity: 0.85;
}
.ds-products__note a {
  color: var(--blue-500);
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (max-width: 960px) {
  .ds-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-products-grid { grid-template-columns: 1fr; gap: 16px; }
}

.ds-products-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) {
  .ds-products-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-products-grid--4 { grid-template-columns: 1fr; }
}
.ds-product-card__tagline {
  font-size: 0.8125rem;
  color: var(--text-secondary, #475569);
  margin: 4px 0 10px;
  font-style: italic;
}


body.ds-home .ds-hero-stage--page-pro {
  min-height: clamp(380px, 48vh, 500px);
  align-items: stretch;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr);
}
body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__copy {
  justify-content: flex-start;
  padding-top: 0;
  padding-bottom: clamp(28px, 3.5vw, 52px);
}
body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__title {
  font-size: clamp(24px, 2.9vw, 42px);
}
body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__title-line {
  white-space: normal;
  
  padding-bottom: 0.08em;
}
@media (max-width: 768px) {
  body.ds-home .ds-hero-stage--page-pro {
    grid-template-columns: 1fr;
    min-height: unset;
  }
}


body.ds-home .ds-hero-stage--page-pro > picture {
  display: contents;
}

body.ds-home .ds-pro-stage-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: 0;
  opacity: 0.75;
}

body.ds-home .ds-hero-stage--page-pro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(14, 30, 58, 0.98) 0%,
    rgba(14, 30, 58, 0.90) 32%,
    rgba(14, 30, 58, 0.55) 58%,
    rgba(14, 30, 58, 0.10) 80%,
    transparent 100%
  );
}

body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__copy {
  position: relative;
  z-index: 3;
}

body.ds-home .ds-hero-stage__media--pro {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: visible;
}
body.ds-home .ds-hero-stage__media--pro .ds-hero-stage__mascotte {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 900px;
  height: 506px;
  aspect-ratio: 16 / 9;
  max-width: none;
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
  left: auto;
  top: auto;
}


body.ds-home .ds-hero-stage__media--particulier {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: visible;
}
body.ds-home .ds-hero-stage__media--particulier .ds-hero-stage__mascotte {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 900px;
  height: 506px;
  aspect-ratio: 16 / 9;
  max-width: none;
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
  left: auto;
  top: auto;
}
body.ds-home .ds-hero-stage--page-particulier {
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr);
}


body.ds-home .ds-hero-stage__media--collectivite {
  position: relative;
  z-index: 2;
  background: transparent;
  overflow: visible;
}
body.ds-home .ds-hero-stage__media--collectivite .ds-hero-stage__mascotte {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 900px;
  height: 506px;
  aspect-ratio: 16 / 9;
  max-width: none;
  z-index: 1;
  object-fit: cover;
  object-position: center bottom;
  left: auto;
  top: auto;
}
body.ds-home .ds-hero-stage--page-collectivite {
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 1fr);
}


.ds-pro-statement {
  background: #0B192F;
  padding: clamp(56px, 7vw, 88px) 0;
  overflow: hidden;
  position: relative;
}
.ds-pro-statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122,192,67,0.35) 40%, transparent 100%);
}
.ds-pro-statement::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(122,192,67,0.15) 40%, transparent 100%);
}
.ds-pro-statement__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 4vw, 56px);
}
.ds-pro-statement__ghost {
  font-family: Archivo, sans-serif;
  font-weight: 900;
  font-size: clamp(96px, 13vw, 168px);
  line-height: 0.88;
  color: rgba(122, 192, 67, 0.1);
  flex-shrink: 0;
  letter-spacing: -6px;
  user-select: none;
  pointer-events: none;
  margin-top: -8px;
}
.ds-pro-statement__body {
  flex: 1;
  min-width: 0;
  padding-top: 6px;
}
.ds-pro-statement__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7AC043;
  margin-bottom: 14px;
}
.ds-pro-statement__label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #7AC043;
  border-radius: 2px;
  flex-shrink: 0;
}
.ds-pro-statement__body h2 {
  font-family: Archivo, sans-serif;
  font-weight: 800;
  font-size: clamp(1.6rem, 2.3vw, 2.4rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  text-wrap: balance;
}
.ds-pro-statement__body > p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 60ch;
  margin: 0 0 26px;
}
.ds-pro-statement__domains {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ds-pro-domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(122, 192, 67, 0.1);
  border: 1px solid rgba(122, 192, 67, 0.2);
  color: #C7E89E;
  font-size: 12.5px;
  font-weight: 600;
}
.ds-pro-domain-pill::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7AC043;
  flex-shrink: 0;
}
@media (max-width: 680px) {
  .ds-pro-statement__ghost { display: none; }
  .ds-pro-statement__inner { flex-direction: column; }
}


.ds-service-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(122, 192, 67, 0.6);
  margin-bottom: -2px;
}


@media (max-width: 768px) {

  
  html, body { overflow-x: hidden; }
  body.ds-home { font-size: 15px; line-height: 1.55; -webkit-text-size-adjust: 100%; }

  
  body.ds-home .topstrip,
  .topstrip { display: none !important; }

  
  nav.main {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 !important;
  }
  nav.main .wrap {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px !important;
    gap: 12px;
    height: 56px;
    max-width: 100%;
  }
  nav.main .nav-desktop,
  nav.main .ds-phone,
  nav.main .ds-nav-sos-icon,
  nav.main .ds-nav-hours { display: none !important; }
  nav.main .logo img { height: 36px; width: auto; }
  nav.main .nav-burger-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    min-height: 44px;
    border-radius: 12px;
    background: var(--blue-700, #163A69);
    color: #fff;
    border: none;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
  }
  nav.main .nav-burger-btn .nav-burger__lines { display: inline-block; width: 18px; height: 12px; position: relative; }
  nav.main .nav-burger-btn .nav-burger__lines span { position: absolute; left: 0; right: 0; height: 2px; background: #fff; border-radius: 2px; transition: all 0.2s; }
  nav.main .nav-burger-btn .nav-burger__lines span:nth-child(1) { top: 0; }
  nav.main .nav-burger-btn .nav-burger__lines span:nth-child(2) { top: 5px; }
  nav.main .nav-burger-btn .nav-burger__lines span:nth-child(3) { top: 10px; }

  
  .nav-panel[hidden] { display: none !important; }
  .nav-panel {
    position: fixed !important;
    inset: 0;
    z-index: 200;
    background: linear-gradient(180deg, #0E1E3A 0%, #163A69 100%);
    color: #fff;
    padding: 20px 24px 32px;
    overflow-y: auto;
    transform: translateY(0);
  }
  .nav-panel__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
  .nav-panel__title { font-family: Archivo, sans-serif; font-weight: 800; font-size: 20px; }
  .nav-panel__close { background: rgba(255,255,255,0.1); border: none; color: #fff; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
  .nav-panel__list { list-style: none; margin: 0 0 28px; padding: 0; }
  .nav-panel__list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-panel__list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 4px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    min-height: 56px;
  }
  .nav-panel__list a::after { content: '›'; opacity: 0.4; font-size: 22px; }
  .nav-panel__list a[aria-current="page"] { color: var(--accent-300, #7AC043); }
  .nav-panel__cta { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
  .nav-panel__cta .ds-btn-primary,
  .nav-panel__cta .ds-btn-secondary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 16px 18px; min-height: 52px;
    border-radius: 14px; font-weight: 700; font-size: 16px;
    text-decoration: none;
  }
  .nav-panel__cta .ds-btn-primary { background: var(--accent-500, #7AC043); color: #062215; }
  .nav-panel__cta .ds-btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
  .nav-panel__address { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,0.7); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
  .nav-panel__address strong { color: #fff; font-size: 15px; }
  .nav-panel__backdrop { display: none; }

  
  .mobile-cta {
    position: fixed !important;
    bottom: 0; left: 0; right: 0;
    display: flex !important;
    gap: 8px;
    padding: 8px 12px calc(8px + env(safe-area-inset-bottom)) !important;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0,0,0,0.08);
    z-index: 70;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  }
  .mobile-cta a {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 700;
    text-decoration: none;
  }
  body { padding-bottom: 76px; }

  
  .wrap { padding: 0 16px !important; max-width: 100% !important; }

  
  body.ds-home .ds-hero { padding: 0 !important; }
  body.ds-home .ds-hero > .wrap { padding: 0 !important; }
  body.ds-home .ds-hero-stage,
  body.ds-home .ds-hero-stage--page-pro,
  body.ds-home .ds-hero-stage--page-particulier,
  body.ds-home .ds-hero-stage--page-collectivite,
  body.ds-home .ds-hero-stage--inner {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    position: relative;
  }
  body.ds-home .ds-pro-stage-bg {
    opacity: 0.55;
    object-position: center center;
  }
  body.ds-home .ds-hero-stage--page-pro::before,
  body.ds-home .ds-hero-stage--page-particulier::before,
  body.ds-home .ds-hero-stage--page-collectivite::before {
    background: linear-gradient(180deg, rgba(14, 30, 58, 0.85) 0%, rgba(14, 30, 58, 0.96) 100%) !important;
  }
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__media--mascotte,
  body.ds-home .ds-hero-stage__media--diagram,
  body.ds-home .ds-hero-stage__media--pro,
  body.ds-home .ds-hero-stage__media--particulier,
  body.ds-home .ds-hero-stage__media--collectivite,
  body.ds-home .ds-hero-stage__media--photo {
    position: relative !important;
    width: 100%;
    height: 220px;
    margin: 0 auto;
    order: 1;
    display: block;
    overflow: hidden;
  }
  body.ds-home .ds-hero-stage__media .ds-hero-stage__mascotte,
  body.ds-home .ds-hero-stage__media--mascotte .ds-hero-stage__mascotte,
  body.ds-home .ds-hero-stage__media--pro .ds-hero-stage__mascotte,
  body.ds-home .ds-hero-stage__media--particulier .ds-hero-stage__mascotte,
  body.ds-home .ds-hero-stage__media--collectivite .ds-hero-stage__mascotte {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    right: auto !important;
    left: auto !important;
    bottom: 0 !important;
    top: auto !important;
    filter: none !important;
  }
  body.ds-home .ds-hero-stage__media--photo picture,
  body.ds-home .ds-hero-stage__media--photo img {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  body.ds-home .ds-hero-stage__copy {
    order: 2 !important;
    position: relative !important;
    z-index: 3;
    padding: 20px 18px 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    color: #fff;
  }
  body.ds-home .ds-hero-stage__title,
  body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__title {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.1 !important;
    letter-spacing: -0.025em;
    margin: 8px 0 12px !important;
  }
  body.ds-home .ds-hero-stage__title-line { display: block; white-space: normal !important; }
  body.ds-home .ds-hero-stage__lead {
    font-size: 15px !important;
    line-height: 1.55;
    margin: 0 0 16px !important;
    color: rgba(255,255,255,0.85);
  }
  body.ds-home .ds-hero-stage__tagline { font-size: 14px; opacity: 0.85; margin: 0 0 8px; }
  body.ds-home .ds-hero-stage__cta {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin: 0 !important;
  }
  body.ds-home .ds-hero-stage__cta-primary,
  body.ds-home .ds-hero-stage__cta .ds-btn-primary {
    display: flex !important; align-items: center; justify-content: center;
    width: 100%;
    min-height: 52px;
    padding: 16px 20px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-align: center;
  }
  body.ds-home .ds-hero-stage__cta-phone {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 52px;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
    color: #fff !important;
    text-decoration: none;
  }
  body.ds-home .ds-hero-stage__cta-phone-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
  body.ds-home .ds-hero-stage__cta-phone-label { font-size: 11px; opacity: 0.7; font-weight: 500; }
  body.ds-home .ds-hero-stage__cta-phone-num { font-size: 16px; font-weight: 700; font-variant-numeric: tabular-nums; }
  body.ds-home .ds-hero-stage__topline,
  body.ds-home .ds-hero-stage__halo,
  body.ds-home .ds-hero-stage__grain,
  body.ds-home .ds-hero-stage__grid { display: none !important; }
  body.ds-home .ds-breadcrumb--stage { font-size: 12px !important; margin-bottom: 12px !important; }
  body.ds-home .ds-breadcrumb--stage a { color: rgba(255,255,255,0.7); }
  .ds-label { font-size: 11px !important; padding: 4px 10px !important; }

  
  section { padding: 0 !important; }
  .ds-info-block,
  .ds-services,
  .ds-zen,
  .ds-steps,
  .ds-faq,
  .ds-section-muted,
  .ds-reassurance,
  .ds-footer-cta,
  .ds-pro-statement,
  .ds-pro-domain-grid,
  .ds-services--pro,
  .ds-stats-pro {
    padding: 36px 0 !important;
  }
  .ds-info-block .wrap,
  .ds-section-muted .wrap {
    display: block !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
  .ds-info-block .wrap > * + *,
  .ds-section-muted .wrap > * + * { margin-top: 24px; }
  .ds-section-header { text-align: left !important; margin-bottom: 20px; }
  .ds-section-header h2,
  .ds-info-block h2,
  .ds-section-muted h2,
  .ds-services h2,
  .ds-faq h2 {
    font-size: 24px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em;
    text-wrap: balance;
    margin: 4px 0 12px !important;
  }
  h3 { font-size: 17px !important; line-height: 1.3 !important; }
  .ds-eyebrow { font-size: 11px !important; letter-spacing: 0.14em !important; }
  .ds-lead { font-size: 15px !important; line-height: 1.6 !important; }
  p { font-size: 15px; line-height: 1.6; }

  
  .ds-reassurance .wrap {
    display: flex !important;
    overflow-x: auto;
    gap: 8px;
    padding: 0 16px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .ds-reassurance .wrap::-webkit-scrollbar { display: none; }
  .ds-reassurance-item {
    flex: 0 0 auto;
    scroll-snap-align: start;
    font-size: 12px !important;
    padding: 8px 12px !important;
    background: rgba(31,78,140,0.06);
    border-radius: 999px;
    white-space: nowrap;
  }
  .ds-reassurance-item svg { width: 14px; height: 14px; }

  
  .ds-quick-cards {
    grid-template-columns: 1fr !important;
    display: grid !important;
    gap: 12px !important;
    padding: 16px !important;
  }
  .ds-quick-card {
    display: flex !important;
    align-items: flex-start;
    gap: 14px !important;
    padding: 16px !important;
    border-radius: 16px !important;
  }
  .ds-quick-card .ds-icon { flex-shrink: 0; width: 40px !important; height: 40px !important; }
  .ds-quick-card h3 { margin: 0 0 4px !important; font-size: 16px !important; }
  .ds-quick-card p { font-size: 13.5px !important; line-height: 1.5 !important; }

  
  .ds-service-grid,
  .ds-service-grid[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ds-service-card {
    padding: 18px !important;
    border-radius: 16px !important;
    min-height: auto !important;
  }
  .ds-service-card .ds-icon { width: 36px !important; height: 36px !important; }
  .ds-service-card .ds-icon svg { width: 36px; height: 36px; }
  .ds-service-card h3 { font-size: 17px !important; margin: 8px 0 4px !important; }
  .ds-service-card .ds-service-sub { font-size: 12px !important; }
  .ds-service-card p { font-size: 14px !important; line-height: 1.55 !important; }
  .ds-service-more { font-size: 13px !important; }

  
  .ds-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .ds-step {
    padding: 18px !important;
    border-radius: 16px !important;
  }
  .ds-step-num { font-size: 28px !important; }

  
  .ds-zen-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .ds-zen-card {
    padding: 18px !important;
    border-radius: 18px !important;
  }
  .ds-zen-card h3 { font-size: 18px !important; }
  .ds-zen-price { font-size: 28px !important; }

  
  section[style*="grid-template-columns:repeat"],
  .ds-services [style*="grid-template-columns:repeat"] {
    grid-template-columns: 1fr !important;
  }

  
  .ds-faq-item { border-radius: 14px !important; margin-bottom: 8px; padding: 0 !important; }
  .ds-faq-item summary {
    padding: 16px !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    cursor: pointer;
    list-style: none;
    min-height: 56px;
    display: flex;
    align-items: center;
  }
  .ds-faq-item summary::-webkit-details-marker { display: none; }
  .ds-faq-answer { padding: 0 16px 16px !important; font-size: 14px !important; line-height: 1.6 !important; }

  
  .ds-footer-cta { padding: 40px 0 !important; text-align: center; }
  .ds-footer-cta h2 { font-size: 22px !important; }
  .ds-footer-cta p { font-size: 14px !important; }
  .ds-cta-row {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  .ds-cta-row a {
    width: 100%;
    min-height: 52px;
    padding: 16px 20px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    text-align: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  
  footer.site { padding-top: 0 !important; }
  footer.site .cols {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    grid-template-columns: 1fr !important;
  }
  footer.site h4 { font-size: 13px !important; letter-spacing: 0.12em; margin-bottom: 10px; }
  footer.site ul { padding: 0; margin: 0; list-style: none; }
  footer.site li { padding: 6px 0; }
  footer.site a { font-size: 14.5px; }
  footer.site .footer-tagline { font-size: 14px !important; line-height: 1.55 !important; }
  footer.site .footer-coords li { font-size: 14px !important; padding: 8px 0; }
  footer.site .bottom {
    flex-direction: column !important;
    gap: 8px;
    font-size: 12px !important;
    text-align: center;
    padding-top: 16px;
  }
  .footer-wave { display: none; }

  
  .ds-mascotte-frame img,
  picture img {
    max-width: 100% !important;
    height: auto;
  }

  
  .ds-timeline { margin: 16px 0 !important; }
  .ds-timeline-item { padding: 14px 0 !important; }
  .ds-timeline-item h3 { font-size: 16px !important; }
  .ds-timeline-item p { font-size: 14px !important; }

  
  a, button {
    -webkit-tap-highlight-color: rgba(0,0,0,0.06);
  }
  a.ds-btn-primary,
  a.ds-btn-secondary,
  a.ds-btn-outline-light,
  button.ds-btn-primary {
    min-height: 48px !important;
    padding: 14px 20px !important;
    border-radius: 14px !important;
    font-size: 15.5px !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  
  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form input[type="search"],
  form select,
  form textarea {
    width: 100% !important;
    min-height: 48px;
    padding: 12px 14px !important;
    font-size: 16px !important; 
    border-radius: 12px !important;
    border: 1.5px solid rgba(0,0,0,0.12);
    background: #fff;
  }
  form label { font-size: 14px !important; font-weight: 600; margin-bottom: 6px; display: block; }
  form button[type="submit"] {
    width: 100%;
    min-height: 52px;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700;
  }

  
  .ds-pro-statement__ghost,
  .ds-pro-statement::before,
  .ds-pro-statement::after,
  .ds-hero-stage__media-glow,
  .ds-hero-stage__halo { display: none !important; }
  .ds-pro-statement__inner { flex-direction: column !important; gap: 0 !important; }
  .ds-pro-statement__body h2 { font-size: 22px !important; }
  .ds-pro-statement__body > p { font-size: 15px !important; }

  
  [style*="position:sticky"] { position: relative !important; top: auto !important; }
}


@media (max-width: 380px) {
  body.ds-home .ds-hero-stage__title { font-size: 24px !important; }
  body.ds-home .ds-hero-stage__lead { font-size: 14px !important; }
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__media--pro,
  body.ds-home .ds-hero-stage__media--particulier,
  body.ds-home .ds-hero-stage__media--collectivite { height: 180px; }
  .ds-section-header h2 { font-size: 22px !important; }
  .mobile-cta a { font-size: 14px !important; padding: 10px !important; min-height: 44px !important; }
  body { padding-bottom: 68px; }
}


@media (max-width: 768px) {
  nav.main .nav-panel {
    width: 100% !important;
    max-width: 100% !important;
    background: linear-gradient(180deg, #0E1E3A 0%, #163A69 100%) !important;
    padding: 20px 22px calc(32px + env(safe-area-inset-bottom)) !important;
    box-shadow: none !important;
    color: #fff;
  }
  nav.main .nav-panel__header {
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    margin-bottom: 16px !important;
    padding-bottom: 14px !important;
  }
  nav.main .nav-panel__title {
    font-family: Archivo, sans-serif !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    color: #fff !important;
  }
  nav.main .nav-panel__close {
    background: rgba(255,255,255,0.10) !important;
    color: #fff !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
  }
  nav.main .nav-panel__close:hover { background: rgba(255,255,255,0.18) !important; }
  nav.main .nav-panel__list { gap: 0 !important; margin: 6px 0 24px !important; }
  nav.main .nav-panel__list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
  nav.main .nav-panel__list li a {
    color: rgba(255,255,255,0.92) !important;
    font-size: 16px !important;
    padding: 18px 6px !important;
    border-radius: 0 !important;
    background: transparent !important;
    min-height: 56px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  nav.main .nav-panel__list li a::after {
    content: '\203A';
    opacity: 0.45;
    font-size: 22px;
    line-height: 1;
  }
  nav.main .nav-panel__list li a:hover {
    color: #fff !important;
    background: transparent !important;
  }
  nav.main .nav-panel__list li a[aria-current="page"] {
    background: transparent !important;
    color: #B6E68A !important;
  }
  nav.main .nav-panel__cta {
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    padding: 18px 0 !important;
    gap: 10px !important;
  }
  nav.main .nav-panel__cta .ds-btn-primary,
  nav.main .nav-panel__cta .ds-btn-secondary {
    min-height: 52px !important;
    padding: 14px 18px !important;
    border-radius: 14px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }
  nav.main .nav-panel__cta .ds-btn-secondary {
    background: rgba(255,255,255,0.10) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.20) !important;
  }
  nav.main .nav-panel__address {
    color: rgba(255,255,255,0.65) !important;
    font-size: 13px !important;
    line-height: 1.6 !important;
    margin-top: 18px !important;
  }
  nav.main .nav-panel__address strong { color: #fff !important; font-size: 15px; }
}


@media (max-width: 768px) {
  nav.main {
    transform: none !important;
    will-change: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: #fff !important;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  
  .ds-mobile-quickactions {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    padding: 16px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .ds-mobile-quickactions a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    border-radius: 14px;
    background: #F4F7FB;
    color: #163A69;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    line-height: 1.15;
    min-height: 76px;
  }
  .ds-mobile-quickactions a svg { width: 22px; height: 22px; flex-shrink: 0; }
  .ds-mobile-quickactions a strong { font-weight: 700; font-size: 11px; }
  .ds-mobile-quickactions a.is-primary { background: var(--accent-500, #7AC043); color: #062215; }
  .ds-mobile-quickactions__hours-status {
    font-size: 9.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.75;
    margin-top: 1px;
  }
}
@media (min-width: 769px) {
  .ds-mobile-quickactions { display: none !important; }
}


@media (max-width: 768px) {
  
  body.ds-home .ds-tracking,
  body.ds-home .ds-story,
  body.ds-home .ds-team,
  body.ds-home .ds-territorial,
  body.ds-home .ds-pro-statement,
  body.ds-home .ds-pro-domain-grid,
  body.ds-home .ds-stats-pro,
  body.ds-home .ds-partners,
  body.ds-home .ds-kpi-ribbon { display: none !important; }

  
  footer.site .footer-coords li:nth-child(4) { scroll-margin-top: 80px; }
}


@media (max-width: 768px) {

  
  nav.main .nav-panel { flex-direction: column !important; }

  
  body.ds-home .ds-hero-stage__copy {
    padding: 18px 16px 24px !important;
  }
  body.ds-home .ds-hero-stage__title {
    font-size: clamp(24px, 6.5vw, 30px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.022em;
    margin: 6px 0 10px !important;
  }
  body.ds-home .ds-hero-stage__lead {
    font-size: 14.5px !important;
    line-height: 1.5 !important;
    margin: 0 0 14px !important;
  }
  
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__media--pro,
  body.ds-home .ds-hero-stage__media--particulier,
  body.ds-home .ds-hero-stage__media--collectivite,
  body.ds-home .ds-hero-stage__media--mascotte {
    height: 200px !important;
  }

  
  .ds-hero-slim { padding: 24px 0 20px !important; }
  .ds-hero-slim h1 { font-size: clamp(24px, 6vw, 30px) !important; line-height: 1.15 !important; margin: 8px 0 12px !important; }
  .ds-hero-slim .ds-hero-sub { font-size: 14.5px !important; line-height: 1.55 !important; margin: 0 0 16px !important; }
  .ds-breadcrumb { font-size: 12px !important; margin-bottom: 8px !important; }

  
  .ds-mobile-actionbar {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 12px 16px 16px;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .ds-mobile-actionbar a {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 6px;
    border-radius: 12px;
    background: #F4F7FB;
    color: #163A69;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.15;
    min-height: 64px;
  }
  .ds-mobile-actionbar a svg { width: 20px; height: 20px; }
  .ds-mobile-actionbar a.is-primary { background: var(--accent-500, #7AC043); color: #062215; }

  
  .ds-service-card .ds-service-sub {
    font-family: var(--font-mono, monospace);
    color: var(--blue-500);
    margin-bottom: 8px !important;
  }

  
  .ds-service-card p,
  .ds-step p { margin: 6px 0 0 !important; }

  
  .ds-cta-row a + a { margin-top: 0 !important; }

  
  form fieldset { padding: 12px 0 !important; border: none !important; margin: 0 !important; }
  form > * + * { margin-top: 12px; }
  form .field, form .form-row, form .form-group { margin-bottom: 14px !important; }

  
  .ds-section-muted .wrap { gap: 24px !important; }

  
  section .wrap[style*="grid-template-columns:repeat(auto-fit"] {
    grid-template-columns: 1fr !important;
  }

  
  footer.site .footer-tagline { margin: 8px 0 14px !important; }
  footer.site h4 { margin-top: 4px !important; }

  
  .reveal { transform: none !important; opacity: 1 !important; }
}


@media (max-width: 360px) {
  body.ds-home .ds-hero-stage__title { font-size: 22px !important; }
  body.ds-home .ds-hero-stage__lead { font-size: 13.5px !important; }
  .ds-hero-slim h1 { font-size: 22px !important; }
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__media--pro,
  body.ds-home .ds-hero-stage__media--particulier,
  body.ds-home .ds-hero-stage__media--collectivite { height: 170px !important; }
}


@media (min-width: 769px) {
  .ds-mobile-actionbar { display: none !important; }
}




.mobile-cta {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.mobile-cta.is-hidden {
  transform: translateY(100%);
}

@media (max-width: 768px) {
  
  
  .ds-btn-primary,
  .ds-btn-ghost,
  .ds-btn-outline,
  .btn.primary,
  .btn.outline,
  .btn.ghost-light,
  .ds-hero-stage__cta-primary,
  .ds-hero-stage__cta-phone {
    min-height: 48px !important;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
  }

  
  .ds-service-more {
    display: inline-flex !important;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    font-weight: 600;
  }

  
  a[href^="tel:"],
  a[href^="mailto:"] {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
  }

  
  footer.site .footer-coords a,
  footer.site .footer-cols a {
    min-height: 44px !important;
    display: inline-flex !important;
    align-items: center;
    padding: 6px 0;
  }

  
  
  body.ds-home .ds-hero-stage__cta {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  body.ds-home .ds-hero-stage__cta > * {
    width: 100%;
    justify-content: center;
  }

  
  
  main .ds-legal,
  main .ds-prose,
  body.ds-legal main {
    font-size: 16px;
    line-height: 1.65;
  }
  main .ds-legal h2,
  main .ds-prose h2,
  body.ds-legal main h2 {
    font-size: 22px !important;
    line-height: 1.25;
    margin: 32px 0 12px !important;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  main .ds-legal h3,
  main .ds-prose h3,
  body.ds-legal main h3 {
    font-size: 18px !important;
    margin: 20px 0 8px !important;
  }
  main .ds-legal p,
  main .ds-prose p,
  body.ds-legal main p {
    margin: 0 0 14px !important;
  }
  main .ds-legal ul,
  main .ds-legal ol,
  main .ds-prose ul,
  main .ds-prose ol {
    padding-left: 20px;
    margin: 0 0 16px;
  }
  main .ds-legal li,
  main .ds-prose li {
    margin-bottom: 6px;
  }

  
  body.legal-page main article,
  body.legal-page main section {
    font-size: 16px;
    line-height: 1.65;
  }

  
  .ds-service-card {
    padding: 18px 18px 22px !important;
  }
  .ds-service-card h3 {
    font-size: 17px !important;
    line-height: 1.25;
    margin: 8px 0 6px !important;
  }
  .ds-service-card p {
    font-size: 14.5px !important;
    line-height: 1.5;
  }

  
  .ds-info-block,
  .ds-services,
  .ds-zen-cards,
  .ds-faq {
    padding: 36px 0 !important;
  }

  
  .ds-quick-cards {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .ds-quick-card {
    padding: 14px !important;
  }
  .ds-quick-card h3 {
    font-size: 14px !important;
    margin: 6px 0 4px !important;
  }
  .ds-quick-card p {
    font-size: 12.5px !important;
    line-height: 1.4;
  }

  
  .ds-faq-item summary {
    min-height: 56px;
    padding: 14px 16px !important;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  .ds-faq-item .ds-faq-answer {
    padding: 0 16px 16px !important;
    line-height: 1.55;
  }

  
  .ds-reassurance .wrap {
    flex-wrap: wrap;
    gap: 8px !important;
  }
  .ds-reassurance-item {
    flex: 1 1 calc(50% - 4px);
    font-size: 12.5px !important;
    padding: 8px 10px !important;
  }
}


@media (max-width: 420px) {
  .ds-reassurance-item {
    flex: 1 1 100%;
  }
  .ds-quick-cards {
    grid-template-columns: 1fr !important;
  }
}




.mobile-tabbar { display: none; }

@media (max-width: 768px) {
  
  .mobile-tabbar {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 -2px 16px rgba(0,0,0,0.06);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    z-index: 100;
  }
  .mobile-tabbar__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    min-height: 56px;
    color: #4A6685;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.01em;
    border-radius: 10px;
    transition: background 150ms ease, color 150ms ease;
  }
  .mobile-tabbar__item svg {
    flex-shrink: 0;
    transition: transform 150ms ease;
  }
  .mobile-tabbar__item:active {
    background: rgba(122, 192, 67, 0.10);
  }
  .mobile-tabbar__item:active svg {
    transform: scale(0.92);
  }
  .mobile-tabbar__item.is-active {
    color: #1B3F7E;
  }
  .mobile-tabbar__item--primary {
    color: #2B6FC2;
    font-weight: 700;
  }
  .mobile-tabbar__item--primary svg {
    color: var(--accent-500, #7AC043);
  }

  
  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)) !important;
  }

  
  .mobile-cta { display: none !important; }

  
  .topstrip { display: none !important; }

  
  nav.main .ds-phone,
  nav.main .ds-nav-sos-icon,
  nav.main .ds-nav-hours,
  nav.main .nav-desktop {
    display: none !important;
  }
  nav.main .wrap {
    padding: 8px 16px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px;
  }
  nav.main .logo {
    flex: 0 0 auto;
  }
  nav.main .logo img {
    max-height: 38px;
    width: auto;
    height: auto;
  }
  .nav-burger-btn {
    min-width: 48px;
    min-height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px !important;
    background: #F4F7FB;
    border: none;
    border-radius: 12px;
    color: #163A69;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
  }

  
  
  body.ds-home .ds-hero-stage__media,
  body.ds-home .ds-hero-stage__media--pro,
  body.ds-home .ds-hero-stage__media--particulier,
  body.ds-home .ds-hero-stage__media--collectivite,
  body.ds-home .ds-hero-stage__media--mascotte,
  body.ds-home .ds-hero-stage__media--diagram,
  body.ds-home .ds-hero-stage__media--photo {
    display: none !important;
  }
  
  body.ds-home .ds-pro-stage-bg {
    opacity: 0.18 !important;
    object-position: center !important;
  }
  
  body.ds-home .ds-hero-stage,
  body.ds-home .ds-hero-stage--page-pro,
  body.ds-home .ds-hero-stage--page-particulier,
  body.ds-home .ds-hero-stage--inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    padding: 24px 18px 28px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }
  body.ds-home .ds-hero-stage__copy {
    padding: 0 !important;
    gap: 12px;
  }
  body.ds-home .ds-hero-stage__title {
    font-size: clamp(26px, 7vw, 32px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.02em;
    margin: 4px 0 8px !important;
  }
  body.ds-home .ds-hero-stage__lead {
    font-size: 15px !important;
    line-height: 1.5 !important;
    margin: 0 0 16px !important;
    opacity: 0.92;
  }
  
  body.ds-home .ds-hero-stage__cta {
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }
  body.ds-home .ds-hero-stage__cta-primary {
    width: 100%;
    min-height: 52px !important;
    font-size: 15px !important;
    font-weight: 700;
  }
  body.ds-home .ds-hero-stage__cta-phone {
    width: 100%;
    min-height: 52px !important;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px;
  }

  
  section {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .wrap {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  
  body { font-size: 16px; line-height: 1.55; }
  h2 { font-size: 22px !important; line-height: 1.2; margin: 0 0 12px !important; }
  h3 { font-size: 18px !important; line-height: 1.25; }
  p { font-size: 15.5px; line-height: 1.55; }

  
  .ds-section-header {
    margin-bottom: 20px !important;
  }
  .ds-eyebrow {
    font-size: 12px !important;
    letter-spacing: 0.08em;
  }
}

@media (min-width: 769px) {
  .mobile-tabbar { display: none !important; }
}


.ds-mobile-hours { display: none; }
@media (max-width: 768px) {
  .ds-mobile-hours {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0 16px 16px;
    padding: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #F7FAFD 100%);
    border: 1px solid rgba(22, 58, 105, 0.08);
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(22, 58, 105, 0.06);
    scroll-margin-top: 80px;
  }

  
  .ds-mobile-hours__head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }
  .ds-mobile-hours__icon {
    width: 38px; height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(43, 111, 194, 0.10);
    color: var(--blue-500, #2B6FC2);
    flex-shrink: 0;
  }
  .ds-mobile-hours__head-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }
  .ds-mobile-hours__head-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6B7B92;
  }
  .ds-mobile-hours__head-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    font-weight: 700;
    color: #163A69;
    line-height: 1.2;
  }
  .ds-mobile-hours__head-status .ds-hours-badge__dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    transition: background 200ms ease, box-shadow 200ms ease;
  }
  .ds-mobile-hours__head-status[data-status="open"] .ds-hours-badge__dot {
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.20);
  }
  .ds-mobile-hours__head-status[data-status="closed"] .ds-hours-badge__dot {
    background: #ef4444;
  }
  .ds-mobile-hours__chip {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #B45309;
    background: #FEF3C7;
    padding: 4px 8px;
    border-radius: 999px;
    line-height: 1;
    flex-shrink: 0;
  }

  
  .ds-mobile-hours__week {
    margin: 0; padding: 12px 0 0;
    border-top: 1px dashed rgba(22, 58, 105, 0.10);
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .ds-mobile-hours__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    font-size: 14px;
    color: #5C708A;
    border-bottom: 1px solid rgba(22, 58, 105, 0.05);
  }
  .ds-mobile-hours__row:last-child { border-bottom: 0; }
  .ds-mobile-hours__row.is-today {
    color: #163A69;
    font-weight: 700;
  }
  .ds-mobile-hours__row dt {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: inherit;
  }
  .ds-mobile-hours__day { display: inline-block; }
  .ds-mobile-hours__row dd {
    margin: 0;
    font-variant-numeric: tabular-nums;
    text-align: right;
    font-weight: inherit;
  }
  .ds-mobile-hours__today-pill {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--accent-500, #7AC043);
    color: #062215;
    padding: 3px 7px;
    border-radius: 999px;
    line-height: 1;
  }

  
  .ds-mobile-hours__excep-block {
    background: #FEF8E8;
    border: 1px solid rgba(180, 83, 9, 0.18);
    border-radius: 12px;
    padding: 12px 14px;
  }
  .ds-mobile-hours__excep-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #B45309;
    margin-bottom: 8px;
  }
  .ds-mobile-hours__excep-list {
    margin: 0; padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .ds-mobile-hours__excep-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: baseline;
    gap: 8px;
    font-size: 13.5px;
    color: #78350F;
    line-height: 1.35;
  }
  .ds-mobile-hours__excep-list li strong {
    font-weight: 700;
    color: #5C2C0A;
  }
  .ds-mobile-hours__excep-slot {
    font-weight: 700;
    color: #5C2C0A;
    font-variant-numeric: tabular-nums;
  }
  .ds-mobile-hours__excep-slot.is-closed {
    color: #b91c1c;
  }
  .ds-mobile-hours__excep-vs {
    grid-column: 2;
    font-size: 11.5px;
    opacity: 0.7;
    font-style: italic;
  }

  
  .ds-mobile-hours__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 16px;
    background: var(--blue-500, #2B6FC2);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.01em;
    font-variant-numeric: tabular-nums;
    border-radius: 12px;
    transition: background 150ms ease, transform 150ms ease;
  }
  .ds-mobile-hours__cta:active {
    background: #1B4F94;
    transform: scale(0.98);
  }
  .ds-mobile-hours__cta svg { flex-shrink: 0; }
}


.ds-zen-card__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.ds-zen-card__toggle-label {
  display: none;
}

@media (max-width: 768px) {
  .ds-zen-card__toggle-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 14px 0 0;
    padding: 12px 16px;
    background: rgba(31, 78, 140, 0.06);
    color: var(--blue-500, #1F4E8C);
    font-weight: 700;
    font-size: 14px;
    border-radius: 12px;
    cursor: pointer;
    user-select: none;
    transition: background 150ms ease;
    min-height: 48px;
  }
  .ds-zen-card__toggle-label:hover,
  .ds-zen-card__toggle-label:active {
    background: rgba(31, 78, 140, 0.12);
  }
  .ds-zen-card__toggle:focus-visible + .ds-zen-card__toggle-label {
    outline: 3px solid var(--blue-500, #1F4E8C);
    outline-offset: 2px;
  }
  .ds-zen-card__chev {
    display: inline-block;
    transition: transform 200ms ease;
    font-size: 13px;
  }
  .ds-zen-card__toggle:checked ~ .ds-zen-card__toggle-label .ds-zen-card__chev {
    transform: rotate(180deg);
  }
  .ds-zen-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }
  .ds-zen-card__toggle:checked ~ .ds-zen-card__body {
    max-height: 800px;
  }
  
  .ds-zen-card__body > :first-child { margin-top: 14px; }
}


@media (max-width: 768px) {
  
  body.ds-home .ds-hero-stage__cta-phone { display: none !important; }

  
  body.ds-home .ds-hero-stage__title,
  body.ds-home .ds-hero-stage--page-pro .ds-hero-stage__title,
  body.ds-home .ds-hero-stage--page-particulier .ds-hero-stage__title,
  body.ds-home .ds-hero-stage--page-collectivite .ds-hero-stage__title {
    font-size: clamp(30px, 8vw, 38px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.028em;
    margin: 8px 0 12px !important;
  }
}
@media (max-width: 360px) {
  body.ds-home .ds-hero-stage__title { font-size: 26px !important; }
}


@media (max-width: 768px) {
  .ds-mobile-hours__toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 1px; height: 1px;
  }
  .ds-mobile-hours {
    
    padding-bottom: 0 !important;
  }
  .ds-mobile-hours__head {
    cursor: pointer;
    user-select: none;
    transition: background 150ms ease;
  }
  .ds-mobile-hours__head:active {
    background: rgba(31,78,140,0.04);
  }
  .ds-mobile-hours__chev {
    margin-left: auto;
    flex-shrink: 0;
    color: var(--text-secondary, #4A6685);
    transition: transform 200ms ease;
    display: inline-flex;
  }
  .ds-mobile-hours__toggle:checked ~ .ds-mobile-hours__head .ds-mobile-hours__chev {
    transform: rotate(180deg);
  }
  .ds-mobile-hours__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 280ms ease;
  }
  .ds-mobile-hours__toggle:checked ~ .ds-mobile-hours__body {
    max-height: 1000px;
    padding-bottom: 14px;
  }
  
  .ds-mobile-hours__head-status .ds-hours-badge__label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 12.5px;
  }
  .ds-mobile-hours__head-status.is-open .ds-hours-badge__dot {
    background: var(--accent-500, #7AC043);
    box-shadow: 0 0 0 4px rgba(122,192,67,0.18);
  }
  .ds-mobile-hours__head-status.is-open .ds-hours-badge__label { color: #166534; }
  .ds-mobile-hours__head-status.is-closed .ds-hours-badge__dot {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.16);
  }
  .ds-mobile-hours__head-status.is-closed .ds-hours-badge__label { color: #b91c1c; }
}


.legal-content { padding: 32px 0; }
.legal-toc {
  background: linear-gradient(135deg, #F4F7FB 0%, #E9F0F8 100%);
  border: 1px solid rgba(31,78,140,0.10);
  border-radius: 16px;
  padding: 18px 22px 16px;
  margin: 0 0 28px;
}
.legal-toc__title {
  margin: 0 0 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500, #1F4E8C);
}
.legal-toc__list {
  list-style: decimal inside;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 32px;
  font-size: 14.5px;
  line-height: 1.8;
}
.legal-toc__list li::marker { color: var(--blue-500, #1F4E8C); font-weight: 700; }
.legal-toc__list a {
  color: var(--text-primary, #163A69);
  text-decoration: none;
  font-weight: 500;
}
.legal-toc__list a:hover {
  color: var(--blue-500, #1F4E8C);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  border: 1px solid rgba(31,78,140,0.08);
  border-radius: 14px;
  margin: 0 0 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.legal-section[open] {
  border-color: rgba(31,78,140,0.20);
  box-shadow: 0 4px 16px rgba(31,78,140,0.06);
}
.legal-section > summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: background 150ms ease;
  min-height: 56px;
}
.legal-section > summary::-webkit-details-marker { display: none; }
.legal-section > summary::marker { display: none; content: ''; }
.legal-section > summary::after {
  content: '';
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--blue-500, #1F4E8C);
  border-bottom: 2px solid var(--blue-500, #1F4E8C);
  transform: rotate(45deg);
  margin-right: 6px;
  transition: transform 200ms ease;
}
.legal-section[open] > summary::after {
  transform: rotate(-135deg);
  margin-top: 6px;
}
.legal-section > summary:hover {
  background: rgba(31,78,140,0.04);
}
.legal-section > summary > h2 {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-primary, #163A69);
  font-family: var(--font-heading, sans-serif);
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.legal-section__body {
  padding: 4px 20px 20px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-secondary, #4B5563);
}
.legal-section__body p { margin: 0 0 12px; }
.legal-section__body ul {
  margin: 0 0 14px;
  padding-left: 22px;
}
.legal-section__body ul li { margin-bottom: 6px; }
.legal-section__body h3 {
  margin: 18px 0 8px;
  font-size: 1rem;
  color: var(--text-primary, #163A69);
}
.legal-section__body a {
  color: var(--blue-500, #1F4E8C);
  font-weight: 600;
}

.legal-update {
  margin: 24px 0 0;
  padding: 12px 16px;
  background: rgba(0,0,0,0.03);
  border-radius: 10px;
  font-size: 13px;
  color: var(--text-secondary, #4B5563);
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-toc__list { columns: 1; }
  .legal-section > summary { padding: 14px 16px; }
  .legal-section > summary > h2 { font-size: 15px; }
  .legal-section__body { padding: 4px 16px 16px; font-size: 14.5px; }
}


.page-toc {
  background: rgba(31, 78, 140, 0.04);
  border-top: 1px solid rgba(31, 78, 140, 0.08);
  border-bottom: 1px solid rgba(31, 78, 140, 0.08);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.92);
}
.page-toc .wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1200px;
  flex-wrap: wrap;
}
.page-toc__label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-500, #1F4E8C);
  flex-shrink: 0;
}
.page-toc__list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  flex-wrap: wrap;
}
.page-toc__list a {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid rgba(31, 78, 140, 0.12);
  border-radius: 999px;
  color: var(--text-primary, #163A69);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
  min-height: 36px;
}
.page-toc__list a:hover,
.page-toc__list a:focus-visible {
  background: var(--blue-500, #1F4E8C);
  border-color: var(--blue-500, #1F4E8C);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .page-toc {
    
    position: relative;
    padding: 10px 0;
  }
  .page-toc .wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0 16px;
    scrollbar-width: none;
  }
  .page-toc .wrap::-webkit-scrollbar { display: none; }
  .page-toc__label { display: none;  }
  .page-toc__list {
    flex-wrap: nowrap;
    flex: 0 0 auto;
  }
  .page-toc__list a {
    font-size: 12.5px;
    padding: 7px 12px;
    min-height: 36px;
  }
  
  section[id], details[id] { scroll-margin-top: 70px; }
}
