/*
  SwissBot Theme â€“ main.css (refactor SAFE)
  - Aucun changement d'ordre fonctionnel volontaire (cascade conservÃ©e)
  - Suppression uniquement des blocs STRICTEMENT dupliquÃ©s (identiques)
  - Mise en forme + Table des matiÃ¨res

  GÃ©nÃ©rÃ©: 2025-12-15
*/

/* =========================
   TABLE DES MATIÃˆRES (repÃ¨res)
   =========================
 - Mission â€“ Layout exact (desktop)
 - Home â€“ Products section (2 cards)
 - About â€“ Nos principes (layout propre + aÃ©rÃ©)
 - FIX placement grid: forcer le texte en colonne 2
 - Vision 2028
 - ===== Vision 2028 â€“ ajustements finaux =====
 - Titre "Vision 2028" bien blanc et lisible
 - ===== Nos principes â€“ hover icÃ´ne =====
 - Product â€“ Offre de lancement (pricing-launch)
*/

:root {
    --color-primary: #0A1A2F;
    --color-primary-light: #1a2f4d;
    --color-secondary: #F5F7FA;
    --color-accent: #E54848;
    --color-text: #334155;
    --color-muted: #64748B;
    --color-border: #E2E8F0;
    --color-white: #FFFFFF;
    --color-success: #10B981;
    --color-success-bg: #D1FAE5;
    --color-blue-light: #EFF6FF;
    --color-blue-dark: #1D4ED8;
    --font-heading: "Montserrat", sans-serif;
    --font-body: "Inter", sans-serif;
    --container-width: 1280px;
    --header-height: 80px;
    --section-spacing: 6rem;
    --section-spacing-mobile: 4rem;
}

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

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex: 1;
    padding-top: var(--header-height);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    border-radius: 4px;
    font-weight: 800;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}

.logo-icon.sm {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

.nav-menu li.current-menu-item a {
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    position: relative;
    display: block;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--color-primary);
    position: absolute;
    transition: transform 0.2s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: "";
    top: -8px;
}

.hamburger-inner::after {
    content: "";
    top: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: white;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
    padding: 2rem;
    border-top: 1px solid var(--color-border);
}

.mobile-menu-overlay.is-open {
    transform: translateX(0);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--color-white);
    color: var(--color-primary);
    border: 1px solid var(--color-border);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background-color: var(--color-secondary);
}

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

.btn-white:hover {
    background-color: rgba(255,255,255,0.9);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.hero-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.text-highlight {
    color: var(--color-muted);
    font-weight: 300;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.9rem;
    background: #e5f0ff;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #2563eb;
    margin-bottom: 1.25rem;
    border: 1px solid var(--color-border);
}

.badge-pill.blue {
    background: #e5f0ff;
    color: #2563eb;
    border-color: #DBEAFE;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: currentColor;
    border-radius: 999px;
}

.badge-dot.blue {
    background: var(--color-blue-dark);
}

.visual-card-wrapper {
    position: relative;
    perspective: 1000px;
}

.visual-img {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0,0,0,0.05);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.visual-card-wrapper:hover .visual-img {
    transform: rotateY(0) rotateX(0);
}

.float-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid var(--color-border);
    animation: float 6s ease-in-out infinite;
}

.float-card-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.float-card-2 {
    bottom: 10%;
    left: -20px;
    animation-delay: 2s;
}

.float-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.float-icon.success {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.float-icon.primary {
    background: var(--color-blue-light);
    color: var(--color-blue-dark);
}

.float-text {
    display: flex;
    flex-direction: column;
}

.float-label {
    font-size: 0.7rem;
    color: var(--color-muted);
    text-transform: uppercase;
}

.float-value {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-primary);
}

.section-header {
    max-width: 768px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin: 0 0 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--color-muted, #6b7280);
    margin: 0;
    line-height: 1.7;
}

.mission-section {
    padding: var(--section-spacing) 0;
    background: var(--color-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #ffffff;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s ease;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-box {
    width: 48px;
    height: 48px;
    background: var(--color-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--color-muted);
    font-size: 0.95rem;
}

.product-spotlight {
    padding: var(--section-spacing) 0;
}

.spotlight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: center;
}

.spotlight-img {
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
}

.spotlight-features {
    margin: 0;
    display: grid;
    flex-direction: column;
    gap: 0.7rem;
    list-style: none;
    padding: 0;
}

