/* ============================================
   SIGMUND — Custom CSS (open-source rebuild)
   Bootstrap 5 base + this file
   Primary: #6BA4FA  Secondary: #92BCFB
   ============================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --sg-primary:    #6BA4FA;
  --sg-primary-lt: #92BCFB;
  --sg-dark:       #333333;
  --sg-light-bg:   #f0f6ff;
  --sg-hero-from:  #d6e8ff;
  --sg-hero-to:    #f8faff;
  --sg-white:      #ffffff;
  --sg-border:     #e2ecff;
  --sg-shadow:     0 4px 24px rgba(107,164,250,.15);
  --sg-gradient:   linear-gradient(135deg, #6BA4FA 0%, #4a86e8 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--sg-dark);
  background: var(--sg-white);
}

/* ---------- Navbar ---------- */
.sg-navbar {
  background: var(--sg-white);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  padding: .75rem 0;
}

.sg-navbar .navbar-nav { gap: .25rem; }

.sg-navbar .navbar-brand img { height: 3.25rem; }

.sg-navbar .nav-link {
  color: var(--sg-dark) !important;
  font-weight: 500;
  padding: .4rem .9rem !important;
  border-radius: 6px;
  transition: background .2s, color .2s;
}

.sg-navbar .nav-link:hover,
.sg-navbar .nav-link.active {
  background: var(--sg-light-bg);
  color: var(--sg-primary) !important;
  border-radius: 50px;
}

.sg-navbar .nav-link.active {
  background: var(--sg-primary);
  color: var(--sg-white) !important;
  border-radius: 50px;
}

.sg-navbar .sg-phone {
  font-size: .85rem;
  color: #555;
}

.sg-navbar .sg-phone a {
  color: inherit;
  text-decoration: none;
}

.sg-navbar .sg-phone a:hover {
  color: var(--sg-primary);
}

/* ---------- Hero ---------- */
.sg-hero {
  background: linear-gradient(135deg, var(--sg-hero-from) 0%, var(--sg-hero-to) 100%);
  padding: 5rem 0 3.75rem;
  display: flex;
  align-items: center;
}

.sg-hero h1 {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--sg-primary);
  letter-spacing: -.5px;
  margin-bottom: 1.2rem;
}

.sg-hero .lead,
.sg-hero .sg-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 33.75rem;
  margin-bottom: 1.5rem;
}

.sg-hero-img {
  max-height: 23.75rem;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,.18);
}

/* ---------- Buttons ---------- */
.btn-sg-primary {
  background: var(--sg-primary);
  color: var(--sg-white);
  border: none;
  border-radius: 50px;
  padding: .7rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background .2s, transform .1s;
  text-decoration: none;
  display: inline-block;
}

.btn-sg-primary:hover {
  background: #5590e8;
  color: var(--sg-white);
  transform: translateY(-1px);
}

.btn-sg-outline {
  border: 2px solid var(--sg-primary);
  color: var(--sg-primary);
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-weight: 600;
  transition: all .2s;
  text-decoration: none;
  display: inline-block;
}

.btn-sg-outline:hover {
  background: var(--sg-primary);
  color: var(--sg-white);
}

/* ---------- Section titles ---------- */
.sg-section { padding: 4.375rem 0; }
.sg-section-alt { background: var(--sg-light-bg); }

.sg-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sg-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2.5rem;
}

/* ---------- Feature bullets (hero list) ---------- */
.sg-feat-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.sg-feat-list li {
  padding: .35rem 0 .35rem 1.8rem;
  position: relative;
  font-size: .95rem;
  color: #444;
}

.sg-feat-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sg-primary);
  font-weight: 700;
}

/* ---------- Picto cards ---------- */
.sg-picto-card {
  background: var(--sg-white);
  border: 1px solid var(--sg-border);
  border-radius: 16px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}

.sg-picto-card:hover {
  box-shadow: var(--sg-shadow);
  transform: translateY(-3px);
}

.sg-picto-card img {
  height: 3.5rem;
  margin-bottom: 1rem;
  object-fit: contain;
}

.sg-picto-card h5 {
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .4rem;
  color: var(--sg-dark);
}

.sg-picto-card p {
  font-size: .85rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ---------- Testimonials section ---------- */
.sg-testimonials {
  background: var(--sg-gradient);
  padding: 4.5rem 0;
}

.sg-testimonials .sg-section-title { color: #fff; }

@media (max-width: 991px) {
  .sg-testimonials { padding: 3rem 0; }
}

/* ---------- CSS Carousel (scroll-snap, replaces Swiper) ---------- */
.sg-carousel { position: relative; }

.sg-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.sg-carousel-track::-webkit-scrollbar { display: none; }

.sg-carousel-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  background: rgba(255,255,255,.13);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  backdrop-filter: blur(6px);
  box-sizing: border-box;
}

.sg-carousel-slide blockquote {
  font-size: .92rem;
  color: #fff;
  line-height: 1.75;
  font-style: italic;
  border: none;
  padding: 0;
  margin-bottom: 1.2rem;
}
.sg-carousel-slide blockquote::before {
  content: '“';
  font-size: 2.5rem;
  color: rgba(255,255,255,.4);
  display: block;
  line-height: .5;
  margin-bottom: .5rem;
}
.sg-carousel-slide .author-name { font-weight: 700; color: #fff; font-size: .88rem; margin: 0; }
.sg-carousel-slide .author-role { color: rgba(255,255,255,.75); font-size: .82rem; margin: 0; }

.sg-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1.2rem;
}
.sg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.45);
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.sg-dot.active { background: #fff; transform: scale(1.25); }

.sg-carousel-btn {
  background: rgba(255,255,255,.2);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background .2s;
  line-height: 1;
}
.sg-carousel-btn:hover { background: rgba(255,255,255,.4); }

/* ---------- Pricing ---------- */
.sg-pricing {
  background: var(--sg-primary);
  color: var(--sg-white);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  text-align: center;
}

.sg-pricing .price {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.sg-pricing .price span { font-size: 1rem; font-weight: 400; }

.sg-pricing ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.sg-pricing ul li {
  padding: .3rem 0;
  font-size: .95rem;
}

.sg-pricing ul li::before { content: '✓ '; font-weight: 700; }

/* ---------- FAQ Accordion ---------- */
.sg-faq details {
  border: 1px solid rgba(107,164,250,.2);
  border-radius: 10px;
  margin-bottom: .75rem;
  overflow: hidden;
}

.sg-faq summary {
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--sg-white);
  color: var(--sg-dark);
  transition: background .15s;
}

.sg-faq summary::-webkit-details-marker { display: none; }

.sg-faq summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--sg-primary);
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform .2s;
}

.sg-faq details[open] summary::after { transform: rotate(45deg); }
.sg-faq details[open] summary { background: var(--sg-light-bg); color: var(--sg-primary); }

.sg-faq .faq-body {
  padding: 1rem 1.25rem 1.25rem;
  color: #555;
  font-size: .9rem;
  line-height: 1.75;
  background: var(--sg-white);
}

/* ---------- Timeline ---------- */
.sg-timeline {
  position: relative;
  padding-left: 2rem;
}

.sg-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sg-border);
}

.sg-timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.sg-timeline-item::before {
  content: '';
  position: absolute;
  left: -2.4rem;
  top: .5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--sg-primary);
  border: 2px solid var(--sg-white);
  box-shadow: 0 0 0 2px var(--sg-primary);
}

.sg-timeline-year {
  font-size: .85rem;
  font-weight: 700;
  color: var(--sg-primary);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sg-timeline-title {
  font-weight: 700;
  color: var(--sg-dark);
  font-size: 1rem;
  margin-bottom: .4rem;
}

.sg-timeline-text {
  font-size: .88rem;
  color: #666;
  line-height: 1.65;
  margin: 0;
}


/* ---------- Contact form ---------- */
.sg-contact-form .form-control {
  border: 1.5px solid var(--sg-border);
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .95rem;
  transition: border-color .2s;
}

.sg-contact-form .form-control:focus {
  border-color: var(--sg-primary);
  box-shadow: 0 0 0 3px rgba(107,164,250,.15);
}

/* ---------- Coming soon badges ---------- */
.sg-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--sg-light-bg);
  border: 1px solid var(--sg-border);
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .9rem;
  color: #555;
  margin-bottom: .5rem;
}

.sg-coming-soon::before {
  content: '⏳';
  font-size: .85rem;
}