.spotlight-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
    font-size: 0.98rem;
    color: var(--color-text, #111827);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: rgba(52, 211, 153, 0.15);
    color: #22c55e;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cta-section {
    padding: var(--section-spacing) 0;
    background: var(--color-primary);
    color: white;
    text-align: center;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-desc {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.site-footer {
    background: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer .footer-col {
    min-width: 0;
}

.footer-heading {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-menu a {
    color: var(--color-muted);
    font-size: 0.9rem;
}

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

.footer-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 1rem 0 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--color-muted);
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--color-primary);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
}

.btn-icon {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 4px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-muted);
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.page-header {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid var(--color-border);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-muted);
    max-width: 700px;
}

.form-container {
    background: white;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: inherit;
    background: var(--color-secondary);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
}

.error-404-section {
    padding: 8rem 0;
}

.error-title {
    font-size: 6rem;
    color: var(--color-accent);
    margin-bottom: 0;
}

.page-template-page-about .page-header-content {
    max-width: 720px;
}

.page-template-page-about .badge-pill.secondary {
    background: var(--color-secondary);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
}

.page-template-page-about .section-story {
    padding: var(--section-spacing) 0;
}

.page-template-page-about .bg-light {
    background-color: var(--color-secondary);
}

.page-template-page-about .story-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: flex-start;
}

.page-template-page-about .sticky-title {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.page-template-page-about .story-content-col p {
    margin-bottom: 1.5rem;
}

.page-template-page-about .quote-box {
    border-left: 4px solid var(--color-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--color-primary);
    font-weight: 500;
}

.page-template-page-about .section-values {
    padding: var(--section-spacing) 0;
}

.page-template-page-about .section-vision {
    padding: var(--section-spacing) 0;
}

.page-template-page-about .section-vision.bg-primary {
    background-color: var(--color-primary);
}

.page-template-page-about .text-white {
    color: #ffffff;
}

.page-template-page-about .vision-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-template-page-about .vision-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.page-template-page-about .text-center {
    text-align: center;
}

.section-vision {
    padding: var(--section-spacing) 0;
    background-color: var(--color-primary);
    color: #ffffff;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
    gap: 3rem;
}

.vision-content {
    max-width: 640px;
}

.vision-title {
    margin-bottom: 1.5rem;
}

.vision-desc {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 1.25rem;
}

.vision-image {
    display: flex;
    justify-content: flex-end;
}

.vision-image-inner {
    position: relative;
    max-width: 480px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vision-image-inner img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.95;
}

.vision-image-inner:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.vision-image-badge {
    position: absolute;
    bottom: 1.75rem;
    right: 1.75rem;
    text-align: right;
    color: #ffffff;
    text-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.vision-year {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.vision-tagline {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.9;
}

.pricing-launch {
    margin-top: 6rem;
    background-color: var(--color-primary);
    color: #ffffff;
    border-radius: 12px;
    padding: 3rem 3.5rem;
}

.pricing-launch-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.7fr);
    gap: 3rem;
    align-items: stretch;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    background: #020827;
    color: #ffffff;
}

.pricing-launch-title {
    font-size: 1.9rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.pricing-launch-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.75rem;
    margin: 0 0 2rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-launch-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-launch-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.98rem;
    margin-bottom: 0.75rem;
}

.pricing-launch-features .check-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    background: rgba(52, 211, 153, 0.16);
    color: #34d399;
}

.pricing-launch-cta {
    margin-top: 1.5rem;
}