/* ---------- Footer ---------- */
.sg-footer {
  background: #1a1a2e;
  color: #ccc;
  padding: 3.125rem 0 1.5rem;
  font-size: .88rem;
}

.sg-footer h6 {
  color: var(--sg-primary-lt);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .8rem;
}

.sg-footer a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
  display: block;
  margin-bottom: .4rem;
}

.sg-footer a:hover { color: var(--sg-primary-lt); }


.sg-footer .copyright { color: #666; font-size: .8rem; }

/* ---------- Language switcher ---------- */
.sg-lang-switch {
  font-size: .85rem;
  color: #666;
}

.sg-lang-switch a {
  color: #888;
  text-decoration: none;
  padding: .2rem .5rem;
  border-radius: 4px;
  transition: background .15s, color .15s;
}

.sg-lang-switch a:hover { background: var(--sg-light-bg); color: var(--sg-primary); }
.sg-lang-switch a.active { font-weight: 600; color: var(--sg-primary); }

.sg-footer p a { display: inline; }
.sg-footer .copyright a { display: inline; color: #888; }
.sg-footer .sg-lang-switch a { display: inline; color: #888; font-size: .8rem; }
.sg-footer .sg-lang-switch a.active { color: var(--sg-primary); }

/* ---------- Mobile ---------- */
@media (max-width: 991px) {
  .sg-hero { padding: 3rem 0 2.5rem; text-align: center; }
  .sg-hero .lead, .sg-hero .sg-subtitle { margin: 0 auto; }
  .sg-hero .sg-feat-list { text-align: left; display: inline-block; }
  .sg-hero-img { max-height: 13.75rem; margin-top: 2rem; }
  .sg-section { padding: 3.125rem 0; }
  .sg-pricing { padding: 2rem 1.5rem; }
}

@media (max-width: 767px) {
  .sg-picto-card { padding: 1.25rem 1rem; }
  .sg-section-title { font-size: 1.2rem; }
  .sg-carousel-slide { padding: 1.5rem 1.25rem; }
  .sg-footer { padding: 2.5rem 0 1.25rem; }
}

/* ---------- Legal / resource page header ---------- */
.sg-legal-header {
  background: var(--sg-gradient);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}

.sg-legal-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sg-legal-header h1 {
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.5px;
  margin: 0 0 .75rem;
}

.sg-legal-header p {
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  margin: 0;
  max-width: 600px;
}

.sg-legal-header .header-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sg-legal-header .header-icon i { font-size: 1.5rem; color: #fff; }

.sg-legal-header .breadcrumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: .75rem; }
.sg-legal-header .breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.sg-legal-header .breadcrumb a:hover { color: #fff; }

/* ---------- Table of contents ---------- */
.sg-toc {
  background: #f8fbff;
  border-radius: 14px;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(107,164,250,.15);
}

.sg-toc p {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--sg-primary);
  margin-bottom: .75rem;
}

.sg-toc-links { display: flex; flex-wrap: wrap; gap: .5rem; }

.sg-toc-links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #fff;
  border: 1px solid rgba(107,164,250,.25);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .85rem;
  color: var(--sg-dark);
  text-decoration: none;
  transition: all .2s;
}

.sg-toc-links a:hover { background: var(--sg-primary); color: #fff; border-color: var(--sg-primary); }
.sg-toc-links a i { font-size: .8rem; color: var(--sg-primary); transition: color .2s; }
.sg-toc-links a:hover i { color: #fff; }

/* ---------- Legal content ---------- */
.sg-legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sg-dark);
  margin: 2.5rem 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid rgba(107,164,250,.15);
}

.sg-legal-content h2:first-of-type { margin-top: 0; }

.sg-legal-content h3 {
  font-size: .98rem;
  font-weight: 700;
  color: var(--sg-primary);
  margin: 1.5rem 0 .4rem;
}

.sg-legal-content p,
.sg-legal-content li { color: #444; line-height: 1.8; font-size: .95rem; }

.sg-legal-content ul { padding-left: 1.25rem; }
.sg-legal-content a { color: var(--sg-primary); }

/* ---------- Info card (legal notice) ---------- */
.sg-info-card {
  background: #fff;
  border: 1px solid rgba(107,164,250,.15);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: .75rem;
}

.sg-info-card .info-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--sg-primary);
  margin-bottom: .5rem;
}

.sg-info-card p { font-size: .9rem; color: #444; margin: 0; line-height: 1.7; }

/* ---------- Guide pages ---------- */
.sg-guide-hero-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 60px rgba(0,0,0,.12);
  display: block;
}

.sg-guide-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--sg-dark);
  margin: 2.5rem 0 1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--sg-border);
}