.pricing-launch-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    opacity: 0.75;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-launch-right {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-plan-label {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-amount-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 0.3rem;
}

.pricing-currency {
    font-size: 1rem;
    font-weight: 600;
}

.pricing-period {
    font-size: 0.95rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-comparison {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0 0 1.75rem 0;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.pricing-compare-box {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 1.1rem 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.pricing-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-compare-row + .pricing-compare-row {
    margin-top: 0.5rem;
}

.pricing-compare-row .label {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-compare-row .label.highlight {
    color: #22c55e;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.6);
}

.new-price {
    color: #22c55e;
    font-weight: 600;
}

.page-header-products {
    background: #f7f9fc;
    padding: 5.5rem 0 4rem;
}

.page-header-products .page-header-content {
    max-width: 800px;
}

.page-header-products .page-title {
    font-size: 3.2rem;
    line-height: 1.1;
    margin: 0 0 1.5rem;
}

.page-header-products .page-subtitle {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-muted, #6b7280);
}

.section-product {
    padding: 4rem 0 6rem;
}

.product-info {
    max-width: 540px;
}

.product-title {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 0.75rem;
}

.product-tagline {
    margin: 0 0 1.5rem;
}

.product-desc {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.badge-text {
    white-space: nowrap;
}

.product-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-visual {
    display: flex;
    justify-content: flex-end;
}

.product-visual .spotlight-img {
    max-width: 520px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.25);
    display: block;
}

.how-it-works {
    margin-top: 6rem;
}

.section-header.text-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.feature-card.text-center {
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.step-desc {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--color-muted, #6b7280);
}

.pricing-launch-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-launch-cta .btn.btn-white {
    background: #ffffff;
    color: #020827;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.98rem;
}

.section-product .pricing-launch {
    margin-top: 4rem;
}

.section-product .pricing-launch-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
    gap: 3rem;
    padding: 3rem 3.5rem;
    border-radius: 24px;
    background: #020827;
    color: #ffffff;
    align-items: stretch;
}

.section-product .pricing-launch-left {
    display: flex;
    flex-direction: column;
}

.section-product .pricing-launch-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
}

.section-product .pricing-launch-subtitle {
    margin: 0 0 2rem;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.section-product .pricing-launch-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.section-product .pricing-launch-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
    font-size: 0.98rem;
}

.section-product .pricing-launch-features .check-icon {
    background: rgba(52, 211, 153, 0.16);
    color: #34d399;
}

.section-product .pricing-launch-cta {
    margin-top: 1.5rem;
}

.section-product .pricing-launch-cta .btn.btn-white {
    background: #ffffff;
    color: #020827;
    border-radius: 999px;
    padding: 0.85rem 1.8rem;
    font-weight: 600;
    font-size: 0.98rem;
}

.section-product .pricing-launch-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.section-product .pricing-launch-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.section-product .pricing-plan-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.section-product .pricing-amount-row {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.section-product .pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.section-product .pricing-amount-details {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.section-product .pricing-currency {
    font-size: 1rem;
    font-weight: 600;
}

.section-product .pricing-period {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.section-product .pricing-comparison {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.section-product .pricing-compare-box {
    margin-top: 2rem;
    padding: 1.1rem 1.4rem;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.section-product .pricing-compare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.section-product .pricing-compare-row .label {
    color: rgba(255, 255, 255, 0.75);
}

.section-product .pricing-compare-row .label.highlight {
    color: #22c55e;
    font-weight: 600;
}

.section-product .old-price {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.6);
}

.section-product .new-price {
    font-weight: 600;
    color: #22c55e;
}

.page-legal .legal-section {
    max-width: 980px;
    margin: 0 auto;
}

.page-legal .legal-section-title {
    font-size: 2.2rem;
    margin: 0 0 1rem;
}

.page-legal .legal-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0 0 2rem;
}

.page-legal .legal-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 5rem;
}

.page-legal .legal-span-left {
    grid-column: 1 / 2;
}

.page-legal .legal-stack {
    display: grid;
    gap: 2.2rem;
}

.page-legal .legal-card-title {
    font-size: 1.1rem;
    margin: 0 0 0.9rem;
    color: var(--color-primary);
    font-weight: 700;
}

.page-legal .legal-card-body p {
    margin: 0 0 0.35rem;
    color: var(--color-muted);
}

.page-legal .legal-section-space {
    margin-top: 5rem;
}

.product-hero-visual .product-visual-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
}

.product-hero-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid var(--color-border);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.18);
}

.product-float-card {
    position: absolute;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 0.9rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.product-float-card-1 {
    top: 1rem;
    right: -1.2rem;
}

.product-float-card-2 {
    bottom: 1rem;
    left: -1.2rem;
}

.product-float-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-blue-light);
    color: var(--color-blue-dark);
    font-size: 1rem;
}

.product-float-icon.success {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.product-float-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.product-float-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-muted);
}

.product-float-value {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 1024px) {
  :root {
      --container-width: 960px;
  }

  .hero-title {
      font-size: 3rem;
  }

  .hero-grid, .spotlight-grid {
      gap: 2rem;
  }

  .footer-grid {
      grid-template-columns: 1fr 1fr;
  }

  .vision-grid {
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
  }

  .vision-image-inner {
      max-width: 420px;
  }

  .pricing-launch {
      padding: 2.5rem 2rem;
  }

  .pricing-launch-grid {
      grid-template-columns: 1fr;
      gap: 2.5rem;
      padding: 2.5rem 2rem;
  }

  .spotlight-grid {
      grid-template-columns: 1fr;
      gap: 3rem;
  }

  .product-visual {
      justify-content: center;
  }

  .pricing-launch-right {
      text-align: left;
  }

  .pricing-amount {
      font-size: 3rem;
  }

  .section-product .pricing-launch-grid {
      grid-template-columns: 1fr;
      padding: 2.5rem 2rem;
      gap: 2.5rem;
  }

  .product-float-card-1 {
      right: 0.75rem;
  }

  .product-float-card-2 {
      left: 0.75rem;
  }
}

@media (max-width: 768px) {
  :root {
      --header-height: 70px;
  }

  .desktop-nav {
      display: none;
  }

  .mobile-menu-toggle {
      display: block;
  }

  .hero-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .hero-subtitle {
      margin: 0 auto 2rem;
  }

  .hero-actions {
      justify-content: center;
  }

  .hero-visual {
      order: -1;
      margin-bottom: 2rem;
  }

  .visual-card-wrapper {
      transform: none;
  }

  .visual-img {
      transform: none;
  }

  .float-card {
      display: none;
  }

  .spotlight-grid {
      grid-template-columns: 1fr;
  }

  .spotlight-visual {
      margin-bottom: 2rem;
  }

  .contact-grid {
      grid-template-columns: 1fr;
  }

  .story-grid {
      grid-template-columns: 1fr;
  }

  .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .footer-bottom {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
  }

  .legal-links {
      justify-content: center;
  }

  .page-template-page-about .story-grid {
      grid-template-columns: 1fr;
  }

  .vision-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .vision-content {
      margin: 0 auto;
  }

  .vision-image img {
      margin: 0 auto;
  }

  .vision-image {
      justify-content: center;
  }

  .vision-image-inner {
      max-width: 360px;
      margin-top: 2rem;
  }

  .vision-image-badge {
      bottom: 1.25rem;
      right: 1.25rem;
      text-align: right;
  }

  .pricing-launch {
      padding: 2.5rem 1.75rem;
  }

  .pricing-launch-grid {
      grid-template-columns: 1fr;
  }

  .pricing-launch-right {
      margin-top: 2rem;
  }

  .product-float-card {
      display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
      font-size: 2.25rem;
  }

  .page-title {
      font-size: 2rem;
  }

  .hero-actions {
      flex-direction: column;
      width: 100%;
  }

  .btn {
      width: 100%;
  }
}

@media (max-width: 640px) {
  .page-header-products {
      padding: 4rem 0 3rem;
  }

  .page-header-products .page-title {
      font-size: 2.4rem;
  }

  .section-product {
      padding: 3rem 0 4rem;
  }

  .pricing-launch-grid {
      padding: 2rem 1.5rem;
      border-radius: 18px;
  }

  .pricing-launch-title {
      font-size: 1.6rem;
  }

  .pricing-amount {
      font-size: 2.6rem;
  }

  .features-grid {
      grid-template-columns: 1fr;
  }

  .section-product .pricing-launch-grid {
      padding: 2rem 1.5rem;
      border-radius: 18px;
  }

  .section-product .pricing-launch-title {
      font-size: 1.6rem;
  }

  .section-product .pricing-amount {
      font-size: 2.6rem;
  }
}

@media (max-width: 900px) {
  .page-legal .legal-two-col {
      grid-template-columns: 1fr;
      gap: 2rem;
  }

  .page-legal .legal-span-left {
      grid-column: auto;
  }
}

/* =========================
   Mission â€“ Layout exact (desktop)
   ========================= */
.mission-layout{
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 2fr);
  column-gap: clamp(2rem, 5vw, 6rem);
  row-gap: 2.5rem;
  align-items: start;
}