.sg-guide-content h3 { font-size: 1.05rem; font-weight: 700; color: var(--sg-primary); margin: 1.75rem 0 .6rem; }
.sg-guide-content p { color: #444; line-height: 1.85; font-size: .97rem; margin-bottom: 1rem; }
.sg-guide-content ul { color: #444; line-height: 1.85; font-size: .97rem; padding-left: 1.5rem; margin-bottom: 1rem; }
.sg-guide-content ul li { margin-bottom: .4rem; }
.sg-guide-content a { color: var(--sg-primary); }

.sg-info-box {
  background: var(--sg-light-bg);
  border-left: 4px solid var(--sg-primary);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.sg-info-box p { margin: 0; font-size: .93rem; color: #444; line-height: 1.7; }
.sg-info-box strong { color: var(--sg-primary); }

.sg-steps { list-style: none; padding: 0; counter-reset: step-counter; }

.sg-steps li {
  counter-increment: step-counter;
  padding: 1rem 1rem 1rem 3.5rem;
  position: relative;
  border: 1px solid var(--sg-border);
  border-radius: 10px;
  margin-bottom: .75rem;
  background: #fff;
  font-size: .95rem;
  color: #444;
  line-height: 1.7;
}

.sg-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--sg-primary);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sg-profession-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--sg-light-bg);
  border: 1px solid var(--sg-border);
  border-radius: 20px;
  padding: .3rem .9rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--sg-primary);
  margin: .25rem;
}

/* ---------- Coming soon cards (profession pages) ---------- */
.sg-soon-card {
  background: #fff;
  border: 1.5px solid var(--sg-border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  transition: box-shadow .2s, transform .2s;
}

.sg-soon-card:hover { box-shadow: 0 8px 32px rgba(107,164,250,.18); transform: translateY(-3px); }

.sg-soon-card .soon-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--sg-light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.sg-soon-card .soon-icon i { font-size: 1.6rem; color: var(--sg-primary); }

.sg-soon-card .soon-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--sg-primary);
  background: rgba(107,164,250,.12);
  border-radius: 20px;
  padding: .2rem .75rem;
  margin-bottom: .75rem;
}

.sg-soon-card p { font-size: .92rem; color: #555; margin: 0; line-height: 1.6; }
.sg-soon-card a { color: var(--sg-primary); font-weight: 600; }

/* ---------- Team cards ---------- */
.sg-team-card { background: #fff; border: 1px solid var(--sg-border); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; height: 100%; transition: box-shadow .2s, transform .2s; }
.sg-team-card:hover { box-shadow: var(--sg-shadow); transform: translateY(-3px); }
.sg-team-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; margin-bottom: 1.25rem; border: 3px solid var(--sg-border); }
.sg-team-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--sg-dark); margin-bottom: .25rem; }
.sg-team-card .role { font-size: .85rem; font-weight: 600; color: var(--sg-primary); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 1rem; }
.sg-team-card p { font-size: .9rem; color: #555; line-height: 1.7; margin-bottom: 1.25rem; }
.sg-team-card .btn-linkedin { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; font-weight: 600; color: var(--sg-primary); border: 1.5px solid var(--sg-primary); border-radius: 50px; padding: .4rem 1rem; text-decoration: none; transition: all .2s; }
.sg-team-card .btn-linkedin:hover { background: var(--sg-primary); color: #fff; }

/* ---------- Pricing page ---------- */
.sg-price-card { background: var(--sg-gradient); border-radius: 20px; padding: 2.5rem; color: #fff; }
.sg-price-card .price { font-size: 3.5rem; font-weight: 800; line-height: 1; }
.sg-price-card .price sub { font-size: 1rem; font-weight: 400; opacity: .85; }
.sg-price-card .price-label { font-size: .9rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; opacity: .8; margin-bottom: .75rem; }
.sg-price-card ul { list-style: none; padding: 0; margin: 1.5rem 0; }
.sg-price-card ul li { padding: .4rem 0; font-size: .95rem; display: flex; align-items: center; gap: .6rem; }
.sg-price-card ul li i { font-size: 1.1rem; flex-shrink: 0; }
.sg-price-option { background: rgba(255,255,255,.15); border-radius: 12px; padding: 1rem 1.25rem; font-size: .9rem; margin-top: 1rem; }
.sg-price-option strong { display: block; margin-bottom: .2rem; }
.sg-compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.sg-compare-table th { padding: 1rem 1.25rem; font-size: .82rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.sg-compare-table th:first-child { text-align: left; color: #888; width: 40%; }
.sg-compare-table th.col-sigmund { background: var(--sg-primary); color: #fff; border-radius: 12px 12px 0 0; text-align: center; }
.sg-compare-table th.col-logicare { background: #f0f0f0; color: #666; border-radius: 12px 12px 0 0; text-align: center; }
.sg-compare-table td { padding: .85rem 1.25rem; font-size: .92rem; border-bottom: 1px solid var(--sg-border); vertical-align: middle; }
.sg-compare-table td:first-child { color: #444; font-weight: 500; }
.sg-compare-table td.col-sigmund { text-align: center; background: rgba(107,164,250,.05); color: var(--sg-dark); font-weight: 600; }
.sg-compare-table td.col-logicare { text-align: center; color: #666; }
.sg-compare-table tr:last-child td { border-bottom: none; }
.sg-compare-table .check { color: var(--sg-primary); font-size: 1.2rem; }
.sg-compare-table .cross { color: #ccc; font-size: 1.2rem; }
.sg-compare-table .partial { color: #f0ad4e; font-size: .85rem; font-weight: 600; }
.sg-compare-wrap { border: 1px solid var(--sg-border); border-radius: 16px; overflow: hidden; }
.sg-diff-card { background: #fff; border: 1px solid var(--sg-border); border-radius: 14px; padding: 1.5rem; height: 100%; }
.sg-diff-card .diff-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--sg-light-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.sg-diff-card .diff-icon i { font-size: 1.4rem; color: var(--sg-primary); }
.sg-diff-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: .5rem; }
.sg-diff-card p { font-size: .88rem; color: #555; line-height: 1.7; margin: 0; }
.sg-badge-best { display: inline-block; background: var(--sg-primary); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: .2rem .6rem; border-radius: 20px; vertical-align: middle; margin-left: .4rem; }

/* ---------- Cookie policy cards ---------- */
.sg-cookie-cards { display: flex; flex-direction: column; gap: 1rem; }
.sg-cookie-card { border-radius: 10px; padding: 1.25rem 1.5rem; border: 1px solid rgba(107,164,250,.25); background: #fff; box-shadow: 0 2px 12px rgba(107,164,250,.08); }
.sg-cookie-essential { border-left: 4px solid var(--sg-primary); }
.sg-cookie-optional { border-left: 4px solid #adb5bd; }
.sg-cookie-card-header { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .75rem; margin-bottom: .6rem; }
.sg-cookie-badge { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: .2em .6em; border-radius: 4px; }
.sg-badge-essential { background: rgba(107,164,250,.15); color: #3b6fd4; }
.sg-badge-optional { background: rgba(173,181,189,.15); color: #6c757d; }
.sg-cookie-category { font-weight: 600; font-size: .88rem; color: var(--sg-dark); }
.sg-cookie-name { font-size: .82rem; background: var(--sg-light-bg); padding: .15em .45em; border-radius: 4px; color: #c0392b; }
.sg-cookie-provider { font-size: .82rem; color: #6c757d; margin-left: auto; }
.sg-cookie-purpose { font-size: .85rem; color: #555; margin: 0; line-height: 1.6; }

/* ---------- Privacy policy ---------- */
.sg-update-badge { display: inline-flex; align-items: center; gap: .5rem; background: #f8fbff; border: 1px solid rgba(107,164,250,.2); border-radius: 8px; padding: .4rem .9rem; font-size: .82rem; color: #666; margin-bottom: 1.5rem; }
.sg-update-badge i { color: var(--sg-primary); }
.sg-provider-card { background: #fff; border: 1px solid rgba(107,164,250,.15); border-radius: 12px; padding: 1rem 1.25rem; margin-bottom: .75rem; }
.sg-provider-card strong, .provider-name { font-weight: 700; font-size: .95rem; color: var(--sg-dark); margin-bottom: .4rem; }
.sg-provider-card p { font-size: .88rem; color: #555; margin: .35rem 0 .5rem; line-height: 1.65; }
.sg-provider-card address { font-size: .82rem; color: #888; font-style: normal; line-height: 1.7; margin: 0; }
.sg-alert-note { background: rgba(107,164,250,.08); border-left: 4px solid var(--sg-primary); border-radius: 0 8px 8px 0; padding: .9rem 1.25rem; font-size: .88rem; color: #555; margin-bottom: 1.5rem; }

/* ---------- PID guide flow ---------- */
.sg-profession-badge.coming-soon { background: #fff8e6; border-color: #f0ad4e; color: #b07d00; }
.sg-flow { display: flex; align-items: center; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.sg-flow-step { background: #fff; border: 1.5px solid var(--sg-border); border-radius: 10px; padding: .75rem 1.1rem; font-size: .88rem; font-weight: 600; color: var(--sg-dark); text-align: center; flex: 1; min-width: 120px; }
.sg-flow-step.highlight { background: var(--sg-primary); color: #fff; border-color: var(--sg-primary); }
.sg-flow-arrow { color: var(--sg-primary); font-size: 1.2rem; font-weight: 700; }

/* ---------- Standalone pages (pt/, lb/) ---------- */
.sg-standalone-header { background: var(--sg-white); box-shadow: 0 1px 8px rgba(0,0,0,.06); padding: .75rem 0; }

/* ---------- Legal pages — scroll offset for sticky navbar ---------- */
.sg-legal-content h2[id],
.sg-legal-content h3[id] { scroll-margin-top: 84px; }

/* ---------- Legal pages — sidebar TOC + mobile accordéon ---------- */
.sg-sidebar-toc { position: sticky; top: 80px; background: #f8fbff; border-left: 3px solid var(--sg-primary); border-radius: 0 8px 8px 0; padding: 1.25rem 1rem 1.25rem 1.25rem; }
.sg-sidebar-toc > p { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; color: #999; margin-bottom: .75rem; }
.sg-sidebar-toc a { display: flex; align-items: flex-start; gap: .35rem; font-size: .82rem; color: #555; text-decoration: none; padding: .32rem .4rem; border-radius: 5px; line-height: 1.35; transition: color .15s, background .15s; }
.sg-sidebar-toc a i { flex-shrink: 0; margin-top: .15em; font-size: .65rem; color: #ccc; transition: color .15s; }
.sg-sidebar-toc a:hover { color: var(--sg-primary); background: rgba(107,164,250,.07); }
.sg-sidebar-toc a:hover i, .sg-sidebar-toc a.sg-toc-active i { color: var(--sg-primary); }
.sg-sidebar-toc a.sg-toc-active { color: var(--sg-primary); font-weight: 600; background: rgba(107,164,250,.09); }
.sg-mob-toc-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; background: #f8fbff; border: 1px solid var(--sg-border); border-radius: 8px; padding: .8rem 1rem; color: #333; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .15s; }
.sg-mob-toc-btn[aria-expanded="true"] { border-radius: 8px 8px 0 0; border-bottom-color: transparent; }
.sg-mob-toc-btn .bi-list-ul { color: var(--sg-primary); }
.sg-mob-toc-chevron { font-size: .75rem; transition: transform .2s ease; }
.sg-mob-toc-btn[aria-expanded="true"] .sg-mob-toc-chevron { transform: rotate(180deg); }
.sg-mob-toc-body { background: #f8fbff; border: 1px solid var(--sg-border); border-top: none; border-radius: 0 0 8px 8px; padding: .5rem .75rem .75rem; }
.sg-mob-toc-body a { display: block; padding: .45rem .5rem; font-size: .87rem; color: #555; text-decoration: none; border-bottom: 1px solid rgba(107,164,250,.12); }
.sg-mob-toc-body a:last-child { border-bottom: none; }
.sg-mob-toc-body a:hover { color: var(--sg-primary); }