/* Gauche */
.mission-title{
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

/* Droite haut */
.mission-lead{
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.55;
  color: var(--color-text);
}

/* Droite bas (cards) */
.mission-cards{
  grid-column: 2;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

/* Responsive */
@media (max-width: 900px){
  .mission-layout{
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
    text-align: center;
  }

  .mission-title,
  .mission-lead,
  .mission-cards{
    grid-column: 1;
    grid-row: auto;
  }

  .mission-cards{
    grid-template-columns: 1fr;
  }
}

/* =========================
   Home â€“ Products section (2 cards)
   ========================= */
.product-spotlight .products-header{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.product-spotlight .products-header-text .section-title{
  margin: 0;
}

.product-spotlight .products-header-text .section-subtitle{
  margin: .75rem 0 0;
  max-width: 44rem;
}

.product-spotlight .products-header-link{
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
}

.product-spotlight .products-header-link:hover{
  text-decoration: underline;
}

/* Grid 2 colonnes */
.product-spotlight .products-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Card base */
.product-card{
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(2, 8, 23, 0.06);
}

/* Card Clarity */
.product-card-media{
  background: #f8fafc;
}

.product-card-img{
  width: 100%;
  height: auto;
  display: block;
}

.product-card-body{
  padding: 1.5rem 1.5rem 1.75rem;
}

.product-card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .75rem;
}

.product-card-title{
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.product-status-pill{
  display: inline-flex;
  align-items: center;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: #e8f0ff;
  color: #1d4ed8;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.product-card-desc{
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.product-card-cta{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 2px solid rgba(229, 72, 72, 0.35);
  padding-bottom: .15rem;
}

.product-card-cta:hover{
  border-bottom-color: var(--color-accent);
}

/* Placeholder */
.product-card--placeholder{
  border-style: dashed;
  box-shadow: none;
}

.placeholder-inner{
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
}

.placeholder-icon{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: var(--color-primary);
  margin-bottom: .25rem;
}

.placeholder-title{
  margin: 0;
  font-size: 1.4rem;
  color: var(--color-primary);
}

.placeholder-desc{
  margin: 0;
  max-width: 26rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* disabled button propre (Ã©vite inline styles) */
.product-card--placeholder .btn[disabled]{
  opacity: .6;
  cursor: not-allowed;
}

/* Responsive */
@media (max-width: 900px){
  .product-spotlight .products-header{
    flex-direction: column;
    align-items: flex-start;
  }

  .product-spotlight .products-grid{
    grid-template-columns: 1fr;
  }

  .product-spotlight .products-header-link{
    margin-top: .25rem;
  }
}

/* =========================
   About â€“ Nos principes (layout propre + aÃ©rÃ©)
   ========================= */
.section-values{
  padding: clamp(4rem, 6vw, 7rem) 0;
}

.section-values .section-header{
  max-width: 52rem;
  margin: 0 auto;
}

.section-values .section-header .section-subtitle{
  max-width: 44rem;
  margin: .75rem auto 0;
  line-height: 1.7;
}

/* 2 colonnes, gros blancs mais pas dÃ©bile */
.section-values .features-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(3rem, 10vw, 10rem);
  row-gap: clamp(2.25rem, 4vw, 4rem);
  margin-top: clamp(2.75rem, 4vw, 4rem);
}

/* Item : icÃ´ne gauche, texte droite */
.section-values .feature-card{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;

  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

/* IMPORTANT: autorise le texte Ã  prendre la largeur dispo (sinon mots empilÃ©s) */
.section-values .feature-card > *{
  min-width: 0;
}

.section-values .feature-icon-box{
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f1f5f9;
  display: grid;
  place-items: center;
  margin: 0;
}

.section-values .feature-title{
  margin: .15rem 0 .5rem;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.section-values .feature-desc{
  margin: 0;
  max-width: none !important;   /* <- stop la colonne "trop petite" */
  width: 100%;
  color: var(--color-muted);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px){
  .section-values .features-grid{
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 2.25rem;
  }
}

/* FIX placement grid: forcer le texte en colonne 2 */
.section-values .feature-icon-box{
  grid-column: 1;
  grid-row: 1 / span 2; /* icÃ´ne couvre titre + desc */
}

.section-values .feature-title,
.section-values .feature-desc{
  grid-column: 2; /* titre + texte Ã  droite, pas sous l'icÃ´ne */
}

.section-values .features-grid{
  row-gap: 4rem;
  column-gap: 10rem;
}

.section-values .feature-card{
  gap: 1.75rem;
}

.section-values .feature-desc{
  max-width: 52ch; /* garde une lecture premium sans ligne trop longue */
}

/* =========================
   Vision 2028
   ========================= */
.section-vision{
  background: linear-gradient(180deg, #020b1f 0%, #020b1f 100%);
  color: #fff;
  padding: clamp(5rem, 8vw, 8rem) 0;
}

.vision-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

/* Texte */
.vision-content{
  max-width: 520px;
}

.vision-title{
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.vision-desc{
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Image */
.vision-visual{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

.vision-img{
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}

/* Overlay texte image */
.vision-overlay{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(2, 11, 31, 0.45);
  text-align: center;
}

.vision-year{
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: .05em;
}

.vision-label{
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .2em;
  opacity: .9;
}

/* Responsive */
@media (max-width: 900px){
  .vision-grid{
    grid-template-columns: 1fr;
  }

  .vision-content{
    max-width: none;
  }

  .vision-visual{
    margin-top: 2.5rem;
  }
}

/* ===== Vision 2028 â€“ ajustements finaux ===== */
/* Titre "Vision 2028" bien blanc et lisible */
.section-vision .vision-title{
  color: #ffffff;
}

/* Texte overlay : Lâ€™Ã‰COSYSTÃˆME COMPLET plus grand */
.section-vision .vision-label{
  font-size: 1.05rem;        /* avant ~0.9rem */
  letter-spacing: 0.22em;   /* garde lâ€™effet premium */
  margin-top: .5rem;
}

/* ===== Nos principes â€“ hover icÃ´ne ===== */
.section-values .feature-icon-box{
  transition: background-color .25s ease;
}

.section-values .feature-card:hover .feature-icon-box{
  background-color: var(--color-accent); /* rouge SwissBot */
}

/* =========================
   Product â€“ Offre de lancement (pricing-launch)
   ========================= */
.pricing-launch{
  margin-top: clamp(3rem, 6vw, 5rem);
  background: #04142c;                /* fond de la grosse carte */
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: 0 30px 80px rgba(2, 8, 23, 0.35);
}

.pricing-launch-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: stretch;
}

/* Colonne gauche */
.pricing-launch-title{
  color: #fff;
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin: 0 0 1rem;
}

.pricing-launch-subtitle{
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin: 0 0 1.5rem;
  max-width: 46ch;
}

.pricing-launch-features{
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.pricing-launch-features li{
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: start;
  gap: .85rem;
  color: rgba(255,255,255,.9);
}

.pricing-launch .check-icon{
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(16, 185, 129, 0.15);
  color: #10B981;
  font-weight: 900;
  line-height: 1;
}

.pricing-launch-cta{
  margin-top: 1.25rem;
}

.pricing-launch-note{
  margin: .85rem 0 0;
  color: rgba(255,255,255,.6);
  font-size: .95rem;
}

/* Colonne droite + sÃ©parateur */
.pricing-launch-right{
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(255,255,255,.10);  /* la ligne verticale */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* "PRIX UNIQUE" */
.pricing-plan-label{
  margin: 0 0 1rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .85rem;
}

/* 29 CHF / mois */
.pricing-amount-row{
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pricing-amount{
  font-size: clamp(3.2rem, 5vw, 4.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.pricing-amount-details{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .2rem;
}

.pricing-currency{
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

.pricing-period{
  color: rgba(255,255,255,.55);
  font-weight: 600;
}

/* phrase sous le prix */
.pricing-comparison{
  margin: 0 auto 2rem;
  color: rgba(255,255,255,.65);
  max-width: 34ch;
  line-height: 1.6;
}

/* encart Valeur rÃ©elle / Votre prix */
.pricing-compare-box{
  margin: 0 auto;
  width: min(520px, 100%);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 1.25rem 1.25rem;
  background: rgba(255,255,255,.03);
}

.pricing-compare-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .35rem 0;
}

.pricing-compare-row .label{
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

.pricing-compare-row .label.highlight{
  color: #10B981;
  font-weight: 800;
}

.old-price{
  color: rgba(255,255,255,.45);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.new-price{
  color: #10B981;
  font-weight: 900;
}

/* Responsive */
@media (max-width: 900px){
  .pricing-launch-grid{
    grid-template-columns: 1fr;
  }

  .pricing-launch-right{
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.10);
    padding-top: 2rem;
    margin-top: .5rem;
  }

  .pricing-amount-details{
    align-items: center;
  }
}